kiyam commited on
Commit
391165c
·
verified ·
1 Parent(s): 70096e8

Split perturbations by eval split (msmarco-dev/trec-dl-2019/trec-dl-2020), add TSV format with original+perturbed query text, add data_download scripts for MS MARCO/TREC-DL originals

Browse files
LICENSE.md CHANGED
@@ -4,9 +4,16 @@ This repository contains materials with different provenance.
4
 
5
  ## Lost in Decoding artifacts
6
 
7
- Original query perturbations, metadata, documentation, and other artifacts
8
- created specifically for the Lost in Decoding study are released under the
9
- Apache License 2.0 unless otherwise indicated.
 
 
 
 
 
 
 
10
 
11
  ## PAG checkpoint and document identifiers
12
 
@@ -24,5 +31,14 @@ https://github.com/HansiZeng/PAG
24
  ## Source datasets
25
 
26
  MS MARCO, TREC Deep Learning, and mMARCO data remain subject to their respective
27
- original licences and terms of use. The document collection and third-party
28
- multilingual query datasets are not redistributed in this repository.
 
 
 
 
 
 
 
 
 
 
4
 
5
  ## Lost in Decoding artifacts
6
 
7
+ Generation code, metadata, documentation, and other artifacts created
8
+ specifically for the Lost in Decoding study are released under the Apache
9
+ License 2.0 unless otherwise indicated.
10
+
11
+ The query-variation TSV files under `lost_in_decoding_artifacts/` are derived
12
+ evaluation artifacts created from the official MS MARCO Dev queries and
13
+ official TREC Deep Learning 2019/2020 topics. The Apache License 2.0 applies
14
+ to our generation code and metadata; it does not grant unrestricted rights
15
+ over the underlying query text, which remains subject to the terms of the
16
+ original MS MARCO / TREC-DL releases (see "Source datasets" below).
17
 
18
  ## PAG checkpoint and document identifiers
19
 
 
31
  ## Source datasets
32
 
33
  MS MARCO, TREC Deep Learning, and mMARCO data remain subject to their respective
34
+ original licences and terms of use. The full document collection and
35
+ third-party multilingual query datasets are not redistributed in this
36
+ repository; see `data_download/` for scripts that fetch them directly from
37
+ their official sources.
38
+
39
+ Per Microsoft's MS MARCO terms
40
+ (https://microsoft.github.io/msmarco/Notice.html), MS MARCO data is
41
+ restricted to non-commercial research use and is supplied without granting a
42
+ license or other intellectual-property rights; Microsoft also notes it may
43
+ not own the underlying rights in the passages. Users of the query-variation
44
+ files in this repository should independently review those terms.
README.md CHANGED
@@ -44,11 +44,29 @@ the *Lost in Decoding* study.
44
  | `pytorch_model.bin`, `config.json`, and tokenizer files | Zeng, Luo, and Zamani (2024) | Original PAG checkpoint, `lexical_ripor_direct_lng_knp_seq2seq_1`, mirrored without modification. |
45
  | `identifiers/rq_docids.json` | Zeng, Luo, and Zamani (2024) | Sequential residual-quantization document identifiers, originally released as `aq_smtid/docid_to_tokenids.json`. |
46
  | `identifiers/set_docids.json` | Zeng, Luo, and Zamani (2024) | Set-based lexical document identifiers, originally released as `top_bow/docid_to_tokenids.json`. |
47
- | `lost_in_decoding_artifacts/perturbed_queries/` | *Lost in Decoding* authors | Perturbed MS MARCO Dev queries used for the RQ2 robustness experiments. |
 
 
48
  | `lost_in_decoding_artifacts/metadata/` | *Lost in Decoding* authors | Perturbation types, generation settings, and random seeds. |
 
49
 
50
- Multilingual (mMARCO) queries used for RQ3 are **not** re-hosted here; they are
51
- third-party data. See the *Source data* section below.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
 
53
  ## Model
54
 
@@ -116,16 +134,16 @@ for details.
116
 
117
  ## Evaluation artifacts (`lost_in_decoding_artifacts/`)
118
 
119
- Perturbed MS MARCO Dev queries used in the RQ2 robustness evaluation
120
- (Table 6 in the paper, corrected — see the main repository README for the
121
- correction notice). See
122
  [`lost_in_decoding_artifacts/README.md`](lost_in_decoding_artifacts/README.md)
123
  for format and generation details.
124
 
125
  ## Source data
126
 
127
- - **MS MARCO** passage ranking dataset (queries, qrels, collection): [microsoft/MSMARCO](https://microsoft.github.io/msmarco/) — used under its original terms.
128
- - **TREC Deep Learning 2019 / 2020** query sets and qrels: [NIST TREC-DL](https://microsoft.github.io/msmarco/TREC-Deep-Learning.html).
129
  - **mMARCO** (multilingual queries, RQ3): [unicamp-dl/mmarco](https://huggingface.co/datasets/unicamp-dl/mmarco) — not redistributed here; download via `cross_lingual/scripts/download_mmarco.sh` in the code repository.
130
 
131
  ## Citation
 
44
  | `pytorch_model.bin`, `config.json`, and tokenizer files | Zeng, Luo, and Zamani (2024) | Original PAG checkpoint, `lexical_ripor_direct_lng_knp_seq2seq_1`, mirrored without modification. |
45
  | `identifiers/rq_docids.json` | Zeng, Luo, and Zamani (2024) | Sequential residual-quantization document identifiers, originally released as `aq_smtid/docid_to_tokenids.json`. |
46
  | `identifiers/set_docids.json` | Zeng, Luo, and Zamani (2024) | Set-based lexical document identifiers, originally released as `top_bow/docid_to_tokenids.json`. |
47
+ | `lost_in_decoding_artifacts/msmarco-dev/` | *Lost in Decoding* authors | Query variations for the MS MARCO Passage Ranking Dev set. |
48
+ | `lost_in_decoding_artifacts/trec-dl-2019/` | *Lost in Decoding* authors | Query variations for the TREC Deep Learning 2019 Passage Ranking topics. |
49
+ | `lost_in_decoding_artifacts/trec-dl-2020/` | *Lost in Decoding* authors | Query variations for the TREC Deep Learning 2020 Passage Ranking topics. |
50
  | `lost_in_decoding_artifacts/metadata/` | *Lost in Decoding* authors | Perturbation types, generation settings, and random seeds. |
51
+ | `data_download/` | *Lost in Decoding* authors | Scripts for downloading the original MS MARCO collection, official queries, and qrels from their upstream providers. |
52
 
53
+ The query-variation files are derived evaluation artifacts created from the
54
+ official MS MARCO Dev queries and official TREC Deep Learning 2019/2020
55
+ topics — see [`LICENSE.md`](LICENSE.md).
56
+
57
+ We do **not** redistribute the full MS MARCO passage collection or the
58
+ original MS MARCO/TREC-DL queries and qrels in this repository (their
59
+ redistribution rights are not clearly granted — see *Source data* below).
60
+ Use `data_download/` to fetch them directly from Microsoft/NIST:
61
+
62
+ ```bash
63
+ git clone https://huggingface.co/kiyam/lost-in-decoding-pag
64
+ cd lost-in-decoding-pag
65
+ bash data_download/prepare_evaluation_data.sh
66
+ ```
67
+
68
+ Multilingual (mMARCO) queries used for RQ3 are **not** re-hosted here either;
69
+ they are third-party data. See the *Source data* section below.
70
 
71
  ## Model
72
 
 
134
 
135
  ## Evaluation artifacts (`lost_in_decoding_artifacts/`)
136
 
137
+ Query variations (MS MARCO Dev, TREC-DL 2019, TREC-DL 2020) used in the RQ2
138
+ robustness evaluation (Table 6 in the paper, corrected — see the main
139
+ repository README for the correction notice). See
140
  [`lost_in_decoding_artifacts/README.md`](lost_in_decoding_artifacts/README.md)
141
  for format and generation details.
142
 
143
  ## Source data
144
 
145
+ - **MS MARCO** passage ranking dataset (queries, qrels, collection): [microsoft/MSMARCO](https://microsoft.github.io/msmarco/) — non-commercial research use only, supplied without granting a license or other intellectual-property rights ([Terms and Conditions](https://microsoft.github.io/msmarco/Notice.html)). Not redistributed here; fetch via `data_download/download_msmarco.sh`.
146
+ - **TREC Deep Learning 2019 / 2020** query sets and qrels: [NIST TREC-DL](https://trec.nist.gov/data/deep2019.html). Not redistributed here; fetch via `data_download/download_trec_dl_2019.sh` / `download_trec_dl_2020.sh`.
147
  - **mMARCO** (multilingual queries, RQ3): [unicamp-dl/mmarco](https://huggingface.co/datasets/unicamp-dl/mmarco) — not redistributed here; download via `cross_lingual/scripts/download_mmarco.sh` in the code repository.
148
 
149
  ## Citation
data_download/checksums.txt ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # SHA-256 checksums for files downloaded by download_msmarco.sh,
2
+ # download_trec_dl_2019.sh, and download_trec_dl_2020.sh (as fetched, before
3
+ # gunzip/tar extraction). Each script verifies its own downloads inline
4
+ # using these same values; this file is a standalone reference copy.
5
+ #
6
+ # Verified 2026-08-02 against:
7
+ # https://msmarco.z22.web.core.windows.net/msmarcoranking/ (Microsoft)
8
+ # https://trec.nist.gov/data/deep/ (NIST)
9
+
10
+ # download_msmarco.sh
11
+ 70667529e474322327d6441c8f7b621f2a805a7f6220897d9f80e5a8294bd62e collection.tar.gz
12
+ 05e4c62c9c8520cd695725340d4c990627fd1a92eb8a71b88e3c746031ba6de8 queries.tar.gz
13
+ a1befe0a99974b166b9e09408ccccae471fda5df4953fd6dd86ce4caac691752 qrels.dev.tsv
14
+
15
+ # download_trec_dl_2019.sh
16
+ 8a1f10d550732e4cd91d7fc49846a3784de4040972f583e69285a88f3c5fee92 2019qrels-pass.txt
17
+ d66f01dfa8a3e60fe375ba645efc004f97ff4dd2a424536b8d5810c16182a3b5 msmarco-test2019-queries.tsv.gz
18
+
19
+ # download_trec_dl_2020.sh
20
+ 60d4c34561f9687f8f73e0a752ba80ab80159b3e9c1bedd0a351f747ed6f5684 2020qrels-pass.txt
21
+ 0c749b29fd8ca0ccbf129a1bdd283e4081d6c49e96d6bf6290ba554d5d71f7f1 msmarco-test2020-queries.tsv.gz
data_download/download_msmarco.sh ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ # Download the official MS MARCO Passage Ranking collection and Dev
3
+ # queries/qrels from Microsoft's release. Subject to the MS MARCO terms:
4
+ # https://microsoft.github.io/msmarco/Notice.html
5
+ set -euo pipefail
6
+
7
+ OUT_DIR="${1:-./msmarco}"
8
+ BASE_URL="https://msmarco.z22.web.core.windows.net/msmarcoranking"
9
+
10
+ mkdir -p "$OUT_DIR"
11
+ cd "$OUT_DIR"
12
+
13
+ echo "Downloading MS MARCO passage collection (~1GB compressed)..."
14
+ curl -L -o collection.tar.gz "$BASE_URL/collection.tar.gz"
15
+
16
+ echo "Downloading MS MARCO Dev queries..."
17
+ curl -L -o queries.tar.gz "$BASE_URL/queries.tar.gz"
18
+
19
+ echo "Downloading MS MARCO Dev qrels..."
20
+ curl -L -o qrels.dev.tsv "$BASE_URL/qrels.dev.tsv"
21
+
22
+ echo "Verifying checksums (see ../checksums.txt)..."
23
+ sha256sum -c - <<'EOF'
24
+ 70667529e474322327d6441c8f7b621f2a805a7f6220897d9f80e5a8294bd62e collection.tar.gz
25
+ 05e4c62c9c8520cd695725340d4c990627fd1a92eb8a71b88e3c746031ba6de8 queries.tar.gz
26
+ a1befe0a99974b166b9e09408ccccae471fda5df4953fd6dd86ce4caac691752 qrels.dev.tsv
27
+ EOF
28
+
29
+ tar -xzf collection.tar.gz
30
+ tar -xzf queries.tar.gz
31
+
32
+ echo "Done. Files written to: $OUT_DIR"
data_download/download_trec_dl_2019.sh ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ # Download the official TREC Deep Learning 2019 passage-ranking topics and
3
+ # qrels, as published by NIST: https://trec.nist.gov/data/deep2019.html
4
+ set -euo pipefail
5
+
6
+ OUT_DIR="${1:-./trec-dl-2019}"
7
+ mkdir -p "$OUT_DIR"
8
+ cd "$OUT_DIR"
9
+
10
+ echo "Downloading TREC-DL 2019 passage-ranking qrels..."
11
+ curl -L -o qrels-pass.txt "https://trec.nist.gov/data/deep/2019qrels-pass.txt"
12
+
13
+ echo "Downloading TREC-DL 2019 test queries..."
14
+ curl -L -o queries.tsv.gz "https://msmarco.z22.web.core.windows.net/msmarcoranking/msmarco-test2019-queries.tsv.gz"
15
+
16
+ echo "Verifying checksums (see ../checksums.txt)..."
17
+ sha256sum -c - <<'EOF'
18
+ 8a1f10d550732e4cd91d7fc49846a3784de4040972f583e69285a88f3c5fee92 qrels-pass.txt
19
+ d66f01dfa8a3e60fe375ba645efc004f97ff4dd2a424536b8d5810c16182a3b5 queries.tsv.gz
20
+ EOF
21
+
22
+ gunzip -f queries.tsv.gz
23
+
24
+ echo "Done. Files written to: $OUT_DIR"
data_download/download_trec_dl_2020.sh ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ # Download the official TREC Deep Learning 2020 passage-ranking topics and
3
+ # qrels, as published by NIST: https://trec.nist.gov/data/deep2020.html
4
+ set -euo pipefail
5
+
6
+ OUT_DIR="${1:-./trec-dl-2020}"
7
+ mkdir -p "$OUT_DIR"
8
+ cd "$OUT_DIR"
9
+
10
+ echo "Downloading TREC-DL 2020 passage-ranking qrels..."
11
+ curl -L -o qrels-pass.txt "https://trec.nist.gov/data/deep/2020qrels-pass.txt"
12
+
13
+ echo "Downloading TREC-DL 2020 test queries..."
14
+ curl -L -o queries.tsv.gz "https://msmarco.z22.web.core.windows.net/msmarcoranking/msmarco-test2020-queries.tsv.gz"
15
+
16
+ echo "Verifying checksums (see ../checksums.txt)..."
17
+ sha256sum -c - <<'EOF'
18
+ 60d4c34561f9687f8f73e0a752ba80ab80159b3e9c1bedd0a351f747ed6f5684 qrels-pass.txt
19
+ 0c749b29fd8ca0ccbf129a1bdd283e4081d6c49e96d6bf6290ba554d5d71f7f1 queries.tsv.gz
20
+ EOF
21
+
22
+ gunzip -f queries.tsv.gz
23
+
24
+ echo "Done. Files written to: $OUT_DIR"
data_download/prepare_evaluation_data.sh ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ # Download all original (non-redistributed) evaluation data used by the
3
+ # Lost-in-Decoding / PAG reproduction pipeline: MS MARCO passage collection
4
+ # + Dev queries/qrels, and the TREC-DL 2019/2020 topics + qrels.
5
+ #
6
+ # Each of these datasets is subject to its own upstream terms of use
7
+ # (see the main README.md "Source data" section) and is not redistributed
8
+ # in this repository.
9
+ set -euo pipefail
10
+
11
+ OUT_DIR="${1:-.}"
12
+ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
13
+
14
+ bash "$SCRIPT_DIR/download_msmarco.sh" "$OUT_DIR/msmarco"
15
+ bash "$SCRIPT_DIR/download_trec_dl_2019.sh" "$OUT_DIR/trec-dl-2019"
16
+ bash "$SCRIPT_DIR/download_trec_dl_2020.sh" "$OUT_DIR/trec-dl-2020"
17
+
18
+ echo ""
19
+ echo "All evaluation data downloaded and checksum-verified under: $OUT_DIR"
lost_in_decoding_artifacts/README.md CHANGED
@@ -1,44 +1,76 @@
1
  # Lost in Decoding — Evaluation Artifacts
2
 
3
- **Provenance:** created for this paper (*Lost in Decoding? Reproducing and
4
- Stress-Testing the Look-Ahead Prior in Generative Retrieval*, SIGIR 2026,
 
 
5
  [DOI: 10.1145/3805712.3808567](https://doi.org/10.1145/3805712.3808567) ·
6
  [arXiv:2604.23396](https://arxiv.org/abs/2604.23396)), not part of the
7
  original PAG release.
8
 
9
- ## `perturbed_queries/`
10
-
11
- Perturbed MS MARCO Dev query sets used for the RQ2 robustness evaluation
12
- (query-perturbation sensitivity of PAG's look-ahead prior).
13
-
14
- - **Split:** MS MARCO Dev (6980 queries).
15
- - **Attack methods:** `mispelling`, `ordering` (word reordering), `synonym`
16
- (synonym replacement), `paraphrase`, `naturality` (naturality
17
- normalization). Implemented in
18
- [`robustness/query_variations/penha/`](https://github.com/kidist-amde/lost-in-decoding/tree/main/robustness/query_variations/penha)
19
- in the code repository.
20
- - **Seeds:** `1999`, `5`, `27`, `2016`, `2026`.
21
- - **File naming:** `msmarco_test_attacked_queries_seed_{seed}_attack_method_{attack_method}.json`
22
- - **Format:** JSON object, `{qid (str): perturbed_query_text (str)}`.
23
- - **Note (`naturality`):** this transformation is a deterministic
24
- style-normalization rule rather than a randomized perturbation, so the five
25
- seed files for `naturality` are identical to each other by construction.
26
-
27
- **TREC-DL 2019 / TREC-DL 2020 perturbed queries are not included as static
28
- files.** They are produced by the same code path
29
- (`robustness/scripts/generate_query_variations_sub.sh`) using the same seeds
30
- and attack methods, and were consumed directly during RQ2 evaluation without
31
- being cached to disk. Regenerate them with:
32
 
33
- ```bash
34
- bash robustness/scripts/generate_query_variations_sub.sh
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  ```
36
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  ## `metadata/`
38
 
39
- `perturbed_queries_metadata.json` documents the generation settings (split,
40
- seeds, attack methods, file naming convention) for the released perturbed
41
- query sets.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
 
43
  ## Citation
44
 
 
1
  # Lost in Decoding — Evaluation Artifacts
2
 
3
+ **Provenance:** derived evaluation artifacts created from the official MS
4
+ MARCO Dev queries and official TREC Deep Learning 2019/2020 topics, for this
5
+ paper (*Lost in Decoding? Reproducing and Stress-Testing the Look-Ahead Prior
6
+ in Generative Retrieval*, SIGIR 2026,
7
  [DOI: 10.1145/3805712.3808567](https://doi.org/10.1145/3805712.3808567) ·
8
  [arXiv:2604.23396](https://arxiv.org/abs/2604.23396)), not part of the
9
  original PAG release.
10
 
11
+ The generation code and metadata here are Apache-2.0-licensed. The perturbed
12
+ query **text** is a derived artifact of the original MS MARCO / TREC-DL query
13
+ text and remains subject to the same provenance constraints as that source
14
+ text see [`../LICENSE.md`](../LICENSE.md).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
 
16
+ ## `msmarco-dev/`, `trec-dl-2019/`, `trec-dl-2020/`
17
+
18
+ Query variations (misspelling, reordering, synonym replacement, paraphrasing,
19
+ naturality normalization) used for the RQ2 robustness evaluation, one
20
+ directory per evaluation split:
21
+
22
+ | Directory | Split | Queries |
23
+ |---|---|---|
24
+ | `msmarco-dev/` | MS MARCO Passage Ranking Dev | 6,980 |
25
+ | `trec-dl-2019/` | TREC Deep Learning 2019 passage-ranking topics | 43 |
26
+ | `trec-dl-2020/` | TREC Deep Learning 2020 passage-ranking topics | 54 |
27
+
28
+ Each directory contains one TSV file per perturbation type:
29
+ `misspelling.tsv`, `reordering.tsv`, `synonym.tsv`, `paraphrase.tsv`,
30
+ `naturality.tsv`.
31
+
32
+ **Columns:** `qid`, `original_query`, `perturbed_query`, `perturbation`, `seed`
33
+
34
+ ```text
35
+ qid original_query perturbed_query perturbation seed
36
+ 1037798 who is robert gray who is robrt gray misspelling 42
37
  ```
38
 
39
+ - **Seeded perturbations** (`misspelling`, `reordering`, `synonym`,
40
+ `paraphrase`): five seeds — `1999`, `5`, `27`, `2016`, `2026` — stacked as
41
+ separate rows per `qid` within the same file.
42
+ - **`naturality`:** a deterministic style-normalization rule rather than a
43
+ randomized perturbation, so it produces identical output for every seed.
44
+ Represented as a single row per `qid` with `seed=deterministic` rather than
45
+ five duplicate rows.
46
+
47
+ `msmarco-dev/original_qids.txt` lists the 6,980 Dev query IDs covered by
48
+ these files (a subset of the full MS MARCO Dev qrel set).
49
+
50
+ Implemented in
51
+ [`robustness/query_variations/penha/`](https://github.com/kidist-amde/lost-in-decoding/tree/main/robustness/query_variations/penha)
52
+ in the code repository.
53
+
54
  ## `metadata/`
55
 
56
+ - `generation_config.json`: perturbation types, split sizes, file format, and provenance.
57
+ - `seeds.json`: seed values and which perturbations use them.
58
+
59
+ ## `data_download/`
60
+
61
+ The original MS MARCO passage collection, MS MARCO Dev queries/qrels, and
62
+ TREC-DL 2019/2020 topics/qrels are **not** redistributed in this repository.
63
+ Scripts to fetch them directly from their official sources (Microsoft,
64
+ NIST) are provided at the repository root:
65
+
66
+ ```bash
67
+ git clone https://huggingface.co/kiyam/lost-in-decoding-pag
68
+ cd lost-in-decoding-pag
69
+ bash data_download/prepare_evaluation_data.sh
70
+ ```
71
+
72
+ See [`../data_download/`](../data_download/) for individual per-dataset
73
+ scripts and checksums.
74
 
75
  ## Citation
76
 
lost_in_decoding_artifacts/metadata/generation_config.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "description": "Generation settings for the query-variation TSV files under msmarco-dev/, trec-dl-2019/, and trec-dl-2020/, released alongside 'Lost in Decoding? Reproducing and Stress-Testing the Look-Ahead Prior in Generative Retrieval' (SIGIR 2026, DOI: 10.1145/3805712.3808567).",
3
+ "splits": {
4
+ "msmarco-dev": {"num_queries": 6980, "source": "MS MARCO Passage Ranking Dev queries"},
5
+ "trec-dl-2019": {"num_queries": 43, "source": "TREC Deep Learning 2019 passage-ranking topics"},
6
+ "trec-dl-2020": {"num_queries": 54, "source": "TREC Deep Learning 2020 passage-ranking topics"}
7
+ },
8
+ "perturbation_types": [
9
+ {"name": "misspelling", "seeded": true, "description": "Character-level misspelling injection."},
10
+ {"name": "reordering", "seeded": true, "description": "Word-order shuffling."},
11
+ {"name": "synonym", "seeded": true, "description": "Adversarial synonym replacement."},
12
+ {"name": "paraphrase", "seeded": true, "description": "Back-translation and seq2seq paraphrasing."},
13
+ {"name": "naturality", "seeded": false, "description": "Deterministic style-normalization (stop-word removal); identical output regardless of seed."}
14
+ ],
15
+ "file_format": {
16
+ "extension": "tsv",
17
+ "columns": ["qid", "original_query", "perturbed_query", "perturbation", "seed"],
18
+ "seeded_attacks": "one row per (qid, seed) pair, five seeds stacked in a single file",
19
+ "naturality": "one row per qid; seed column is the literal string 'deterministic'"
20
+ },
21
+ "generation_code": "robustness/query_variations (penha transformations) in the Lost-in-Decoding repository: https://github.com/kidist-amde/lost-in-decoding/tree/main/robustness/query_variations",
22
+ "provenance": "Derived evaluation artifacts created from the official MS MARCO Dev queries and official TREC Deep Learning 2019/2020 topics for the Lost in Decoding study.",
23
+ "source_paper": "Lost in Decoding? Reproducing and Stress-Testing the Look-Ahead Prior in Generative Retrieval (DOI: 10.1145/3805712.3808567, arXiv:2604.23396)",
24
+ "source_repository": "https://github.com/kidist-amde/lost-in-decoding"
25
+ }
lost_in_decoding_artifacts/metadata/seeds.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "seeded_perturbations": ["misspelling", "reordering", "synonym", "paraphrase"],
3
+ "seeds": [1999, 5, 27, 2016, 2026],
4
+ "unseeded_perturbations": {
5
+ "naturality": "Deterministic transformation (stop-word removal). Produces identical output regardless of seed; represented in the TSV files with seed='deterministic' rather than being duplicated five times."
6
+ }
7
+ }
lost_in_decoding_artifacts/msmarco-dev/misspelling.tsv ADDED
The diff for this file is too large to render. See raw diff
 
lost_in_decoding_artifacts/msmarco-dev/naturality.tsv ADDED
The diff for this file is too large to render. See raw diff
 
lost_in_decoding_artifacts/msmarco-dev/original_qids.txt ADDED
@@ -0,0 +1,6980 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2
2
+ 1215
3
+ 1288
4
+ 1576
5
+ 2235
6
+ 2798
7
+ 2962
8
+ 4696
9
+ 4947
10
+ 5925
11
+ 6217
12
+ 6791
13
+ 7968
14
+ 8701
15
+ 8714
16
+ 8798
17
+ 8854
18
+ 9083
19
+ 9454
20
+ 9926
21
+ 10157
22
+ 10205
23
+ 10264
24
+ 10276
25
+ 10312
26
+ 11006
27
+ 11050
28
+ 11133
29
+ 11913
30
+ 12741
31
+ 12903
32
+ 13397
33
+ 14151
34
+ 14947
35
+ 14963
36
+ 15039
37
+ 15063
38
+ 15382
39
+ 15441
40
+ 15607
41
+ 16559
42
+ 16860
43
+ 17110
44
+ 17430
45
+ 17586
46
+ 17635
47
+ 17848
48
+ 17884
49
+ 18101
50
+ 18759
51
+ 18840
52
+ 19457
53
+ 19552
54
+ 19940
55
+ 20356
56
+ 20432
57
+ 20520
58
+ 20597
59
+ 20671
60
+ 21185
61
+ 21603
62
+ 21741
63
+ 21765
64
+ 21793
65
+ 21861
66
+ 21948
67
+ 22231
68
+ 22479
69
+ 22670
70
+ 22882
71
+ 23223
72
+ 23285
73
+ 24115
74
+ 24441
75
+ 24807
76
+ 24979
77
+ 25025
78
+ 25036
79
+ 25294
80
+ 25344
81
+ 25534
82
+ 25603
83
+ 26079
84
+ 26207
85
+ 26334
86
+ 26485
87
+ 26664
88
+ 26847
89
+ 27618
90
+ 27743
91
+ 27932
92
+ 28216
93
+ 28352
94
+ 28442
95
+ 29089
96
+ 29097
97
+ 29169
98
+ 29416
99
+ 29612
100
+ 29921
101
+ 30039
102
+ 30188
103
+ 30860
104
+ 30956
105
+ 31222
106
+ 31432
107
+ 31595
108
+ 32176
109
+ 32642
110
+ 34015
111
+ 34039
112
+ 35996
113
+ 36025
114
+ 36133
115
+ 36214
116
+ 36388
117
+ 36473
118
+ 36703
119
+ 36965
120
+ 37685
121
+ 37952
122
+ 38098
123
+ 38608
124
+ 38946
125
+ 39360
126
+ 39577
127
+ 39908
128
+ 40056
129
+ 40337
130
+ 41969
131
+ 42361
132
+ 42555
133
+ 42568
134
+ 43649
135
+ 43781
136
+ 44072
137
+ 44686
138
+ 45125
139
+ 45590
140
+ 45757
141
+ 45924
142
+ 46040
143
+ 46081
144
+ 46095
145
+ 46579
146
+ 46711
147
+ 47270
148
+ 47419
149
+ 47513
150
+ 47588
151
+ 47674
152
+ 47716
153
+ 47741
154
+ 47864
155
+ 48417
156
+ 48998
157
+ 49234
158
+ 49435
159
+ 49802
160
+ 49943
161
+ 50498
162
+ 50833
163
+ 50891
164
+ 51054
165
+ 51090
166
+ 51276
167
+ 53109
168
+ 53191
169
+ 53813
170
+ 53814
171
+ 53897
172
+ 53991
173
+ 54040
174
+ 54199
175
+ 54235
176
+ 54307
177
+ 54531
178
+ 54544
179
+ 54648
180
+ 54819
181
+ 54843
182
+ 55223
183
+ 55682
184
+ 55691
185
+ 55848
186
+ 56033
187
+ 56188
188
+ 56323
189
+ 56740
190
+ 56993
191
+ 57258
192
+ 57270
193
+ 57402
194
+ 57411
195
+ 57614
196
+ 57882
197
+ 58074
198
+ 58130
199
+ 58234
200
+ 58409
201
+ 58551
202
+ 58571
203
+ 58583
204
+ 58801
205
+ 59030
206
+ 59084
207
+ 59190
208
+ 59204
209
+ 59217
210
+ 59392
211
+ 59426
212
+ 59654
213
+ 60339
214
+ 60357
215
+ 60677
216
+ 61180
217
+ 61277
218
+ 61452
219
+ 61531
220
+ 61623
221
+ 61836
222
+ 61882
223
+ 62055
224
+ 62136
225
+ 62411
226
+ 62439
227
+ 62554
228
+ 62648
229
+ 63152
230
+ 63548
231
+ 64179
232
+ 64528
233
+ 64711
234
+ 64960
235
+ 65000
236
+ 65038
237
+ 65267
238
+ 65488
239
+ 65583
240
+ 65584
241
+ 65627
242
+ 65770
243
+ 65957
244
+ 66154
245
+ 66161
246
+ 66281
247
+ 66389
248
+ 66707
249
+ 66771
250
+ 66908
251
+ 67200
252
+ 67802
253
+ 68095
254
+ 68832
255
+ 69506
256
+ 69789
257
+ 69871
258
+ 70340
259
+ 70504
260
+ 70595
261
+ 70709
262
+ 70720
263
+ 70787
264
+ 70852
265
+ 71238
266
+ 72398
267
+ 72435
268
+ 72485
269
+ 72613
270
+ 72809
271
+ 73094
272
+ 73106
273
+ 73119
274
+ 73257
275
+ 73788
276
+ 73853
277
+ 74328
278
+ 74356
279
+ 74637
280
+ 74759
281
+ 75266
282
+ 75335
283
+ 75342
284
+ 75608
285
+ 75698
286
+ 75717
287
+ 75801
288
+ 76283
289
+ 76770
290
+ 77034
291
+ 77323
292
+ 77391
293
+ 77424
294
+ 77491
295
+ 77878
296
+ 78076
297
+ 78418
298
+ 78730
299
+ 79698
300
+ 79763
301
+ 79891
302
+ 80590
303
+ 80712
304
+ 80876
305
+ 81075
306
+ 81137
307
+ 81649
308
+ 81945
309
+ 81993
310
+ 82100
311
+ 82161
312
+ 82293
313
+ 82379
314
+ 82842
315
+ 82949
316
+ 83448
317
+ 83458
318
+ 83506
319
+ 83621
320
+ 84106
321
+ 84473
322
+ 84520
323
+ 84778
324
+ 85018
325
+ 85053
326
+ 85095
327
+ 85904
328
+ 85954
329
+ 86094
330
+ 86203
331
+ 86264
332
+ 86624
333
+ 86701
334
+ 87019
335
+ 87701
336
+ 87892
337
+ 87926
338
+ 88160
339
+ 88284
340
+ 88375
341
+ 88577
342
+ 88831
343
+ 89143
344
+ 89418
345
+ 89610
346
+ 89777
347
+ 89786
348
+ 90169
349
+ 90209
350
+ 90941
351
+ 91345
352
+ 91422
353
+ 91711
354
+ 91722
355
+ 91790
356
+ 91881
357
+ 92260
358
+ 92437
359
+ 92509
360
+ 92542
361
+ 93234
362
+ 93308
363
+ 93311
364
+ 93649
365
+ 93823
366
+ 94782
367
+ 94798
368
+ 94865
369
+ 94953
370
+ 95286
371
+ 95409
372
+ 95651
373
+ 96250
374
+ 96310
375
+ 96379
376
+ 96420
377
+ 96602
378
+ 96749
379
+ 97295
380
+ 97612
381
+ 97652
382
+ 97766
383
+ 97895
384
+ 97964
385
+ 97972
386
+ 98151
387
+ 98682
388
+ 98817
389
+ 98847
390
+ 99183
391
+ 99267
392
+ 99461
393
+ 99556
394
+ 99676
395
+ 99805
396
+ 100013
397
+ 100020
398
+ 100046
399
+ 100250
400
+ 100307
401
+ 100364
402
+ 100616
403
+ 100661
404
+ 101451
405
+ 102506
406
+ 102627
407
+ 102695
408
+ 103125
409
+ 104290
410
+ 105549
411
+ 105709
412
+ 106125
413
+ 106508
414
+ 107077
415
+ 107283
416
+ 107812
417
+ 108037
418
+ 108287
419
+ 108507
420
+ 108622
421
+ 109276
422
+ 109647
423
+ 109819
424
+ 109841
425
+ 110614
426
+ 111377
427
+ 111723
428
+ 111995
429
+ 112035
430
+ 112318
431
+ 112477
432
+ 112718
433
+ 113664
434
+ 113732
435
+ 113826
436
+ 114037
437
+ 114573
438
+ 114633
439
+ 114638
440
+ 115365
441
+ 115704
442
+ 115833
443
+ 115930
444
+ 116431
445
+ 116455
446
+ 116517
447
+ 116820
448
+ 116939
449
+ 117036
450
+ 117113
451
+ 117683
452
+ 117728
453
+ 117977
454
+ 118365
455
+ 118448
456
+ 118457
457
+ 118702
458
+ 119089
459
+ 119168
460
+ 119534
461
+ 119683
462
+ 119761
463
+ 119975
464
+ 121017
465
+ 121023
466
+ 122440
467
+ 122582
468
+ 122639
469
+ 122807
470
+ 123529
471
+ 123710
472
+ 123859
473
+ 123975
474
+ 124128
475
+ 124534
476
+ 124787
477
+ 125545
478
+ 125627
479
+ 125705
480
+ 125842
481
+ 125898
482
+ 125996
483
+ 126491
484
+ 126525
485
+ 126821
486
+ 127098
487
+ 127315
488
+ 127682
489
+ 127876
490
+ 127984
491
+ 128113
492
+ 128158
493
+ 128166
494
+ 128178
495
+ 128200
496
+ 128633
497
+ 128772
498
+ 129205
499
+ 129228
500
+ 129229
501
+ 129491
502
+ 129517
503
+ 129565
504
+ 129641
505
+ 129684
506
+ 129792
507
+ 129837
508
+ 130034
509
+ 130825
510
+ 130932
511
+ 131597
512
+ 131665
513
+ 131768
514
+ 131873
515
+ 131925
516
+ 132104
517
+ 132151
518
+ 132263
519
+ 132317
520
+ 132359
521
+ 132473
522
+ 132639
523
+ 133037
524
+ 133977
525
+ 134014
526
+ 134239
527
+ 134861
528
+ 135079
529
+ 135386
530
+ 135464
531
+ 135465
532
+ 135516
533
+ 135633
534
+ 135635
535
+ 136098
536
+ 136157
537
+ 136209
538
+ 136700
539
+ 137411
540
+ 137440
541
+ 137508
542
+ 137889
543
+ 137919
544
+ 138127
545
+ 138223
546
+ 138266
547
+ 138492
548
+ 138629
549
+ 138640
550
+ 138793
551
+ 139090
552
+ 139239
553
+ 139405
554
+ 139767
555
+ 139897
556
+ 139929
557
+ 140161
558
+ 140216
559
+ 140238
560
+ 140367
561
+ 140696
562
+ 140804
563
+ 140921
564
+ 141185
565
+ 141353
566
+ 141472
567
+ 141694
568
+ 142039
569
+ 142153
570
+ 142382
571
+ 142411
572
+ 142579
573
+ 142782
574
+ 142831
575
+ 143025
576
+ 143293
577
+ 143424
578
+ 143464
579
+ 143849
580
+ 144028
581
+ 144254
582
+ 144285
583
+ 144491
584
+ 144528
585
+ 144682
586
+ 144694
587
+ 144857
588
+ 145569
589
+ 145821
590
+ 145877
591
+ 146212
592
+ 146244
593
+ 146269
594
+ 146598
595
+ 146812
596
+ 147073
597
+ 147090
598
+ 147166
599
+ 147337
600
+ 147542
601
+ 148016
602
+ 148424
603
+ 148564
604
+ 148633
605
+ 148761
606
+ 148777
607
+ 148851
608
+ 149161
609
+ 149221
610
+ 149447
611
+ 149670
612
+ 149767
613
+ 149790
614
+ 149801
615
+ 149853
616
+ 150087
617
+ 151011
618
+ 151547
619
+ 152519
620
+ 152598
621
+ 153027
622
+ 153037
623
+ 153048
624
+ 153588
625
+ 153739
626
+ 153794
627
+ 153981
628
+ 154301
629
+ 154372
630
+ 154633
631
+ 154785
632
+ 155041
633
+ 155056
634
+ 155086
635
+ 155119
636
+ 155234
637
+ 155700
638
+ 156052
639
+ 156215
640
+ 156251
641
+ 156379
642
+ 156566
643
+ 156688
644
+ 156723
645
+ 156889
646
+ 157149
647
+ 157580
648
+ 158887
649
+ 159078
650
+ 159667
651
+ 160255
652
+ 160312
653
+ 160339
654
+ 160562
655
+ 160671
656
+ 160694
657
+ 160735
658
+ 160787
659
+ 160808
660
+ 160885
661
+ 161117
662
+ 161224
663
+ 161418
664
+ 161828
665
+ 162351
666
+ 162662
667
+ 163038
668
+ 163570
669
+ 163602
670
+ 163860
671
+ 163912
672
+ 164282
673
+ 164528
674
+ 164912
675
+ 164946
676
+ 165002
677
+ 165007
678
+ 165116
679
+ 165135
680
+ 165335
681
+ 165480
682
+ 165807
683
+ 166043
684
+ 166111
685
+ 166403
686
+ 166468
687
+ 166625
688
+ 166680
689
+ 166748
690
+ 166784
691
+ 167156
692
+ 167204
693
+ 167229
694
+ 167371
695
+ 167436
696
+ 167566
697
+ 167620
698
+ 167994
699
+ 168000
700
+ 168069
701
+ 168175
702
+ 168238
703
+ 168787
704
+ 169305
705
+ 169390
706
+ 169778
707
+ 170581
708
+ 170770
709
+ 170788
710
+ 170982
711
+ 171370
712
+ 171527
713
+ 171691
714
+ 171776
715
+ 171906
716
+ 172062
717
+ 172608
718
+ 172787
719
+ 172981
720
+ 173001
721
+ 173391
722
+ 174249
723
+ 174273
724
+ 174344
725
+ 174592
726
+ 175251
727
+ 175625
728
+ 176015
729
+ 176065
730
+ 176677
731
+ 176701
732
+ 176744
733
+ 176994
734
+ 177221
735
+ 177238
736
+ 178325
737
+ 178468
738
+ 178612
739
+ 178627
740
+ 178741
741
+ 178825
742
+ 178859
743
+ 180592
744
+ 180693
745
+ 180887
746
+ 180902
747
+ 181144
748
+ 181222
749
+ 181301
750
+ 181394
751
+ 181476
752
+ 181531
753
+ 182081
754
+ 182393
755
+ 183046
756
+ 183201
757
+ 183723
758
+ 183874
759
+ 183880
760
+ 183988
761
+ 184105
762
+ 184235
763
+ 184249
764
+ 184436
765
+ 184452
766
+ 184621
767
+ 184916
768
+ 185009
769
+ 185276
770
+ 185299
771
+ 185397
772
+ 185879
773
+ 186063
774
+ 186265
775
+ 186390
776
+ 186446
777
+ 186727
778
+ 187186
779
+ 187818
780
+ 188134
781
+ 188714
782
+ 188908
783
+ 189115
784
+ 189174
785
+ 189312
786
+ 189355
787
+ 189466
788
+ 190078
789
+ 190212
790
+ 190307
791
+ 190601
792
+ 191536
793
+ 191632
794
+ 191792
795
+ 191853
796
+ 191971
797
+ 192502
798
+ 192579
799
+ 192894
800
+ 193422
801
+ 193581
802
+ 193742
803
+ 193866
804
+ 193968
805
+ 194430
806
+ 194531
807
+ 194724
808
+ 194750
809
+ 194870
810
+ 195199
811
+ 195440
812
+ 195582
813
+ 195693
814
+ 196111
815
+ 196232
816
+ 196250
817
+ 196453
818
+ 196596
819
+ 196720
820
+ 196949
821
+ 196963
822
+ 197024
823
+ 197542
824
+ 197945
825
+ 197964
826
+ 198246
827
+ 198581
828
+ 198807
829
+ 199177
830
+ 199442
831
+ 199572
832
+ 199776
833
+ 199837
834
+ 200042
835
+ 200062
836
+ 200296
837
+ 200600
838
+ 201154
839
+ 201366
840
+ 201376
841
+ 202006
842
+ 202073
843
+ 202081
844
+ 202306
845
+ 202797
846
+ 202954
847
+ 203003
848
+ 203039
849
+ 203274
850
+ 203317
851
+ 203390
852
+ 203458
853
+ 203646
854
+ 203688
855
+ 204924
856
+ 205086
857
+ 205107
858
+ 205251
859
+ 205741
860
+ 205809
861
+ 206117
862
+ 206549
863
+ 206762
864
+ 206806
865
+ 206819
866
+ 207251
867
+ 207595
868
+ 208145
869
+ 208198
870
+ 208265
871
+ 208339
872
+ 208411
873
+ 208494
874
+ 208610
875
+ 208822
876
+ 209651
877
+ 209730
878
+ 209764
879
+ 210442
880
+ 210690
881
+ 211468
882
+ 211621
883
+ 211691
884
+ 212195
885
+ 212236
886
+ 212251
887
+ 212303
888
+ 212435
889
+ 212477
890
+ 212634
891
+ 212796
892
+ 212977
893
+ 214040
894
+ 214771
895
+ 215603
896
+ 217246
897
+ 218000
898
+ 220087
899
+ 220151
900
+ 220495
901
+ 220761
902
+ 221664
903
+ 222158
904
+ 222954
905
+ 223165
906
+ 223468
907
+ 224314
908
+ 224548
909
+ 224626
910
+ 225499
911
+ 225752
912
+ 226132
913
+ 226335
914
+ 226461
915
+ 226509
916
+ 227317
917
+ 227591
918
+ 227637
919
+ 227968
920
+ 227992
921
+ 228474
922
+ 228738
923
+ 229325
924
+ 230082
925
+ 230179
926
+ 230725
927
+ 230891
928
+ 231109
929
+ 231292
930
+ 231298
931
+ 231482
932
+ 231717
933
+ 231877
934
+ 232703
935
+ 233904
936
+ 234114
937
+ 234165
938
+ 234388
939
+ 234644
940
+ 234651
941
+ 234821
942
+ 234998
943
+ 235027
944
+ 235089
945
+ 235534
946
+ 235832
947
+ 236362
948
+ 236427
949
+ 236580
950
+ 236582
951
+ 236708
952
+ 236801
953
+ 236949
954
+ 237370
955
+ 237373
956
+ 237561
957
+ 237936
958
+ 237945
959
+ 238886
960
+ 239189
961
+ 239511
962
+ 239516
963
+ 239648
964
+ 239830
965
+ 240489
966
+ 240504
967
+ 240584
968
+ 241246
969
+ 241405
970
+ 242019
971
+ 242061
972
+ 242103
973
+ 242107
974
+ 242219
975
+ 242713
976
+ 242863
977
+ 243139
978
+ 243244
979
+ 243416
980
+ 243712
981
+ 243761
982
+ 244011
983
+ 244092
984
+ 244808
985
+ 244821
986
+ 244902
987
+ 244929
988
+ 245120
989
+ 245416
990
+ 245921
991
+ 246626
992
+ 247194
993
+ 247717
994
+ 248086
995
+ 248385
996
+ 249118
997
+ 249176
998
+ 249321
999
+ 249618
1000
+ 249792
1001
+ 249802
1002
+ 249821
1003
+ 249866
1004
+ 250228
1005
+ 250367
1006
+ 250636
1007
+ 251172
1008
+ 251445
1009
+ 252295
1010
+ 252632
1011
+ 253678
1012
+ 253965
1013
+ 253966
1014
+ 254652
1015
+ 255027
1016
+ 255469
1017
+ 255633
1018
+ 256052
1019
+ 256192
1020
+ 256783
1021
+ 257018
1022
+ 257309
1023
+ 257335
1024
+ 257772
1025
+ 257885
1026
+ 258337
1027
+ 258485
1028
+ 259128
1029
+ 259239
1030
+ 259417
1031
+ 259763
1032
+ 259781
1033
+ 259885
1034
+ 260172
1035
+ 260762
1036
+ 260853
1037
+ 261098
1038
+ 261521
1039
+ 261650
1040
+ 261652
1041
+ 261683
1042
+ 262232
1043
+ 262280
1044
+ 262974
1045
+ 263670
1046
+ 263889
1047
+ 264150
1048
+ 264284
1049
+ 264410
1050
+ 264594
1051
+ 264827
1052
+ 265729
1053
+ 265960
1054
+ 266760
1055
+ 266920
1056
+ 267012
1057
+ 267187
1058
+ 267341
1059
+ 267566
1060
+ 267644
1061
+ 270140
1062
+ 270422
1063
+ 270520
1064
+ 270521
1065
+ 270603
1066
+ 270642
1067
+ 271038
1068
+ 272047
1069
+ 272075
1070
+ 272500
1071
+ 272605
1072
+ 272815
1073
+ 273014
1074
+ 273449
1075
+ 273481
1076
+ 273522
1077
+ 274067
1078
+ 274175
1079
+ 274981
1080
+ 275049
1081
+ 275137
1082
+ 275355
1083
+ 275528
1084
+ 275534
1085
+ 275629
1086
+ 275997
1087
+ 276208
1088
+ 276298
1089
+ 276329
1090
+ 276338
1091
+ 276348
1092
+ 276979
1093
+ 277459
1094
+ 277556
1095
+ 277623
1096
+ 277632
1097
+ 277701
1098
+ 277737
1099
+ 277785
1100
+ 277799
1101
+ 277977
1102
+ 278074
1103
+ 278429
1104
+ 278542
1105
+ 278606
1106
+ 278658
1107
+ 278863
1108
+ 279229
1109
+ 279718
1110
+ 279987
1111
+ 280223
1112
+ 280796
1113
+ 280825
1114
+ 280927
1115
+ 281002
1116
+ 281270
1117
+ 281702
1118
+ 281704
1119
+ 281930
1120
+ 282214
1121
+ 282397
1122
+ 282411
1123
+ 282530
1124
+ 283141
1125
+ 283154
1126
+ 283344
1127
+ 283548
1128
+ 284072
1129
+ 284313
1130
+ 284565
1131
+ 285158
1132
+ 285375
1133
+ 285537
1134
+ 285656
1135
+ 285729
1136
+ 286160
1137
+ 286915
1138
+ 287912
1139
+ 288139
1140
+ 288200
1141
+ 288702
1142
+ 288884
1143
+ 289276
1144
+ 289556
1145
+ 289586
1146
+ 289812
1147
+ 290091
1148
+ 290488
1149
+ 290499
1150
+ 290585
1151
+ 290632
1152
+ 290779
1153
+ 290830
1154
+ 291248
1155
+ 291396
1156
+ 291516
1157
+ 292021
1158
+ 292094
1159
+ 292225
1160
+ 292676
1161
+ 292813
1162
+ 293401
1163
+ 293421
1164
+ 293992
1165
+ 294518
1166
+ 295135
1167
+ 295406
1168
+ 296441
1169
+ 296993
1170
+ 297019
1171
+ 297672
1172
+ 298113
1173
+ 298444
1174
+ 298550
1175
+ 298565
1176
+ 298940
1177
+ 299023
1178
+ 299094
1179
+ 299110
1180
+ 299350
1181
+ 299732
1182
+ 299939
1183
+ 300246
1184
+ 300306
1185
+ 300312
1186
+ 300674
1187
+ 300933
1188
+ 301061
1189
+ 301777
1190
+ 302337
1191
+ 302435
1192
+ 302878
1193
+ 303045
1194
+ 303777
1195
+ 303790
1196
+ 303934
1197
+ 305333
1198
+ 305361
1199
+ 305650
1200
+ 306105
1201
+ 306806
1202
+ 307005
1203
+ 307008
1204
+ 307118
1205
+ 307492
1206
+ 307504
1207
+ 307521
1208
+ 308032
1209
+ 308687
1210
+ 309402
1211
+ 309745
1212
+ 310853
1213
+ 310948
1214
+ 311067
1215
+ 311540
1216
+ 312368
1217
+ 313262
1218
+ 313438
1219
+ 313940
1220
+ 314307
1221
+ 314907
1222
+ 315131
1223
+ 315291
1224
+ 315884
1225
+ 316803
1226
+ 318073
1227
+ 319564
1228
+ 319652
1229
+ 320025
1230
+ 320051
1231
+ 320117
1232
+ 320320
1233
+ 320792
1234
+ 320970
1235
+ 321239
1236
+ 321363
1237
+ 321918
1238
+ 321951
1239
+ 322211
1240
+ 322345
1241
+ 323096
1242
+ 323154
1243
+ 323382
1244
+ 323535
1245
+ 323555
1246
+ 323592
1247
+ 323798
1248
+ 323815
1249
+ 323998
1250
+ 324159
1251
+ 324645
1252
+ 325292
1253
+ 325929
1254
+ 326190
1255
+ 326410
1256
+ 326417
1257
+ 326509
1258
+ 326629
1259
+ 326637
1260
+ 326719
1261
+ 327640
1262
+ 327750
1263
+ 328072
1264
+ 328474
1265
+ 328527
1266
+ 328611
1267
+ 328629
1268
+ 328704
1269
+ 328814
1270
+ 329114
1271
+ 329369
1272
+ 329515
1273
+ 329901
1274
+ 329958
1275
+ 330419
1276
+ 330450
1277
+ 330560
1278
+ 330640
1279
+ 330792
1280
+ 331141
1281
+ 331352
1282
+ 332600
1283
+ 332797
1284
+ 333327
1285
+ 333434
1286
+ 333486
1287
+ 333579
1288
+ 333700
1289
+ 334433
1290
+ 334558
1291
+ 334754
1292
+ 334867
1293
+ 334904
1294
+ 334916
1295
+ 335710
1296
+ 335711
1297
+ 335910
1298
+ 336648
1299
+ 337073
1300
+ 337190
1301
+ 337209
1302
+ 337509
1303
+ 337864
1304
+ 338040
1305
+ 338637
1306
+ 338696
1307
+ 338713
1308
+ 338917
1309
+ 339009
1310
+ 339501
1311
+ 339888
1312
+ 339934
1313
+ 339981
1314
+ 340006
1315
+ 340712
1316
+ 341039
1317
+ 341317
1318
+ 341736
1319
+ 342115
1320
+ 342156
1321
+ 342285
1322
+ 342450
1323
+ 343976
1324
+ 344400
1325
+ 344955
1326
+ 345350
1327
+ 345453
1328
+ 347491
1329
+ 348136
1330
+ 348242
1331
+ 348594
1332
+ 348869
1333
+ 348994
1334
+ 351820
1335
+ 352236
1336
+ 352818
1337
+ 353623
1338
+ 354222
1339
+ 354515
1340
+ 355458
1341
+ 355484
1342
+ 356916
1343
+ 357162
1344
+ 357340
1345
+ 357519
1346
+ 357664
1347
+ 358150
1348
+ 358240
1349
+ 358455
1350
+ 359040
1351
+ 359499
1352
+ 361594
1353
+ 361620
1354
+ 362016
1355
+ 362076
1356
+ 362845
1357
+ 363332
1358
+ 363637
1359
+ 365044
1360
+ 367290
1361
+ 368229
1362
+ 368728
1363
+ 369981
1364
+ 370068
1365
+ 370316
1366
+ 370734
1367
+ 370979
1368
+ 371204
1369
+ 371420
1370
+ 371695
1371
+ 372070
1372
+ 372137
1373
+ 372378
1374
+ 372586
1375
+ 372674
1376
+ 372792
1377
+ 373121
1378
+ 373209
1379
+ 374690
1380
+ 374799
1381
+ 375291
1382
+ 375891
1383
+ 376537
1384
+ 377805
1385
+ 379337
1386
+ 380755
1387
+ 381321
1388
+ 382119
1389
+ 384406
1390
+ 384845
1391
+ 384985
1392
+ 385652
1393
+ 386653
1394
+ 387603
1395
+ 387662
1396
+ 387848
1397
+ 387864
1398
+ 388465
1399
+ 388588
1400
+ 388950
1401
+ 389258
1402
+ 389385
1403
+ 390484
1404
+ 390813
1405
+ 391101
1406
+ 391125
1407
+ 391481
1408
+ 391662
1409
+ 392195
1410
+ 392350
1411
+ 392393
1412
+ 392488
1413
+ 392501
1414
+ 392905
1415
+ 392936
1416
+ 393203
1417
+ 393268
1418
+ 393420
1419
+ 393462
1420
+ 393696
1421
+ 393881
1422
+ 393954
1423
+ 394021
1424
+ 394095
1425
+ 395038
1426
+ 395382
1427
+ 395538
1428
+ 395786
1429
+ 396391
1430
+ 397090
1431
+ 397417
1432
+ 397592
1433
+ 398258
1434
+ 398335
1435
+ 398447
1436
+ 399364
1437
+ 399414
1438
+ 399527
1439
+ 399617
1440
+ 399970
1441
+ 400311
1442
+ 400631
1443
+ 400692
1444
+ 400696
1445
+ 400803
1446
+ 401287
1447
+ 401640
1448
+ 401878
1449
+ 402075
1450
+ 402318
1451
+ 402417
1452
+ 402427
1453
+ 403095
1454
+ 403361
1455
+ 403388
1456
+ 403454
1457
+ 403793
1458
+ 403954
1459
+ 404051
1460
+ 404202
1461
+ 404713
1462
+ 405036
1463
+ 405090
1464
+ 405238
1465
+ 405310
1466
+ 405330
1467
+ 405660
1468
+ 405737
1469
+ 405867
1470
+ 405985
1471
+ 406140
1472
+ 406181
1473
+ 406205
1474
+ 406351
1475
+ 406386
1476
+ 406525
1477
+ 406576
1478
+ 406718
1479
+ 406923
1480
+ 406974
1481
+ 407102
1482
+ 407131
1483
+ 407274
1484
+ 407662
1485
+ 407869
1486
+ 408134
1487
+ 408149
1488
+ 408275
1489
+ 408419
1490
+ 408427
1491
+ 408563
1492
+ 408696
1493
+ 408739
1494
+ 408765
1495
+ 408945
1496
+ 409071
1497
+ 409143
1498
+ 409207
1499
+ 409557
1500
+ 409694
1501
+ 409854
1502
+ 409887
1503
+ 411660
1504
+ 411953
1505
+ 412319
1506
+ 412340
1507
+ 412352
1508
+ 412532
1509
+ 412597
1510
+ 412982
1511
+ 413040
1512
+ 413079
1513
+ 413404
1514
+ 413858
1515
+ 413905
1516
+ 414155
1517
+ 414276
1518
+ 414714
1519
+ 414733
1520
+ 414757
1521
+ 414799
1522
+ 415165
1523
+ 415474
1524
+ 415500
1525
+ 415815
1526
+ 415962
1527
+ 416228
1528
+ 416457
1529
+ 416846
1530
+ 417040
1531
+ 417080
1532
+ 417362
1533
+ 417404
1534
+ 417570
1535
+ 417664
1536
+ 417902
1537
+ 417946
1538
+ 418032
1539
+ 418063
1540
+ 418165
1541
+ 418195
1542
+ 418353
1543
+ 418423
1544
+ 418552
1545
+ 418633
1546
+ 418752
1547
+ 418926
1548
+ 418977
1549
+ 419326
1550
+ 419333
1551
+ 419692
1552
+ 420304
1553
+ 420365
1554
+ 420400
1555
+ 420673
1556
+ 420867
1557
+ 420934
1558
+ 420980
1559
+ 421145
1560
+ 421437
1561
+ 421813
1562
+ 422152
1563
+ 422268
1564
+ 422398
1565
+ 422501
1566
+ 422600
1567
+ 422609
1568
+ 422624
1569
+ 422827
1570
+ 422893
1571
+ 422955
1572
+ 423178
1573
+ 423608
1574
+ 423646
1575
+ 423878
1576
+ 424045
1577
+ 424092
1578
+ 424408
1579
+ 424449
1580
+ 424509
1581
+ 424753
1582
+ 424898
1583
+ 425072
1584
+ 425330
1585
+ 425375
1586
+ 425505
1587
+ 425688
1588
+ 426214
1589
+ 426347
1590
+ 426442
1591
+ 426504
1592
+ 426622
1593
+ 427086
1594
+ 427323
1595
+ 427340
1596
+ 427532
1597
+ 427730
1598
+ 428113
1599
+ 428424
1600
+ 428773
1601
+ 428819
1602
+ 428847
1603
+ 428941
1604
+ 429664
1605
+ 429675
1606
+ 430142
1607
+ 430229
1608
+ 430985
1609
+ 430989
1610
+ 431481
1611
+ 431602
1612
+ 432161
1613
+ 432602
1614
+ 432653
1615
+ 432680
1616
+ 432811
1617
+ 432874
1618
+ 433220
1619
+ 433415
1620
+ 433549
1621
+ 433579
1622
+ 433680
1623
+ 433685
1624
+ 433691
1625
+ 434369
1626
+ 434462
1627
+ 434835
1628
+ 435412
1629
+ 435541
1630
+ 435794
1631
+ 436091
1632
+ 436100
1633
+ 436249
1634
+ 436475
1635
+ 436586
1636
+ 436602
1637
+ 436844
1638
+ 436847
1639
+ 436924
1640
+ 437165
1641
+ 437291
1642
+ 437324
1643
+ 437671
1644
+ 437752
1645
+ 437914
1646
+ 438058
1647
+ 438286
1648
+ 438316
1649
+ 438324
1650
+ 438455
1651
+ 439061
1652
+ 439176
1653
+ 439375
1654
+ 439731
1655
+ 440098
1656
+ 440269
1657
+ 440362
1658
+ 440802
1659
+ 441128
1660
+ 441409
1661
+ 441734
1662
+ 442377
1663
+ 442455
1664
+ 442491
1665
+ 442525
1666
+ 442593
1667
+ 442673
1668
+ 443027
1669
+ 443081
1670
+ 443489
1671
+ 444350
1672
+ 444790
1673
+ 445094
1674
+ 445494
1675
+ 445573
1676
+ 445714
1677
+ 445908
1678
+ 446834
1679
+ 447169
1680
+ 447340
1681
+ 447540
1682
+ 447551
1683
+ 447648
1684
+ 447797
1685
+ 448035
1686
+ 448123
1687
+ 448183
1688
+ 448630
1689
+ 448745
1690
+ 448975
1691
+ 448976
1692
+ 449235
1693
+ 449244
1694
+ 449442
1695
+ 449750
1696
+ 450093
1697
+ 450681
1698
+ 450788
1699
+ 450851
1700
+ 450854
1701
+ 450921
1702
+ 451070
1703
+ 451406
1704
+ 451484
1705
+ 451609
1706
+ 452200
1707
+ 452572
1708
+ 453175
1709
+ 453220
1710
+ 453270
1711
+ 453451
1712
+ 453705
1713
+ 453851
1714
+ 453856
1715
+ 453869
1716
+ 454018
1717
+ 454258
1718
+ 454872
1719
+ 455273
1720
+ 455456
1721
+ 455659
1722
+ 455743
1723
+ 455776
1724
+ 455782
1725
+ 455793
1726
+ 455853
1727
+ 455862
1728
+ 456016
1729
+ 456305
1730
+ 456443
1731
+ 456551
1732
+ 456734
1733
+ 457622
1734
+ 457714
1735
+ 457809
1736
+ 457842
1737
+ 458064
1738
+ 458110
1739
+ 458235
1740
+ 458771
1741
+ 458774
1742
+ 458885
1743
+ 459280
1744
+ 459291
1745
+ 459481
1746
+ 459707
1747
+ 459948
1748
+ 460162
1749
+ 460403
1750
+ 461078
1751
+ 461281
1752
+ 461491
1753
+ 461601
1754
+ 462301
1755
+ 462765
1756
+ 462979
1757
+ 463133
1758
+ 463230
1759
+ 463373
1760
+ 463443
1761
+ 463635
1762
+ 464440
1763
+ 464484
1764
+ 464663
1765
+ 464860
1766
+ 466162
1767
+ 466202
1768
+ 466252
1769
+ 466335
1770
+ 466640
1771
+ 466738
1772
+ 466774
1773
+ 467274
1774
+ 467597
1775
+ 467612
1776
+ 467683
1777
+ 468762
1778
+ 468907
1779
+ 469535
1780
+ 469819
1781
+ 469873
1782
+ 470001
1783
+ 470385
1784
+ 470459
1785
+ 470611
1786
+ 470982
1787
+ 471007
1788
+ 471197
1789
+ 471705
1790
+ 471850
1791
+ 471983
1792
+ 472024
1793
+ 472359
1794
+ 472448
1795
+ 473319
1796
+ 473361
1797
+ 473394
1798
+ 473492
1799
+ 473886
1800
+ 473935
1801
+ 474234
1802
+ 474419
1803
+ 474659
1804
+ 474873
1805
+ 475402
1806
+ 476483
1807
+ 476724
1808
+ 476807
1809
+ 476947
1810
+ 476977
1811
+ 477100
1812
+ 477286
1813
+ 477309
1814
+ 477380
1815
+ 477639
1816
+ 477648
1817
+ 478054
1818
+ 478063
1819
+ 478220
1820
+ 478295
1821
+ 478359
1822
+ 478691
1823
+ 478827
1824
+ 478981
1825
+ 479284
1826
+ 479379
1827
+ 479525
1828
+ 479570
1829
+ 480064
1830
+ 480504
1831
+ 480536
1832
+ 480932
1833
+ 481297
1834
+ 481341
1835
+ 481387
1836
+ 481961
1837
+ 482412
1838
+ 482496
1839
+ 482666
1840
+ 482808
1841
+ 483028
1842
+ 483178
1843
+ 483241
1844
+ 483521
1845
+ 483795
1846
+ 484454
1847
+ 484551
1848
+ 485287
1849
+ 485558
1850
+ 486274
1851
+ 486370
1852
+ 486512
1853
+ 486623
1854
+ 487279
1855
+ 487569
1856
+ 488021
1857
+ 488198
1858
+ 488345
1859
+ 488416
1860
+ 488676
1861
+ 488711
1862
+ 488825
1863
+ 489257
1864
+ 489374
1865
+ 489513
1866
+ 489858
1867
+ 489931
1868
+ 490505
1869
+ 490802
1870
+ 490883
1871
+ 490903
1872
+ 491585
1873
+ 492681
1874
+ 492853
1875
+ 492988
1876
+ 493508
1877
+ 493543
1878
+ 494086
1879
+ 494346
1880
+ 494730
1881
+ 495018
1882
+ 495082
1883
+ 495483
1884
+ 495680
1885
+ 496175
1886
+ 496244
1887
+ 496276
1888
+ 496717
1889
+ 497107
1890
+ 497132
1891
+ 497360
1892
+ 497470
1893
+ 497536
1894
+ 497596
1895
+ 497757
1896
+ 498398
1897
+ 498478
1898
+ 499068
1899
+ 499126
1900
+ 499413
1901
+ 499568
1902
+ 499818
1903
+ 499904
1904
+ 503381
1905
+ 503390
1906
+ 503401
1907
+ 503580
1908
+ 503607
1909
+ 503674
1910
+ 503833
1911
+ 504044
1912
+ 504306
1913
+ 504335
1914
+ 505107
1915
+ 505152
1916
+ 505171
1917
+ 505541
1918
+ 505810
1919
+ 506025
1920
+ 506181
1921
+ 506438
1922
+ 506579
1923
+ 506985
1924
+ 507086
1925
+ 507087
1926
+ 507221
1927
+ 507381
1928
+ 507434
1929
+ 507901
1930
+ 507934
1931
+ 508104
1932
+ 508316
1933
+ 508855
1934
+ 509111
1935
+ 509114
1936
+ 509730
1937
+ 509907
1938
+ 510018
1939
+ 510152
1940
+ 510158
1941
+ 510229
1942
+ 510444
1943
+ 510513
1944
+ 510858
1945
+ 510867
1946
+ 510893
1947
+ 511101
1948
+ 511330
1949
+ 511367
1950
+ 511417
1951
+ 511837
1952
+ 511861
1953
+ 512087
1954
+ 512278
1955
+ 512405
1956
+ 512564
1957
+ 512685
1958
+ 512807
1959
+ 512825
1960
+ 513061
1961
+ 513397
1962
+ 513779
1963
+ 514767
1964
+ 514851
1965
+ 515185
1966
+ 515317
1967
+ 515335
1968
+ 515573
1969
+ 515813
1970
+ 516029
1971
+ 516413
1972
+ 517085
1973
+ 517117
1974
+ 517245
1975
+ 517386
1976
+ 517516
1977
+ 518675
1978
+ 518940
1979
+ 519145
1980
+ 520184
1981
+ 520627
1982
+ 520636
1983
+ 520816
1984
+ 521018
1985
+ 521402
1986
+ 521801
1987
+ 521851
1988
+ 522076
1989
+ 522151
1990
+ 522953
1991
+ 523062
1992
+ 523413
1993
+ 523621
1994
+ 523952
1995
+ 524116
1996
+ 524166
1997
+ 524332
1998
+ 524447
1999
+ 524699
2000
+ 524722
2001
+ 524733
2002
+ 524835
2003
+ 524848
2004
+ 525047
2005
+ 525467
2006
+ 525534
2007
+ 525660
2008
+ 525779
2009
+ 525868
2010
+ 526013
2011
+ 526331
2012
+ 526671
2013
+ 526984
2014
+ 527568
2015
+ 527625
2016
+ 527769
2017
+ 527853
2018
+ 528117
2019
+ 528760
2020
+ 528841
2021
+ 529090
2022
+ 529230
2023
+ 529918
2024
+ 530572
2025
+ 530601
2026
+ 530602
2027
+ 530611
2028
+ 531142
2029
+ 531490
2030
+ 531676
2031
+ 532142
2032
+ 533105
2033
+ 533398
2034
+ 534305
2035
+ 534617
2036
+ 534941
2037
+ 535142
2038
+ 535421
2039
+ 535599
2040
+ 535627
2041
+ 535743
2042
+ 536480
2043
+ 536654
2044
+ 536791
2045
+ 536995
2046
+ 537301
2047
+ 537410
2048
+ 537505
2049
+ 537526
2050
+ 537706
2051
+ 537761
2052
+ 537825
2053
+ 537995
2054
+ 538309
2055
+ 538333
2056
+ 538340
2057
+ 538570
2058
+ 539278
2059
+ 539601
2060
+ 539648
2061
+ 539957
2062
+ 540109
2063
+ 540306
2064
+ 540432
2065
+ 540456
2066
+ 540906
2067
+ 540983
2068
+ 541135
2069
+ 541272
2070
+ 541274
2071
+ 541425
2072
+ 541557
2073
+ 541948
2074
+ 541969
2075
+ 542431
2076
+ 542806
2077
+ 543251
2078
+ 543644
2079
+ 543813
2080
+ 543849
2081
+ 543951
2082
+ 544060
2083
+ 544123
2084
+ 544260
2085
+ 544277
2086
+ 544308
2087
+ 544319
2088
+ 544745
2089
+ 544811
2090
+ 544974
2091
+ 545052
2092
+ 545359
2093
+ 545450
2094
+ 545575
2095
+ 545847
2096
+ 546459
2097
+ 546825
2098
+ 546956
2099
+ 547018
2100
+ 547089
2101
+ 547139
2102
+ 547301
2103
+ 547820
2104
+ 548036
2105
+ 548099
2106
+ 548254
2107
+ 548475
2108
+ 548673
2109
+ 549135
2110
+ 549219
2111
+ 549235
2112
+ 549342
2113
+ 549731
2114
+ 549738
2115
+ 550331
2116
+ 550565
2117
+ 550609
2118
+ 551119
2119
+ 551309
2120
+ 551413
2121
+ 551819
2122
+ 551860
2123
+ 552868
2124
+ 554511
2125
+ 554738
2126
+ 555179
2127
+ 555458
2128
+ 555558
2129
+ 555590
2130
+ 555750
2131
+ 555850
2132
+ 556144
2133
+ 556166
2134
+ 556217
2135
+ 556248
2136
+ 556307
2137
+ 556476
2138
+ 556489
2139
+ 556587
2140
+ 556952
2141
+ 556976
2142
+ 557157
2143
+ 557401
2144
+ 557417
2145
+ 557492
2146
+ 558046
2147
+ 558263
2148
+ 558448
2149
+ 558548
2150
+ 559009
2151
+ 559018
2152
+ 559198
2153
+ 559318
2154
+ 559507
2155
+ 559607
2156
+ 559709
2157
+ 559771
2158
+ 559959
2159
+ 560059
2160
+ 560245
2161
+ 560357
2162
+ 560419
2163
+ 560673
2164
+ 561448
2165
+ 562594
2166
+ 562821
2167
+ 562827
2168
+ 563119
2169
+ 563347
2170
+ 563359
2171
+ 563652
2172
+ 563771
2173
+ 563943
2174
+ 563995
2175
+ 564509
2176
+ 564668
2177
+ 564707
2178
+ 565231
2179
+ 565696
2180
+ 565856
2181
+ 565868
2182
+ 565915
2183
+ 566174
2184
+ 566335
2185
+ 566946
2186
+ 567159
2187
+ 567443
2188
+ 567452
2189
+ 567630
2190
+ 567714
2191
+ 567759
2192
+ 567895
2193
+ 568526
2194
+ 568585
2195
+ 568649
2196
+ 568703
2197
+ 568709
2198
+ 568841
2199
+ 568895
2200
+ 569473
2201
+ 569507
2202
+ 569555
2203
+ 569674
2204
+ 569689
2205
+ 569939
2206
+ 570023
2207
+ 570068
2208
+ 570070
2209
+ 570725
2210
+ 570905
2211
+ 570979
2212
+ 571103
2213
+ 571237
2214
+ 571474
2215
+ 571696
2216
+ 571954
2217
+ 572286
2218
+ 572517
2219
+ 572978
2220
+ 573157
2221
+ 573452
2222
+ 573899
2223
+ 573954
2224
+ 574002
2225
+ 574051
2226
+ 574317
2227
+ 574547
2228
+ 574569
2229
+ 574730
2230
+ 574944
2231
+ 575096
2232
+ 575146
2233
+ 575268
2234
+ 575407
2235
+ 575492
2236
+ 575616
2237
+ 576195
2238
+ 576312
2239
+ 576360
2240
+ 576452
2241
+ 576601
2242
+ 576822
2243
+ 576851
2244
+ 577131
2245
+ 577167
2246
+ 577511
2247
+ 577813
2248
+ 577930
2249
+ 578100
2250
+ 578362
2251
+ 578607
2252
+ 578735
2253
+ 578783
2254
+ 579133
2255
+ 579479
2256
+ 580313
2257
+ 580411
2258
+ 580450
2259
+ 580483
2260
+ 581521
2261
+ 581552
2262
+ 581666
2263
+ 581801
2264
+ 581975
2265
+ 582146
2266
+ 582557
2267
+ 582641
2268
+ 582705
2269
+ 582848
2270
+ 583234
2271
+ 583325
2272
+ 583369
2273
+ 583611
2274
+ 583686
2275
+ 583766
2276
+ 583798
2277
+ 583916
2278
+ 584500
2279
+ 584569
2280
+ 584592
2281
+ 584695
2282
+ 584727
2283
+ 584905
2284
+ 585165
2285
+ 585344
2286
+ 585378
2287
+ 585680
2288
+ 585743
2289
+ 585806
2290
+ 586268
2291
+ 586740
2292
+ 586785
2293
+ 586790
2294
+ 586916
2295
+ 587326
2296
+ 587524
2297
+ 587674
2298
+ 587853
2299
+ 588122
2300
+ 588627
2301
+ 588775
2302
+ 588829
2303
+ 588888
2304
+ 589423
2305
+ 589564
2306
+ 589586
2307
+ 589777
2308
+ 589903
2309
+ 590433
2310
+ 590861
2311
+ 590945
2312
+ 591026
2313
+ 591310
2314
+ 591898
2315
+ 591940
2316
+ 591993
2317
+ 592192
2318
+ 592220
2319
+ 592235
2320
+ 592495
2321
+ 592601
2322
+ 592672
2323
+ 593135
2324
+ 593275
2325
+ 593541
2326
+ 593732
2327
+ 593792
2328
+ 594105
2329
+ 594295
2330
+ 594793
2331
+ 594831
2332
+ 594930
2333
+ 595236
2334
+ 595568
2335
+ 595577
2336
+ 596088
2337
+ 596130
2338
+ 596282
2339
+ 596468
2340
+ 596716
2341
+ 597384
2342
+ 597395
2343
+ 597870
2344
+ 598802
2345
+ 599524
2346
+ 599550
2347
+ 599720
2348
+ 600231
2349
+ 600350
2350
+ 601128
2351
+ 601624
2352
+ 601629
2353
+ 601684
2354
+ 602352
2355
+ 602413
2356
+ 602652
2357
+ 602957
2358
+ 603031
2359
+ 603050
2360
+ 603773
2361
+ 604113
2362
+ 604153
2363
+ 604229
2364
+ 604619
2365
+ 604628
2366
+ 604673
2367
+ 604954
2368
+ 605169
2369
+ 605363
2370
+ 605467
2371
+ 605648
2372
+ 605651
2373
+ 606117
2374
+ 606944
2375
+ 607292
2376
+ 607338
2377
+ 607374
2378
+ 607599
2379
+ 607855
2380
+ 608197
2381
+ 608323
2382
+ 608557
2383
+ 609024
2384
+ 609104
2385
+ 609469
2386
+ 609628
2387
+ 609799
2388
+ 609956
2389
+ 610056
2390
+ 610128
2391
+ 610132
2392
+ 610190
2393
+ 610425
2394
+ 610716
2395
+ 610898
2396
+ 610940
2397
+ 611152
2398
+ 611199
2399
+ 611271
2400
+ 611366
2401
+ 611468
2402
+ 611747
2403
+ 612471
2404
+ 612670
2405
+ 612846
2406
+ 613179
2407
+ 613214
2408
+ 613233
2409
+ 613318
2410
+ 613694
2411
+ 613727
2412
+ 613755
2413
+ 613852
2414
+ 613870
2415
+ 614047
2416
+ 614069
2417
+ 614121
2418
+ 614186
2419
+ 614286
2420
+ 614409
2421
+ 614598
2422
+ 615219
2423
+ 615383
2424
+ 615457
2425
+ 615624
2426
+ 616045
2427
+ 616331
2428
+ 616415
2429
+ 616447
2430
+ 617167
2431
+ 617246
2432
+ 617611
2433
+ 617795
2434
+ 617968
2435
+ 618223
2436
+ 618408
2437
+ 618486
2438
+ 618818
2439
+ 618979
2440
+ 619087
2441
+ 619159
2442
+ 619675
2443
+ 619805
2444
+ 620992
2445
+ 621419
2446
+ 622100
2447
+ 622658
2448
+ 622725
2449
+ 622734
2450
+ 622893
2451
+ 623281
2452
+ 623857
2453
+ 624143
2454
+ 624176
2455
+ 624199
2456
+ 624503
2457
+ 624644
2458
+ 624790
2459
+ 624876
2460
+ 625022
2461
+ 625205
2462
+ 625458
2463
+ 625782
2464
+ 626005
2465
+ 626232
2466
+ 626318
2467
+ 626462
2468
+ 626701
2469
+ 626918
2470
+ 627085
2471
+ 627323
2472
+ 627513
2473
+ 628056
2474
+ 628085
2475
+ 628532
2476
+ 630318
2477
+ 630391
2478
+ 630905
2479
+ 631724
2480
+ 632055
2481
+ 632106
2482
+ 632192
2483
+ 632394
2484
+ 632455
2485
+ 632536
2486
+ 632625
2487
+ 632726
2488
+ 632825
2489
+ 632923
2490
+ 633153
2491
+ 633350
2492
+ 633375
2493
+ 633399
2494
+ 633617
2495
+ 633635
2496
+ 633916
2497
+ 633986
2498
+ 633994
2499
+ 634038
2500
+ 634113
2501
+ 634126
2502
+ 634174
2503
+ 634412
2504
+ 634489
2505
+ 634583
2506
+ 635044
2507
+ 635058
2508
+ 635079
2509
+ 635125
2510
+ 635150
2511
+ 635237
2512
+ 635497
2513
+ 635626
2514
+ 635647
2515
+ 635823
2516
+ 636188
2517
+ 636434
2518
+ 636437
2519
+ 636853
2520
+ 636929
2521
+ 636949
2522
+ 637208
2523
+ 637234
2524
+ 637254
2525
+ 637459
2526
+ 637576
2527
+ 638503
2528
+ 638723
2529
+ 638795
2530
+ 638849
2531
+ 638928
2532
+ 639084
2533
+ 639163
2534
+ 639412
2535
+ 639545
2536
+ 639560
2537
+ 640103
2538
+ 640232
2539
+ 641156
2540
+ 641284
2541
+ 641293
2542
+ 641583
2543
+ 641618
2544
+ 642032
2545
+ 642352
2546
+ 643359
2547
+ 643561
2548
+ 643572
2549
+ 644023
2550
+ 644658
2551
+ 644746
2552
+ 645024
2553
+ 645252
2554
+ 645343
2555
+ 645472
2556
+ 645604
2557
+ 645892
2558
+ 646071
2559
+ 646179
2560
+ 646354
2561
+ 646623
2562
+ 647260
2563
+ 647503
2564
+ 647687
2565
+ 647872
2566
+ 647876
2567
+ 647949
2568
+ 648049
2569
+ 648119
2570
+ 648877
2571
+ 649110
2572
+ 649200
2573
+ 649294
2574
+ 649451
2575
+ 649640
2576
+ 649763
2577
+ 649893
2578
+ 650076
2579
+ 650378
2580
+ 650462
2581
+ 651187
2582
+ 652556
2583
+ 652912
2584
+ 652961
2585
+ 653041
2586
+ 653054
2587
+ 653092
2588
+ 653187
2589
+ 654459
2590
+ 654633
2591
+ 655046
2592
+ 655057
2593
+ 656250
2594
+ 656345
2595
+ 656371
2596
+ 656376
2597
+ 656602
2598
+ 656859
2599
+ 657091
2600
+ 657204
2601
+ 657264
2602
+ 657974
2603
+ 658372
2604
+ 658498
2605
+ 658667
2606
+ 659182
2607
+ 659230
2608
+ 659247
2609
+ 659929
2610
+ 660046
2611
+ 660220
2612
+ 660479
2613
+ 660534
2614
+ 660672
2615
+ 660803
2616
+ 660957
2617
+ 660999
2618
+ 661028
2619
+ 661076
2620
+ 661398
2621
+ 661945
2622
+ 662016
2623
+ 662282
2624
+ 662334
2625
+ 662436
2626
+ 662524
2627
+ 663006
2628
+ 663131
2629
+ 663388
2630
+ 663679
2631
+ 663771
2632
+ 663820
2633
+ 663890
2634
+ 663950
2635
+ 664138
2636
+ 664194
2637
+ 665009
2638
+ 665231
2639
+ 665972
2640
+ 666694
2641
+ 666792
2642
+ 667136
2643
+ 667373
2644
+ 667535
2645
+ 667932
2646
+ 669046
2647
+ 669288
2648
+ 669427
2649
+ 669444
2650
+ 669800
2651
+ 669979
2652
+ 670022
2653
+ 670142
2654
+ 670437
2655
+ 670476
2656
+ 670600
2657
+ 670829
2658
+ 671219
2659
+ 671579
2660
+ 671692
2661
+ 672109
2662
+ 672352
2663
+ 672429
2664
+ 672433
2665
+ 672753
2666
+ 673143
2667
+ 673984
2668
+ 674595
2669
+ 674702
2670
+ 674914
2671
+ 675320
2672
+ 675719
2673
+ 676275
2674
+ 676454
2675
+ 677212
2676
+ 677460
2677
+ 677519
2678
+ 677672
2679
+ 677936
2680
+ 678176
2681
+ 678913
2682
+ 679167
2683
+ 679360
2684
+ 679390
2685
+ 679658
2686
+ 679878
2687
+ 680102
2688
+ 680250
2689
+ 680324
2690
+ 680373
2691
+ 680490
2692
+ 680514
2693
+ 680951
2694
+ 681264
2695
+ 681514
2696
+ 681791
2697
+ 681944
2698
+ 682025
2699
+ 682105
2700
+ 682190
2701
+ 682205
2702
+ 682365
2703
+ 682425
2704
+ 682626
2705
+ 682910
2706
+ 683045
2707
+ 683193
2708
+ 684459
2709
+ 684780
2710
+ 684977
2711
+ 685091
2712
+ 685177
2713
+ 685591
2714
+ 685717
2715
+ 686260
2716
+ 686290
2717
+ 686469
2718
+ 686541
2719
+ 686739
2720
+ 686746
2721
+ 687245
2722
+ 687375
2723
+ 687615
2724
+ 687632
2725
+ 688218
2726
+ 688644
2727
+ 688711
2728
+ 688739
2729
+ 689223
2730
+ 689700
2731
+ 689851
2732
+ 689885
2733
+ 690010
2734
+ 690508
2735
+ 690565
2736
+ 690606
2737
+ 690705
2738
+ 690801
2739
+ 690956
2740
+ 691004
2741
+ 691055
2742
+ 691141
2743
+ 691507
2744
+ 691709
2745
+ 692494
2746
+ 692577
2747
+ 692955
2748
+ 693101
2749
+ 693152
2750
+ 693162
2751
+ 693297
2752
+ 693447
2753
+ 693469
2754
+ 693636
2755
+ 693642
2756
+ 693736
2757
+ 694063
2758
+ 694560
2759
+ 694561
2760
+ 694678
2761
+ 694726
2762
+ 694845
2763
+ 695238
2764
+ 695240
2765
+ 695993
2766
+ 696217
2767
+ 696242
2768
+ 696312
2769
+ 696404
2770
+ 696677
2771
+ 696738
2772
+ 696918
2773
+ 697780
2774
+ 697972
2775
+ 697983
2776
+ 698445
2777
+ 698719
2778
+ 698828
2779
+ 699243
2780
+ 699510
2781
+ 699837
2782
+ 699872
2783
+ 699873
2784
+ 700224
2785
+ 700618
2786
+ 700641
2787
+ 700835
2788
+ 700871
2789
+ 701335
2790
+ 701345
2791
+ 701390
2792
+ 701663
2793
+ 702790
2794
+ 702792
2795
+ 702855
2796
+ 703211
2797
+ 703268
2798
+ 703270
2799
+ 703383
2800
+ 703765
2801
+ 704072
2802
+ 704080
2803
+ 704223
2804
+ 704236
2805
+ 704398
2806
+ 705279
2807
+ 705681
2808
+ 705687
2809
+ 706167
2810
+ 706215
2811
+ 706342
2812
+ 706950
2813
+ 707513
2814
+ 707670
2815
+ 707721
2816
+ 707835
2817
+ 708038
2818
+ 708438
2819
+ 708517
2820
+ 708739
2821
+ 708781
2822
+ 708904
2823
+ 709342
2824
+ 709559
2825
+ 709560
2826
+ 709802
2827
+ 709936
2828
+ 710297
2829
+ 710755
2830
+ 710914
2831
+ 711682
2832
+ 711710
2833
+ 711759
2834
+ 711803
2835
+ 711811
2836
+ 711840
2837
+ 712545
2838
+ 712832
2839
+ 712944
2840
+ 713134
2841
+ 713360
2842
+ 713448
2843
+ 714636
2844
+ 714672
2845
+ 714678
2846
+ 714709
2847
+ 715189
2848
+ 715508
2849
+ 715588
2850
+ 716641
2851
+ 717563
2852
+ 717751
2853
+ 717763
2854
+ 717845
2855
+ 718112
2856
+ 718444
2857
+ 718782
2858
+ 719411
2859
+ 719488
2860
+ 719749
2861
+ 720013
2862
+ 720261
2863
+ 721409
2864
+ 721885
2865
+ 722352
2866
+ 722413
2867
+ 722515
2868
+ 722615
2869
+ 722981
2870
+ 723144
2871
+ 723781
2872
+ 724121
2873
+ 724275
2874
+ 724410
2875
+ 724571
2876
+ 724579
2877
+ 724680
2878
+ 724733
2879
+ 724872
2880
+ 724887
2881
+ 724947
2882
+ 725047
2883
+ 725867
2884
+ 725951
2885
+ 726076
2886
+ 726098
2887
+ 726614
2888
+ 727224
2889
+ 727551
2890
+ 727699
2891
+ 727707
2892
+ 727765
2893
+ 727779
2894
+ 727837
2895
+ 728060
2896
+ 728110
2897
+ 728150
2898
+ 728460
2899
+ 728823
2900
+ 728836
2901
+ 729173
2902
+ 729508
2903
+ 729672
2904
+ 729697
2905
+ 730229
2906
+ 730278
2907
+ 730626
2908
+ 731545
2909
+ 731723
2910
+ 731736
2911
+ 731759
2912
+ 731886
2913
+ 731902
2914
+ 732288
2915
+ 732448
2916
+ 732618
2917
+ 732631
2918
+ 733186
2919
+ 733422
2920
+ 733510
2921
+ 733591
2922
+ 733692
2923
+ 733892
2924
+ 734198
2925
+ 734426
2926
+ 734979
2927
+ 735343
2928
+ 735384
2929
+ 735387
2930
+ 735895
2931
+ 736125
2932
+ 736347
2933
+ 736713
2934
+ 737512
2935
+ 737940
2936
+ 738162
2937
+ 738165
2938
+ 738422
2939
+ 738484
2940
+ 738525
2941
+ 738931
2942
+ 739599
2943
+ 739671
2944
+ 739743
2945
+ 739913
2946
+ 740263
2947
+ 740416
2948
+ 740624
2949
+ 740762
2950
+ 740852
2951
+ 740876
2952
+ 741267
2953
+ 741274
2954
+ 741392
2955
+ 741970
2956
+ 741977
2957
+ 742022
2958
+ 742446
2959
+ 742667
2960
+ 742822
2961
+ 742988
2962
+ 743046
2963
+ 743668
2964
+ 743675
2965
+ 743693
2966
+ 743696
2967
+ 743708
2968
+ 743868
2969
+ 744092
2970
+ 744109
2971
+ 744261
2972
+ 744764
2973
+ 744891
2974
+ 745402
2975
+ 745469
2976
+ 745559
2977
+ 745746
2978
+ 745794
2979
+ 745830
2980
+ 745944
2981
+ 746055
2982
+ 746065
2983
+ 746438
2984
+ 746785
2985
+ 747345
2986
+ 747720
2987
+ 747937
2988
+ 747985
2989
+ 748054
2990
+ 748321
2991
+ 748672
2992
+ 748771
2993
+ 748935
2994
+ 748997
2995
+ 749244
2996
+ 749267
2997
+ 749399
2998
+ 749752
2999
+ 749955
3000
+ 750111
3001
+ 750421
3002
+ 750487
3003
+ 750821
3004
+ 750946
3005
+ 751778
3006
+ 751797
3007
+ 752473
3008
+ 752700
3009
+ 753040
3010
+ 753071
3011
+ 753168
3012
+ 753214
3013
+ 753299
3014
+ 753479
3015
+ 753480
3016
+ 753517
3017
+ 754113
3018
+ 754166
3019
+ 754191
3020
+ 754509
3021
+ 754786
3022
+ 755040
3023
+ 755093
3024
+ 755275
3025
+ 755459
3026
+ 755465
3027
+ 755878
3028
+ 755907
3029
+ 756949
3030
+ 757275
3031
+ 757511
3032
+ 757644
3033
+ 758074
3034
+ 758519
3035
+ 758720
3036
+ 758901
3037
+ 758909
3038
+ 759021
3039
+ 759038
3040
+ 759062
3041
+ 759503
3042
+ 759515
3043
+ 760070
3044
+ 760367
3045
+ 760512
3046
+ 760638
3047
+ 760817
3048
+ 760908
3049
+ 760930
3050
+ 761032
3051
+ 761096
3052
+ 761388
3053
+ 761425
3054
+ 761627
3055
+ 761963
3056
+ 762059
3057
+ 762111
3058
+ 762296
3059
+ 762455
3060
+ 762558
3061
+ 762652
3062
+ 762761
3063
+ 763084
3064
+ 763619
3065
+ 763878
3066
+ 764139
3067
+ 764691
3068
+ 765147
3069
+ 765512
3070
+ 765583
3071
+ 766202
3072
+ 766238
3073
+ 766272
3074
+ 766301
3075
+ 766769
3076
+ 766804
3077
+ 766808
3078
+ 767248
3079
+ 767671
3080
+ 767745
3081
+ 768133
3082
+ 768411
3083
+ 769085
3084
+ 769630
3085
+ 770167
3086
+ 770233
3087
+ 770604
3088
+ 770894
3089
+ 771170
3090
+ 771239
3091
+ 771314
3092
+ 771694
3093
+ 771734
3094
+ 772055
3095
+ 772129
3096
+ 772864
3097
+ 772928
3098
+ 773155
3099
+ 773858
3100
+ 773924
3101
+ 773998
3102
+ 774087
3103
+ 774866
3104
+ 775138
3105
+ 775297
3106
+ 775343
3107
+ 775355
3108
+ 775457
3109
+ 776080
3110
+ 776122
3111
+ 776392
3112
+ 776465
3113
+ 776517
3114
+ 776576
3115
+ 776609
3116
+ 776700
3117
+ 777235
3118
+ 777297
3119
+ 777519
3120
+ 777792
3121
+ 778095
3122
+ 778139
3123
+ 778857
3124
+ 778890
3125
+ 778948
3126
+ 779475
3127
+ 779553
3128
+ 779674
3129
+ 780215
3130
+ 780297
3131
+ 780336
3132
+ 780613
3133
+ 780850
3134
+ 780993
3135
+ 781074
3136
+ 781877
3137
+ 782079
3138
+ 782253
3139
+ 782381
3140
+ 782417
3141
+ 782426
3142
+ 782549
3143
+ 782696
3144
+ 783098
3145
+ 783277
3146
+ 783433
3147
+ 783602
3148
+ 783687
3149
+ 783781
3150
+ 783822
3151
+ 783843
3152
+ 783963
3153
+ 783981
3154
+ 784549
3155
+ 784700
3156
+ 784805
3157
+ 784961
3158
+ 785176
3159
+ 785721
3160
+ 785772
3161
+ 786009
3162
+ 786021
3163
+ 786157
3164
+ 786375
3165
+ 786477
3166
+ 786520
3167
+ 786674
3168
+ 786786
3169
+ 786857
3170
+ 786918
3171
+ 786937
3172
+ 787255
3173
+ 787784
3174
+ 788035
3175
+ 788431
3176
+ 788484
3177
+ 788702
3178
+ 788851
3179
+ 789037
3180
+ 789292
3181
+ 789332
3182
+ 789439
3183
+ 789997
3184
+ 790059
3185
+ 790110
3186
+ 790178
3187
+ 790536
3188
+ 791140
3189
+ 791223
3190
+ 791629
3191
+ 791862
3192
+ 791916
3193
+ 792187
3194
+ 792463
3195
+ 792595
3196
+ 792688
3197
+ 792742
3198
+ 792789
3199
+ 792847
3200
+ 792900
3201
+ 792977
3202
+ 793475
3203
+ 794160
3204
+ 794319
3205
+ 794469
3206
+ 794625
3207
+ 794665
3208
+ 794893
3209
+ 795540
3210
+ 795951
3211
+ 795991
3212
+ 796056
3213
+ 796383
3214
+ 796812
3215
+ 798253
3216
+ 798284
3217
+ 798469
3218
+ 798883
3219
+ 798945
3220
+ 798967
3221
+ 800243
3222
+ 800318
3223
+ 800652
3224
+ 800792
3225
+ 800987
3226
+ 801059
3227
+ 801478
3228
+ 801907
3229
+ 802372
3230
+ 802634
3231
+ 802794
3232
+ 803237
3233
+ 803306
3234
+ 803599
3235
+ 803861
3236
+ 804103
3237
+ 804197
3238
+ 804523
3239
+ 804687
3240
+ 804905
3241
+ 804996
3242
+ 805900
3243
+ 806574
3244
+ 806688
3245
+ 807585
3246
+ 807845
3247
+ 807880
3248
+ 808019
3249
+ 808200
3250
+ 808235
3251
+ 808362
3252
+ 808528
3253
+ 808716
3254
+ 808746
3255
+ 809556
3256
+ 809798
3257
+ 809909
3258
+ 809933
3259
+ 810210
3260
+ 810242
3261
+ 810270
3262
+ 810324
3263
+ 810394
3264
+ 810660
3265
+ 810680
3266
+ 811266
3267
+ 811852
3268
+ 812190
3269
+ 812387
3270
+ 812734
3271
+ 813193
3272
+ 813536
3273
+ 813605
3274
+ 813675
3275
+ 813899
3276
+ 813953
3277
+ 814282
3278
+ 814568
3279
+ 814699
3280
+ 814964
3281
+ 814987
3282
+ 815015
3283
+ 815243
3284
+ 815320
3285
+ 815420
3286
+ 815421
3287
+ 815580
3288
+ 815618
3289
+ 815891
3290
+ 816289
3291
+ 816483
3292
+ 816893
3293
+ 817309
3294
+ 817349
3295
+ 817597
3296
+ 818421
3297
+ 818612
3298
+ 818798
3299
+ 818819
3300
+ 818842
3301
+ 819618
3302
+ 820027
3303
+ 820161
3304
+ 820267
3305
+ 820899
3306
+ 820973
3307
+ 821068
3308
+ 821372
3309
+ 822218
3310
+ 822585
3311
+ 822642
3312
+ 822649
3313
+ 822859
3314
+ 822937
3315
+ 823203
3316
+ 823421
3317
+ 823549
3318
+ 823596
3319
+ 824000
3320
+ 824080
3321
+ 824282
3322
+ 824371
3323
+ 824542
3324
+ 824920
3325
+ 824938
3326
+ 825147
3327
+ 825583
3328
+ 825948
3329
+ 825954
3330
+ 826153
3331
+ 826513
3332
+ 826518
3333
+ 827791
3334
+ 827801
3335
+ 828036
3336
+ 828093
3337
+ 828588
3338
+ 828596
3339
+ 828779
3340
+ 829025
3341
+ 829050
3342
+ 829087
3343
+ 829103
3344
+ 829425
3345
+ 830040
3346
+ 830531
3347
+ 830551
3348
+ 830649
3349
+ 830812
3350
+ 830973
3351
+ 831030
3352
+ 831052
3353
+ 831302
3354
+ 831315
3355
+ 831380
3356
+ 831474
3357
+ 831560
3358
+ 831601
3359
+ 831784
3360
+ 831815
3361
+ 831871
3362
+ 831962
3363
+ 832188
3364
+ 832508
3365
+ 832790
3366
+ 833268
3367
+ 833507
3368
+ 833579
3369
+ 834848
3370
+ 835206
3371
+ 835478
3372
+ 836044
3373
+ 836640
3374
+ 836832
3375
+ 837181
3376
+ 837202
3377
+ 837372
3378
+ 837375
3379
+ 837467
3380
+ 837476
3381
+ 837681
3382
+ 837740
3383
+ 838101
3384
+ 838116
3385
+ 838453
3386
+ 838845
3387
+ 839128
3388
+ 839137
3389
+ 839488
3390
+ 839528
3391
+ 839878
3392
+ 840053
3393
+ 840061
3394
+ 840445
3395
+ 840532
3396
+ 841020
3397
+ 841165
3398
+ 841521
3399
+ 841665
3400
+ 841919
3401
+ 841961
3402
+ 841980
3403
+ 842070
3404
+ 842108
3405
+ 842221
3406
+ 842223
3407
+ 842272
3408
+ 842333
3409
+ 842596
3410
+ 843140
3411
+ 843409
3412
+ 844128
3413
+ 844211
3414
+ 844390
3415
+ 844594
3416
+ 844658
3417
+ 845304
3418
+ 845529
3419
+ 845719
3420
+ 845790
3421
+ 845888
3422
+ 845892
3423
+ 846082
3424
+ 846291
3425
+ 846438
3426
+ 846513
3427
+ 846806
3428
+ 847415
3429
+ 847722
3430
+ 847726
3431
+ 848100
3432
+ 848432
3433
+ 848478
3434
+ 849142
3435
+ 849245
3436
+ 849337
3437
+ 849561
3438
+ 849596
3439
+ 850236
3440
+ 850361
3441
+ 850450
3442
+ 850555
3443
+ 850557
3444
+ 850820
3445
+ 850919
3446
+ 850957
3447
+ 851004
3448
+ 851425
3449
+ 851490
3450
+ 851813
3451
+ 852037
3452
+ 852179
3453
+ 853057
3454
+ 853344
3455
+ 853471
3456
+ 853646
3457
+ 853699
3458
+ 853882
3459
+ 853995
3460
+ 854085
3461
+ 854785
3462
+ 854862
3463
+ 855029
3464
+ 855031
3465
+ 855050
3466
+ 855546
3467
+ 855725
3468
+ 855727
3469
+ 855968
3470
+ 856171
3471
+ 856568
3472
+ 857943
3473
+ 857956
3474
+ 858391
3475
+ 858421
3476
+ 859229
3477
+ 859274
3478
+ 859376
3479
+ 859669
3480
+ 859870
3481
+ 860071
3482
+ 860078
3483
+ 860266
3484
+ 860462
3485
+ 860542
3486
+ 860573
3487
+ 860655
3488
+ 860942
3489
+ 861169
3490
+ 861403
3491
+ 861433
3492
+ 862345
3493
+ 862448
3494
+ 862640
3495
+ 862701
3496
+ 862742
3497
+ 862856
3498
+ 863112
3499
+ 863187
3500
+ 863387
3501
+ 863499
3502
+ 863623
3503
+ 863738
3504
+ 863817
3505
+ 864507
3506
+ 864905
3507
+ 865384
3508
+ 865426
3509
+ 865476
3510
+ 865518
3511
+ 865616
3512
+ 865660
3513
+ 865971
3514
+ 866101
3515
+ 866139
3516
+ 866251
3517
+ 866428
3518
+ 867490
3519
+ 867947
3520
+ 868184
3521
+ 868410
3522
+ 868487
3523
+ 868525
3524
+ 868598
3525
+ 868919
3526
+ 868953
3527
+ 869035
3528
+ 869308
3529
+ 869348
3530
+ 869519
3531
+ 869759
3532
+ 869827
3533
+ 869891
3534
+ 870348
3535
+ 870422
3536
+ 870544
3537
+ 870693
3538
+ 870861
3539
+ 870875
3540
+ 871376
3541
+ 872081
3542
+ 872347
3543
+ 872632
3544
+ 872655
3545
+ 872777
3546
+ 872823
3547
+ 872855
3548
+ 872869
3549
+ 872946
3550
+ 873250
3551
+ 873886
3552
+ 873914
3553
+ 874299
3554
+ 874455
3555
+ 874691
3556
+ 874827
3557
+ 874876
3558
+ 874914
3559
+ 875417
3560
+ 875787
3561
+ 875796
3562
+ 875986
3563
+ 876924
3564
+ 877161
3565
+ 877453
3566
+ 877810
3567
+ 877845
3568
+ 877938
3569
+ 878367
3570
+ 878615
3571
+ 878817
3572
+ 878840
3573
+ 878959
3574
+ 879150
3575
+ 879155
3576
+ 879657
3577
+ 879747
3578
+ 879869
3579
+ 880527
3580
+ 880766
3581
+ 881582
3582
+ 881695
3583
+ 881723
3584
+ 882002
3585
+ 882141
3586
+ 882982
3587
+ 883282
3588
+ 883861
3589
+ 884533
3590
+ 884722
3591
+ 884870
3592
+ 884878
3593
+ 885081
3594
+ 885153
3595
+ 885184
3596
+ 885301
3597
+ 885308
3598
+ 885433
3599
+ 885505
3600
+ 885932
3601
+ 885986
3602
+ 886332
3603
+ 886382
3604
+ 887392
3605
+ 887395
3606
+ 887398
3607
+ 887906
3608
+ 888100
3609
+ 888559
3610
+ 888777
3611
+ 888796
3612
+ 888911
3613
+ 888934
3614
+ 888988
3615
+ 889046
3616
+ 889104
3617
+ 889289
3618
+ 890532
3619
+ 890890
3620
+ 891082
3621
+ 891498
3622
+ 891565
3623
+ 891719
3624
+ 892224
3625
+ 892329
3626
+ 892454
3627
+ 893271
3628
+ 893275
3629
+ 893642
3630
+ 893681
3631
+ 893789
3632
+ 894161
3633
+ 894610
3634
+ 895263
3635
+ 895932
3636
+ 896383
3637
+ 896479
3638
+ 896931
3639
+ 897240
3640
+ 897401
3641
+ 897476
3642
+ 897789
3643
+ 897910
3644
+ 897953
3645
+ 897981
3646
+ 898318
3647
+ 898631
3648
+ 898686
3649
+ 898714
3650
+ 899212
3651
+ 899423
3652
+ 899800
3653
+ 899869
3654
+ 900062
3655
+ 900076
3656
+ 900077
3657
+ 900164
3658
+ 900450
3659
+ 900599
3660
+ 900696
3661
+ 900731
3662
+ 900924
3663
+ 901206
3664
+ 901355
3665
+ 902657
3666
+ 902855
3667
+ 902919
3668
+ 902931
3669
+ 903097
3670
+ 903235
3671
+ 903479
3672
+ 903811
3673
+ 904007
3674
+ 904295
3675
+ 904389
3676
+ 904542
3677
+ 904727
3678
+ 905057
3679
+ 905479
3680
+ 905604
3681
+ 905707
3682
+ 905766
3683
+ 906126
3684
+ 906692
3685
+ 906901
3686
+ 907046
3687
+ 907127
3688
+ 907173
3689
+ 907334
3690
+ 907538
3691
+ 907997
3692
+ 908069
3693
+ 908154
3694
+ 908237
3695
+ 908316
3696
+ 908489
3697
+ 909048
3698
+ 909111
3699
+ 909176
3700
+ 909221
3701
+ 909273
3702
+ 909506
3703
+ 909547
3704
+ 909886
3705
+ 910150
3706
+ 910375
3707
+ 910622
3708
+ 910777
3709
+ 910818
3710
+ 910870
3711
+ 911032
3712
+ 911056
3713
+ 911605
3714
+ 912234
3715
+ 912879
3716
+ 912898
3717
+ 912899
3718
+ 912961
3719
+ 912992
3720
+ 913098
3721
+ 913137
3722
+ 913286
3723
+ 913374
3724
+ 913509
3725
+ 913568
3726
+ 913579
3727
+ 914321
3728
+ 914368
3729
+ 914406
3730
+ 914545
3731
+ 914637
3732
+ 914707
3733
+ 914771
3734
+ 914845
3735
+ 915305
3736
+ 915544
3737
+ 915762
3738
+ 915769
3739
+ 916186
3740
+ 916306
3741
+ 916901
3742
+ 917015
3743
+ 917022
3744
+ 917283
3745
+ 917334
3746
+ 917489
3747
+ 917536
3748
+ 917789
3749
+ 917825
3750
+ 918324
3751
+ 918424
3752
+ 918800
3753
+ 919310
3754
+ 919712
3755
+ 919913
3756
+ 920218
3757
+ 920458
3758
+ 920717
3759
+ 920753
3760
+ 920885
3761
+ 921173
3762
+ 921348
3763
+ 921621
3764
+ 921812
3765
+ 922024
3766
+ 922335
3767
+ 922389
3768
+ 922398
3769
+ 922593
3770
+ 924047
3771
+ 924398
3772
+ 924567
3773
+ 924844
3774
+ 924895
3775
+ 924978
3776
+ 925059
3777
+ 925571
3778
+ 925766
3779
+ 925951
3780
+ 926019
3781
+ 926064
3782
+ 926436
3783
+ 926700
3784
+ 926980
3785
+ 927196
3786
+ 927553
3787
+ 927989
3788
+ 928478
3789
+ 928567
3790
+ 928572
3791
+ 928753
3792
+ 929046
3793
+ 929372
3794
+ 929473
3795
+ 930124
3796
+ 930293
3797
+ 930326
3798
+ 930483
3799
+ 930534
3800
+ 930549
3801
+ 930621
3802
+ 930721
3803
+ 931147
3804
+ 931726
3805
+ 931772
3806
+ 931905
3807
+ 931940
3808
+ 932223
3809
+ 932495
3810
+ 932639
3811
+ 932735
3812
+ 932878
3813
+ 933132
3814
+ 933236
3815
+ 933551
3816
+ 933652
3817
+ 933742
3818
+ 933861
3819
+ 933946
3820
+ 934134
3821
+ 934223
3822
+ 934235
3823
+ 934795
3824
+ 934889
3825
+ 934964
3826
+ 935358
3827
+ 935362
3828
+ 935364
3829
+ 935707
3830
+ 935952
3831
+ 935973
3832
+ 936182
3833
+ 936273
3834
+ 936501
3835
+ 937427
3836
+ 937578
3837
+ 937947
3838
+ 938066
3839
+ 938140
3840
+ 938359
3841
+ 938773
3842
+ 938963
3843
+ 939020
3844
+ 939104
3845
+ 939473
3846
+ 939744
3847
+ 939866
3848
+ 940386
3849
+ 940916
3850
+ 940940
3851
+ 941219
3852
+ 941515
3853
+ 941749
3854
+ 941865
3855
+ 942221
3856
+ 942354
3857
+ 942651
3858
+ 942915
3859
+ 943170
3860
+ 943190
3861
+ 944181
3862
+ 944194
3863
+ 944231
3864
+ 944245
3865
+ 944451
3866
+ 944700
3867
+ 944949
3868
+ 945535
3869
+ 946428
3870
+ 946631
3871
+ 946747
3872
+ 946825
3873
+ 947466
3874
+ 947678
3875
+ 947785
3876
+ 947974
3877
+ 948351
3878
+ 948397
3879
+ 948452
3880
+ 948532
3881
+ 948653
3882
+ 948797
3883
+ 948829
3884
+ 949686
3885
+ 950139
3886
+ 950355
3887
+ 950799
3888
+ 951820
3889
+ 952047
3890
+ 952378
3891
+ 952388
3892
+ 952445
3893
+ 952452
3894
+ 952520
3895
+ 952658
3896
+ 952926
3897
+ 953020
3898
+ 953274
3899
+ 953332
3900
+ 953351
3901
+ 953355
3902
+ 953445
3903
+ 954144
3904
+ 954307
3905
+ 954455
3906
+ 954711
3907
+ 955093
3908
+ 955117
3909
+ 955220
3910
+ 955359
3911
+ 955911
3912
+ 956060
3913
+ 956403
3914
+ 956624
3915
+ 956993
3916
+ 957607
3917
+ 957688
3918
+ 958142
3919
+ 958311
3920
+ 958993
3921
+ 959034
3922
+ 959083
3923
+ 959228
3924
+ 959589
3925
+ 959854
3926
+ 960003
3927
+ 960265
3928
+ 960302
3929
+ 960397
3930
+ 960437
3931
+ 960566
3932
+ 961048
3933
+ 961097
3934
+ 961255
3935
+ 961579
3936
+ 961705
3937
+ 961921
3938
+ 961950
3939
+ 962443
3940
+ 962731
3941
+ 963564
3942
+ 963788
3943
+ 964054
3944
+ 964152
3945
+ 964577
3946
+ 965578
3947
+ 967106
3948
+ 968004
3949
+ 968071
3950
+ 968206
3951
+ 968310
3952
+ 968560
3953
+ 968608
3954
+ 968921
3955
+ 969023
3956
+ 969066
3957
+ 969264
3958
+ 969750
3959
+ 969974
3960
+ 970152
3961
+ 970242
3962
+ 970605
3963
+ 970824
3964
+ 970830
3965
+ 971213
3966
+ 971233
3967
+ 971378
3968
+ 971633
3969
+ 971653
3970
+ 971729
3971
+ 971904
3972
+ 972064
3973
+ 972699
3974
+ 973362
3975
+ 973731
3976
+ 973917
3977
+ 974201
3978
+ 974220
3979
+ 974670
3980
+ 974808
3981
+ 975040
3982
+ 975495
3983
+ 975688
3984
+ 975775
3985
+ 975997
3986
+ 976829
3987
+ 976941
3988
+ 977467
3989
+ 977770
3990
+ 977952
3991
+ 978057
3992
+ 978259
3993
+ 978605
3994
+ 978802
3995
+ 979054
3996
+ 979133
3997
+ 979713
3998
+ 979787
3999
+ 980168
4000
+ 980633
4001
+ 980726
4002
+ 980789
4003
+ 980811
4004
+ 981006
4005
+ 981400
4006
+ 982348
4007
+ 982481
4008
+ 983299
4009
+ 983438
4010
+ 983451
4011
+ 983499
4012
+ 983543
4013
+ 983708
4014
+ 984075
4015
+ 984178
4016
+ 984434
4017
+ 984499
4018
+ 984770
4019
+ 984774
4020
+ 984856
4021
+ 984930
4022
+ 984948
4023
+ 984992
4024
+ 985158
4025
+ 985165
4026
+ 985167
4027
+ 985173
4028
+ 985207
4029
+ 985259
4030
+ 985275
4031
+ 985304
4032
+ 985360
4033
+ 985371
4034
+ 985372
4035
+ 985431
4036
+ 985433
4037
+ 985461
4038
+ 985644
4039
+ 985653
4040
+ 985736
4041
+ 985752
4042
+ 985905
4043
+ 986068
4044
+ 986162
4045
+ 986197
4046
+ 986210
4047
+ 986316
4048
+ 986325
4049
+ 986411
4050
+ 986427
4051
+ 986472
4052
+ 986484
4053
+ 986494
4054
+ 986733
4055
+ 986791
4056
+ 986793
4057
+ 986852
4058
+ 986932
4059
+ 986935
4060
+ 986936
4061
+ 986972
4062
+ 987066
4063
+ 987100
4064
+ 987183
4065
+ 987192
4066
+ 987230
4067
+ 987237
4068
+ 987309
4069
+ 987486
4070
+ 987502
4071
+ 987567
4072
+ 987573
4073
+ 987644
4074
+ 987657
4075
+ 987660
4076
+ 987671
4077
+ 987720
4078
+ 987791
4079
+ 987809
4080
+ 987822
4081
+ 987823
4082
+ 987845
4083
+ 987914
4084
+ 987978
4085
+ 988119
4086
+ 988121
4087
+ 988122
4088
+ 988124
4089
+ 988142
4090
+ 988149
4091
+ 988169
4092
+ 988211
4093
+ 988253
4094
+ 988269
4095
+ 988294
4096
+ 988306
4097
+ 988412
4098
+ 988416
4099
+ 988504
4100
+ 988512
4101
+ 988540
4102
+ 988636
4103
+ 988653
4104
+ 988710
4105
+ 988742
4106
+ 988743
4107
+ 988745
4108
+ 988754
4109
+ 988787
4110
+ 988911
4111
+ 988915
4112
+ 988954
4113
+ 988960
4114
+ 988988
4115
+ 989042
4116
+ 989099
4117
+ 989108
4118
+ 989213
4119
+ 989296
4120
+ 989396
4121
+ 989530
4122
+ 989543
4123
+ 989573
4124
+ 989644
4125
+ 989647
4126
+ 989676
4127
+ 989831
4128
+ 989855
4129
+ 989866
4130
+ 989870
4131
+ 989894
4132
+ 989912
4133
+ 989963
4134
+ 989994
4135
+ 990010
4136
+ 990026
4137
+ 990093
4138
+ 990176
4139
+ 990197
4140
+ 990223
4141
+ 990307
4142
+ 990345
4143
+ 990375
4144
+ 990414
4145
+ 990459
4146
+ 990481
4147
+ 990526
4148
+ 990649
4149
+ 990763
4150
+ 990784
4151
+ 990841
4152
+ 990852
4153
+ 990938
4154
+ 990995
4155
+ 991032
4156
+ 991044
4157
+ 991064
4158
+ 991079
4159
+ 991111
4160
+ 991138
4161
+ 991171
4162
+ 991207
4163
+ 991210
4164
+ 991240
4165
+ 991241
4166
+ 991324
4167
+ 991342
4168
+ 991364
4169
+ 991383
4170
+ 991419
4171
+ 991471
4172
+ 991590
4173
+ 991598
4174
+ 991662
4175
+ 991685
4176
+ 991748
4177
+ 991761
4178
+ 991762
4179
+ 991782
4180
+ 991832
4181
+ 991854
4182
+ 991894
4183
+ 991938
4184
+ 992120
4185
+ 992132
4186
+ 992184
4187
+ 992191
4188
+ 992193
4189
+ 992224
4190
+ 992257
4191
+ 992340
4192
+ 992363
4193
+ 992365
4194
+ 992367
4195
+ 992383
4196
+ 992407
4197
+ 992433
4198
+ 992531
4199
+ 992535
4200
+ 992559
4201
+ 992605
4202
+ 992618
4203
+ 992652
4204
+ 992659
4205
+ 992660
4206
+ 992677
4207
+ 992729
4208
+ 992757
4209
+ 992802
4210
+ 992839
4211
+ 992840
4212
+ 992869
4213
+ 992946
4214
+ 992949
4215
+ 992950
4216
+ 993041
4217
+ 993107
4218
+ 993153
4219
+ 993174
4220
+ 993178
4221
+ 993234
4222
+ 993255
4223
+ 993320
4224
+ 993353
4225
+ 993419
4226
+ 993492
4227
+ 993501
4228
+ 993544
4229
+ 993606
4230
+ 993627
4231
+ 993651
4232
+ 993748
4233
+ 993795
4234
+ 993821
4235
+ 993834
4236
+ 993876
4237
+ 993883
4238
+ 993987
4239
+ 993996
4240
+ 994005
4241
+ 994012
4242
+ 994070
4243
+ 994085
4244
+ 994087
4245
+ 994112
4246
+ 994133
4247
+ 994228
4248
+ 994311
4249
+ 994338
4250
+ 994397
4251
+ 994449
4252
+ 994478
4253
+ 994479
4254
+ 994533
4255
+ 994582
4256
+ 994688
4257
+ 994792
4258
+ 994830
4259
+ 994867
4260
+ 994918
4261
+ 994941
4262
+ 994947
4263
+ 995029
4264
+ 995125
4265
+ 995141
4266
+ 995176
4267
+ 995212
4268
+ 995221
4269
+ 995280
4270
+ 995380
4271
+ 995443
4272
+ 995526
4273
+ 995576
4274
+ 995595
4275
+ 995598
4276
+ 995654
4277
+ 995756
4278
+ 995787
4279
+ 995789
4280
+ 995805
4281
+ 995806
4282
+ 995825
4283
+ 996011
4284
+ 996042
4285
+ 996054
4286
+ 996119
4287
+ 996181
4288
+ 996272
4289
+ 996301
4290
+ 996317
4291
+ 996328
4292
+ 996414
4293
+ 996623
4294
+ 996634
4295
+ 996653
4296
+ 996805
4297
+ 996825
4298
+ 996835
4299
+ 996922
4300
+ 997017
4301
+ 997044
4302
+ 997086
4303
+ 997122
4304
+ 997227
4305
+ 997351
4306
+ 997449
4307
+ 997481
4308
+ 997533
4309
+ 997542
4310
+ 997648
4311
+ 997649
4312
+ 997713
4313
+ 997744
4314
+ 997808
4315
+ 997860
4316
+ 997872
4317
+ 997878
4318
+ 997913
4319
+ 997932
4320
+ 997935
4321
+ 998013
4322
+ 998062
4323
+ 998093
4324
+ 998101
4325
+ 998174
4326
+ 998192
4327
+ 998223
4328
+ 998246
4329
+ 998247
4330
+ 998248
4331
+ 998309
4332
+ 998381
4333
+ 998417
4334
+ 998482
4335
+ 998485
4336
+ 998493
4337
+ 998569
4338
+ 998591
4339
+ 998609
4340
+ 998641
4341
+ 998646
4342
+ 998658
4343
+ 998675
4344
+ 998680
4345
+ 998681
4346
+ 998735
4347
+ 998802
4348
+ 998834
4349
+ 998891
4350
+ 998903
4351
+ 998905
4352
+ 998941
4353
+ 998965
4354
+ 999028
4355
+ 999086
4356
+ 999089
4357
+ 999110
4358
+ 999192
4359
+ 999261
4360
+ 999356
4361
+ 999385
4362
+ 999391
4363
+ 999416
4364
+ 999439
4365
+ 999469
4366
+ 999481
4367
+ 999517
4368
+ 999518
4369
+ 999550
4370
+ 999552
4371
+ 999555
4372
+ 999567
4373
+ 999610
4374
+ 999637
4375
+ 999641
4376
+ 999685
4377
+ 999691
4378
+ 999756
4379
+ 999791
4380
+ 999836
4381
+ 999897
4382
+ 999921
4383
+ 999942
4384
+ 1000000
4385
+ 1000004
4386
+ 1000006
4387
+ 1000017
4388
+ 1000030
4389
+ 1000083
4390
+ 1000097
4391
+ 1000170
4392
+ 1000232
4393
+ 1000272
4394
+ 1000319
4395
+ 1000459
4396
+ 1000472
4397
+ 1000509
4398
+ 1000519
4399
+ 1000574
4400
+ 1000585
4401
+ 1000619
4402
+ 1000678
4403
+ 1000681
4404
+ 1000798
4405
+ 1000864
4406
+ 1000906
4407
+ 1000951
4408
+ 1000959
4409
+ 1001108
4410
+ 1001279
4411
+ 1001381
4412
+ 1001397
4413
+ 1001454
4414
+ 1001810
4415
+ 1001903
4416
+ 1001926
4417
+ 1001981
4418
+ 1001999
4419
+ 1002058
4420
+ 1002145
4421
+ 1002148
4422
+ 1002197
4423
+ 1002238
4424
+ 1002252
4425
+ 1002274
4426
+ 1002330
4427
+ 1002426
4428
+ 1002482
4429
+ 1002554
4430
+ 1002584
4431
+ 1002585
4432
+ 1002596
4433
+ 1002716
4434
+ 1002737
4435
+ 1002887
4436
+ 1002889
4437
+ 1002938
4438
+ 1002940
4439
+ 1002997
4440
+ 1003003
4441
+ 1003006
4442
+ 1003015
4443
+ 1003114
4444
+ 1003210
4445
+ 1003213
4446
+ 1003239
4447
+ 1003277
4448
+ 1003299
4449
+ 1003319
4450
+ 1003329
4451
+ 1003334
4452
+ 1003351
4453
+ 1003359
4454
+ 1003445
4455
+ 1003481
4456
+ 1003482
4457
+ 1003507
4458
+ 1003557
4459
+ 1003561
4460
+ 1003590
4461
+ 1003603
4462
+ 1003695
4463
+ 1003831
4464
+ 1003849
4465
+ 1003875
4466
+ 1003880
4467
+ 1003884
4468
+ 1003973
4469
+ 1003997
4470
+ 1004167
4471
+ 1004191
4472
+ 1004199
4473
+ 1004228
4474
+ 1004233
4475
+ 1004240
4476
+ 1004243
4477
+ 1004254
4478
+ 1004258
4479
+ 1004322
4480
+ 1004493
4481
+ 1004921
4482
+ 1004940
4483
+ 1004949
4484
+ 1005113
4485
+ 1005131
4486
+ 1005163
4487
+ 1005191
4488
+ 1005475
4489
+ 1005476
4490
+ 1005500
4491
+ 1005520
4492
+ 1005586
4493
+ 1005595
4494
+ 1005653
4495
+ 1005678
4496
+ 1005798
4497
+ 1005888
4498
+ 1005907
4499
+ 1005949
4500
+ 1006000
4501
+ 1006199
4502
+ 1006459
4503
+ 1006489
4504
+ 1006509
4505
+ 1006578
4506
+ 1006580
4507
+ 1006751
4508
+ 1006791
4509
+ 1006852
4510
+ 1006911
4511
+ 1006922
4512
+ 1006987
4513
+ 1007242
4514
+ 1007382
4515
+ 1007473
4516
+ 1007550
4517
+ 1007606
4518
+ 1007628
4519
+ 1007673
4520
+ 1007691
4521
+ 1007696
4522
+ 1007875
4523
+ 1007934
4524
+ 1007959
4525
+ 1007972
4526
+ 1008208
4527
+ 1008515
4528
+ 1008516
4529
+ 1008830
4530
+ 1008911
4531
+ 1008947
4532
+ 1008951
4533
+ 1008968
4534
+ 1008977
4535
+ 1008979
4536
+ 1009023
4537
+ 1009109
4538
+ 1009183
4539
+ 1009237
4540
+ 1009388
4541
+ 1009527
4542
+ 1009610
4543
+ 1009668
4544
+ 1009695
4545
+ 1009724
4546
+ 1009742
4547
+ 1009749
4548
+ 1009959
4549
+ 1009961
4550
+ 1009994
4551
+ 1010048
4552
+ 1010057
4553
+ 1010059
4554
+ 1010151
4555
+ 1010173
4556
+ 1010277
4557
+ 1010287
4558
+ 1010524
4559
+ 1010527
4560
+ 1010537
4561
+ 1010607
4562
+ 1010615
4563
+ 1010670
4564
+ 1010700
4565
+ 1011003
4566
+ 1011018
4567
+ 1011021
4568
+ 1011044
4569
+ 1011120
4570
+ 1011140
4571
+ 1011166
4572
+ 1011248
4573
+ 1011328
4574
+ 1011381
4575
+ 1011382
4576
+ 1011512
4577
+ 1011529
4578
+ 1011618
4579
+ 1011663
4580
+ 1011713
4581
+ 1011721
4582
+ 1011811
4583
+ 1011860
4584
+ 1011925
4585
+ 1012026
4586
+ 1012328
4587
+ 1012329
4588
+ 1012431
4589
+ 1012464
4590
+ 1012547
4591
+ 1012780
4592
+ 1012865
4593
+ 1012866
4594
+ 1013114
4595
+ 1013229
4596
+ 1013267
4597
+ 1013304
4598
+ 1013367
4599
+ 1013424
4600
+ 1013492
4601
+ 1013570
4602
+ 1013579
4603
+ 1013592
4604
+ 1013615
4605
+ 1013797
4606
+ 1013965
4607
+ 1014115
4608
+ 1014131
4609
+ 1014132
4610
+ 1014210
4611
+ 1014242
4612
+ 1014264
4613
+ 1014697
4614
+ 1014884
4615
+ 1014885
4616
+ 1014911
4617
+ 1015055
4618
+ 1015307
4619
+ 1015347
4620
+ 1015556
4621
+ 1015641
4622
+ 1015766
4623
+ 1016013
4624
+ 1016015
4625
+ 1016154
4626
+ 1016254
4627
+ 1016281
4628
+ 1016406
4629
+ 1016460
4630
+ 1016547
4631
+ 1016565
4632
+ 1016583
4633
+ 1016611
4634
+ 1016676
4635
+ 1016703
4636
+ 1016790
4637
+ 1016869
4638
+ 1016879
4639
+ 1016915
4640
+ 1016943
4641
+ 1017204
4642
+ 1017276
4643
+ 1017348
4644
+ 1017476
4645
+ 1017498
4646
+ 1017524
4647
+ 1017529
4648
+ 1017537
4649
+ 1017605
4650
+ 1017687
4651
+ 1017692
4652
+ 1017706
4653
+ 1017734
4654
+ 1017773
4655
+ 1017775
4656
+ 1017830
4657
+ 1017892
4658
+ 1017952
4659
+ 1017966
4660
+ 1017971
4661
+ 1018032
4662
+ 1018056
4663
+ 1018359
4664
+ 1018525
4665
+ 1018658
4666
+ 1018807
4667
+ 1018918
4668
+ 1019179
4669
+ 1019200
4670
+ 1019236
4671
+ 1019262
4672
+ 1019356
4673
+ 1019405
4674
+ 1019414
4675
+ 1019433
4676
+ 1019470
4677
+ 1019602
4678
+ 1019649
4679
+ 1019705
4680
+ 1019724
4681
+ 1019783
4682
+ 1019787
4683
+ 1019830
4684
+ 1020198
4685
+ 1020244
4686
+ 1020376
4687
+ 1020500
4688
+ 1020710
4689
+ 1020724
4690
+ 1020907
4691
+ 1020915
4692
+ 1020999
4693
+ 1021053
4694
+ 1021065
4695
+ 1021170
4696
+ 1021241
4697
+ 1021277
4698
+ 1021318
4699
+ 1021324
4700
+ 1021327
4701
+ 1021446
4702
+ 1021532
4703
+ 1021554
4704
+ 1021605
4705
+ 1021639
4706
+ 1021679
4707
+ 1021682
4708
+ 1021695
4709
+ 1021797
4710
+ 1021900
4711
+ 1021907
4712
+ 1021931
4713
+ 1021971
4714
+ 1022022
4715
+ 1022124
4716
+ 1022132
4717
+ 1022178
4718
+ 1022198
4719
+ 1022359
4720
+ 1022370
4721
+ 1022410
4722
+ 1022442
4723
+ 1022577
4724
+ 1022620
4725
+ 1022621
4726
+ 1022630
4727
+ 1022712
4728
+ 1022735
4729
+ 1022762
4730
+ 1022769
4731
+ 1022782
4732
+ 1022832
4733
+ 1022907
4734
+ 1022911
4735
+ 1023025
4736
+ 1023111
4737
+ 1023363
4738
+ 1023782
4739
+ 1023838
4740
+ 1023850
4741
+ 1024034
4742
+ 1024069
4743
+ 1024166
4744
+ 1024176
4745
+ 1024221
4746
+ 1024288
4747
+ 1024300
4748
+ 1024305
4749
+ 1024312
4750
+ 1024528
4751
+ 1024591
4752
+ 1024592
4753
+ 1024599
4754
+ 1024667
4755
+ 1024669
4756
+ 1024672
4757
+ 1024727
4758
+ 1024835
4759
+ 1024893
4760
+ 1024904
4761
+ 1024950
4762
+ 1025188
4763
+ 1025259
4764
+ 1025270
4765
+ 1025290
4766
+ 1025348
4767
+ 1025483
4768
+ 1025624
4769
+ 1025714
4770
+ 1025801
4771
+ 1025895
4772
+ 1025991
4773
+ 1026098
4774
+ 1026148
4775
+ 1026258
4776
+ 1026372
4777
+ 1026711
4778
+ 1026768
4779
+ 1026775
4780
+ 1026789
4781
+ 1026799
4782
+ 1026991
4783
+ 1027178
4784
+ 1027209
4785
+ 1027373
4786
+ 1027650
4787
+ 1027669
4788
+ 1027785
4789
+ 1027812
4790
+ 1027817
4791
+ 1027865
4792
+ 1027919
4793
+ 1028098
4794
+ 1028131
4795
+ 1028179
4796
+ 1028538
4797
+ 1028555
4798
+ 1028598
4799
+ 1028608
4800
+ 1028652
4801
+ 1028670
4802
+ 1028711
4803
+ 1028742
4804
+ 1028752
4805
+ 1028753
4806
+ 1028755
4807
+ 1028796
4808
+ 1029003
4809
+ 1029016
4810
+ 1029030
4811
+ 1029031
4812
+ 1029058
4813
+ 1029124
4814
+ 1029181
4815
+ 1029291
4816
+ 1029402
4817
+ 1029492
4818
+ 1029544
4819
+ 1029552
4820
+ 1029617
4821
+ 1029681
4822
+ 1029694
4823
+ 1029772
4824
+ 1029791
4825
+ 1029908
4826
+ 1029909
4827
+ 1030176
4828
+ 1030215
4829
+ 1030230
4830
+ 1030271
4831
+ 1030324
4832
+ 1030378
4833
+ 1030381
4834
+ 1030388
4835
+ 1030446
4836
+ 1030451
4837
+ 1030617
4838
+ 1030623
4839
+ 1030722
4840
+ 1030823
4841
+ 1030924
4842
+ 1031032
4843
+ 1031033
4844
+ 1031047
4845
+ 1031054
4846
+ 1031118
4847
+ 1031173
4848
+ 1031240
4849
+ 1031456
4850
+ 1031502
4851
+ 1031580
4852
+ 1031679
4853
+ 1031682
4854
+ 1031684
4855
+ 1031861
4856
+ 1031909
4857
+ 1031910
4858
+ 1031976
4859
+ 1031999
4860
+ 1032011
4861
+ 1032019
4862
+ 1032074
4863
+ 1032156
4864
+ 1032182
4865
+ 1032198
4866
+ 1032281
4867
+ 1032341
4868
+ 1032758
4869
+ 1032822
4870
+ 1033007
4871
+ 1033092
4872
+ 1033205
4873
+ 1033249
4874
+ 1033250
4875
+ 1033296
4876
+ 1033398
4877
+ 1033443
4878
+ 1033534
4879
+ 1033580
4880
+ 1033652
4881
+ 1033703
4882
+ 1033718
4883
+ 1033725
4884
+ 1033759
4885
+ 1033912
4886
+ 1033927
4887
+ 1033962
4888
+ 1034039
4889
+ 1034050
4890
+ 1034136
4891
+ 1034172
4892
+ 1034204
4893
+ 1034409
4894
+ 1034446
4895
+ 1034587
4896
+ 1034595
4897
+ 1034666
4898
+ 1034679
4899
+ 1034680
4900
+ 1034703
4901
+ 1034761
4902
+ 1034839
4903
+ 1034845
4904
+ 1035006
4905
+ 1035078
4906
+ 1035098
4907
+ 1035228
4908
+ 1035247
4909
+ 1035278
4910
+ 1035321
4911
+ 1035367
4912
+ 1035379
4913
+ 1035383
4914
+ 1035410
4915
+ 1035535
4916
+ 1035719
4917
+ 1035805
4918
+ 1035861
4919
+ 1035874
4920
+ 1035931
4921
+ 1036002
4922
+ 1036005
4923
+ 1036214
4924
+ 1036244
4925
+ 1036380
4926
+ 1036385
4927
+ 1036542
4928
+ 1036627
4929
+ 1036656
4930
+ 1036675
4931
+ 1036782
4932
+ 1036784
4933
+ 1036800
4934
+ 1036999
4935
+ 1037033
4936
+ 1037104
4937
+ 1037116
4938
+ 1037188
4939
+ 1037250
4940
+ 1037302
4941
+ 1037341
4942
+ 1037373
4943
+ 1037407
4944
+ 1037662
4945
+ 1037686
4946
+ 1037689
4947
+ 1037722
4948
+ 1037781
4949
+ 1037817
4950
+ 1037826
4951
+ 1037872
4952
+ 1037881
4953
+ 1038161
4954
+ 1038184
4955
+ 1038527
4956
+ 1038592
4957
+ 1038678
4958
+ 1038685
4959
+ 1038719
4960
+ 1038724
4961
+ 1038755
4962
+ 1038830
4963
+ 1038849
4964
+ 1038859
4965
+ 1038871
4966
+ 1038879
4967
+ 1039002
4968
+ 1039052
4969
+ 1039195
4970
+ 1039298
4971
+ 1039346
4972
+ 1039361
4973
+ 1039495
4974
+ 1039521
4975
+ 1039586
4976
+ 1039728
4977
+ 1039746
4978
+ 1040022
4979
+ 1040030
4980
+ 1040038
4981
+ 1040064
4982
+ 1040082
4983
+ 1040088
4984
+ 1040099
4985
+ 1040238
4986
+ 1040312
4987
+ 1040353
4988
+ 1040409
4989
+ 1040461
4990
+ 1040507
4991
+ 1040532
4992
+ 1040684
4993
+ 1040694
4994
+ 1040703
4995
+ 1040793
4996
+ 1040848
4997
+ 1040959
4998
+ 1041043
4999
+ 1041050
5000
+ 1041146
5001
+ 1041159
5002
+ 1041226
5003
+ 1041473
5004
+ 1041520
5005
+ 1041703
5006
+ 1041714
5007
+ 1041753
5008
+ 1041924
5009
+ 1041948
5010
+ 1041951
5011
+ 1042099
5012
+ 1042158
5013
+ 1042364
5014
+ 1042399
5015
+ 1042426
5016
+ 1042488
5017
+ 1042507
5018
+ 1042626
5019
+ 1042676
5020
+ 1042752
5021
+ 1042800
5022
+ 1042978
5023
+ 1043064
5024
+ 1043337
5025
+ 1043413
5026
+ 1043545
5027
+ 1043568
5028
+ 1043587
5029
+ 1043658
5030
+ 1043702
5031
+ 1043815
5032
+ 1043914
5033
+ 1043955
5034
+ 1043969
5035
+ 1043995
5036
+ 1044041
5037
+ 1044244
5038
+ 1044249
5039
+ 1044755
5040
+ 1044809
5041
+ 1045071
5042
+ 1045072
5043
+ 1045135
5044
+ 1045203
5045
+ 1045208
5046
+ 1045227
5047
+ 1045229
5048
+ 1045347
5049
+ 1045374
5050
+ 1045494
5051
+ 1045527
5052
+ 1045540
5053
+ 1045554
5054
+ 1045567
5055
+ 1045709
5056
+ 1045717
5057
+ 1045826
5058
+ 1045853
5059
+ 1045855
5060
+ 1046042
5061
+ 1046047
5062
+ 1046093
5063
+ 1046161
5064
+ 1046384
5065
+ 1046387
5066
+ 1046463
5067
+ 1046475
5068
+ 1046520
5069
+ 1046567
5070
+ 1046569
5071
+ 1046648
5072
+ 1046736
5073
+ 1046750
5074
+ 1046931
5075
+ 1046952
5076
+ 1046969
5077
+ 1047010
5078
+ 1047012
5079
+ 1047088
5080
+ 1047138
5081
+ 1047152
5082
+ 1047160
5083
+ 1047162
5084
+ 1047269
5085
+ 1047365
5086
+ 1047386
5087
+ 1047548
5088
+ 1047556
5089
+ 1047592
5090
+ 1047599
5091
+ 1047625
5092
+ 1047629
5093
+ 1047642
5094
+ 1047662
5095
+ 1047700
5096
+ 1047702
5097
+ 1047708
5098
+ 1047738
5099
+ 1047794
5100
+ 1047833
5101
+ 1047843
5102
+ 1047854
5103
+ 1047913
5104
+ 1047917
5105
+ 1047987
5106
+ 1048185
5107
+ 1048281
5108
+ 1048282
5109
+ 1048303
5110
+ 1048359
5111
+ 1048361
5112
+ 1048363
5113
+ 1048377
5114
+ 1048381
5115
+ 1048565
5116
+ 1048585
5117
+ 1048642
5118
+ 1048876
5119
+ 1048917
5120
+ 1048995
5121
+ 1049085
5122
+ 1049200
5123
+ 1049221
5124
+ 1049329
5125
+ 1049368
5126
+ 1049456
5127
+ 1049484
5128
+ 1049767
5129
+ 1049774
5130
+ 1049791
5131
+ 1049867
5132
+ 1049894
5133
+ 1049926
5134
+ 1049955
5135
+ 1050007
5136
+ 1050033
5137
+ 1050231
5138
+ 1050253
5139
+ 1050275
5140
+ 1050670
5141
+ 1050695
5142
+ 1050747
5143
+ 1050778
5144
+ 1050857
5145
+ 1050923
5146
+ 1051095
5147
+ 1051108
5148
+ 1051112
5149
+ 1051211
5150
+ 1051214
5151
+ 1051223
5152
+ 1051229
5153
+ 1051257
5154
+ 1051279
5155
+ 1051285
5156
+ 1051307
5157
+ 1051339
5158
+ 1051352
5159
+ 1051372
5160
+ 1051422
5161
+ 1051475
5162
+ 1051520
5163
+ 1051530
5164
+ 1051571
5165
+ 1051723
5166
+ 1051755
5167
+ 1051808
5168
+ 1051886
5169
+ 1051902
5170
+ 1051942
5171
+ 1051943
5172
+ 1051990
5173
+ 1052089
5174
+ 1052115
5175
+ 1052274
5176
+ 1052414
5177
+ 1052421
5178
+ 1052427
5179
+ 1052563
5180
+ 1052585
5181
+ 1052610
5182
+ 1052615
5183
+ 1052640
5184
+ 1052717
5185
+ 1052948
5186
+ 1052965
5187
+ 1052985
5188
+ 1053111
5189
+ 1053219
5190
+ 1053253
5191
+ 1053611
5192
+ 1053716
5193
+ 1053896
5194
+ 1053901
5195
+ 1053931
5196
+ 1053992
5197
+ 1053997
5198
+ 1054023
5199
+ 1054071
5200
+ 1054186
5201
+ 1054189
5202
+ 1054328
5203
+ 1054339
5204
+ 1054438
5205
+ 1054440
5206
+ 1054450
5207
+ 1054451
5208
+ 1054468
5209
+ 1054593
5210
+ 1054595
5211
+ 1054610
5212
+ 1054707
5213
+ 1054923
5214
+ 1054958
5215
+ 1054969
5216
+ 1054999
5217
+ 1055125
5218
+ 1055176
5219
+ 1055197
5220
+ 1055351
5221
+ 1055505
5222
+ 1055717
5223
+ 1055889
5224
+ 1055921
5225
+ 1055940
5226
+ 1056057
5227
+ 1056060
5228
+ 1056159
5229
+ 1056163
5230
+ 1056211
5231
+ 1056265
5232
+ 1056303
5233
+ 1056405
5234
+ 1056420
5235
+ 1056437
5236
+ 1056446
5237
+ 1056482
5238
+ 1056548
5239
+ 1056580
5240
+ 1056644
5241
+ 1056726
5242
+ 1056742
5243
+ 1056758
5244
+ 1056850
5245
+ 1056950
5246
+ 1057007
5247
+ 1057015
5248
+ 1057098
5249
+ 1057112
5250
+ 1057139
5251
+ 1057168
5252
+ 1057251
5253
+ 1057270
5254
+ 1057334
5255
+ 1057367
5256
+ 1057446
5257
+ 1057476
5258
+ 1057488
5259
+ 1057539
5260
+ 1057631
5261
+ 1057656
5262
+ 1057708
5263
+ 1057757
5264
+ 1057937
5265
+ 1057996
5266
+ 1058036
5267
+ 1058100
5268
+ 1058140
5269
+ 1058141
5270
+ 1058142
5271
+ 1058165
5272
+ 1058182
5273
+ 1058271
5274
+ 1058284
5275
+ 1058325
5276
+ 1058415
5277
+ 1058425
5278
+ 1058442
5279
+ 1058470
5280
+ 1058515
5281
+ 1058601
5282
+ 1058604
5283
+ 1058717
5284
+ 1058792
5285
+ 1058822
5286
+ 1058853
5287
+ 1058885
5288
+ 1058952
5289
+ 1058978
5290
+ 1059045
5291
+ 1059077
5292
+ 1059253
5293
+ 1059287
5294
+ 1059420
5295
+ 1059421
5296
+ 1059442
5297
+ 1059496
5298
+ 1059504
5299
+ 1059601
5300
+ 1059619
5301
+ 1059646
5302
+ 1059698
5303
+ 1059801
5304
+ 1059820
5305
+ 1059970
5306
+ 1060039
5307
+ 1060040
5308
+ 1060305
5309
+ 1060342
5310
+ 1060391
5311
+ 1060462
5312
+ 1060496
5313
+ 1060566
5314
+ 1060616
5315
+ 1060623
5316
+ 1060795
5317
+ 1060868
5318
+ 1060881
5319
+ 1061167
5320
+ 1061210
5321
+ 1061237
5322
+ 1061324
5323
+ 1061382
5324
+ 1061472
5325
+ 1061762
5326
+ 1061994
5327
+ 1062190
5328
+ 1062223
5329
+ 1062233
5330
+ 1062332
5331
+ 1062334
5332
+ 1062350
5333
+ 1062457
5334
+ 1062511
5335
+ 1062589
5336
+ 1062603
5337
+ 1062609
5338
+ 1062687
5339
+ 1062744
5340
+ 1062784
5341
+ 1062928
5342
+ 1062961
5343
+ 1063177
5344
+ 1063349
5345
+ 1063371
5346
+ 1063461
5347
+ 1063478
5348
+ 1063607
5349
+ 1063644
5350
+ 1063659
5351
+ 1063702
5352
+ 1063709
5353
+ 1063758
5354
+ 1063765
5355
+ 1063777
5356
+ 1063892
5357
+ 1063974
5358
+ 1064140
5359
+ 1064155
5360
+ 1064195
5361
+ 1064206
5362
+ 1064473
5363
+ 1064518
5364
+ 1064529
5365
+ 1064687
5366
+ 1064808
5367
+ 1064852
5368
+ 1064961
5369
+ 1065032
5370
+ 1065118
5371
+ 1065160
5372
+ 1065227
5373
+ 1065388
5374
+ 1065448
5375
+ 1065494
5376
+ 1065551
5377
+ 1065558
5378
+ 1065650
5379
+ 1065712
5380
+ 1065728
5381
+ 1065971
5382
+ 1065985
5383
+ 1066043
5384
+ 1066116
5385
+ 1066161
5386
+ 1066709
5387
+ 1066716
5388
+ 1066792
5389
+ 1066916
5390
+ 1066958
5391
+ 1066966
5392
+ 1066971
5393
+ 1067276
5394
+ 1067284
5395
+ 1067587
5396
+ 1067640
5397
+ 1067659
5398
+ 1067724
5399
+ 1067764
5400
+ 1067772
5401
+ 1067826
5402
+ 1067990
5403
+ 1068276
5404
+ 1068290
5405
+ 1068408
5406
+ 1068584
5407
+ 1068715
5408
+ 1068726
5409
+ 1068924
5410
+ 1068952
5411
+ 1069028
5412
+ 1069108
5413
+ 1069128
5414
+ 1069222
5415
+ 1069313
5416
+ 1069327
5417
+ 1069344
5418
+ 1069405
5419
+ 1069474
5420
+ 1069521
5421
+ 1069556
5422
+ 1069717
5423
+ 1069981
5424
+ 1069983
5425
+ 1070131
5426
+ 1070324
5427
+ 1070361
5428
+ 1070412
5429
+ 1070452
5430
+ 1070546
5431
+ 1070728
5432
+ 1070867
5433
+ 1071061
5434
+ 1071198
5435
+ 1071270
5436
+ 1071389
5437
+ 1071485
5438
+ 1071534
5439
+ 1071545
5440
+ 1071598
5441
+ 1071722
5442
+ 1071992
5443
+ 1072188
5444
+ 1072479
5445
+ 1072500
5446
+ 1072506
5447
+ 1072513
5448
+ 1072603
5449
+ 1072750
5450
+ 1072874
5451
+ 1072988
5452
+ 1073358
5453
+ 1073365
5454
+ 1073569
5455
+ 1073640
5456
+ 1073721
5457
+ 1073801
5458
+ 1073805
5459
+ 1073943
5460
+ 1073972
5461
+ 1073980
5462
+ 1074001
5463
+ 1074499
5464
+ 1074603
5465
+ 1074804
5466
+ 1074807
5467
+ 1074883
5468
+ 1074949
5469
+ 1074989
5470
+ 1074995
5471
+ 1074997
5472
+ 1075156
5473
+ 1075244
5474
+ 1075262
5475
+ 1075313
5476
+ 1075336
5477
+ 1075348
5478
+ 1075588
5479
+ 1075591
5480
+ 1075608
5481
+ 1075636
5482
+ 1075656
5483
+ 1075713
5484
+ 1075741
5485
+ 1075919
5486
+ 1075980
5487
+ 1076030
5488
+ 1076078
5489
+ 1076269
5490
+ 1077000
5491
+ 1077002
5492
+ 1077006
5493
+ 1077019
5494
+ 1077356
5495
+ 1077844
5496
+ 1078187
5497
+ 1078198
5498
+ 1078222
5499
+ 1078446
5500
+ 1078491
5501
+ 1078731
5502
+ 1078752
5503
+ 1078765
5504
+ 1078906
5505
+ 1078920
5506
+ 1079050
5507
+ 1079086
5508
+ 1079141
5509
+ 1079231
5510
+ 1079340
5511
+ 1079434
5512
+ 1079535
5513
+ 1079785
5514
+ 1079815
5515
+ 1079817
5516
+ 1079831
5517
+ 1079868
5518
+ 1079888
5519
+ 1079959
5520
+ 1079987
5521
+ 1080010
5522
+ 1080031
5523
+ 1080229
5524
+ 1080253
5525
+ 1080406
5526
+ 1080419
5527
+ 1080495
5528
+ 1080537
5529
+ 1080555
5530
+ 1080937
5531
+ 1080939
5532
+ 1080948
5533
+ 1080950
5534
+ 1080968
5535
+ 1080970
5536
+ 1081086
5537
+ 1081091
5538
+ 1081321
5539
+ 1081338
5540
+ 1081569
5541
+ 1081595
5542
+ 1081609
5543
+ 1081730
5544
+ 1081946
5545
+ 1082002
5546
+ 1082091
5547
+ 1082117
5548
+ 1082242
5549
+ 1082263
5550
+ 1082265
5551
+ 1082281
5552
+ 1082332
5553
+ 1082336
5554
+ 1082339
5555
+ 1082341
5556
+ 1082351
5557
+ 1082377
5558
+ 1082384
5559
+ 1082427
5560
+ 1082445
5561
+ 1082448
5562
+ 1082455
5563
+ 1082501
5564
+ 1082502
5565
+ 1082531
5566
+ 1082536
5567
+ 1082547
5568
+ 1082576
5569
+ 1082603
5570
+ 1082607
5571
+ 1082622
5572
+ 1082653
5573
+ 1082668
5574
+ 1082701
5575
+ 1082730
5576
+ 1082750
5577
+ 1082751
5578
+ 1082759
5579
+ 1082779
5580
+ 1082792
5581
+ 1082807
5582
+ 1082835
5583
+ 1082840
5584
+ 1082870
5585
+ 1082872
5586
+ 1082877
5587
+ 1082893
5588
+ 1082924
5589
+ 1082947
5590
+ 1082948
5591
+ 1082966
5592
+ 1082978
5593
+ 1083000
5594
+ 1083010
5595
+ 1083017
5596
+ 1083021
5597
+ 1083052
5598
+ 1083085
5599
+ 1083092
5600
+ 1083095
5601
+ 1083108
5602
+ 1083125
5603
+ 1083127
5604
+ 1083150
5605
+ 1083152
5606
+ 1083157
5607
+ 1083158
5608
+ 1083161
5609
+ 1083243
5610
+ 1083267
5611
+ 1083268
5612
+ 1083278
5613
+ 1083285
5614
+ 1083293
5615
+ 1083296
5616
+ 1083307
5617
+ 1083332
5618
+ 1083340
5619
+ 1083341
5620
+ 1083342
5621
+ 1083345
5622
+ 1083361
5623
+ 1083362
5624
+ 1083401
5625
+ 1083410
5626
+ 1083428
5627
+ 1083430
5628
+ 1083443
5629
+ 1083472
5630
+ 1083493
5631
+ 1083499
5632
+ 1083500
5633
+ 1083502
5634
+ 1083508
5635
+ 1083517
5636
+ 1083535
5637
+ 1083537
5638
+ 1083584
5639
+ 1083597
5640
+ 1083598
5641
+ 1083611
5642
+ 1083627
5643
+ 1083641
5644
+ 1083642
5645
+ 1083663
5646
+ 1083675
5647
+ 1083686
5648
+ 1083690
5649
+ 1083704
5650
+ 1083713
5651
+ 1083721
5652
+ 1083722
5653
+ 1083727
5654
+ 1083743
5655
+ 1083783
5656
+ 1083791
5657
+ 1083797
5658
+ 1083800
5659
+ 1083819
5660
+ 1083822
5661
+ 1083831
5662
+ 1083832
5663
+ 1083839
5664
+ 1083846
5665
+ 1083852
5666
+ 1083865
5667
+ 1083909
5668
+ 1083926
5669
+ 1083933
5670
+ 1083945
5671
+ 1083948
5672
+ 1083952
5673
+ 1083967
5674
+ 1083997
5675
+ 1084038
5676
+ 1084041
5677
+ 1084075
5678
+ 1084076
5679
+ 1084086
5680
+ 1084192
5681
+ 1084197
5682
+ 1084230
5683
+ 1084233
5684
+ 1084273
5685
+ 1084276
5686
+ 1084289
5687
+ 1084301
5688
+ 1084308
5689
+ 1084324
5690
+ 1084326
5691
+ 1084330
5692
+ 1084336
5693
+ 1084354
5694
+ 1084383
5695
+ 1084389
5696
+ 1084403
5697
+ 1084408
5698
+ 1084435
5699
+ 1084441
5700
+ 1084469
5701
+ 1084475
5702
+ 1084478
5703
+ 1084512
5704
+ 1084516
5705
+ 1084518
5706
+ 1084555
5707
+ 1084582
5708
+ 1084599
5709
+ 1084602
5710
+ 1084603
5711
+ 1084624
5712
+ 1084686
5713
+ 1084712
5714
+ 1084713
5715
+ 1084722
5716
+ 1084755
5717
+ 1084769
5718
+ 1084814
5719
+ 1084838
5720
+ 1084848
5721
+ 1084887
5722
+ 1084889
5723
+ 1084898
5724
+ 1084905
5725
+ 1084906
5726
+ 1084910
5727
+ 1084930
5728
+ 1084942
5729
+ 1084971
5730
+ 1084982
5731
+ 1084986
5732
+ 1085008
5733
+ 1085013
5734
+ 1085035
5735
+ 1085048
5736
+ 1085139
5737
+ 1085141
5738
+ 1085192
5739
+ 1085197
5740
+ 1085229
5741
+ 1085245
5742
+ 1085279
5743
+ 1085288
5744
+ 1085303
5745
+ 1085319
5746
+ 1085327
5747
+ 1085339
5748
+ 1085341
5749
+ 1085348
5750
+ 1085351
5751
+ 1085356
5752
+ 1085386
5753
+ 1085393
5754
+ 1085421
5755
+ 1085422
5756
+ 1085434
5757
+ 1085441
5758
+ 1085454
5759
+ 1085456
5760
+ 1085457
5761
+ 1085497
5762
+ 1085510
5763
+ 1085517
5764
+ 1085521
5765
+ 1085532
5766
+ 1085533
5767
+ 1085535
5768
+ 1085545
5769
+ 1085550
5770
+ 1085572
5771
+ 1085584
5772
+ 1085586
5773
+ 1085613
5774
+ 1085630
5775
+ 1085658
5776
+ 1085674
5777
+ 1085697
5778
+ 1085733
5779
+ 1085741
5780
+ 1085760
5781
+ 1085762
5782
+ 1085764
5783
+ 1085775
5784
+ 1085777
5785
+ 1085779
5786
+ 1085780
5787
+ 1085796
5788
+ 1085804
5789
+ 1085812
5790
+ 1085842
5791
+ 1085845
5792
+ 1085862
5793
+ 1085888
5794
+ 1085889
5795
+ 1085918
5796
+ 1085924
5797
+ 1085930
5798
+ 1085936
5799
+ 1085943
5800
+ 1085967
5801
+ 1085980
5802
+ 1086008
5803
+ 1086014
5804
+ 1086022
5805
+ 1086046
5806
+ 1086075
5807
+ 1086085
5808
+ 1086120
5809
+ 1086145
5810
+ 1086174
5811
+ 1086186
5812
+ 1086200
5813
+ 1086224
5814
+ 1086241
5815
+ 1086248
5816
+ 1086266
5817
+ 1086271
5818
+ 1086279
5819
+ 1086281
5820
+ 1086288
5821
+ 1086296
5822
+ 1086305
5823
+ 1086309
5824
+ 1086326
5825
+ 1086354
5826
+ 1086384
5827
+ 1086385
5828
+ 1086391
5829
+ 1086424
5830
+ 1086430
5831
+ 1086439
5832
+ 1086468
5833
+ 1086477
5834
+ 1086491
5835
+ 1086498
5836
+ 1086532
5837
+ 1086555
5838
+ 1086565
5839
+ 1086575
5840
+ 1086581
5841
+ 1086594
5842
+ 1086595
5843
+ 1086628
5844
+ 1086637
5845
+ 1086675
5846
+ 1086679
5847
+ 1086681
5848
+ 1086693
5849
+ 1086701
5850
+ 1086708
5851
+ 1086713
5852
+ 1086715
5853
+ 1086760
5854
+ 1086765
5855
+ 1086834
5856
+ 1086836
5857
+ 1086855
5858
+ 1086860
5859
+ 1086874
5860
+ 1086883
5861
+ 1086886
5862
+ 1086893
5863
+ 1086915
5864
+ 1086917
5865
+ 1086927
5866
+ 1086928
5867
+ 1086933
5868
+ 1086942
5869
+ 1086974
5870
+ 1086976
5871
+ 1087001
5872
+ 1087014
5873
+ 1087018
5874
+ 1087042
5875
+ 1087046
5876
+ 1087047
5877
+ 1087050
5878
+ 1087061
5879
+ 1087066
5880
+ 1087074
5881
+ 1087076
5882
+ 1087077
5883
+ 1087105
5884
+ 1087114
5885
+ 1087122
5886
+ 1087126
5887
+ 1087129
5888
+ 1087171
5889
+ 1087173
5890
+ 1087185
5891
+ 1087186
5892
+ 1087204
5893
+ 1087215
5894
+ 1087226
5895
+ 1087238
5896
+ 1087269
5897
+ 1087309
5898
+ 1087317
5899
+ 1087327
5900
+ 1087351
5901
+ 1087361
5902
+ 1087375
5903
+ 1087425
5904
+ 1087435
5905
+ 1087455
5906
+ 1087484
5907
+ 1087486
5908
+ 1087487
5909
+ 1087492
5910
+ 1087514
5911
+ 1087532
5912
+ 1087544
5913
+ 1087556
5914
+ 1087566
5915
+ 1087581
5916
+ 1087589
5917
+ 1087603
5918
+ 1087604
5919
+ 1087609
5920
+ 1087634
5921
+ 1087675
5922
+ 1087680
5923
+ 1087687
5924
+ 1087690
5925
+ 1087722
5926
+ 1087727
5927
+ 1087728
5928
+ 1087729
5929
+ 1087735
5930
+ 1087736
5931
+ 1087764
5932
+ 1087766
5933
+ 1087774
5934
+ 1087795
5935
+ 1087803
5936
+ 1087835
5937
+ 1087848
5938
+ 1087858
5939
+ 1087869
5940
+ 1087870
5941
+ 1087904
5942
+ 1087911
5943
+ 1087915
5944
+ 1087959
5945
+ 1087967
5946
+ 1087969
5947
+ 1087999
5948
+ 1088043
5949
+ 1088138
5950
+ 1088153
5951
+ 1088164
5952
+ 1088209
5953
+ 1088210
5954
+ 1088211
5955
+ 1088221
5956
+ 1088252
5957
+ 1088254
5958
+ 1088302
5959
+ 1088309
5960
+ 1088311
5961
+ 1088332
5962
+ 1088347
5963
+ 1088349
5964
+ 1088358
5965
+ 1088379
5966
+ 1088434
5967
+ 1088437
5968
+ 1088444
5969
+ 1088453
5970
+ 1088475
5971
+ 1088502
5972
+ 1088510
5973
+ 1088512
5974
+ 1088515
5975
+ 1088539
5976
+ 1088541
5977
+ 1088606
5978
+ 1088628
5979
+ 1088648
5980
+ 1088653
5981
+ 1088658
5982
+ 1088685
5983
+ 1088693
5984
+ 1088715
5985
+ 1088718
5986
+ 1088734
5987
+ 1088742
5988
+ 1088758
5989
+ 1088800
5990
+ 1088816
5991
+ 1088832
5992
+ 1088845
5993
+ 1088856
5994
+ 1088869
5995
+ 1088875
5996
+ 1088884
5997
+ 1088889
5998
+ 1088903
5999
+ 1088915
6000
+ 1088928
6001
+ 1088938
6002
+ 1088947
6003
+ 1088958
6004
+ 1088960
6005
+ 1088973
6006
+ 1088987
6007
+ 1088993
6008
+ 1089001
6009
+ 1089002
6010
+ 1089021
6011
+ 1089022
6012
+ 1089026
6013
+ 1089027
6014
+ 1089036
6015
+ 1089043
6016
+ 1089044
6017
+ 1089051
6018
+ 1089071
6019
+ 1089085
6020
+ 1089093
6021
+ 1089121
6022
+ 1089143
6023
+ 1089156
6024
+ 1089158
6025
+ 1089164
6026
+ 1089167
6027
+ 1089177
6028
+ 1089214
6029
+ 1089246
6030
+ 1089273
6031
+ 1089277
6032
+ 1089286
6033
+ 1089293
6034
+ 1089312
6035
+ 1089325
6036
+ 1089355
6037
+ 1089376
6038
+ 1089401
6039
+ 1089406
6040
+ 1089408
6041
+ 1089414
6042
+ 1089434
6043
+ 1089438
6044
+ 1089443
6045
+ 1089469
6046
+ 1089498
6047
+ 1089501
6048
+ 1089511
6049
+ 1089521
6050
+ 1089541
6051
+ 1089558
6052
+ 1089560
6053
+ 1089576
6054
+ 1089597
6055
+ 1089619
6056
+ 1089639
6057
+ 1089645
6058
+ 1089656
6059
+ 1089670
6060
+ 1089674
6061
+ 1089678
6062
+ 1089683
6063
+ 1089688
6064
+ 1089691
6065
+ 1089693
6066
+ 1089696
6067
+ 1089706
6068
+ 1089719
6069
+ 1089727
6070
+ 1089750
6071
+ 1089760
6072
+ 1089763
6073
+ 1089776
6074
+ 1089787
6075
+ 1089804
6076
+ 1089805
6077
+ 1089810
6078
+ 1089832
6079
+ 1089846
6080
+ 1089868
6081
+ 1089896
6082
+ 1089906
6083
+ 1089925
6084
+ 1089940
6085
+ 1089945
6086
+ 1089964
6087
+ 1089966
6088
+ 1089983
6089
+ 1090029
6090
+ 1090043
6091
+ 1090054
6092
+ 1090063
6093
+ 1090072
6094
+ 1090077
6095
+ 1090086
6096
+ 1090100
6097
+ 1090102
6098
+ 1090107
6099
+ 1090110
6100
+ 1090115
6101
+ 1090132
6102
+ 1090146
6103
+ 1090151
6104
+ 1090165
6105
+ 1090170
6106
+ 1090171
6107
+ 1090184
6108
+ 1090242
6109
+ 1090270
6110
+ 1090291
6111
+ 1090311
6112
+ 1090329
6113
+ 1090350
6114
+ 1090352
6115
+ 1090358
6116
+ 1090364
6117
+ 1090374
6118
+ 1090377
6119
+ 1090388
6120
+ 1090395
6121
+ 1090399
6122
+ 1090400
6123
+ 1090413
6124
+ 1090456
6125
+ 1090458
6126
+ 1090472
6127
+ 1090513
6128
+ 1090530
6129
+ 1090537
6130
+ 1090540
6131
+ 1090542
6132
+ 1090550
6133
+ 1090558
6134
+ 1090596
6135
+ 1090613
6136
+ 1090624
6137
+ 1090700
6138
+ 1090701
6139
+ 1090727
6140
+ 1090730
6141
+ 1090742
6142
+ 1090758
6143
+ 1090789
6144
+ 1090791
6145
+ 1090796
6146
+ 1090808
6147
+ 1090833
6148
+ 1090838
6149
+ 1090839
6150
+ 1090841
6151
+ 1090842
6152
+ 1090861
6153
+ 1090869
6154
+ 1090877
6155
+ 1090886
6156
+ 1090887
6157
+ 1090910
6158
+ 1090915
6159
+ 1090924
6160
+ 1090945
6161
+ 1090961
6162
+ 1090965
6163
+ 1090987
6164
+ 1091015
6165
+ 1091048
6166
+ 1091059
6167
+ 1091068
6168
+ 1091080
6169
+ 1091082
6170
+ 1091108
6171
+ 1091112
6172
+ 1091115
6173
+ 1091116
6174
+ 1091153
6175
+ 1091158
6176
+ 1091163
6177
+ 1091164
6178
+ 1091173
6179
+ 1091177
6180
+ 1091189
6181
+ 1091194
6182
+ 1091206
6183
+ 1091234
6184
+ 1091246
6185
+ 1091255
6186
+ 1091264
6187
+ 1091269
6188
+ 1091330
6189
+ 1091337
6190
+ 1091340
6191
+ 1091360
6192
+ 1091384
6193
+ 1091421
6194
+ 1091450
6195
+ 1091461
6196
+ 1091467
6197
+ 1091471
6198
+ 1091473
6199
+ 1091479
6200
+ 1091513
6201
+ 1091520
6202
+ 1091522
6203
+ 1091529
6204
+ 1091535
6205
+ 1091545
6206
+ 1091569
6207
+ 1091576
6208
+ 1091595
6209
+ 1091630
6210
+ 1091633
6211
+ 1091643
6212
+ 1091654
6213
+ 1091659
6214
+ 1091661
6215
+ 1091665
6216
+ 1091667
6217
+ 1091681
6218
+ 1091688
6219
+ 1091690
6220
+ 1091692
6221
+ 1091706
6222
+ 1091715
6223
+ 1091719
6224
+ 1091749
6225
+ 1091765
6226
+ 1091767
6227
+ 1091786
6228
+ 1091807
6229
+ 1091811
6230
+ 1091833
6231
+ 1091850
6232
+ 1091865
6233
+ 1091923
6234
+ 1091941
6235
+ 1091955
6236
+ 1091973
6237
+ 1091983
6238
+ 1092005
6239
+ 1092007
6240
+ 1092010
6241
+ 1092013
6242
+ 1092023
6243
+ 1092029
6244
+ 1092042
6245
+ 1092093
6246
+ 1092095
6247
+ 1092105
6248
+ 1092108
6249
+ 1092120
6250
+ 1092143
6251
+ 1092159
6252
+ 1092161
6253
+ 1092162
6254
+ 1092165
6255
+ 1092168
6256
+ 1092176
6257
+ 1092180
6258
+ 1092203
6259
+ 1092236
6260
+ 1092237
6261
+ 1092238
6262
+ 1092257
6263
+ 1092258
6264
+ 1092259
6265
+ 1092263
6266
+ 1092297
6267
+ 1092311
6268
+ 1092327
6269
+ 1092330
6270
+ 1092342
6271
+ 1092348
6272
+ 1092391
6273
+ 1092394
6274
+ 1092416
6275
+ 1092417
6276
+ 1092422
6277
+ 1092441
6278
+ 1092450
6279
+ 1092470
6280
+ 1092474
6281
+ 1092482
6282
+ 1092484
6283
+ 1092517
6284
+ 1092522
6285
+ 1092528
6286
+ 1092543
6287
+ 1092551
6288
+ 1092557
6289
+ 1092605
6290
+ 1092643
6291
+ 1092665
6292
+ 1092715
6293
+ 1092724
6294
+ 1092738
6295
+ 1092751
6296
+ 1092756
6297
+ 1092757
6298
+ 1092759
6299
+ 1092791
6300
+ 1092792
6301
+ 1092796
6302
+ 1092822
6303
+ 1092832
6304
+ 1092858
6305
+ 1092863
6306
+ 1092865
6307
+ 1092870
6308
+ 1092910
6309
+ 1092911
6310
+ 1092919
6311
+ 1092930
6312
+ 1092942
6313
+ 1092952
6314
+ 1092972
6315
+ 1092978
6316
+ 1092984
6317
+ 1092996
6318
+ 1093006
6319
+ 1093031
6320
+ 1093038
6321
+ 1093042
6322
+ 1093064
6323
+ 1093082
6324
+ 1093094
6325
+ 1093096
6326
+ 1093104
6327
+ 1093107
6328
+ 1093112
6329
+ 1093128
6330
+ 1093142
6331
+ 1093172
6332
+ 1093179
6333
+ 1093181
6334
+ 1093196
6335
+ 1093200
6336
+ 1093202
6337
+ 1093231
6338
+ 1093235
6339
+ 1093238
6340
+ 1093255
6341
+ 1093256
6342
+ 1093305
6343
+ 1093312
6344
+ 1093322
6345
+ 1093349
6346
+ 1093359
6347
+ 1093399
6348
+ 1093405
6349
+ 1093406
6350
+ 1093407
6351
+ 1093410
6352
+ 1093419
6353
+ 1093438
6354
+ 1093443
6355
+ 1093444
6356
+ 1093462
6357
+ 1093481
6358
+ 1093487
6359
+ 1093491
6360
+ 1093507
6361
+ 1093534
6362
+ 1093540
6363
+ 1093552
6364
+ 1093556
6365
+ 1093561
6366
+ 1093564
6367
+ 1093570
6368
+ 1093621
6369
+ 1093637
6370
+ 1093650
6371
+ 1093682
6372
+ 1093698
6373
+ 1093717
6374
+ 1093723
6375
+ 1093732
6376
+ 1093750
6377
+ 1093757
6378
+ 1093773
6379
+ 1093781
6380
+ 1093786
6381
+ 1093791
6382
+ 1093795
6383
+ 1093845
6384
+ 1093855
6385
+ 1093866
6386
+ 1093875
6387
+ 1093881
6388
+ 1093901
6389
+ 1093915
6390
+ 1093920
6391
+ 1093926
6392
+ 1093927
6393
+ 1093941
6394
+ 1093959
6395
+ 1093962
6396
+ 1093966
6397
+ 1093971
6398
+ 1093998
6399
+ 1094027
6400
+ 1094039
6401
+ 1094056
6402
+ 1094062
6403
+ 1094081
6404
+ 1094085
6405
+ 1094110
6406
+ 1094141
6407
+ 1094145
6408
+ 1094175
6409
+ 1094191
6410
+ 1094197
6411
+ 1094204
6412
+ 1094215
6413
+ 1094220
6414
+ 1094232
6415
+ 1094241
6416
+ 1094249
6417
+ 1094271
6418
+ 1094275
6419
+ 1094316
6420
+ 1094361
6421
+ 1094364
6422
+ 1094369
6423
+ 1094370
6424
+ 1094389
6425
+ 1094394
6426
+ 1094395
6427
+ 1094406
6428
+ 1094440
6429
+ 1094451
6430
+ 1094453
6431
+ 1094460
6432
+ 1094469
6433
+ 1094477
6434
+ 1094501
6435
+ 1094509
6436
+ 1094519
6437
+ 1094536
6438
+ 1094566
6439
+ 1094575
6440
+ 1094578
6441
+ 1094579
6442
+ 1094605
6443
+ 1094612
6444
+ 1094634
6445
+ 1094689
6446
+ 1094691
6447
+ 1094693
6448
+ 1094699
6449
+ 1094724
6450
+ 1094727
6451
+ 1094731
6452
+ 1094755
6453
+ 1094759
6454
+ 1094825
6455
+ 1094840
6456
+ 1094863
6457
+ 1094869
6458
+ 1094943
6459
+ 1094959
6460
+ 1094962
6461
+ 1094982
6462
+ 1094991
6463
+ 1094996
6464
+ 1094999
6465
+ 1095012
6466
+ 1095055
6467
+ 1095058
6468
+ 1095059
6469
+ 1095066
6470
+ 1095085
6471
+ 1095092
6472
+ 1095108
6473
+ 1095121
6474
+ 1095126
6475
+ 1095155
6476
+ 1095165
6477
+ 1095233
6478
+ 1095238
6479
+ 1095278
6480
+ 1095306
6481
+ 1095308
6482
+ 1095332
6483
+ 1095335
6484
+ 1095354
6485
+ 1095357
6486
+ 1095360
6487
+ 1095371
6488
+ 1095377
6489
+ 1095437
6490
+ 1095469
6491
+ 1095478
6492
+ 1095490
6493
+ 1095495
6494
+ 1095523
6495
+ 1095537
6496
+ 1095542
6497
+ 1095555
6498
+ 1095557
6499
+ 1095558
6500
+ 1095560
6501
+ 1095566
6502
+ 1095571
6503
+ 1095631
6504
+ 1095633
6505
+ 1095641
6506
+ 1095650
6507
+ 1095654
6508
+ 1095687
6509
+ 1095699
6510
+ 1095704
6511
+ 1095705
6512
+ 1095711
6513
+ 1095716
6514
+ 1095723
6515
+ 1095725
6516
+ 1095747
6517
+ 1095749
6518
+ 1095787
6519
+ 1095798
6520
+ 1095806
6521
+ 1095807
6522
+ 1095816
6523
+ 1095845
6524
+ 1095856
6525
+ 1095857
6526
+ 1095864
6527
+ 1095868
6528
+ 1095874
6529
+ 1095876
6530
+ 1095881
6531
+ 1095899
6532
+ 1095921
6533
+ 1095922
6534
+ 1095928
6535
+ 1095942
6536
+ 1095952
6537
+ 1095955
6538
+ 1095966
6539
+ 1095971
6540
+ 1095982
6541
+ 1095988
6542
+ 1095994
6543
+ 1096006
6544
+ 1096021
6545
+ 1096025
6546
+ 1096044
6547
+ 1096045
6548
+ 1096049
6549
+ 1096065
6550
+ 1096087
6551
+ 1096118
6552
+ 1096126
6553
+ 1096180
6554
+ 1096207
6555
+ 1096211
6556
+ 1096227
6557
+ 1096252
6558
+ 1096256
6559
+ 1096257
6560
+ 1096258
6561
+ 1096262
6562
+ 1096268
6563
+ 1096311
6564
+ 1096347
6565
+ 1096357
6566
+ 1096360
6567
+ 1096368
6568
+ 1096371
6569
+ 1096375
6570
+ 1096376
6571
+ 1096401
6572
+ 1096425
6573
+ 1096429
6574
+ 1096431
6575
+ 1096454
6576
+ 1096457
6577
+ 1096463
6578
+ 1096475
6579
+ 1096476
6580
+ 1096479
6581
+ 1096493
6582
+ 1096498
6583
+ 1096509
6584
+ 1096516
6585
+ 1096527
6586
+ 1096532
6587
+ 1096533
6588
+ 1096541
6589
+ 1096543
6590
+ 1096551
6591
+ 1096557
6592
+ 1096605
6593
+ 1096607
6594
+ 1096610
6595
+ 1096619
6596
+ 1096620
6597
+ 1096628
6598
+ 1096641
6599
+ 1096644
6600
+ 1096656
6601
+ 1096658
6602
+ 1096667
6603
+ 1096694
6604
+ 1096712
6605
+ 1096739
6606
+ 1096742
6607
+ 1096776
6608
+ 1096787
6609
+ 1096788
6610
+ 1096794
6611
+ 1096823
6612
+ 1096827
6613
+ 1096830
6614
+ 1096840
6615
+ 1096850
6616
+ 1096855
6617
+ 1096866
6618
+ 1096870
6619
+ 1096886
6620
+ 1096887
6621
+ 1096911
6622
+ 1096932
6623
+ 1096943
6624
+ 1096944
6625
+ 1096945
6626
+ 1096947
6627
+ 1096958
6628
+ 1096964
6629
+ 1096983
6630
+ 1096998
6631
+ 1097014
6632
+ 1097023
6633
+ 1097027
6634
+ 1097040
6635
+ 1097066
6636
+ 1097069
6637
+ 1097087
6638
+ 1097093
6639
+ 1097100
6640
+ 1097118
6641
+ 1097119
6642
+ 1097135
6643
+ 1097153
6644
+ 1097154
6645
+ 1097195
6646
+ 1097198
6647
+ 1097213
6648
+ 1097223
6649
+ 1097236
6650
+ 1097242
6651
+ 1097259
6652
+ 1097294
6653
+ 1097298
6654
+ 1097304
6655
+ 1097314
6656
+ 1097317
6657
+ 1097359
6658
+ 1097373
6659
+ 1097386
6660
+ 1097438
6661
+ 1097448
6662
+ 1097449
6663
+ 1097461
6664
+ 1097469
6665
+ 1097492
6666
+ 1097508
6667
+ 1097523
6668
+ 1097537
6669
+ 1097585
6670
+ 1097602
6671
+ 1097619
6672
+ 1097674
6673
+ 1097721
6674
+ 1097723
6675
+ 1097746
6676
+ 1097786
6677
+ 1097796
6678
+ 1097885
6679
+ 1097894
6680
+ 1097905
6681
+ 1097906
6682
+ 1097909
6683
+ 1097937
6684
+ 1097939
6685
+ 1097979
6686
+ 1097995
6687
+ 1097999
6688
+ 1098010
6689
+ 1098013
6690
+ 1098044
6691
+ 1098048
6692
+ 1098057
6693
+ 1098071
6694
+ 1098090
6695
+ 1098101
6696
+ 1098102
6697
+ 1098110
6698
+ 1098111
6699
+ 1098169
6700
+ 1098180
6701
+ 1098182
6702
+ 1098222
6703
+ 1098226
6704
+ 1098236
6705
+ 1098249
6706
+ 1098276
6707
+ 1098284
6708
+ 1098322
6709
+ 1098338
6710
+ 1098354
6711
+ 1098355
6712
+ 1098422
6713
+ 1098440
6714
+ 1098452
6715
+ 1098481
6716
+ 1098497
6717
+ 1098510
6718
+ 1098520
6719
+ 1098523
6720
+ 1098536
6721
+ 1098556
6722
+ 1098561
6723
+ 1098570
6724
+ 1098600
6725
+ 1098608
6726
+ 1098609
6727
+ 1098641
6728
+ 1098646
6729
+ 1098698
6730
+ 1098719
6731
+ 1098725
6732
+ 1098763
6733
+ 1098765
6734
+ 1098787
6735
+ 1098802
6736
+ 1098804
6737
+ 1098806
6738
+ 1098809
6739
+ 1098846
6740
+ 1098860
6741
+ 1098874
6742
+ 1098895
6743
+ 1098905
6744
+ 1098909
6745
+ 1098927
6746
+ 1098953
6747
+ 1098967
6748
+ 1099050
6749
+ 1099065
6750
+ 1099072
6751
+ 1099077
6752
+ 1099084
6753
+ 1099099
6754
+ 1099105
6755
+ 1099108
6756
+ 1099178
6757
+ 1099189
6758
+ 1099217
6759
+ 1099219
6760
+ 1099226
6761
+ 1099244
6762
+ 1099284
6763
+ 1099288
6764
+ 1099290
6765
+ 1099321
6766
+ 1099340
6767
+ 1099342
6768
+ 1099351
6769
+ 1099368
6770
+ 1099391
6771
+ 1099433
6772
+ 1099451
6773
+ 1099452
6774
+ 1099456
6775
+ 1099482
6776
+ 1099488
6777
+ 1099495
6778
+ 1099530
6779
+ 1099595
6780
+ 1099626
6781
+ 1099632
6782
+ 1099636
6783
+ 1099653
6784
+ 1099656
6785
+ 1099670
6786
+ 1099700
6787
+ 1099706
6788
+ 1099726
6789
+ 1099729
6790
+ 1099733
6791
+ 1099739
6792
+ 1099746
6793
+ 1099756
6794
+ 1099761
6795
+ 1099767
6796
+ 1099803
6797
+ 1099805
6798
+ 1099806
6799
+ 1099816
6800
+ 1099823
6801
+ 1099831
6802
+ 1099834
6803
+ 1099836
6804
+ 1099855
6805
+ 1099859
6806
+ 1099865
6807
+ 1099880
6808
+ 1099888
6809
+ 1099903
6810
+ 1099911
6811
+ 1099914
6812
+ 1099943
6813
+ 1099947
6814
+ 1099955
6815
+ 1099980
6816
+ 1099981
6817
+ 1099985
6818
+ 1099998
6819
+ 1100010
6820
+ 1100035
6821
+ 1100051
6822
+ 1100064
6823
+ 1100070
6824
+ 1100077
6825
+ 1100094
6826
+ 1100105
6827
+ 1100106
6828
+ 1100119
6829
+ 1100134
6830
+ 1100137
6831
+ 1100138
6832
+ 1100143
6833
+ 1100151
6834
+ 1100167
6835
+ 1100168
6836
+ 1100173
6837
+ 1100187
6838
+ 1100188
6839
+ 1100190
6840
+ 1100192
6841
+ 1100218
6842
+ 1100224
6843
+ 1100226
6844
+ 1100229
6845
+ 1100299
6846
+ 1100308
6847
+ 1100319
6848
+ 1100357
6849
+ 1100370
6850
+ 1100403
6851
+ 1100415
6852
+ 1100438
6853
+ 1100454
6854
+ 1100455
6855
+ 1100457
6856
+ 1100458
6857
+ 1100486
6858
+ 1100488
6859
+ 1100492
6860
+ 1100496
6861
+ 1100499
6862
+ 1100505
6863
+ 1100533
6864
+ 1100537
6865
+ 1100541
6866
+ 1100544
6867
+ 1100580
6868
+ 1100581
6869
+ 1100634
6870
+ 1100639
6871
+ 1100640
6872
+ 1100661
6873
+ 1100687
6874
+ 1100724
6875
+ 1100732
6876
+ 1100765
6877
+ 1100772
6878
+ 1100783
6879
+ 1100816
6880
+ 1100839
6881
+ 1100852
6882
+ 1100855
6883
+ 1100875
6884
+ 1100919
6885
+ 1100930
6886
+ 1100933
6887
+ 1100937
6888
+ 1100980
6889
+ 1100986
6890
+ 1101018
6891
+ 1101044
6892
+ 1101048
6893
+ 1101055
6894
+ 1101088
6895
+ 1101090
6896
+ 1101110
6897
+ 1101121
6898
+ 1101131
6899
+ 1101171
6900
+ 1101172
6901
+ 1101173
6902
+ 1101211
6903
+ 1101214
6904
+ 1101228
6905
+ 1101236
6906
+ 1101259
6907
+ 1101271
6908
+ 1101276
6909
+ 1101278
6910
+ 1101279
6911
+ 1101282
6912
+ 1101296
6913
+ 1101298
6914
+ 1101300
6915
+ 1101303
6916
+ 1101336
6917
+ 1101341
6918
+ 1101347
6919
+ 1101365
6920
+ 1101374
6921
+ 1101394
6922
+ 1101434
6923
+ 1101443
6924
+ 1101448
6925
+ 1101466
6926
+ 1101467
6927
+ 1101503
6928
+ 1101531
6929
+ 1101535
6930
+ 1101552
6931
+ 1101566
6932
+ 1101567
6933
+ 1101568
6934
+ 1101576
6935
+ 1101603
6936
+ 1101661
6937
+ 1101665
6938
+ 1101668
6939
+ 1101670
6940
+ 1101674
6941
+ 1101698
6942
+ 1101706
6943
+ 1101714
6944
+ 1101721
6945
+ 1101723
6946
+ 1101739
6947
+ 1101761
6948
+ 1101784
6949
+ 1101806
6950
+ 1101822
6951
+ 1101845
6952
+ 1101861
6953
+ 1101868
6954
+ 1101869
6955
+ 1101870
6956
+ 1101871
6957
+ 1101902
6958
+ 1101906
6959
+ 1101961
6960
+ 1101977
6961
+ 1101995
6962
+ 1102001
6963
+ 1102028
6964
+ 1102088
6965
+ 1102099
6966
+ 1102121
6967
+ 1102163
6968
+ 1102177
6969
+ 1102206
6970
+ 1102235
6971
+ 1102240
6972
+ 1102262
6973
+ 1102300
6974
+ 1102325
6975
+ 1102330
6976
+ 1102335
6977
+ 1102351
6978
+ 1102390
6979
+ 1102393
6980
+ 1102400
lost_in_decoding_artifacts/msmarco-dev/paraphrase.tsv ADDED
The diff for this file is too large to render. See raw diff
 
lost_in_decoding_artifacts/msmarco-dev/reordering.tsv ADDED
The diff for this file is too large to render. See raw diff
 
lost_in_decoding_artifacts/msmarco-dev/synonym.tsv ADDED
The diff for this file is too large to render. See raw diff
 
lost_in_decoding_artifacts/trec-dl-2019/misspelling.tsv ADDED
@@ -0,0 +1,216 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ qid original_query perturbed_query perturbation seed
2
+ 19335 anthropological definition of environment anthropological definotion of environment misspelling 1999
3
+ 47923 axon terminals or synaptic knob definition axon terminals or synaptic knoh definition misspelling 1999
4
+ 87181 causes of left ventricular hypertrophy cuses of left ventricular hypertrophy misspelling 1999
5
+ 87452 causes of military suicide vcauses of military suicide misspelling 1999
6
+ 104861 cost of interior concrete flooring cost of interior concdete flooring misspelling 1999
7
+ 130510 definition declaratory judgment definitiln declaratory judgment misspelling 1999
8
+ 131843 definition of a sigmet definition of a skgmet misspelling 1999
9
+ 146187 difference between a mcdouble and a double cheeseburger difference between a mcdoulbe and a double cheeseburger misspelling 1999
10
+ 148538 difference between rn and bsn differnce between rn and bsn misspelling 1999
11
+ 156493 do goldfish grow do goldfish groow misspelling 1999
12
+ 168216 does legionella pneumophila cause pneumonia does Gegionella pneumophila cause pneumonia misspelling 1999
13
+ 182539 example of monotonic function exampHle of monotonic function misspelling 1999
14
+ 183378 exons definition biology exons definition piology misspelling 1999
15
+ 207786 how are some sharks warm blooded how are some sharks waArm blooded misspelling 1999
16
+ 264014 how long is life cycle of flea how long is liff cycle of flea misspelling 1999
17
+ 359349 how to find the midsegment of a trapezoid how to find the midesgment of a trapezoid misspelling 1999
18
+ 405717 is cdg airport in main paris is cdg airport in man paris misspelling 1999
19
+ 443396 lps laws definition lpa laws definition misspelling 1999
20
+ 451602 medicare's definition of mechanical ventilation medicajre's definition of mechanical ventilation misspelling 1999
21
+ 489204 right pelvic pain causes right pelvic pain causfs misspelling 1999
22
+ 490595 rsa definition key sa definition key misspelling 1999
23
+ 527433 types of dysarthria from cerebral palsy types of dysarthria from cerebarl palsy misspelling 1999
24
+ 573724 what are the social determinants of health what are the sociao determinants of health misspelling 1999
25
+ 833860 what is the most popular food in switzerland what is the most popluar food in switzerland misspelling 1999
26
+ 855410 what is theraderm used for what is theraderm ueed for misspelling 1999
27
+ 915593 what types of food can you cook sous vide what types of food can you cook sous vie misspelling 1999
28
+ 962179 when was the salvation army founded when was the salvation army foundged misspelling 1999
29
+ 1037798 who is robert gray who is robett gray misspelling 1999
30
+ 1063750 why did the us volunterilay enter ww1 why did the us volunterilay enUter ww1 misspelling 1999
31
+ 1103812 who formed the commonwealth of independent states who formed the commonwealth of inLependent states misspelling 1999
32
+ 1106007 define visceral? define visferal? misspelling 1999
33
+ 1110199 what is wifi vs bluetooth what is Aifi vs bluetooth misspelling 1999
34
+ 1112341 what is the daily life of thai people what is the daily ilfe of thai people misspelling 1999
35
+ 1113437 what is physical description of spruce what is physical descriptiin of spruce misspelling 1999
36
+ 1114646 what is famvir prescribed for what is famfir prescribed for misspelling 1999
37
+ 1114819 what is durable medical equipment consist of what is durable medical equipment coneist of misspelling 1999
38
+ 1115776 what is an aml surveillance analyst what is an ajl surveillance analyst misspelling 1999
39
+ 1117099 what is a active margin what is a active omargin misspelling 1999
40
+ 1121402 what can contour plowing reduce what can contour pllwing reduce misspelling 1999
41
+ 1121709 what are the three percenters? what are the three eprcenters? misspelling 1999
42
+ 1124210 tracheids are part of _____. trcheids are part of _____. misspelling 1999
43
+ 1129237 hydrogen is a liquid below what temperature hydrogen is a liqiud below what temperature misspelling 1999
44
+ 1133167 how is the weather in jamaica how is the weathe in jamaica misspelling 1999
45
+ 19335 anthropological definition of environment anthrpological definition of environment misspelling 2016
46
+ 47923 axon terminals or synaptic knob definition axon terminals or synaptic knob tefinition misspelling 2016
47
+ 87181 causes of left ventricular hypertrophy causes of lwft ventricular hypertrophy misspelling 2016
48
+ 87452 causes of military suicide causes of military suicidd misspelling 2016
49
+ 104861 cost of interior concrete flooring cost of interior concrete flooriOg misspelling 2016
50
+ 130510 definition declaratory judgment definition declaratory jurdgment misspelling 2016
51
+ 131843 definition of a sigmet definigion of a sigmet misspelling 2016
52
+ 146187 difference between a mcdouble and a double cheeseburger difference between a mcdohble and a double cheeseburger misspelling 2016
53
+ 148538 difference between rn and bsn difference between rn and vsn misspelling 2016
54
+ 156493 do goldfish grow do goldtish grow misspelling 2016
55
+ 168216 does legionella pneumophila cause pneumonia does legionella pneumophsila cause pneumonia misspelling 2016
56
+ 182539 example of monotonic function example of mlnotonic function misspelling 2016
57
+ 183378 exons definition biology exons definition buology misspelling 2016
58
+ 207786 how are some sharks warm blooded how are some sarks warm blooded misspelling 2016
59
+ 264014 how long is life cycle of flea how long is lite cycle of flea misspelling 2016
60
+ 359349 how to find the midsegment of a trapezoid how to find the midsegmenf of a trapezoid misspelling 2016
61
+ 405717 is cdg airport in main paris is cdg amrport in main paris misspelling 2016
62
+ 443396 lps laws definition lpjs laws definition misspelling 2016
63
+ 451602 medicare's definition of mechanical ventilation medicare's definition of mechanical ventilacion misspelling 2016
64
+ 489204 right pelvic pain causes righ pelvic pain causes misspelling 2016
65
+ 490595 rsa definition key rsa definition ey misspelling 2016
66
+ 527433 types of dysarthria from cerebral palsy typeq of dysarthria from cerebral palsy misspelling 2016
67
+ 573724 what are the social determinants of health what are the social determinants of haelth misspelling 2016
68
+ 833860 what is the most popular food in switzerland what is the most popular fooW in switzerland misspelling 2016
69
+ 855410 what is theraderm used for what is theraderm usd for misspelling 2016
70
+ 915593 what types of food can you cook sous vide what typeH of food can you cook sous vide misspelling 2016
71
+ 962179 when was the salvation army founded when was the salvation arky founded misspelling 2016
72
+ 1037798 who is robert gray who is robert glray misspelling 2016
73
+ 1063750 why did the us volunterilay enter ww1 why did the us volunterilag enter ww1 misspelling 2016
74
+ 1103812 who formed the commonwealth of independent states who formed the commonwealth of indepdndent states misspelling 2016
75
+ 1106007 define visceral? define visceSral? misspelling 2016
76
+ 1110199 what is wifi vs bluetooth what is wifi vs lbuetooth misspelling 2016
77
+ 1112341 what is the daily life of thai people what is the dakly life of thai people misspelling 2016
78
+ 1113437 what is physical description of spruce what is physical description of pruce misspelling 2016
79
+ 1114646 what is famvir prescribed for what is famvir precsribed for misspelling 2016
80
+ 1114819 what is durable medical equipment consist of what is drable medical equipment consist of misspelling 2016
81
+ 1115776 what is an aml surveillance analyst what is an aml surveillance analcst misspelling 2016
82
+ 1117099 what is a active margin what is a actie margin misspelling 2016
83
+ 1121402 what can contour plowing reduce what can contour plowing rPeduce misspelling 2016
84
+ 1121709 what are the three percenters? what are the theee percenters? misspelling 2016
85
+ 1124210 tracheids are part of _____. tracheid are part of _____. misspelling 2016
86
+ 1129237 hydrogen is a liquid below what temperature hydrogen is a liquid below what tempdrature misspelling 2016
87
+ 1133167 how is the weather in jamaica how is the weathet in jamaica misspelling 2016
88
+ 19335 anthropological definition of environment anthropological definotion of environment misspelling 2026
89
+ 47923 axon terminals or synaptic knob definition axon terminaos or synaptic knob definition misspelling 2026
90
+ 87181 causes of left ventricular hypertrophy causes of left ventricula hypertrophy misspelling 2026
91
+ 87452 causes of military suicide causes of Smilitary suicide misspelling 2026
92
+ 104861 cost of interior concrete flooring cost of interior concrete dlooring misspelling 2026
93
+ 130510 definition declaratory judgment definiion declaratory judgment misspelling 2026
94
+ 131843 definition of a sigmet definition of a sibmet misspelling 2026
95
+ 146187 difference between a mcdouble and a double cheeseburger difference between a mcdouble and a double cheezeburger misspelling 2026
96
+ 148538 difference between rn and bsn difference between rn and bzn misspelling 2026
97
+ 156493 do goldfish grow do goldfish gdow misspelling 2026
98
+ 168216 does legionella pneumophila cause pneumonia does legionella pneumophila cuase pneumonia misspelling 2026
99
+ 182539 example of monotonic function example of monotonic funcsion misspelling 2026
100
+ 183378 exons definition biology exons definAtion biology misspelling 2026
101
+ 207786 how are some sharks warm blooded how are some sharks warm bloodeFd misspelling 2026
102
+ 264014 how long is life cycle of flea how long is lifr cycle of flea misspelling 2026
103
+ 359349 how to find the midsegment of a trapezoid how to find the midsegment of a trpezoid misspelling 2026
104
+ 405717 is cdg airport in main paris is cdg airport in main pHris misspelling 2026
105
+ 443396 lps laws definition lps laws deinition misspelling 2026
106
+ 451602 medicare's definition of mechanical ventilation mediare's definition of mechanical ventilation misspelling 2026
107
+ 489204 right pelvic pain causes right pelvic pain czuses misspelling 2026
108
+ 490595 rsa definition key rsa definition ke misspelling 2026
109
+ 527433 types of dysarthria from cerebral palsy types of dysarthria from cerebral paldy misspelling 2026
110
+ 573724 what are the social determinants of health what are the social determihants of health misspelling 2026
111
+ 833860 what is the most popular food in switzerland what is the most popular food in sqitzerland misspelling 2026
112
+ 855410 what is theraderm used for what is theraderm use for misspelling 2026
113
+ 915593 what types of food can you cook sous vide what types of foid can you cook sous vide misspelling 2026
114
+ 962179 when was the salvation army founded when was the salvatioL army founded misspelling 2026
115
+ 1037798 who is robert gray who is rDbert gray misspelling 2026
116
+ 1063750 why did the us volunterilay enter ww1 why did the us volunterilay enter wvw1 misspelling 2026
117
+ 1103812 who formed the commonwealth of independent states who formed the commonwealrh of independent states misspelling 2026
118
+ 1106007 define visceral? detine visceral? misspelling 2026
119
+ 1110199 what is wifi vs bluetooth what is wiWfi vs bluetooth misspelling 2026
120
+ 1112341 what is the daily life of thai people what is the daily life of thUi people misspelling 2026
121
+ 1113437 what is physical description of spruce what is physical dpescription of spruce misspelling 2026
122
+ 1114646 what is famvir prescribed for what is famvir prescribeGd for misspelling 2026
123
+ 1114819 what is durable medical equipment consist of what is durable medical equipment consisf of misspelling 2026
124
+ 1115776 what is an aml surveillance analyst what is an aml surveillancU analyst misspelling 2026
125
+ 1117099 what is a active margin what is a actiGe margin misspelling 2026
126
+ 1121402 what can contour plowing reduce what can contour paowing reduce misspelling 2026
127
+ 1121709 what are the three percenters? what are the yhree percenters? misspelling 2026
128
+ 1124210 tracheids are part of _____. tracheids are pzrt of _____. misspelling 2026
129
+ 1129237 hydrogen is a liquid below what temperature hydqogen is a liquid below what temperature misspelling 2026
130
+ 1133167 how is the weather in jamaica how is the weahter in jamaica misspelling 2026
131
+ 19335 anthropological definition of environment anthropological definition of environmcent misspelling 27
132
+ 47923 axon terminals or synaptic knob definition axon terminXals or synaptic knob definition misspelling 27
133
+ 87181 causes of left ventricular hypertrophy causes of left vetricular hypertrophy misspelling 27
134
+ 87452 causes of military suicide causes of military suicde misspelling 27
135
+ 104861 cost of interior concrete flooring cost of intsrior concrete flooring misspelling 27
136
+ 130510 definition declaratory judgment definition declaratory Dudgment misspelling 27
137
+ 131843 definition of a sigmet defiintion of a sigmet misspelling 27
138
+ 146187 difference between a mcdouble and a double cheeseburger difference between a cdouble and a double cheeseburger misspelling 27
139
+ 148538 difference between rn and bsn difference between rn and gsn misspelling 27
140
+ 156493 do goldfish grow do goldfish groe misspelling 27
141
+ 168216 does legionella pneumophila cause pneumonia does legionella pneuomphila cause pneumonia misspelling 27
142
+ 182539 example of monotonic function example of monotoOic function misspelling 27
143
+ 183378 exons definition biology esons definition biology misspelling 27
144
+ 207786 how are some sharks warm blooded how are some sharks awrm blooded misspelling 27
145
+ 264014 how long is life cycle of flea how long is life cyclD of flea misspelling 27
146
+ 359349 how to find the midsegment of a trapezoid how to find the midsegment of a trapwzoid misspelling 27
147
+ 405717 is cdg airport in main paris is cdg airport in main prais misspelling 27
148
+ 443396 lps laws definition lpKs laws definition misspelling 27
149
+ 451602 medicare's definition of mechanical ventilation medicrae's definition of mechanical ventilation misspelling 27
150
+ 489204 right pelvic pain causes right pelvic pain causves misspelling 27
151
+ 490595 rsa definition key esa definition key misspelling 27
152
+ 527433 types of dysarthria from cerebral palsy types of dysarthria from erebral palsy misspelling 27
153
+ 573724 what are the social determinants of health what are the social determinats of health misspelling 27
154
+ 833860 what is the most popular food in switzerland what is the most popular fhod in switzerland misspelling 27
155
+ 855410 what is theraderm used for what is teraderm used for misspelling 27
156
+ 915593 what types of food can you cook sous vide what tupes of food can you cook sous vide misspelling 27
157
+ 962179 when was the salvation army founded when was the salvation army eounded misspelling 27
158
+ 1037798 who is robert gray who is robert yray misspelling 27
159
+ 1063750 why did the us volunterilay enter ww1 why did the us volunterilay enter wwa misspelling 27
160
+ 1103812 who formed the commonwealth of independent states who formde the commonwealth of independent states misspelling 27
161
+ 1106007 define visceral? defnie visceral? misspelling 27
162
+ 1110199 what is wifi vs bluetooth what is wici vs bluetooth misspelling 27
163
+ 1112341 what is the daily life of thai people what is the daily life of thaj people misspelling 27
164
+ 1113437 what is physical description of spruce what is phyical description of spruce misspelling 27
165
+ 1114646 what is famvir prescribed for what is famvir rpescribed for misspelling 27
166
+ 1114819 what is durable medical equipment consist of what is durable medical equipment conssit of misspelling 27
167
+ 1115776 what is an aml surveillance analyst what is an aml surveiliance analyst misspelling 27
168
+ 1117099 what is a active margin what is a activf margin misspelling 27
169
+ 1121402 what can contour plowing reduce what can contour plowing redLuce misspelling 27
170
+ 1121709 what are the three percenters? what are the three percentera? misspelling 27
171
+ 1124210 tracheids are part of _____. tracheids are pqrt of _____. misspelling 27
172
+ 1129237 hydrogen is a liquid below what temperature hydrogen is a liqui below what temperature misspelling 27
173
+ 1133167 how is the weather in jamaica how is the weaPther in jamaica misspelling 27
174
+ 19335 anthropological definition of environment anthropological definition of envirinment misspelling 5
175
+ 47923 axon terminals or synaptic knob definition axon terminals or synaptic kob definition misspelling 5
176
+ 87181 causes of left ventricular hypertrophy causes of lsft ventricular hypertrophy misspelling 5
177
+ 87452 causes of military suicide causes of military suiciee misspelling 5
178
+ 104861 cost of interior concrete flooring cost of iJterior concrete flooring misspelling 5
179
+ 130510 definition declaratory judgment defiCition declaratory judgment misspelling 5
180
+ 131843 definition of a sigmet definirion of a sigmet misspelling 5
181
+ 146187 difference between a mcdouble and a double cheeseburger difefrence between a mcdouble and a double cheeseburger misspelling 5
182
+ 148538 difference between rn and bsn drfference between rn and bsn misspelling 5
183
+ 156493 do goldfish grow do goldfish grox misspelling 5
184
+ 168216 does legionella pneumophila cause pneumonia does slegionella pneumophila cause pneumonia misspelling 5
185
+ 182539 example of monotonic function ecample of monotonic function misspelling 5
186
+ 183378 exons definition biology exons definition bioligy misspelling 5
187
+ 207786 how are some sharks warm blooded how are some sharks warm blooxed misspelling 5
188
+ 264014 how long is life cycle of flea how lpng is life cycle of flea misspelling 5
189
+ 359349 how to find the midsegment of a trapezoid how to find the midsegment of a trapeaoid misspelling 5
190
+ 405717 is cdg airport in main paris is cdg airport in maim paris misspelling 5
191
+ 443396 lps laws definition ls laws definition misspelling 5
192
+ 451602 medicare's definition of mechanical ventilation medicare's definition of mechanical venyilation misspelling 5
193
+ 489204 right pelvic pain causes right pelvic paun causes misspelling 5
194
+ 490595 rsa definition key ursa definition key misspelling 5
195
+ 527433 types of dysarthria from cerebral palsy types of dysarthria from cerrbral palsy misspelling 5
196
+ 573724 what are the social determinants of health what are the socal determinants of health misspelling 5
197
+ 833860 what is the most popular food in switzerland what is the most popular food in swirzerland misspelling 5
198
+ 855410 what is theraderm used for what is theraderm use for misspelling 5
199
+ 915593 what types of food can you cook sous vide what typse of food can you cook sous vide misspelling 5
200
+ 962179 when was the salvation army founded when was the salvation armj founded misspelling 5
201
+ 1037798 who is robert gray who is robert grau misspelling 5
202
+ 1063750 why did the us volunterilay enter ww1 why did the us volunterilay enger ww1 misspelling 5
203
+ 1103812 who formed the commonwealth of independent states who formed the commonwealth of independent stateWs misspelling 5
204
+ 1106007 define visceral? deeine visceral? misspelling 5
205
+ 1110199 what is wifi vs bluetooth what is eifi vs bluetooth misspelling 5
206
+ 1112341 what is the daily life of thai people what is the dauly life of thai people misspelling 5
207
+ 1113437 what is physical description of spruce what is physical description of srpuce misspelling 5
208
+ 1114646 what is famvir prescribed for what is famvir orescribed for misspelling 5
209
+ 1114819 what is durable medical equipment consist of what is durable medical equipment consit of misspelling 5
210
+ 1115776 what is an aml surveillance analyst what is an am surveillance analyst misspelling 5
211
+ 1117099 what is a active margin what is a Mctive margin misspelling 5
212
+ 1121402 what can contour plowing reduce what can contour plowng reduce misspelling 5
213
+ 1121709 what are the three percenters? what are the threp percenters? misspelling 5
214
+ 1124210 tracheids are part of _____. tracheids are aprt of _____. misspelling 5
215
+ 1129237 hydrogen is a liquid below what temperature hydrogen is a liquid below what temperatyre misspelling 5
216
+ 1133167 how is the weather in jamaica how is the weather in jamaida misspelling 5
lost_in_decoding_artifacts/trec-dl-2019/naturality.tsv ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ qid original_query perturbed_query perturbation seed
2
+ 19335 anthropological definition of environment anthropological definition environment naturality deterministic
3
+ 47923 axon terminals or synaptic knob definition axon terminals synaptic knob definition naturality deterministic
4
+ 87181 causes of left ventricular hypertrophy causes left ventricular hypertrophy naturality deterministic
5
+ 87452 causes of military suicide causes military suicide naturality deterministic
6
+ 104861 cost of interior concrete flooring cost interior concrete flooring naturality deterministic
7
+ 130510 definition declaratory judgment definition declaratory judgment naturality deterministic
8
+ 131843 definition of a sigmet definition sigmet naturality deterministic
9
+ 146187 difference between a mcdouble and a double cheeseburger difference mcdouble double cheeseburger naturality deterministic
10
+ 148538 difference between rn and bsn difference rn bsn naturality deterministic
11
+ 156493 do goldfish grow goldfish grow naturality deterministic
12
+ 168216 does legionella pneumophila cause pneumonia legionella pneumophila cause pneumonia naturality deterministic
13
+ 182539 example of monotonic function example monotonic function naturality deterministic
14
+ 183378 exons definition biology exons definition biology naturality deterministic
15
+ 207786 how are some sharks warm blooded sharks warm blooded naturality deterministic
16
+ 264014 how long is life cycle of flea long life cycle flea naturality deterministic
17
+ 359349 how to find the midsegment of a trapezoid find midsegment trapezoid naturality deterministic
18
+ 405717 is cdg airport in main paris cdg airport main paris naturality deterministic
19
+ 443396 lps laws definition lps laws definition naturality deterministic
20
+ 451602 medicare's definition of mechanical ventilation medicare's definition mechanical ventilation naturality deterministic
21
+ 489204 right pelvic pain causes right pelvic pain causes naturality deterministic
22
+ 490595 rsa definition key rsa definition key naturality deterministic
23
+ 527433 types of dysarthria from cerebral palsy types dysarthria cerebral palsy naturality deterministic
24
+ 573724 what are the social determinants of health social determinants health naturality deterministic
25
+ 833860 what is the most popular food in switzerland popular food switzerland naturality deterministic
26
+ 855410 what is theraderm used for theraderm used naturality deterministic
27
+ 915593 what types of food can you cook sous vide types food cook sous vide naturality deterministic
28
+ 962179 when was the salvation army founded salvation army founded naturality deterministic
29
+ 1037798 who is robert gray robert gray naturality deterministic
30
+ 1063750 why did the us volunterilay enter ww1 us volunterilay enter ww1 naturality deterministic
31
+ 1103812 who formed the commonwealth of independent states formed commonwealth independent states naturality deterministic
32
+ 1106007 define visceral? define visceral? naturality deterministic
33
+ 1110199 what is wifi vs bluetooth wifi vs bluetooth naturality deterministic
34
+ 1112341 what is the daily life of thai people daily life thai people naturality deterministic
35
+ 1113437 what is physical description of spruce physical description spruce naturality deterministic
36
+ 1114646 what is famvir prescribed for famvir prescribed naturality deterministic
37
+ 1114819 what is durable medical equipment consist of durable medical equipment consist naturality deterministic
38
+ 1115776 what is an aml surveillance analyst aml surveillance analyst naturality deterministic
39
+ 1117099 what is a active margin active margin naturality deterministic
40
+ 1121402 what can contour plowing reduce contour plowing reduce naturality deterministic
41
+ 1121709 what are the three percenters? three percenters? naturality deterministic
42
+ 1124210 tracheids are part of _____. tracheids part _____. naturality deterministic
43
+ 1129237 hydrogen is a liquid below what temperature hydrogen liquid temperature naturality deterministic
44
+ 1133167 how is the weather in jamaica weather jamaica naturality deterministic
lost_in_decoding_artifacts/trec-dl-2019/paraphrase.tsv ADDED
@@ -0,0 +1,216 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ qid original_query perturbed_query perturbation seed
2
+ 19335 anthropological definition of environment What is the anthropological definition of environment? paraphrase 1999
3
+ 47923 axon terminals or synaptic knob definition axon terminals or synaptic nod definition paraphrase 1999
4
+ 87181 causes of left ventricular hypertrophy Causes of Ventricular Hypertrophy paraphrase 1999
5
+ 87452 causes of military suicide Causes of Military Suicide paraphrase 1999
6
+ 104861 cost of interior concrete flooring What is the cost of interior concrete flooring? paraphrase 1999
7
+ 130510 definition declaratory judgment What is declaratory judgment? paraphrase 1999
8
+ 131843 definition of a sigmet Definition of a Sigmet paraphrase 1999
9
+ 146187 difference between a mcdouble and a double cheeseburger What is the difference between a double cheeseburger and a mcdouble? paraphrase 1999
10
+ 148538 difference between rn and bsn Difference between rn and bsn paraphrase 1999
11
+ 156493 do goldfish grow How do goldfish grow? paraphrase 1999
12
+ 168216 does legionella pneumophila cause pneumonia Does legionella pneumophila cause pneumonia? paraphrase 1999
13
+ 182539 example of monotonic function Examples of monotonous function paraphrase 1999
14
+ 183378 exons definition biology What is the exons definition of biology? paraphrase 1999
15
+ 207786 how are some sharks warm blooded How are some sharks hot blood? paraphrase 1999
16
+ 264014 how long is life cycle of flea How long is the life cycle of the flies? paraphrase 1999
17
+ 359349 how to find the midsegment of a trapezoid How to find the middle segment of a trapezoid paraphrase 1999
18
+ 405717 is cdg airport in main paris is CDG Airport in the headquarters of Paris paraphrase 1999
19
+ 443396 lps laws definition What is the definition of lps law? paraphrase 1999
20
+ 451602 medicare's definition of mechanical ventilation What is the medicare definition of mechanical ventilation? paraphrase 1999
21
+ 489204 right pelvic pain causes Causes Right Pain paraphrase 1999
22
+ 490595 rsa definition key What is rsa definition key? paraphrase 1999
23
+ 527433 types of dysarthria from cerebral palsy What are the types of dysarthria from cerebral palsy? paraphrase 1999
24
+ 573724 what are the social determinants of health What are the social factors of health paraphrase 1999
25
+ 833860 what is the most popular food in switzerland What is the most popular food in Switzerland paraphrase 1999
26
+ 855410 what is theraderm used for What is theraderm used for? paraphrase 1999
27
+ 915593 what types of food can you cook sous vide What types of food you can cook under vide paraphrase 1999
28
+ 962179 when was the salvation army founded When was the salvation army founded? paraphrase 1999
29
+ 1037798 who is robert gray Who is Robert Grey? paraphrase 1999
30
+ 1063750 why did the us volunterilay enter ww1 Why did the US enter WW1? paraphrase 1999
31
+ 1103812 who formed the commonwealth of independent states The Common Wealth of Independent States paraphrase 1999
32
+ 1106007 define visceral? Do you define Visceral? paraphrase 1999
33
+ 1110199 what is wifi vs bluetooth What is the difference between wifi and bluetooth? paraphrase 1999
34
+ 1112341 what is the daily life of thai people What is the daily life of Thai people? paraphrase 1999
35
+ 1113437 what is physical description of spruce What is the physical description of spruce? paraphrase 1999
36
+ 1114646 what is famvir prescribed for What is famvir prescribed for? paraphrase 1999
37
+ 1114819 what is durable medical equipment consist of What is Sustainable Medical Equipment paraphrase 1999
38
+ 1115776 what is an aml surveillance analyst What is an Aml Monitoring Analyst? paraphrase 1999
39
+ 1117099 what is a active margin What is an active margin paraphrase 1999
40
+ 1121402 what can contour plowing reduce What Can Reduce Contour Plowing paraphrase 1999
41
+ 1121709 what are the three percenters? What are the three percenters? paraphrase 1999
42
+ 1124210 tracheids are part of _____. Are tracheids a part of _____? paraphrase 1999
43
+ 1129237 hydrogen is a liquid below what temperature Hydrogen is a fluid under which temperature paraphrase 1999
44
+ 1133167 how is the weather in jamaica How is the weather in Jamaica paraphrase 1999
45
+ 19335 anthropological definition of environment Anthropological definition of the environment paraphrase 2016
46
+ 47923 axon terminals or synaptic knob definition What is the difference between axon terminals and synaptic knobs? paraphrase 2016
47
+ 87181 causes of left ventricular hypertrophy What causes left ventricular hypertrophy? paraphrase 2016
48
+ 87452 causes of military suicide What are the causes of military suicide? paraphrase 2016
49
+ 104861 cost of interior concrete flooring Cost of internal concrete paraphrase 2016
50
+ 130510 definition declaratory judgment What is declaratory judgment? paraphrase 2016
51
+ 131843 definition of a sigmet Definition of a Sigmet paraphrase 2016
52
+ 146187 difference between a mcdouble and a double cheeseburger What is the difference between a double cheeseburger and a mcdouble? paraphrase 2016
53
+ 148538 difference between rn and bsn What is the difference between rn and bsn? paraphrase 2016
54
+ 156493 do goldfish grow How do goldfish grow? paraphrase 2016
55
+ 168216 does legionella pneumophila cause pneumonia Does legionella pneumophila cause pneumonia? paraphrase 2016
56
+ 182539 example of monotonic function Examples of monotonous function paraphrase 2016
57
+ 183378 exons definition biology Exon Definition Biology paraphrase 2016
58
+ 207786 how are some sharks warm blooded How do sharks get warm blooded? paraphrase 2016
59
+ 264014 how long is life cycle of flea How long is the life cycle of the flies? paraphrase 2016
60
+ 359349 how to find the midsegment of a trapezoid How to find the middle segment of a trapezoid paraphrase 2016
61
+ 405717 is cdg airport in main paris Is there a cdg airport in Paris? paraphrase 2016
62
+ 443396 lps laws definition LPS Law Definition paraphrase 2016
63
+ 451602 medicare's definition of mechanical ventilation What is the medicare definition of mechanical ventilation? paraphrase 2016
64
+ 489204 right pelvic pain causes Causes Right Pain paraphrase 2016
65
+ 490595 rsa definition key What is rsa definition key? paraphrase 2016
66
+ 527433 types of dysarthria from cerebral palsy What are the types of dysarthria from cerebral palsy? paraphrase 2016
67
+ 573724 what are the social determinants of health What are the social factors of health paraphrase 2016
68
+ 833860 what is the most popular food in switzerland What is the most popular food in Switzerland? paraphrase 2016
69
+ 855410 what is theraderm used for What is Theraderm used paraphrase 2016
70
+ 915593 what types of food can you cook sous vide What types of food can you cook sous vide? paraphrase 2016
71
+ 962179 when was the salvation army founded When the rescue army was established? paraphrase 2016
72
+ 1037798 who is robert gray Who is Robert Grey? paraphrase 2016
73
+ 1063750 why did the us volunterilay enter ww1 Why did the US enter WW1? paraphrase 2016
74
+ 1103812 who formed the commonwealth of independent states Who formed the commonwealth of independent states? paraphrase 2016
75
+ 1106007 define visceral? Do you define Visceral? paraphrase 2016
76
+ 1110199 what is wifi vs bluetooth What is wifi vs bluetooth paraphrase 2016
77
+ 1112341 what is the daily life of thai people What is the daily life of Thai people? paraphrase 2016
78
+ 1113437 what is physical description of spruce What is the physical description of Spruce paraphrase 2016
79
+ 1114646 what is famvir prescribed for What is famvir prescribed for? paraphrase 2016
80
+ 1114819 what is durable medical equipment consist of What is Sustainable Medical Equipment paraphrase 2016
81
+ 1115776 what is an aml surveillance analyst What is an aml surveillance analyst? paraphrase 2016
82
+ 1117099 what is a active margin What is active margin? paraphrase 2016
83
+ 1121402 what can contour plowing reduce What can contour plowing reduce? paraphrase 2016
84
+ 1121709 what are the three percenters? What are the three percent? paraphrase 2016
85
+ 1124210 tracheids are part of _____. Tracheids are part of _____. paraphrase 2016
86
+ 1129237 hydrogen is a liquid below what temperature Is hydrogen a liquid below what temperature? paraphrase 2016
87
+ 1133167 how is the weather in jamaica How is the weather in Jamaica paraphrase 2016
88
+ 19335 anthropological definition of environment What is the anthropological definition of environment? paraphrase 2026
89
+ 47923 axon terminals or synaptic knob definition What is the difference between axon terminals and synaptic knobs? paraphrase 2026
90
+ 87181 causes of left ventricular hypertrophy What causes left ventricular hypertrophy? paraphrase 2026
91
+ 87452 causes of military suicide Causes of Military Suicide paraphrase 2026
92
+ 104861 cost of interior concrete flooring What is the cost of interior concrete flooring? paraphrase 2026
93
+ 130510 definition declaratory judgment Definition of declaring judgment paraphrase 2026
94
+ 131843 definition of a sigmet What is a sigmet? paraphrase 2026
95
+ 146187 difference between a mcdouble and a double cheeseburger Difference Between a McDouble and a Double Cheeseburger paraphrase 2026
96
+ 148538 difference between rn and bsn What is the difference between rn and bsn? paraphrase 2026
97
+ 156493 do goldfish grow How do goldfish grow? paraphrase 2026
98
+ 168216 does legionella pneumophila cause pneumonia Does legionella pneumophila cause pneumonia? paraphrase 2026
99
+ 182539 example of monotonic function What is a monotonic function? What are some examples? paraphrase 2026
100
+ 183378 exons definition biology What is the exons definition of biology? paraphrase 2026
101
+ 207786 how are some sharks warm blooded How are some sharks hot blood? paraphrase 2026
102
+ 264014 how long is life cycle of flea How long is the life cycle of the flies? paraphrase 2026
103
+ 359349 how to find the midsegment of a trapezoid How do you find the midsegment of a trapezoid? paraphrase 2026
104
+ 405717 is cdg airport in main paris Is there a cdg airport in Paris? paraphrase 2026
105
+ 443396 lps laws definition LPS Law Definition paraphrase 2026
106
+ 451602 medicare's definition of mechanical ventilation Doctors Define Mechanical Ventilation paraphrase 2026
107
+ 489204 right pelvic pain causes Causes Right Pain paraphrase 2026
108
+ 490595 rsa definition key What is rsa definition key? paraphrase 2026
109
+ 527433 types of dysarthria from cerebral palsy What are the types of dysarthria from cerebral palsy? paraphrase 2026
110
+ 573724 what are the social determinants of health What are the social factors of health paraphrase 2026
111
+ 833860 what is the most popular food in switzerland What is the most popular food in Switzerland? paraphrase 2026
112
+ 855410 what is theraderm used for What is theraderm used for? paraphrase 2026
113
+ 915593 what types of food can you cook sous vide What types of food can you cook sous vide? paraphrase 2026
114
+ 962179 when was the salvation army founded When was the salvation army founded? paraphrase 2026
115
+ 1037798 who is robert gray Who is Robert Gray? paraphrase 2026
116
+ 1063750 why did the us volunterilay enter ww1 Why the U.S. Volunterilay entered WW1 paraphrase 2026
117
+ 1103812 who formed the commonwealth of independent states Who formed the commonwealth of independent states? paraphrase 2026
118
+ 1106007 define visceral? What is visceral? paraphrase 2026
119
+ 1110199 what is wifi vs bluetooth What is the difference between wifi and bluetooth? paraphrase 2026
120
+ 1112341 what is the daily life of thai people What is the daily life of Thai people? paraphrase 2026
121
+ 1113437 what is physical description of spruce What is the physical description of spruce? paraphrase 2026
122
+ 1114646 what is famvir prescribed for What is famvir prescribed for? paraphrase 2026
123
+ 1114819 what is durable medical equipment consist of What is durable medical equipment? paraphrase 2026
124
+ 1115776 what is an aml surveillance analyst What is an Aml Monitoring Analyst? paraphrase 2026
125
+ 1117099 what is a active margin What is an active margin paraphrase 2026
126
+ 1121402 what can contour plowing reduce What can contour plowing reduce? paraphrase 2026
127
+ 1121709 what are the three percenters? What are the three percenters? paraphrase 2026
128
+ 1124210 tracheids are part of _____. Tracheids are part of _____. paraphrase 2026
129
+ 1129237 hydrogen is a liquid below what temperature Hydrogen is a fluid under which temperature paraphrase 2026
130
+ 1133167 how is the weather in jamaica How is the weather in Jamaica paraphrase 2026
131
+ 19335 anthropological definition of environment What is the anthropological definition of environment? paraphrase 27
132
+ 47923 axon terminals or synaptic knob definition axon terminals or synaptic nod definition paraphrase 27
133
+ 87181 causes of left ventricular hypertrophy What causes left ventricular hypertrophy? paraphrase 27
134
+ 87452 causes of military suicide Causes of Military Suicide paraphrase 27
135
+ 104861 cost of interior concrete flooring Cost of internal concrete paraphrase 27
136
+ 130510 definition declaratory judgment What is declaratory judgment? paraphrase 27
137
+ 131843 definition of a sigmet What is a sigmet? paraphrase 27
138
+ 146187 difference between a mcdouble and a double cheeseburger What is the difference between a double cheeseburger and a mcdouble? paraphrase 27
139
+ 148538 difference between rn and bsn What is the difference between rn and bsn? paraphrase 27
140
+ 156493 do goldfish grow How do goldfish grow? paraphrase 27
141
+ 168216 does legionella pneumophila cause pneumonia Legionella pneumophila causes pneumonia paraphrase 27
142
+ 182539 example of monotonic function What is a monotonic function? What are some examples? paraphrase 27
143
+ 183378 exons definition biology Exon Definition Biology paraphrase 27
144
+ 207786 how are some sharks warm blooded How do sharks get warm blooded? paraphrase 27
145
+ 264014 how long is life cycle of flea How long is the life cycle of the flies? paraphrase 27
146
+ 359349 how to find the midsegment of a trapezoid How do you find the midsegment of a trapezoid? paraphrase 27
147
+ 405717 is cdg airport in main paris Is there a cdg airport in Paris? paraphrase 27
148
+ 443396 lps laws definition What is the definition of lps law? paraphrase 27
149
+ 451602 medicare's definition of mechanical ventilation Doctors Define Mechanical Ventilation paraphrase 27
150
+ 489204 right pelvic pain causes Causes Right Pain paraphrase 27
151
+ 490595 rsa definition key What is rsa definition key? paraphrase 27
152
+ 527433 types of dysarthria from cerebral palsy What are the types of dysarthria from cerebral palsy? paraphrase 27
153
+ 573724 what are the social determinants of health What are social determinants of health? paraphrase 27
154
+ 833860 what is the most popular food in switzerland What is the most popular food in Switzerland? paraphrase 27
155
+ 855410 what is theraderm used for What is theraderm used for? paraphrase 27
156
+ 915593 what types of food can you cook sous vide What types of food can you cook sous vide? paraphrase 27
157
+ 962179 when was the salvation army founded When the rescue army was established? paraphrase 27
158
+ 1037798 who is robert gray Who is Robert Grey? paraphrase 27
159
+ 1063750 why did the us volunterilay enter ww1 Why did the US enter WW1? paraphrase 27
160
+ 1103812 who formed the commonwealth of independent states The Common Wealth of Independent States paraphrase 27
161
+ 1106007 define visceral? Do you define Visceral? paraphrase 27
162
+ 1110199 what is wifi vs bluetooth What is the difference between wifi and bluetooth? paraphrase 27
163
+ 1112341 what is the daily life of thai people What is the daily life of Thai people? paraphrase 27
164
+ 1113437 what is physical description of spruce What is the physical description of Spruce paraphrase 27
165
+ 1114646 what is famvir prescribed for What is famvir prescribed for paraphrase 27
166
+ 1114819 what is durable medical equipment consist of What is durable medical equipment? paraphrase 27
167
+ 1115776 what is an aml surveillance analyst What is an aml surveillance analyst? paraphrase 27
168
+ 1117099 what is a active margin What is active margin? paraphrase 27
169
+ 1121402 what can contour plowing reduce What Can Reduce Contour Plowing paraphrase 27
170
+ 1121709 what are the three percenters? What are the three percenters? paraphrase 27
171
+ 1124210 tracheids are part of _____. Tracheids are part of _____. paraphrase 27
172
+ 1129237 hydrogen is a liquid below what temperature Is hydrogen a liquid below what temperature? paraphrase 27
173
+ 1133167 how is the weather in jamaica How is the weather in Jamaica paraphrase 27
174
+ 19335 anthropological definition of environment Anthropological definition of the environment paraphrase 5
175
+ 47923 axon terminals or synaptic knob definition What is the difference between axon terminals and synaptic knobs? paraphrase 5
176
+ 87181 causes of left ventricular hypertrophy What causes left ventricular hypertrophy? paraphrase 5
177
+ 87452 causes of military suicide What are the causes of military suicide? paraphrase 5
178
+ 104861 cost of interior concrete flooring What is the cost of interior concrete flooring? paraphrase 5
179
+ 130510 definition declaratory judgment Definition of declaring judgment paraphrase 5
180
+ 131843 definition of a sigmet What is a sigmet? paraphrase 5
181
+ 146187 difference between a mcdouble and a double cheeseburger Difference Between a McDouble and a Double Cheeseburger paraphrase 5
182
+ 148538 difference between rn and bsn Difference between rn and bsn paraphrase 5
183
+ 156493 do goldfish grow How do goldfish grow? paraphrase 5
184
+ 168216 does legionella pneumophila cause pneumonia Legionella pneumophila causes pneumonia paraphrase 5
185
+ 182539 example of monotonic function Examples of monotonous function paraphrase 5
186
+ 183378 exons definition biology Exon Definition Biology paraphrase 5
187
+ 207786 how are some sharks warm blooded How are some sharks hot blood? paraphrase 5
188
+ 264014 how long is life cycle of flea How long is the life cycle of fleas? paraphrase 5
189
+ 359349 how to find the midsegment of a trapezoid How to find the middle segment of a trapezoid paraphrase 5
190
+ 405717 is cdg airport in main paris is CDG Airport in the headquarters of Paris paraphrase 5
191
+ 443396 lps laws definition LPS Law Definition paraphrase 5
192
+ 451602 medicare's definition of mechanical ventilation What is the medicare definition of mechanical ventilation? paraphrase 5
193
+ 489204 right pelvic pain causes Causes Right Pain paraphrase 5
194
+ 490595 rsa definition key RSA Definition Key paraphrase 5
195
+ 527433 types of dysarthria from cerebral palsy What are the types of dysarthria from cerebral palsy? paraphrase 5
196
+ 573724 what are the social determinants of health What are the social factors of health paraphrase 5
197
+ 833860 what is the most popular food in switzerland What is the most popular food in Switzerland? paraphrase 5
198
+ 855410 what is theraderm used for What is Theraderm used paraphrase 5
199
+ 915593 what types of food can you cook sous vide What types of food can you cook sous vide? paraphrase 5
200
+ 962179 when was the salvation army founded When the rescue army was established? paraphrase 5
201
+ 1037798 who is robert gray Who is Robert Grey? paraphrase 5
202
+ 1063750 why did the us volunterilay enter ww1 Why did the US enter WW1? paraphrase 5
203
+ 1103812 who formed the commonwealth of independent states Who formed the commonwealth of independent states? paraphrase 5
204
+ 1106007 define visceral? Do you define Visceral? paraphrase 5
205
+ 1110199 what is wifi vs bluetooth What is wifi vs bluetooth paraphrase 5
206
+ 1112341 what is the daily life of thai people What is the daily life of the Thai people? paraphrase 5
207
+ 1113437 what is physical description of spruce What is the physical description of Spruce paraphrase 5
208
+ 1114646 what is famvir prescribed for What is famvir prescribed for paraphrase 5
209
+ 1114819 what is durable medical equipment consist of What is Sustainable Medical Equipment paraphrase 5
210
+ 1115776 what is an aml surveillance analyst What is an Aml Monitoring Analyst? paraphrase 5
211
+ 1117099 what is a active margin What is an active margin paraphrase 5
212
+ 1121402 what can contour plowing reduce What can contour plowing reduce? paraphrase 5
213
+ 1121709 what are the three percenters? What are the three percenters? paraphrase 5
214
+ 1124210 tracheids are part of _____. Are tracheids a part of _____? paraphrase 5
215
+ 1129237 hydrogen is a liquid below what temperature Is hydrogen a liquid below what temperature? paraphrase 5
216
+ 1133167 how is the weather in jamaica How is the weather in Jamaica? paraphrase 5
lost_in_decoding_artifacts/trec-dl-2019/reordering.tsv ADDED
@@ -0,0 +1,216 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ qid original_query perturbed_query perturbation seed
2
+ 19335 anthropological definition of environment of definition anthropological environment reordering 1999
3
+ 47923 axon terminals or synaptic knob definition axon terminals definition synaptic knob or reordering 1999
4
+ 87181 causes of left ventricular hypertrophy causes left of ventricular hypertrophy reordering 1999
5
+ 87452 causes of military suicide of causes military suicide reordering 1999
6
+ 104861 cost of interior concrete flooring cost interior of concrete flooring reordering 1999
7
+ 130510 definition declaratory judgment declaratory definition judgment reordering 1999
8
+ 131843 definition of a sigmet definition sigmet a of reordering 1999
9
+ 146187 difference between a mcdouble and a double cheeseburger difference double a mcdouble and a between cheeseburger reordering 1999
10
+ 148538 difference between rn and bsn bsn between rn and difference reordering 1999
11
+ 156493 do goldfish grow do grow goldfish reordering 1999
12
+ 168216 does legionella pneumophila cause pneumonia does legionella cause pneumophila pneumonia reordering 1999
13
+ 182539 example of monotonic function of example monotonic function reordering 1999
14
+ 183378 exons definition biology biology definition exons reordering 1999
15
+ 207786 how are some sharks warm blooded how are sharks some warm blooded reordering 1999
16
+ 264014 how long is life cycle of flea is long how life cycle of flea reordering 1999
17
+ 359349 how to find the midsegment of a trapezoid how find to the midsegment of a trapezoid reordering 1999
18
+ 405717 is cdg airport in main paris in cdg airport is main paris reordering 1999
19
+ 443396 lps laws definition laws lps definition reordering 1999
20
+ 451602 medicare's definition of mechanical ventilation medicare's definition mechanical of ventilation reordering 1999
21
+ 489204 right pelvic pain causes right pelvic causes pain reordering 1999
22
+ 490595 rsa definition key rsa key definition reordering 1999
23
+ 527433 types of dysarthria from cerebral palsy types of dysarthria from palsy cerebral reordering 1999
24
+ 573724 what are the social determinants of health what are the social of determinants health reordering 1999
25
+ 833860 what is the most popular food in switzerland what is the most food popular in switzerland reordering 1999
26
+ 855410 what is theraderm used for what theraderm is used for reordering 1999
27
+ 915593 what types of food can you cook sous vide what types of food can you vide sous cook reordering 1999
28
+ 962179 when was the salvation army founded when salvation the was army founded reordering 1999
29
+ 1037798 who is robert gray who gray robert is reordering 1999
30
+ 1063750 why did the us volunterilay enter ww1 why did the enter volunterilay us ww1 reordering 1999
31
+ 1103812 who formed the commonwealth of independent states who formed commonwealth the of independent states reordering 1999
32
+ 1106007 define visceral? visceral define? reordering 1999
33
+ 1110199 what is wifi vs bluetooth what is vs wifi bluetooth reordering 1999
34
+ 1112341 what is the daily life of thai people what is the people life of thai daily reordering 1999
35
+ 1113437 what is physical description of spruce description is physical what of spruce reordering 1999
36
+ 1114646 what is famvir prescribed for is what famvir prescribed for reordering 1999
37
+ 1114819 what is durable medical equipment consist of what of durable medical equipment consist is reordering 1999
38
+ 1115776 what is an aml surveillance analyst surveillance is an aml what analyst reordering 1999
39
+ 1117099 what is a active margin what a is active margin reordering 1999
40
+ 1121402 what can contour plowing reduce what reduce contour plowing can reordering 1999
41
+ 1121709 what are the three percenters? percenters are the three what? reordering 1999
42
+ 1124210 tracheids are part of _____. are tracheids part of _____. reordering 1999
43
+ 1129237 hydrogen is a liquid below what temperature hydrogen is what liquid below a temperature reordering 1999
44
+ 1133167 how is the weather in jamaica jamaica is the weather in how reordering 1999
45
+ 19335 anthropological definition of environment definition anthropological of environment reordering 2016
46
+ 47923 axon terminals or synaptic knob definition knob terminals or synaptic axon definition reordering 2016
47
+ 87181 causes of left ventricular hypertrophy causes of left hypertrophy ventricular reordering 2016
48
+ 87452 causes of military suicide suicide of military causes reordering 2016
49
+ 104861 cost of interior concrete flooring cost of flooring concrete interior reordering 2016
50
+ 130510 definition declaratory judgment judgment declaratory definition reordering 2016
51
+ 131843 definition of a sigmet definition of sigmet a reordering 2016
52
+ 146187 difference between a mcdouble and a double cheeseburger difference between a mcdouble a and double cheeseburger reordering 2016
53
+ 148538 difference between rn and bsn difference between and rn bsn reordering 2016
54
+ 156493 do goldfish grow do grow goldfish reordering 2016
55
+ 168216 does legionella pneumophila cause pneumonia does legionella pneumophila pneumonia cause reordering 2016
56
+ 182539 example of monotonic function example of function monotonic reordering 2016
57
+ 183378 exons definition biology exons biology definition reordering 2016
58
+ 207786 how are some sharks warm blooded blooded are some sharks warm how reordering 2016
59
+ 264014 how long is life cycle of flea how long is life cycle flea of reordering 2016
60
+ 359349 how to find the midsegment of a trapezoid how to find trapezoid midsegment of a the reordering 2016
61
+ 405717 is cdg airport in main paris is paris airport in main cdg reordering 2016
62
+ 443396 lps laws definition lps definition laws reordering 2016
63
+ 451602 medicare's definition of mechanical ventilation medicare's definition of ventilation mechanical reordering 2016
64
+ 489204 right pelvic pain causes right causes pain pelvic reordering 2016
65
+ 490595 rsa definition key rsa key definition reordering 2016
66
+ 527433 types of dysarthria from cerebral palsy types of dysarthria cerebral from palsy reordering 2016
67
+ 573724 what are the social determinants of health what are the social determinants health of reordering 2016
68
+ 833860 what is the most popular food in switzerland what is the most switzerland food in popular reordering 2016
69
+ 855410 what is theraderm used for what theraderm is used for reordering 2016
70
+ 915593 what types of food can you cook sous vide what types vide food can you cook sous of reordering 2016
71
+ 962179 when was the salvation army founded the was when salvation army founded reordering 2016
72
+ 1037798 who is robert gray gray is robert who reordering 2016
73
+ 1063750 why did the us volunterilay enter ww1 why did the enter volunterilay us ww1 reordering 2016
74
+ 1103812 who formed the commonwealth of independent states who formed the of commonwealth independent states reordering 2016
75
+ 1106007 define visceral? visceral define? reordering 2016
76
+ 1110199 what is wifi vs bluetooth wifi is what vs bluetooth reordering 2016
77
+ 1112341 what is the daily life of thai people what daily the is life of thai people reordering 2016
78
+ 1113437 what is physical description of spruce what is spruce description of physical reordering 2016
79
+ 1114646 what is famvir prescribed for what is famvir for prescribed reordering 2016
80
+ 1114819 what is durable medical equipment consist of is what durable medical equipment consist of reordering 2016
81
+ 1115776 what is an aml surveillance analyst what an is aml surveillance analyst reordering 2016
82
+ 1117099 what is a active margin what is margin active a reordering 2016
83
+ 1121402 what can contour plowing reduce what contour can plowing reduce reordering 2016
84
+ 1121709 what are the three percenters? the are what three percenters? reordering 2016
85
+ 1124210 tracheids are part of _____. tracheids of part are _____. reordering 2016
86
+ 1129237 hydrogen is a liquid below what temperature hydrogen is a what below liquid temperature reordering 2016
87
+ 1133167 how is the weather in jamaica how the is weather in jamaica reordering 2016
88
+ 19335 anthropological definition of environment anthropological environment of definition reordering 2026
89
+ 47923 axon terminals or synaptic knob definition definition terminals or synaptic knob axon reordering 2026
90
+ 87181 causes of left ventricular hypertrophy hypertrophy of left ventricular causes reordering 2026
91
+ 87452 causes of military suicide causes military of suicide reordering 2026
92
+ 104861 cost of interior concrete flooring cost flooring interior concrete of reordering 2026
93
+ 130510 definition declaratory judgment definition judgment declaratory reordering 2026
94
+ 131843 definition of a sigmet sigmet of a definition reordering 2026
95
+ 146187 difference between a mcdouble and a double cheeseburger difference a between mcdouble and a double cheeseburger reordering 2026
96
+ 148538 difference between rn and bsn difference between bsn and rn reordering 2026
97
+ 156493 do goldfish grow goldfish do grow reordering 2026
98
+ 168216 does legionella pneumophila cause pneumonia does pneumophila legionella cause pneumonia reordering 2026
99
+ 182539 example of monotonic function example function monotonic of reordering 2026
100
+ 183378 exons definition biology biology definition exons reordering 2026
101
+ 207786 how are some sharks warm blooded how are some warm sharks blooded reordering 2026
102
+ 264014 how long is life cycle of flea how long life is cycle of flea reordering 2026
103
+ 359349 how to find the midsegment of a trapezoid how to find trapezoid midsegment of a the reordering 2026
104
+ 405717 is cdg airport in main paris is airport cdg in main paris reordering 2026
105
+ 443396 lps laws definition lps definition laws reordering 2026
106
+ 451602 medicare's definition of mechanical ventilation of definition medicare's mechanical ventilation reordering 2026
107
+ 489204 right pelvic pain causes right pain pelvic causes reordering 2026
108
+ 490595 rsa definition key key definition rsa reordering 2026
109
+ 527433 types of dysarthria from cerebral palsy types of dysarthria cerebral from palsy reordering 2026
110
+ 573724 what are the social determinants of health what the are social determinants of health reordering 2026
111
+ 833860 what is the most popular food in switzerland what most the is popular food in switzerland reordering 2026
112
+ 855410 what is theraderm used for what is used theraderm for reordering 2026
113
+ 915593 what types of food can you cook sous vide what types of can food you cook sous vide reordering 2026
114
+ 962179 when was the salvation army founded when was the salvation founded army reordering 2026
115
+ 1037798 who is robert gray robert is who gray reordering 2026
116
+ 1063750 why did the us volunterilay enter ww1 why enter the us volunterilay did ww1 reordering 2026
117
+ 1103812 who formed the commonwealth of independent states who formed the commonwealth independent of states reordering 2026
118
+ 1106007 define visceral? visceral define? reordering 2026
119
+ 1110199 what is wifi vs bluetooth wifi is what vs bluetooth reordering 2026
120
+ 1112341 what is the daily life of thai people what life the daily is of thai people reordering 2026
121
+ 1113437 what is physical description of spruce of is physical description what spruce reordering 2026
122
+ 1114646 what is famvir prescribed for is what famvir prescribed for reordering 2026
123
+ 1114819 what is durable medical equipment consist of medical is durable what equipment consist of reordering 2026
124
+ 1115776 what is an aml surveillance analyst aml is an what surveillance analyst reordering 2026
125
+ 1117099 what is a active margin a is what active margin reordering 2026
126
+ 1121402 what can contour plowing reduce what plowing contour can reduce reordering 2026
127
+ 1121709 what are the three percenters? three are the what percenters? reordering 2026
128
+ 1124210 tracheids are part of _____. tracheids of part are _____. reordering 2026
129
+ 1129237 hydrogen is a liquid below what temperature below is a liquid hydrogen what temperature reordering 2026
130
+ 1133167 how is the weather in jamaica how is the weather jamaica in reordering 2026
131
+ 19335 anthropological definition of environment of definition anthropological environment reordering 27
132
+ 47923 axon terminals or synaptic knob definition terminals axon or synaptic knob definition reordering 27
133
+ 87181 causes of left ventricular hypertrophy of causes left ventricular hypertrophy reordering 27
134
+ 87452 causes of military suicide of causes military suicide reordering 27
135
+ 104861 cost of interior concrete flooring of cost interior concrete flooring reordering 27
136
+ 130510 definition declaratory judgment declaratory definition judgment reordering 27
137
+ 131843 definition of a sigmet of definition a sigmet reordering 27
138
+ 146187 difference between a mcdouble and a double cheeseburger difference a a mcdouble and between double cheeseburger reordering 27
139
+ 148538 difference between rn and bsn difference between rn bsn and reordering 27
140
+ 156493 do goldfish grow grow goldfish do reordering 27
141
+ 168216 does legionella pneumophila cause pneumonia does pneumonia pneumophila cause legionella reordering 27
142
+ 182539 example of monotonic function example function monotonic of reordering 27
143
+ 183378 exons definition biology biology definition exons reordering 27
144
+ 207786 how are some sharks warm blooded are how some sharks warm blooded reordering 27
145
+ 264014 how long is life cycle of flea how long is of cycle life flea reordering 27
146
+ 359349 how to find the midsegment of a trapezoid how a find the midsegment of to trapezoid reordering 27
147
+ 405717 is cdg airport in main paris is cdg airport paris main in reordering 27
148
+ 443396 lps laws definition lps definition laws reordering 27
149
+ 451602 medicare's definition of mechanical ventilation mechanical definition of medicare's ventilation reordering 27
150
+ 489204 right pelvic pain causes right pain pelvic causes reordering 27
151
+ 490595 rsa definition key rsa key definition reordering 27
152
+ 527433 types of dysarthria from cerebral palsy types of cerebral from dysarthria palsy reordering 27
153
+ 573724 what are the social determinants of health of are the social determinants what health reordering 27
154
+ 833860 what is the most popular food in switzerland is what the most popular food in switzerland reordering 27
155
+ 855410 what is theraderm used for what is used theraderm for reordering 27
156
+ 915593 what types of food can you cook sous vide of types what food can you cook sous vide reordering 27
157
+ 962179 when was the salvation army founded founded was the salvation army when reordering 27
158
+ 1037798 who is robert gray gray is robert who reordering 27
159
+ 1063750 why did the us volunterilay enter ww1 why did the ww1 volunterilay enter us reordering 27
160
+ 1103812 who formed the commonwealth of independent states who independent the commonwealth of formed states reordering 27
161
+ 1106007 define visceral? visceral define? reordering 27
162
+ 1110199 what is wifi vs bluetooth wifi is what vs bluetooth reordering 27
163
+ 1112341 what is the daily life of thai people what of the daily life is thai people reordering 27
164
+ 1113437 what is physical description of spruce what is description physical of spruce reordering 27
165
+ 1114646 what is famvir prescribed for what for famvir prescribed is reordering 27
166
+ 1114819 what is durable medical equipment consist of what medical durable is equipment consist of reordering 27
167
+ 1115776 what is an aml surveillance analyst analyst is an aml surveillance what reordering 27
168
+ 1117099 what is a active margin what is margin active a reordering 27
169
+ 1121402 what can contour plowing reduce what can plowing contour reduce reordering 27
170
+ 1121709 what are the three percenters? the are what three percenters? reordering 27
171
+ 1124210 tracheids are part of _____. of are part tracheids _____. reordering 27
172
+ 1129237 hydrogen is a liquid below what temperature hydrogen what a liquid below is temperature reordering 27
173
+ 1133167 how is the weather in jamaica how is the weather jamaica in reordering 27
174
+ 19335 anthropological definition of environment of definition anthropological environment reordering 5
175
+ 47923 axon terminals or synaptic knob definition axon terminals or synaptic definition knob reordering 5
176
+ 87181 causes of left ventricular hypertrophy of causes left ventricular hypertrophy reordering 5
177
+ 87452 causes of military suicide causes military of suicide reordering 5
178
+ 104861 cost of interior concrete flooring interior of cost concrete flooring reordering 5
179
+ 130510 definition declaratory judgment definition judgment declaratory reordering 5
180
+ 131843 definition of a sigmet a of definition sigmet reordering 5
181
+ 146187 difference between a mcdouble and a double cheeseburger difference between a mcdouble double a and cheeseburger reordering 5
182
+ 148538 difference between rn and bsn bsn between rn and difference reordering 5
183
+ 156493 do goldfish grow do grow goldfish reordering 5
184
+ 168216 does legionella pneumophila cause pneumonia cause legionella pneumophila does pneumonia reordering 5
185
+ 182539 example of monotonic function monotonic of example function reordering 5
186
+ 183378 exons definition biology biology definition exons reordering 5
187
+ 207786 how are some sharks warm blooded how are warm sharks some blooded reordering 5
188
+ 264014 how long is life cycle of flea life long is how cycle of flea reordering 5
189
+ 359349 how to find the midsegment of a trapezoid how a find the midsegment of to trapezoid reordering 5
190
+ 405717 is cdg airport in main paris is main airport in cdg paris reordering 5
191
+ 443396 lps laws definition laws lps definition reordering 5
192
+ 451602 medicare's definition of mechanical ventilation mechanical definition of medicare's ventilation reordering 5
193
+ 489204 right pelvic pain causes right causes pain pelvic reordering 5
194
+ 490595 rsa definition key definition rsa key reordering 5
195
+ 527433 types of dysarthria from cerebral palsy types of dysarthria cerebral from palsy reordering 5
196
+ 573724 what are the social determinants of health what are the social of determinants health reordering 5
197
+ 833860 what is the most popular food in switzerland popular is the most what food in switzerland reordering 5
198
+ 855410 what is theraderm used for what is used theraderm for reordering 5
199
+ 915593 what types of food can you cook sous vide what types can food of you cook sous vide reordering 5
200
+ 962179 when was the salvation army founded when founded the salvation army was reordering 5
201
+ 1037798 who is robert gray is who robert gray reordering 5
202
+ 1063750 why did the us volunterilay enter ww1 why did the ww1 volunterilay enter us reordering 5
203
+ 1103812 who formed the commonwealth of independent states who independent the commonwealth of formed states reordering 5
204
+ 1106007 define visceral? visceral define? reordering 5
205
+ 1110199 what is wifi vs bluetooth vs is wifi what bluetooth reordering 5
206
+ 1112341 what is the daily life of thai people daily is the what life of thai people reordering 5
207
+ 1113437 what is physical description of spruce spruce is physical description of what reordering 5
208
+ 1114646 what is famvir prescribed for what is famvir for prescribed reordering 5
209
+ 1114819 what is durable medical equipment consist of what is durable medical equipment of consist reordering 5
210
+ 1115776 what is an aml surveillance analyst what an is aml surveillance analyst reordering 5
211
+ 1117099 what is a active margin what is margin active a reordering 5
212
+ 1121402 what can contour plowing reduce can what contour plowing reduce reordering 5
213
+ 1121709 what are the three percenters? what percenters the three are? reordering 5
214
+ 1124210 tracheids are part of _____. tracheids are of part _____. reordering 5
215
+ 1129237 hydrogen is a liquid below what temperature below is a liquid hydrogen what temperature reordering 5
216
+ 1133167 how is the weather in jamaica how in the weather is jamaica reordering 5
lost_in_decoding_artifacts/trec-dl-2019/synonym.tsv ADDED
@@ -0,0 +1,216 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ qid original_query perturbed_query perturbation seed
2
+ 19335 anthropological definition of environment anthropological define of environment synonym 1999
3
+ 47923 axon terminals or synaptic knob definition axon depot or synaptic knob definition synonym 1999
4
+ 87181 causes of left ventricular hypertrophy causes of left ventricle hypertrophy synonym 1999
5
+ 87452 causes of military suicide causes of soldiers suicide synonym 1999
6
+ 104861 cost of interior concrete flooring cost of interior concrete floor synonym 1999
7
+ 130510 definition declaratory judgment definition declaratory sagacity synonym 1999
8
+ 131843 definition of a sigmet definition of a sigmet synonym 1999
9
+ 146187 difference between a mcdouble and a double cheeseburger discrepancy between a mcdouble and a double cheeseburger synonym 1999
10
+ 148538 difference between rn and bsn departure between rn and bsn synonym 1999
11
+ 156493 do goldfish grow do goldfish increased synonym 1999
12
+ 168216 does legionella pneumophila cause pneumonia does legionella pneumophila reason pneumonia synonym 1999
13
+ 182539 example of monotonic function model of monotonic function synonym 1999
14
+ 183378 exons definition biology exons definition biota synonym 1999
15
+ 207786 how are some sharks warm blooded how are some sharks warming blooded synonym 1999
16
+ 264014 how long is life cycle of flea how protracted is life cycle of flea synonym 1999
17
+ 359349 how to find the midsegment of a trapezoid how to found the midsegment of a trapezoid synonym 1999
18
+ 405717 is cdg airport in main paris is cdg airport in leading paris synonym 1999
19
+ 443396 lps laws definition L-P laws definition synonym 1999
20
+ 451602 medicare's definition of mechanical ventilation medicare's definition of machinery ventilation synonym 1999
21
+ 489204 right pelvic pain causes right pelvic painless causes synonym 1999
22
+ 490595 rsa definition key rsa definition fundamental synonym 1999
23
+ 527433 types of dysarthria from cerebral palsy type of dysarthria from cerebral palsy synonym 1999
24
+ 573724 what are the social determinants of health what are the social epitope of health synonym 1999
25
+ 833860 what is the most popular food in switzerland what is the most popular food in Suisse synonym 1999
26
+ 855410 what is theraderm used for what is theraderm expend for synonym 1999
27
+ 915593 what types of food can you cook sous vide what type of food can you cook sous vide synonym 1999
28
+ 962179 when was the salvation army founded when was the redemption army founded synonym 1999
29
+ 1037798 who is robert gray who is roberto gray synonym 1999
30
+ 1063750 why did the us volunterilay enter ww1 why did the us volunterilay penetrate ww1 synonym 1999
31
+ 1103812 who formed the commonwealth of independent states who formed the commonwealth of autonomous states synonym 1999
32
+ 1106007 define visceral? identifies visceral? synonym 1999
33
+ 1110199 what is wifi vs bluetooth what is wifi versus bluetooth synonym 1999
34
+ 1112341 what is the daily life of thai people what is the daily life of thailand people synonym 1999
35
+ 1113437 what is physical description of spruce what is physical descriptions of spruce synonym 1999
36
+ 1114646 what is famvir prescribed for what is famvir stipulate for synonym 1999
37
+ 1114819 what is durable medical equipment consist of what is durable medical equipments consist of synonym 1999
38
+ 1115776 what is an aml surveillance analyst what is an aml surveillance psychoanalyst synonym 1999
39
+ 1117099 what is a active margin what is a active marge synonym 1999
40
+ 1121402 what can contour plowing reduce what can contour plowing slenderize synonym 1999
41
+ 1121709 what are the three percenters? what are the III percenters? synonym 1999
42
+ 1124210 tracheids are part of _____. tracheids are partially of _____. synonym 1999
43
+ 1129237 hydrogen is a liquid below what temperature hydrogen is a limpid below what temperature synonym 1999
44
+ 1133167 how is the weather in jamaica how is the conditions in jamaica synonym 1999
45
+ 19335 anthropological definition of environment anthropological definition of environs synonym 2016
46
+ 47923 axon terminals or synaptic knob definition axon terminals or synaptic boss definition synonym 2016
47
+ 87181 causes of left ventricular hypertrophy arouses of left ventricular hypertrophy synonym 2016
48
+ 87452 causes of military suicide causes of military suicidal synonym 2016
49
+ 104861 cost of interior concrete flooring toll of interior concrete flooring synonym 2016
50
+ 130510 definition declaratory judgment define declaratory judgment synonym 2016
51
+ 131843 definition of a sigmet definition of a sigmet synonym 2016
52
+ 146187 difference between a mcdouble and a double cheeseburger difference between a mcdouble and a three-fold cheeseburger synonym 2016
53
+ 148538 difference between rn and bsn diff between rn and bsn synonym 2016
54
+ 156493 do goldfish grow do goldfish growing synonym 2016
55
+ 168216 does legionella pneumophila cause pneumonia does legionella pneumophila reason pneumonia synonym 2016
56
+ 182539 example of monotonic function illustration of monotonic function synonym 2016
57
+ 183378 exons definition biology exons definition biota synonym 2016
58
+ 207786 how are some sharks warm blooded how are some shark warm blooded synonym 2016
59
+ 264014 how long is life cycle of flea how long is life motorbike of flea synonym 2016
60
+ 359349 how to find the midsegment of a trapezoid how to incur the midsegment of a trapezoid synonym 2016
61
+ 405717 is cdg airport in main paris is cdg airport in principal paris synonym 2016
62
+ 443396 lps laws definition lps Torah definition synonym 2016
63
+ 451602 medicare's definition of mechanical ventilation medicare's definition of mechanical breathing synonym 2016
64
+ 489204 right pelvic pain causes right pelvic grief causes synonym 2016
65
+ 490595 rsa definition key rsa definition crucial synonym 2016
66
+ 527433 types of dysarthria from cerebral palsy character of dysarthria from cerebral palsy synonym 2016
67
+ 573724 what are the social determinants of health what are the social determinants of healthcare synonym 2016
68
+ 833860 what is the most popular food in switzerland what is the most popular eating in switzerland synonym 2016
69
+ 855410 what is theraderm used for what is theraderm victimised for synonym 2016
70
+ 915593 what types of food can you cook sous vide what types of nourishment can you cook sous vide synonym 2016
71
+ 962179 when was the salvation army founded when was the salut army founded synonym 2016
72
+ 1037798 who is robert gray who is robert hoary synonym 2016
73
+ 1063750 why did the us volunterilay enter ww1 why did the us volunterilay embark ww1 synonym 2016
74
+ 1103812 who formed the commonwealth of independent states who formation the commonwealth of independent states synonym 2016
75
+ 1106007 define visceral? define intuitive? synonym 2016
76
+ 1110199 what is wifi vs bluetooth what is wifi v bluetooth synonym 2016
77
+ 1112341 what is the daily life of thai people what is the everyday life of thai people synonym 2016
78
+ 1113437 what is physical description of spruce what is physique description of spruce synonym 2016
79
+ 1114646 what is famvir prescribed for what is famvir decreed for synonym 2016
80
+ 1114819 what is durable medical equipment consist of what is long-lived medical equipment consist of synonym 2016
81
+ 1115776 what is an aml surveillance analyst what is an aml supervising analyst synonym 2016
82
+ 1117099 what is a active margin what is a dynamic margin synonym 2016
83
+ 1121402 what can contour plowing reduce what can contour plowing lowers synonym 2016
84
+ 1121709 what are the three percenters? what are the tre percenters? synonym 2016
85
+ 1124210 tracheids are part of _____. tracheids are party of _____. synonym 2016
86
+ 1129237 hydrogen is a liquid below what temperature hydrogen is a swimming below what temperature synonym 2016
87
+ 1133167 how is the weather in jamaica how is the meteorological in jamaica synonym 2016
88
+ 19335 anthropological definition of environment anthropological definition of surround synonym 2026
89
+ 47923 axon terminals or synaptic knob definition axon pier or synaptic knob definition synonym 2026
90
+ 87181 causes of left ventricular hypertrophy grounds of left ventricular hypertrophy synonym 2026
91
+ 87452 causes of military suicide lawsuit of military suicide synonym 2026
92
+ 104861 cost of interior concrete flooring cost of interior concrete coldcock synonym 2026
93
+ 130510 definition declaratory judgment definition asserting judgment synonym 2026
94
+ 131843 definition of a sigmet define of a sigmet synonym 2026
95
+ 146187 difference between a mcdouble and a double cheeseburger difference between a mcdouble and a doubly cheeseburger synonym 2026
96
+ 148538 difference between rn and bsn divergence between rn and bsn synonym 2026
97
+ 156493 do goldfish grow do goldfish raise synonym 2026
98
+ 168216 does legionella pneumophila cause pneumonia does legionella pneumophila reason pneumonia synonym 2026
99
+ 182539 example of monotonic function examples of monotonic function synonym 2026
100
+ 183378 exons definition biology exons definition biota synonym 2026
101
+ 207786 how are some sharks warm blooded how are some shark warm blooded synonym 2026
102
+ 264014 how long is life cycle of flea how tenacious is life cycle of flea synonym 2026
103
+ 359349 how to find the midsegment of a trapezoid how to found the midsegment of a trapezoid synonym 2026
104
+ 405717 is cdg airport in main paris is cdg airport in main parisien synonym 2026
105
+ 443396 lps laws definition lps lois definition synonym 2026
106
+ 451602 medicare's definition of mechanical ventilation medicare's definition of mechanical ventilated synonym 2026
107
+ 489204 right pelvic pain causes right pelvic pain case synonym 2026
108
+ 490595 rsa definition key rsa definition Key synonym 2026
109
+ 527433 types of dysarthria from cerebral palsy case of dysarthria from cerebral palsy synonym 2026
110
+ 573724 what are the social determinants of health what are the social determinants of sanitary synonym 2026
111
+ 833860 what is the most popular food in switzerland what is the most popular meals in switzerland synonym 2026
112
+ 855410 what is theraderm used for what is theraderm employ for synonym 2026
113
+ 915593 what types of food can you cook sous vide what typecast of food can you cook sous vide synonym 2026
114
+ 962179 when was the salvation army founded when was the salvation army launch synonym 2026
115
+ 1037798 who is robert gray who is roberto gray synonym 2026
116
+ 1063750 why did the us volunterilay enter ww1 why did the us volunterilay record ww1 synonym 2026
117
+ 1103812 who formed the commonwealth of independent states who trained the commonwealth of independent states synonym 2026
118
+ 1106007 define visceral? determine visceral? synonym 2026
119
+ 1110199 what is wifi vs bluetooth what is wifi v bluetooth synonym 2026
120
+ 1112341 what is the daily life of thai people what is the daily life of thai masses synonym 2026
121
+ 1113437 what is physical description of spruce what is corporal description of spruce synonym 2026
122
+ 1114646 what is famvir prescribed for what is famvir official for synonym 2026
123
+ 1114819 what is durable medical equipment consist of what is durable checkup equipment consist of synonym 2026
124
+ 1115776 what is an aml surveillance analyst what is an aml surveillance psychoanalyst synonym 2026
125
+ 1117099 what is a active margin what is a active marge synonym 2026
126
+ 1121402 what can contour plowing reduce what can contour plowing contract synonym 2026
127
+ 1121709 what are the three percenters? what are the trey percenters? synonym 2026
128
+ 1124210 tracheids are part of _____. tracheids are section of _____. synonym 2026
129
+ 1129237 hydrogen is a liquid below what temperature hydrogen is a liquid below what temperatures synonym 2026
130
+ 1133167 how is the weather in jamaica how is the climactic in jamaica synonym 2026
131
+ 19335 anthropological definition of environment anthropological definition of surroundings synonym 27
132
+ 47923 axon terminals or synaptic knob definition axon terminus or synaptic knob definition synonym 27
133
+ 87181 causes of left ventricular hypertrophy make of left ventricular hypertrophy synonym 27
134
+ 87452 causes of military suicide causes of solider suicide synonym 27
135
+ 104861 cost of interior concrete flooring cost of interior concrete dump synonym 27
136
+ 130510 definition declaratory judgment definition declaratory assessment synonym 27
137
+ 131843 definition of a sigmet define of a sigmet synonym 27
138
+ 146187 difference between a mcdouble and a double cheeseburger differences between a mcdouble and a double cheeseburger synonym 27
139
+ 148538 difference between rn and bsn difference between Rn and bsn synonym 27
140
+ 156493 do goldfish grow do goldfish arise synonym 27
141
+ 168216 does legionella pneumophila cause pneumonia does legionella pneumophila effort pneumonia synonym 27
142
+ 182539 example of monotonic function exercise of monotonic function synonym 27
143
+ 183378 exons definition biology exons definition biota synonym 27
144
+ 207786 how are some sharks warm blooded how are some shark warm blooded synonym 27
145
+ 264014 how long is life cycle of flea how longsighted is life cycle of flea synonym 27
146
+ 359349 how to find the midsegment of a trapezoid how to receive the midsegment of a trapezoid synonym 27
147
+ 405717 is cdg airport in main paris is cdg drome in main paris synonym 27
148
+ 443396 lps laws definition lps police definition synonym 27
149
+ 451602 medicare's definition of mechanical ventilation medicare's definition of mechanical breathing synonym 27
150
+ 489204 right pelvic pain causes veracious pelvic pain causes synonym 27
151
+ 490595 rsa definition key rsa definition paint synonym 27
152
+ 527433 types of dysarthria from cerebral palsy genus of dysarthria from cerebral palsy synonym 27
153
+ 573724 what are the social determinants of health what are the sociable determinants of health synonym 27
154
+ 833860 what is the most popular food in switzerland what is the most popular meal in switzerland synonym 27
155
+ 855410 what is theraderm used for what is theraderm usage for synonym 27
156
+ 915593 what types of food can you cook sous vide what types of feeding can you cook sous vide synonym 27
157
+ 962179 when was the salvation army founded when was the redemption army founded synonym 27
158
+ 1037798 who is robert gray who is roberto gray synonym 27
159
+ 1063750 why did the us volunterilay enter ww1 why did the americans volunterilay enter ww1 synonym 27
160
+ 1103812 who formed the commonwealth of independent states who formed the commonwealth of freelance states synonym 27
161
+ 1106007 define visceral? delimitate visceral? synonym 27
162
+ 1110199 what is wifi vs bluetooth what is wifi versus bluetooth synonym 27
163
+ 1112341 what is the daily life of thai people what is the daily life-time of thai people synonym 27
164
+ 1113437 what is physical description of spruce what is physical descriptions of spruce synonym 27
165
+ 1114646 what is famvir prescribed for what is famvir official for synonym 27
166
+ 1114819 what is durable medical equipment consist of what is long-wearing medical equipment consist of synonym 27
167
+ 1115776 what is an aml surveillance analyst what is an aml oversees analyst synonym 27
168
+ 1117099 what is a active margin what is a active leeway synonym 27
169
+ 1121402 what can contour plowing reduce what can contour plowing quash synonym 27
170
+ 1121709 what are the three percenters? what are the ternion percenters? synonym 27
171
+ 1124210 tracheids are part of _____. tracheids are party of _____. synonym 27
172
+ 1129237 hydrogen is a liquid below what temperature hydrogen is a fluent below what temperature synonym 27
173
+ 1133167 how is the weather in jamaica how is the conditions in jamaica synonym 27
174
+ 19335 anthropological definition of environment anthropological definition of environs synonym 5
175
+ 47923 axon terminals or synaptic knob definition axon terminals or synaptic thickening definition synonym 5
176
+ 87181 causes of left ventricular hypertrophy causes of walkout ventricular hypertrophy synonym 5
177
+ 87452 causes of military suicide causa of military suicide synonym 5
178
+ 104861 cost of interior concrete flooring priced of interior concrete flooring synonym 5
179
+ 130510 definition declaratory judgment definition declaratory perspicacity synonym 5
180
+ 131843 definition of a sigmet definition of a sigmet synonym 5
181
+ 146187 difference between a mcdouble and a double cheeseburger difference between a mcdouble and a threefold cheeseburger synonym 5
182
+ 148538 difference between rn and bsn divergence between rn and bsn synonym 5
183
+ 156493 do goldfish grow do goldfish grows synonym 5
184
+ 168216 does legionella pneumophila cause pneumonia does legionella pneumophila suit pneumonia synonym 5
185
+ 182539 example of monotonic function example of monotonic operandi synonym 5
186
+ 183378 exons definition biology exons definition biota synonym 5
187
+ 207786 how are some sharks warm blooded how are some sharks warmly blooded synonym 5
188
+ 264014 how long is life cycle of flea how long is lives cycle of flea synonym 5
189
+ 359349 how to find the midsegment of a trapezoid how to notice the midsegment of a trapezoid synonym 5
190
+ 405717 is cdg airport in main paris is cdg airport in leading paris synonym 5
191
+ 443396 lps laws definition LP laws definition synonym 5
192
+ 451602 medicare's definition of mechanical ventilation medicare's definition of mechanical airing synonym 5
193
+ 489204 right pelvic pain causes right pelvic pain lawsuit synonym 5
194
+ 490595 rsa definition key rsa definition discover synonym 5
195
+ 527433 types of dysarthria from cerebral palsy types of dysarthria from cerebral immobility synonym 5
196
+ 573724 what are the social determinants of health what are the social determinants of wellness synonym 5
197
+ 833860 what is the most popular food in switzerland what is the most popular food in suisse synonym 5
198
+ 855410 what is theraderm used for what is theraderm utilize for synonym 5
199
+ 915593 what types of food can you cook sous vide what eccentric of food can you cook sous vide synonym 5
200
+ 962179 when was the salvation army founded when was the salvation army establish synonym 5
201
+ 1037798 who is robert gray who is robert grayish synonym 5
202
+ 1063750 why did the us volunterilay enter ww1 why did the us volunterilay infix ww1 synonym 5
203
+ 1103812 who formed the commonwealth of independent states who formed the commonwealth of freelance states synonym 5
204
+ 1106007 define visceral? limit visceral? synonym 5
205
+ 1110199 what is wifi vs bluetooth what is wifi v bluetooth synonym 5
206
+ 1112341 what is the daily life of thai people what is the daily life of thais people synonym 5
207
+ 1113437 what is physical description of spruce what is physical descriptions of spruce synonym 5
208
+ 1114646 what is famvir prescribed for what is famvir positive for synonym 5
209
+ 1114819 what is durable medical equipment consist of what is durable medical equipments consist of synonym 5
210
+ 1115776 what is an aml surveillance analyst what is an aml surveillance therapist synonym 5
211
+ 1117099 what is a active margin what is a participating margin synonym 5
212
+ 1121402 what can contour plowing reduce what can contour plowing abbreviate synonym 5
213
+ 1121709 what are the three percenters? what are the tre percenters? synonym 5
214
+ 1124210 tracheids are part of _____. tracheids are persona of _____. synonym 5
215
+ 1129237 hydrogen is a liquid below what temperature hydrogen is a liquids below what temperature synonym 5
216
+ 1133167 how is the weather in jamaica how is the upwind in jamaica synonym 5
lost_in_decoding_artifacts/trec-dl-2020/misspelling.tsv ADDED
@@ -0,0 +1,271 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ qid original_query perturbed_query perturbation seed
2
+ 23849 are naturalization records public information are naturalizatipn records public information misspelling 1999
3
+ 42255 average salary for dental hygienist in nebraska average salary for dental hygienist in nebraskxa misspelling 1999
4
+ 47210 average wedding dress alteration cost average wedding dress alteration clst misspelling 1999
5
+ 67316 can fever cause miscarriage early pregnancy can fever cause miscarrciage early pregnancy misspelling 1999
6
+ 118440 define bmt medical define bt medical misspelling 1999
7
+ 121171 define etruscans drfine etruscans misspelling 1999
8
+ 135802 definition of laudable definitino of laudable misspelling 1999
9
+ 141630 describe how muscles and bones work together to produce movement describe how muscles and bohes work together to produce movement misspelling 1999
10
+ 156498 do google docs auto save do google docs auto Jsave misspelling 1999
11
+ 169208 does mississippi have an income tax does mississippi have an income tqx misspelling 1999
12
+ 174463 dog day afternoon meaning dog day afyernoon meaning misspelling 1999
13
+ 258062 how long does it take to remove wisdom tooth how long does it take to remoMe wisdom tooth misspelling 1999
14
+ 324585 how much money do motivational speakers make how much money do motivationl speakers make misspelling 1999
15
+ 330975 how much would it cost to install my own wind turbine how much would it cost to inTstall my own wind turbine misspelling 1999
16
+ 332593 how often to button quail lay eggs how often to button wuail lay eggs misspelling 1999
17
+ 336901 how old is vanessa redgrave how odl is vanessa redgrave misspelling 1999
18
+ 390360 ia suffix meaning ia suffix maning misspelling 1999
19
+ 405163 is caffeine an narcotic is cfafeine an narcotic misspelling 1999
20
+ 555530 what are best foods to lower cholesterol what are best foods to lower hcolesterol misspelling 1999
21
+ 583468 what carvedilol used for what crvedilol used for misspelling 1999
22
+ 640502 what does it mean if your tsh is low what does it mdan if your tsh is low misspelling 1999
23
+ 673670 what is a alm what is a alj misspelling 1999
24
+ 701453 what is a statutory deed what is a sttautory deed misspelling 1999
25
+ 730539 what is chronometer who invented it what is xhronometer who invented it misspelling 1999
26
+ 768208 what is mamey what is mamet misspelling 1999
27
+ 877809 what metal are hip replacements made of what metadl are hip replacements made of misspelling 1999
28
+ 911232 what type of conflict does della face in o, henry the gift of the magi what type of conflict does della face in o, heny the gift of the magi misspelling 1999
29
+ 914916 what type of tissue are bronchioles what type of tisxue are bronchioles misspelling 1999
30
+ 938400 when did family feud come out? when did familj feud come out? misspelling 1999
31
+ 940547 when did rock n roll begin? when did rock n roll beginn? misspelling 1999
32
+ 997622 where is the show shameless filmed where is the ishow shameless filmed misspelling 1999
33
+ 1030303 who is aziz hashim who is aziz hqshim misspelling 1999
34
+ 1037496 who is rep scalise? who is rep sclaise? misspelling 1999
35
+ 1043135 who killed nicholas ii of russia who klled nicholas ii of russia misspelling 1999
36
+ 1051399 who sings monk theme song who sinhgs monk theme song misspelling 1999
37
+ 1064670 why do hunters pattern their shotguns? why do hunters patmern their shotguns? misspelling 1999
38
+ 1071750 why is pete rose banned from hall of fame why is pee rose banned from hall of fame misspelling 1999
39
+ 1105792 define: geon define: geoJ misspelling 1999
40
+ 1106979 define pareto chart in statistics defien pareto chart in statistics misspelling 1999
41
+ 1108651 what the best way to get clothes white what the best way to gewt clothes white misspelling 1999
42
+ 1109707 what medium do radio waves travel through what medium do radio waves trave through misspelling 1999
43
+ 1110678 what is the un fao what is the un faW misspelling 1999
44
+ 1113256 what is reba mcentire's net worth what is reba mcentire's et worth misspelling 1999
45
+ 1115210 what is chaff and flare what is chaff and flar misspelling 1999
46
+ 1116380 what is a nonconformity? earth science what is a nonconformity? eart science misspelling 1999
47
+ 1121353 what can you do about discrimination in the workplace in oklahoma city what can you do about discrimination in the workplace in oklahoma cigy misspelling 1999
48
+ 1122767 what amino produces carnitine what amino prFduces carnitine misspelling 1999
49
+ 1127540 meaning of shebang meanGing of shebang misspelling 1999
50
+ 1131069 how many sons robert kraft has how many sons robert kraSt has misspelling 1999
51
+ 1132532 average annual income data analyst average annual income rata analyst misspelling 1999
52
+ 1133579 how does granulation tissue start how does granulation tiseue start misspelling 1999
53
+ 1136043 difference between a hotel and motel diffeLrence between a hotel and motel misspelling 1999
54
+ 1136047 difference between a company's strategy and business model is differeunce between a company's strategy and business model is misspelling 1999
55
+ 1136962 why did the ancient egyptians call their land kemet, or black land? why did the anciegt egyptians call their land kemet, or black land? misspelling 1999
56
+ 23849 are naturalization records public information are naturalization records Rublic information misspelling 2016
57
+ 42255 average salary for dental hygienist in nebraska average salayr for dental hygienist in nebraska misspelling 2016
58
+ 47210 average wedding dress alteration cost average wedding dress alteration coqt misspelling 2016
59
+ 67316 can fever cause miscarriage early pregnancy can fever cause miscarriage aerly pregnancy misspelling 2016
60
+ 118440 define bmt medical defie bmt medical misspelling 2016
61
+ 121171 define etruscans uefine etruscans misspelling 2016
62
+ 135802 definition of laudable definition of lahdable misspelling 2016
63
+ 141630 describe how muscles and bones work together to produce movement describe how muscles and boes work together to produce movement misspelling 2016
64
+ 156498 do google docs auto save do google docs auto svae misspelling 2016
65
+ 169208 does mississippi have an income tax does misYsissippi have an income tax misspelling 2016
66
+ 174463 dog day afternoon meaning dog day afternoon meaEning misspelling 2016
67
+ 258062 how long does it take to remove wisdom tooth how long does it take to remove wisdom hooth misspelling 2016
68
+ 324585 how much money do motivational speakers make how much money do motivational sepakers make misspelling 2016
69
+ 330975 how much would it cost to install my own wind turbine how much wouod it cost to install my own wind turbine misspelling 2016
70
+ 332593 how often to button quail lay eggs how often to button Puail lay eggs misspelling 2016
71
+ 336901 how old is vanessa redgrave how ol is vanessa redgrave misspelling 2016
72
+ 390360 ia suffix meaning ia suffix meanint misspelling 2016
73
+ 405163 is caffeine an narcotic is caffeine an narcoyic misspelling 2016
74
+ 555530 what are best foods to lower cholesterol what are best foods to loer cholesterol misspelling 2016
75
+ 583468 what carvedilol used for what carvedilol usgd for misspelling 2016
76
+ 640502 what does it mean if your tsh is low what does it mean if your tsh is pow misspelling 2016
77
+ 673670 what is a alm what is a aln misspelling 2016
78
+ 701453 what is a statutory deed what is a syatutory deed misspelling 2016
79
+ 730539 what is chronometer who invented it what is chronometer who jnvented it misspelling 2016
80
+ 768208 what is mamey what is jamey misspelling 2016
81
+ 877809 what metal are hip replacements made of what metal are hip repladements made of misspelling 2016
82
+ 911232 what type of conflict does della face in o, henry the gift of the magi what type of conflict does dela face in o, henry the gift of the magi misspelling 2016
83
+ 914916 what type of tissue are bronchioles what type of tissue are bronchiolew misspelling 2016
84
+ 938400 when did family feud come out? when did family efud come out? misspelling 2016
85
+ 940547 when did rock n roll begin? when did rcok n roll begin? misspelling 2016
86
+ 997622 where is the show shameless filmed where is the shEw shameless filmed misspelling 2016
87
+ 1030303 who is aziz hashim who is aziz hashym misspelling 2016
88
+ 1037496 who is rep scalise? who is rep wcalise? misspelling 2016
89
+ 1043135 who killed nicholas ii of russia who killed nichoeas ii of russia misspelling 2016
90
+ 1051399 who sings monk theme song who sings momk theme song misspelling 2016
91
+ 1064670 why do hunters pattern their shotguns? why do hunters pattern their shoaguns? misspelling 2016
92
+ 1071750 why is pete rose banned from hall of fame why is pUte rose banned from hall of fame misspelling 2016
93
+ 1105792 define: geon define: teon misspelling 2016
94
+ 1106979 define pareto chart in statistics dfine pareto chart in statistics misspelling 2016
95
+ 1108651 what the best way to get clothes white what the best way to get clohtes white misspelling 2016
96
+ 1109707 what medium do radio waves travel through what medium do radio waves travzel through misspelling 2016
97
+ 1110678 what is the un fao what is the un Rao misspelling 2016
98
+ 1113256 what is reba mcentire's net worth what is reba mcentire's negt worth misspelling 2016
99
+ 1115210 what is chaff and flare what is chaff and tlare misspelling 2016
100
+ 1116380 what is a nonconformity? earth science what is a nonconformity? aearth science misspelling 2016
101
+ 1121353 what can you do about discrimination in the workplace in oklahoma city what can you do about discrimination in the workplae in oklahoma city misspelling 2016
102
+ 1122767 what amino produces carnitine what amino produces acrnitine misspelling 2016
103
+ 1127540 meaning of shebang meaning of sVebang misspelling 2016
104
+ 1131069 how many sons robert kraft has how many sohs robert kraft has misspelling 2016
105
+ 1132532 average annual income data analyst average annuaJl income data analyst misspelling 2016
106
+ 1133579 how does granulation tissue start how does granulation tissuf start misspelling 2016
107
+ 1136043 difference between a hotel and motel differnece between a hotel and motel misspelling 2016
108
+ 1136047 difference between a company's strategy and business model is difference between a company's strategy and busyness model is misspelling 2016
109
+ 1136962 why did the ancient egyptians call their land kemet, or black land? why did the ancient egyptians call their land kemet, or black iand? misspelling 2016
110
+ 23849 are naturalization records public information are naturalization records public infoemation misspelling 2026
111
+ 42255 average salary for dental hygienist in nebraska average salary for dental hyglenist in nebraska misspelling 2026
112
+ 47210 average wedding dress alteration cost average weddcng dress alteration cost misspelling 2026
113
+ 67316 can fever cause miscarriage early pregnancy can fever cause miscarriage early prernancy misspelling 2026
114
+ 118440 define bmt medical define bmt medcial misspelling 2026
115
+ 121171 define etruscans define eruscans misspelling 2026
116
+ 135802 definition of laudable defiintion of laudable misspelling 2026
117
+ 141630 describe how muscles and bones work together to produce movement describe how muscles and bones wori together to produce movement misspelling 2026
118
+ 156498 do google docs auto save do goolge docs auto save misspelling 2026
119
+ 169208 does mississippi have an income tax does mississippi have an incoem tax misspelling 2026
120
+ 174463 dog day afternoon meaning og day afternoon meaning misspelling 2026
121
+ 258062 how long does it take to remove wisdom tooth how long does it takte to remove wisdom tooth misspelling 2026
122
+ 324585 how much money do motivational speakers make how mucj money do motivational speakers make misspelling 2026
123
+ 330975 how much would it cost to install my own wind turbine how much would it cost to inztall my own wind turbine misspelling 2026
124
+ 332593 how often to button quail lay eggs how often to button quail lah eggs misspelling 2026
125
+ 336901 how old is vanessa redgrave how okd is vanessa redgrave misspelling 2026
126
+ 390360 ia suffix meaning ia sufix meaning misspelling 2026
127
+ 405163 is caffeine an narcotic is cafefine an narcotic misspelling 2026
128
+ 555530 what are best foods to lower cholesterol what are best foods to lower cuolesterol misspelling 2026
129
+ 583468 what carvedilol used for what carvsdilol used for misspelling 2026
130
+ 640502 what does it mean if your tsh is low what does it mean if your tsh is oow misspelling 2026
131
+ 673670 what is a alm what is a alj misspelling 2026
132
+ 701453 what is a statutory deed what is a statutorg deed misspelling 2026
133
+ 730539 what is chronometer who invented it what is chronimeter who invented it misspelling 2026
134
+ 768208 what is mamey what is mamej misspelling 2026
135
+ 877809 what metal are hip replacements made of what metal are hip replacements maPde of misspelling 2026
136
+ 911232 what type of conflict does della face in o, henry the gift of the magi what type of comflict does della face in o, henry the gift of the magi misspelling 2026
137
+ 914916 what type of tissue are bronchioles what tType of tissue are bronchioles misspelling 2026
138
+ 938400 when did family feud come out? when did family feud comr out? misspelling 2026
139
+ 940547 when did rock n roll begin? when did roVk n roll begin? misspelling 2026
140
+ 997622 where is the show shameless filmed where is the shw shameless filmed misspelling 2026
141
+ 1030303 who is aziz hashim who is aziz hasnim misspelling 2026
142
+ 1037496 who is rep scalise? who is rep sfalise? misspelling 2026
143
+ 1043135 who killed nicholas ii of russia who killed nicholas ii of russi misspelling 2026
144
+ 1051399 who sings monk theme song who sings monk heme song misspelling 2026
145
+ 1064670 why do hunters pattern their shotguns? why do hunfers pattern their shotguns? misspelling 2026
146
+ 1071750 why is pete rose banned from hall of fame why is pete rose bannfd from hall of fame misspelling 2026
147
+ 1105792 define: geon define: gekn misspelling 2026
148
+ 1106979 define pareto chart in statistics define pQreto chart in statistics misspelling 2026
149
+ 1108651 what the best way to get clothes white what the best wjay to get clothes white misspelling 2026
150
+ 1109707 what medium do radio waves travel through what medium do radio daves travel through misspelling 2026
151
+ 1110678 what is the un fao what is the un faE misspelling 2026
152
+ 1113256 what is reba mcentire's net worth what is rrba mcentire's net worth misspelling 2026
153
+ 1115210 what is chaff and flare what is chaff and fOlare misspelling 2026
154
+ 1116380 what is a nonconformity? earth science what is a nonconformity? earth sciePnce misspelling 2026
155
+ 1121353 what can you do about discrimination in the workplace in oklahoma city what can you do about discrimination in the Tworkplace in oklahoma city misspelling 2026
156
+ 1122767 what amino produces carnitine what aino produces carnitine misspelling 2026
157
+ 1127540 meaning of shebang meahing of shebang misspelling 2026
158
+ 1131069 how many sons robert kraft has how mny sons robert kraft has misspelling 2026
159
+ 1132532 average annual income data analyst average annual income data anakyst misspelling 2026
160
+ 1133579 how does granulation tissue start how does granulation tissue stadt misspelling 2026
161
+ 1136043 difference between a hotel and motel difqerence between a hotel and motel misspelling 2026
162
+ 1136047 difference between a company's strategy and business model is difference between a company's strategy and Qbusiness model is misspelling 2026
163
+ 1136962 why did the ancient egyptians call their land kemet, or black land? why did the ancient egyptians call their land kemet, or black lanmd? misspelling 2026
164
+ 23849 are naturalization records public information are naturalization records pJublic information misspelling 27
165
+ 42255 average salary for dental hygienist in nebraska average Esalary for dental hygienist in nebraska misspelling 27
166
+ 47210 average wedding dress alteration cost averge wedding dress alteration cost misspelling 27
167
+ 67316 can fever cause miscarriage early pregnancy can fever cause miscarriage earyl pregnancy misspelling 27
168
+ 118440 define bmt medical defien bmt medical misspelling 27
169
+ 121171 define etruscans defien etruscans misspelling 27
170
+ 135802 definition of laudable definition of laudxble misspelling 27
171
+ 141630 describe how muscles and bones work together to produce movement describe how muscles and bones work together to produfe movement misspelling 27
172
+ 156498 do google docs auto save do google docs auto dave misspelling 27
173
+ 169208 does mississippi have an income tax does mississippi have an income tx misspelling 27
174
+ 174463 dog day afternoon meaning dog day afteronon meaning misspelling 27
175
+ 258062 how long does it take to remove wisdom tooth how lonj does it take to remove wisdom tooth misspelling 27
176
+ 324585 how much money do motivational speakers make how much money do motivational speaRkers make misspelling 27
177
+ 330975 how much would it cost to install my own wind turbine how much would it cost to install my own wind tugbine misspelling 27
178
+ 332593 how often to button quail lay eggs how often to bUutton quail lay eggs misspelling 27
179
+ 336901 how old is vanessa redgrave how opd is vanessa redgrave misspelling 27
180
+ 390360 ia suffix meaning ia suffYix meaning misspelling 27
181
+ 405163 is caffeine an narcotic is caffeine an nafcotic misspelling 27
182
+ 555530 what are best foods to lower cholesterol what are best foods to lower cholestXrol misspelling 27
183
+ 583468 what carvedilol used for what carvedilol uesd for misspelling 27
184
+ 640502 what does it mean if your tsh is low what does it mean if your tah is low misspelling 27
185
+ 673670 what is a alm what is a Ralm misspelling 27
186
+ 701453 what is a statutory deed what is a sfatutory deed misspelling 27
187
+ 730539 what is chronometer who invented it what is chronomeer who invented it misspelling 27
188
+ 768208 what is mamey what is mame misspelling 27
189
+ 877809 what metal are hip replacements made of what metal are hip replacwments made of misspelling 27
190
+ 911232 what type of conflict does della face in o, henry the gift of the magi what type of conflict does della face in o, hepry the gift of the magi misspelling 27
191
+ 914916 what type of tissue are bronchioles what gype of tissue are bronchioles misspelling 27
192
+ 938400 when did family feud come out? when did family fed come out? misspelling 27
193
+ 940547 when did rock n roll begin? when did rock n roll ebgin? misspelling 27
194
+ 997622 where is the show shameless filmed where is the show shaymeless filmed misspelling 27
195
+ 1030303 who is aziz hashim who is azMz hashim misspelling 27
196
+ 1037496 who is rep scalise? who is rel scalise? misspelling 27
197
+ 1043135 who killed nicholas ii of russia who killed nicholas ii of Qrussia misspelling 27
198
+ 1051399 who sings monk theme song who sings monk tdheme song misspelling 27
199
+ 1064670 why do hunters pattern their shotguns? why do hunters paftern their shotguns? misspelling 27
200
+ 1071750 why is pete rose banned from hall of fame why is pete roe banned from hall of fame misspelling 27
201
+ 1105792 define: geon define: geson misspelling 27
202
+ 1106979 define pareto chart in statistics define pareto chart in syatistics misspelling 27
203
+ 1108651 what the best way to get clothes white what the best way to gte clothes white misspelling 27
204
+ 1109707 what medium do radio waves travel through what medium do radeo waves travel through misspelling 27
205
+ 1110678 what is the un fao what is the un Qao misspelling 27
206
+ 1113256 what is reba mcentire's net worth what is reba mcetire's net worth misspelling 27
207
+ 1115210 what is chaff and flare what is chaff and fare misspelling 27
208
+ 1116380 what is a nonconformity? earth science what is a nonconformity? eaeth science misspelling 27
209
+ 1121353 what can you do about discrimination in the workplace in oklahoma city what can you do about disdrimination in the workplace in oklahoma city misspelling 27
210
+ 1122767 what amino produces carnitine what aino produces carnitine misspelling 27
211
+ 1127540 meaning of shebang meaming of shebang misspelling 27
212
+ 1131069 how many sons robert kraft has how many sRns robert kraft has misspelling 27
213
+ 1132532 average annual income data analyst average annual inocme data analyst misspelling 27
214
+ 1133579 how does granulation tissue start how does granulation tissue strt misspelling 27
215
+ 1136043 difference between a hotel and motel difference between a hoteul and motel misspelling 27
216
+ 1136047 difference between a company's strategy and business model is difference between a company's smtrategy and business model is misspelling 27
217
+ 1136962 why did the ancient egyptians call their land kemet, or black land? why did the ancient egyptians calEl their land kemet, or black land? misspelling 27
218
+ 23849 are naturalization records public information are naturalization recofds public information misspelling 5
219
+ 42255 average salary for dental hygienist in nebraska average salary for dental hygienist in bebraska misspelling 5
220
+ 47210 average wedding dress alteration cost average wedding dress aoteration cost misspelling 5
221
+ 67316 can fever cause miscarriage early pregnancy can fever cause miscarriage early pregmnancy misspelling 5
222
+ 118440 define bmt medical define bmBt medical misspelling 5
223
+ 121171 define etruscans define etrjscans misspelling 5
224
+ 135802 definition of laudable definition of laudagle misspelling 5
225
+ 141630 describe how muscles and bones work together to produce movement describe how muscles and bones work togetehr to produce movement misspelling 5
226
+ 156498 do google docs auto save do google docs auto ave misspelling 5
227
+ 169208 does mississippi have an income tax does misslssippi have an income tax misspelling 5
228
+ 174463 dog day afternoon meaning dog day afternoon menaing misspelling 5
229
+ 258062 how long does it take to remove wisdom tooth how long does it take to remoev wisdom tooth misspelling 5
230
+ 324585 how much money do motivational speakers make how mcuh money do motivational speakers make misspelling 5
231
+ 330975 how much would it cost to install my own wind turbine how much would it coGst to install my own wind turbine misspelling 5
232
+ 332593 how often to button quail lay eggs how otfen to button quail lay eggs misspelling 5
233
+ 336901 how old is vanessa redgrave how ld is vanessa redgrave misspelling 5
234
+ 390360 ia suffix meaning ia sufflx meaning misspelling 5
235
+ 405163 is caffeine an narcotic is affeine an narcotic misspelling 5
236
+ 555530 what are best foods to lower cholesterol what are best foods to loewr cholesterol misspelling 5
237
+ 583468 what carvedilol used for what carveidlol used for misspelling 5
238
+ 640502 what does it mean if your tsh is low what does it mean if your tsh is olw misspelling 5
239
+ 673670 what is a alm what is a alC misspelling 5
240
+ 701453 what is a statutory deed what is a sttautory deed misspelling 5
241
+ 730539 what is chronometer who invented it what is chronometer who inventejd it misspelling 5
242
+ 768208 what is mamey what is kamey misspelling 5
243
+ 877809 what metal are hip replacements made of what metal are hAp replacements made of misspelling 5
244
+ 911232 what type of conflict does della face in o, henry the gift of the magi what type of conflict does della face in o, Uenry the gift of the magi misspelling 5
245
+ 914916 what type of tissue are bronchioles what type of tissue are bronchiole misspelling 5
246
+ 938400 when did family feud come out? when did family feud cone out? misspelling 5
247
+ 940547 when did rock n roll begin? when did rock n roll bein? misspelling 5
248
+ 997622 where is the show shameless filmed where is the show shameless fimled misspelling 5
249
+ 1030303 who is aziz hashim who is azz hashim misspelling 5
250
+ 1037496 who is rep scalise? who is reX scalise? misspelling 5
251
+ 1043135 who killed nicholas ii of russia who killed nicholas ii of rssia misspelling 5
252
+ 1051399 who sings monk theme song who sings mnk theme song misspelling 5
253
+ 1064670 why do hunters pattern their shotguns? why do huters pattern their shotguns? misspelling 5
254
+ 1071750 why is pete rose banned from hall of fame why is peet rose banned from hall of fame misspelling 5
255
+ 1105792 define: geon defiBne: geon misspelling 5
256
+ 1106979 define pareto chart in statistics defime pareto chart in statistics misspelling 5
257
+ 1108651 what the best way to get clothes white what the best way to get clothes hite misspelling 5
258
+ 1109707 what medium do radio waves travel through what medium do radio waves trwvel through misspelling 5
259
+ 1110678 what is the un fao what is the un fap misspelling 5
260
+ 1113256 what is reba mcentire's net worth what is reba mPcentire's net worth misspelling 5
261
+ 1115210 what is chaff and flare what is chfaf and flare misspelling 5
262
+ 1116380 what is a nonconformity? earth science what is a nonconformity? earth scisnce misspelling 5
263
+ 1121353 what can you do about discrimination in the workplace in oklahoma city what can you do about discrimination in the workplace in oBklahoma city misspelling 5
264
+ 1122767 what amino produces carnitine what amino prodWuces carnitine misspelling 5
265
+ 1127540 meaning of shebang meaning of shebansg misspelling 5
266
+ 1131069 how many sons robert kraft has how many sonq robert kraft has misspelling 5
267
+ 1132532 average annual income data analyst average annual income data amalyst misspelling 5
268
+ 1133579 how does granulation tissue start how does granulation tisuse start misspelling 5
269
+ 1136043 difference between a hotel and motel difference between a hotel and omtel misspelling 5
270
+ 1136047 difference between a company's strategy and business model is difference between a company's strategy and businews model is misspelling 5
271
+ 1136962 why did the ancient egyptians call their land kemet, or black land? why did the ancient egyptians call their land ekmet, or black land? misspelling 5
lost_in_decoding_artifacts/trec-dl-2020/naturality.tsv ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ qid original_query perturbed_query perturbation seed
2
+ 23849 are naturalization records public information naturalization records public information naturality deterministic
3
+ 42255 average salary for dental hygienist in nebraska average salary dental hygienist nebraska naturality deterministic
4
+ 47210 average wedding dress alteration cost average wedding dress alteration cost naturality deterministic
5
+ 67316 can fever cause miscarriage early pregnancy fever cause miscarriage early pregnancy naturality deterministic
6
+ 118440 define bmt medical define bmt medical naturality deterministic
7
+ 121171 define etruscans define etruscans naturality deterministic
8
+ 135802 definition of laudable definition laudable naturality deterministic
9
+ 141630 describe how muscles and bones work together to produce movement describe muscles bones work together produce movement naturality deterministic
10
+ 156498 do google docs auto save google docs auto save naturality deterministic
11
+ 169208 does mississippi have an income tax mississippi income tax naturality deterministic
12
+ 174463 dog day afternoon meaning dog day afternoon meaning naturality deterministic
13
+ 258062 how long does it take to remove wisdom tooth long take remove wisdom tooth naturality deterministic
14
+ 324585 how much money do motivational speakers make much money motivational speakers make naturality deterministic
15
+ 330975 how much would it cost to install my own wind turbine much would cost install wind turbine naturality deterministic
16
+ 332593 how often to button quail lay eggs often button quail lay eggs naturality deterministic
17
+ 336901 how old is vanessa redgrave old vanessa redgrave naturality deterministic
18
+ 390360 ia suffix meaning ia suffix meaning naturality deterministic
19
+ 405163 is caffeine an narcotic caffeine narcotic naturality deterministic
20
+ 555530 what are best foods to lower cholesterol best foods lower cholesterol naturality deterministic
21
+ 583468 what carvedilol used for carvedilol used naturality deterministic
22
+ 640502 what does it mean if your tsh is low mean tsh low naturality deterministic
23
+ 673670 what is a alm alm naturality deterministic
24
+ 701453 what is a statutory deed statutory deed naturality deterministic
25
+ 730539 what is chronometer who invented it chronometer invented naturality deterministic
26
+ 768208 what is mamey mamey naturality deterministic
27
+ 877809 what metal are hip replacements made of metal hip replacements made naturality deterministic
28
+ 911232 what type of conflict does della face in o, henry the gift of the magi type conflict della face o, henry gift magi naturality deterministic
29
+ 914916 what type of tissue are bronchioles type tissue bronchioles naturality deterministic
30
+ 938400 when did family feud come out? family feud come out? naturality deterministic
31
+ 940547 when did rock n roll begin? rock n roll begin? naturality deterministic
32
+ 997622 where is the show shameless filmed show shameless filmed naturality deterministic
33
+ 1030303 who is aziz hashim aziz hashim naturality deterministic
34
+ 1037496 who is rep scalise? rep scalise? naturality deterministic
35
+ 1043135 who killed nicholas ii of russia killed nicholas ii russia naturality deterministic
36
+ 1051399 who sings monk theme song sings monk theme song naturality deterministic
37
+ 1064670 why do hunters pattern their shotguns? hunters pattern shotguns? naturality deterministic
38
+ 1071750 why is pete rose banned from hall of fame pete rose banned hall fame naturality deterministic
39
+ 1105792 define: geon define: geon naturality deterministic
40
+ 1106979 define pareto chart in statistics define pareto chart statistics naturality deterministic
41
+ 1108651 what the best way to get clothes white best way get clothes white naturality deterministic
42
+ 1109707 what medium do radio waves travel through medium radio waves travel naturality deterministic
43
+ 1110678 what is the un fao un fao naturality deterministic
44
+ 1113256 what is reba mcentire's net worth reba mcentire's net worth naturality deterministic
45
+ 1115210 what is chaff and flare chaff flare naturality deterministic
46
+ 1116380 what is a nonconformity? earth science nonconformity? earth science naturality deterministic
47
+ 1121353 what can you do about discrimination in the workplace in oklahoma city discrimination workplace oklahoma city naturality deterministic
48
+ 1122767 what amino produces carnitine amino produces carnitine naturality deterministic
49
+ 1127540 meaning of shebang meaning shebang naturality deterministic
50
+ 1131069 how many sons robert kraft has many sons robert kraft naturality deterministic
51
+ 1132532 average annual income data analyst average annual income data analyst naturality deterministic
52
+ 1133579 how does granulation tissue start granulation tissue start naturality deterministic
53
+ 1136043 difference between a hotel and motel difference hotel motel naturality deterministic
54
+ 1136047 difference between a company's strategy and business model is difference company's strategy business model naturality deterministic
55
+ 1136962 why did the ancient egyptians call their land kemet, or black land? ancient egyptians call land kemet, black land? naturality deterministic
lost_in_decoding_artifacts/trec-dl-2020/paraphrase.tsv ADDED
@@ -0,0 +1,271 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ qid original_query perturbed_query perturbation seed
2
+ 23849 are naturalization records public information Are naturalization records public information? paraphrase 1999
3
+ 42255 average salary for dental hygienist in nebraska The average wage for a dentist in Nebraska paraphrase 1999
4
+ 47210 average wedding dress alteration cost How much does a wedding dress alteration cost? paraphrase 1999
5
+ 67316 can fever cause miscarriage early pregnancy Can a fever cause a miscarriage? paraphrase 1999
6
+ 118440 define bmt medical What is bmt medical? paraphrase 1999
7
+ 121171 define etruscans What is an etruscan? paraphrase 1999
8
+ 135802 definition of laudable The definition of praise paraphrase 1999
9
+ 141630 describe how muscles and bones work together to produce movement How do muscles and bones work together to produce movement? paraphrase 1999
10
+ 156498 do google docs auto save Do Google Docs auto save? paraphrase 1999
11
+ 169208 does mississippi have an income tax Does mississippi have an income tax? paraphrase 1999
12
+ 174463 dog day afternoon meaning Dogs Day Afternoon paraphrase 1999
13
+ 258062 how long does it take to remove wisdom tooth How long does it take to remove wisdom teeth? paraphrase 1999
14
+ 324585 how much money do motivational speakers make How much money do motivational speakers make? paraphrase 1999
15
+ 330975 how much would it cost to install my own wind turbine How much does it cost to build a wind turbine? paraphrase 1999
16
+ 332593 how often to button quail lay eggs How often do you click quail lay eggs? paraphrase 1999
17
+ 336901 how old is vanessa redgrave How old is Vanessa Redgrave? paraphrase 1999
18
+ 390360 ia suffix meaning What is the meaning of ia suffix? paraphrase 1999
19
+ 405163 is caffeine an narcotic Caffeine is a drug. paraphrase 1999
20
+ 555530 what are best foods to lower cholesterol What are the best foods to reduce cholesterol? paraphrase 1999
21
+ 583468 what carvedilol used for What Carvedilol is used paraphrase 1999
22
+ 640502 what does it mean if your tsh is low What does it mean if your TSH is low? paraphrase 1999
23
+ 673670 what is a alm What is an alm paraphrase 1999
24
+ 701453 what is a statutory deed What is a legal act paraphrase 1999
25
+ 730539 what is chronometer who invented it Who invented the chronometer? paraphrase 1999
26
+ 768208 what is mamey What is Mamey paraphrase 1999
27
+ 877809 what metal are hip replacements made of What Metals Are Hip Compensations From paraphrase 1999
28
+ 911232 what type of conflict does della face in o, henry the gift of the magi What kind of conflict makes della face in o, henry the gift of the magical paraphrase 1999
29
+ 914916 what type of tissue are bronchioles What tissues are bronchials paraphrase 1999
30
+ 938400 when did family feud come out? When did the Feud family come? paraphrase 1999
31
+ 940547 when did rock n roll begin? When did Rock n Roll start? paraphrase 1999
32
+ 997622 where is the show shameless filmed Where is the show Shameless filmed? paraphrase 1999
33
+ 1030303 who is aziz hashim Who is Aziz Hashim? paraphrase 1999
34
+ 1037496 who is rep scalise? Who is rep scalise? paraphrase 1999
35
+ 1043135 who killed nicholas ii of russia Who Killed Nicholas II of Russia paraphrase 1999
36
+ 1051399 who sings monk theme song Who sings monk theme song? paraphrase 1999
37
+ 1064670 why do hunters pattern their shotguns? Why do hunters pattern their shotguns? paraphrase 1999
38
+ 1071750 why is pete rose banned from hall of fame Why is pete rose banned from the hall of fame? paraphrase 1999
39
+ 1105792 define: geon Description of: Geon paraphrase 1999
40
+ 1106979 define pareto chart in statistics What is a pareto chart in statistics? paraphrase 1999
41
+ 1108651 what the best way to get clothes white What is the best way to get clothes white paraphrase 1999
42
+ 1109707 what medium do radio waves travel through What medium do radio waves travel through? paraphrase 1999
43
+ 1110678 what is the un fao What is a Fao paraphrase 1999
44
+ 1113256 what is reba mcentire's net worth What is Reba Mcentire's net worth? paraphrase 1999
45
+ 1115210 what is chaff and flare What is chaff and flare? paraphrase 1999
46
+ 1116380 what is a nonconformity? earth science What is a nonconformity? paraphrase 1999
47
+ 1121353 what can you do about discrimination in the workplace in oklahoma city What can you do about discrimination in the workplace in Oklahoma City? paraphrase 1999
48
+ 1122767 what amino produces carnitine What amino acid produces carnitine? paraphrase 1999
49
+ 1127540 meaning of shebang Importance of Shebang paraphrase 1999
50
+ 1131069 how many sons robert kraft has How many sons does Robert Kraft have? paraphrase 1999
51
+ 1132532 average annual income data analyst What is the average annual income data analyst? paraphrase 1999
52
+ 1133579 how does granulation tissue start How to start granulation tissue paraphrase 1999
53
+ 1136043 difference between a hotel and motel What is the difference between hotel and motel? paraphrase 1999
54
+ 1136047 difference between a company's strategy and business model is What is the difference between a business model and a strategy? paraphrase 1999
55
+ 1136962 why did the ancient egyptians call their land kemet, or black land? Why did the Egyptians call their land Kimet or Black Earth? paraphrase 1999
56
+ 23849 are naturalization records public information Naturalization registers public information paraphrase 2016
57
+ 42255 average salary for dental hygienist in nebraska What is the average salary for a dental hygienist in nebraska? paraphrase 2016
58
+ 47210 average wedding dress alteration cost How much does a wedding dress alteration cost? paraphrase 2016
59
+ 67316 can fever cause miscarriage early pregnancy Can a fever cause a miscarriage? paraphrase 2016
60
+ 118440 define bmt medical What is bmt medical? paraphrase 2016
61
+ 121171 define etruscans What is an etruscan? paraphrase 2016
62
+ 135802 definition of laudable The definition of praise paraphrase 2016
63
+ 141630 describe how muscles and bones work together to produce movement How do muscles and bones work together to produce movement? paraphrase 2016
64
+ 156498 do google docs auto save Do Google Docs auto save? paraphrase 2016
65
+ 169208 does mississippi have an income tax Mississippi has an income tax paraphrase 2016
66
+ 174463 dog day afternoon meaning Dogs Day Afternoon paraphrase 2016
67
+ 258062 how long does it take to remove wisdom tooth How long does it take to remove wisdom teeth? paraphrase 2016
68
+ 324585 how much money do motivational speakers make How Much Money Motivating Speakers Make paraphrase 2016
69
+ 330975 how much would it cost to install my own wind turbine How much does it cost to build a wind turbine? paraphrase 2016
70
+ 332593 how often to button quail lay eggs How often button quail lay eggs? paraphrase 2016
71
+ 336901 how old is vanessa redgrave How old is Vanessa Redgrave paraphrase 2016
72
+ 390360 ia suffix meaning suffix means paraphrase 2016
73
+ 405163 is caffeine an narcotic Is caffeine a narcotic? paraphrase 2016
74
+ 555530 what are best foods to lower cholesterol What are the best foods to reduce cholesterol? paraphrase 2016
75
+ 583468 what carvedilol used for What is Carnedilol used for? paraphrase 2016
76
+ 640502 what does it mean if your tsh is low What does it mean if your TSH is low? paraphrase 2016
77
+ 673670 what is a alm What is an alm? paraphrase 2016
78
+ 701453 what is a statutory deed What is a legal act paraphrase 2016
79
+ 730539 what is chronometer who invented it What is the chronometer that invented it? paraphrase 2016
80
+ 768208 what is mamey What is mamey? paraphrase 2016
81
+ 877809 what metal are hip replacements made of What Metals Are Hip Compensations From paraphrase 2016
82
+ 911232 what type of conflict does della face in o, henry the gift of the magi What kind of conflict makes della face in o, henry the gift of the magical paraphrase 2016
83
+ 914916 what type of tissue are bronchioles What type of tissue are bronchioles? paraphrase 2016
84
+ 938400 when did family feud come out? When did the Feud family come? paraphrase 2016
85
+ 940547 when did rock n roll begin? When did Rock n Roll start? paraphrase 2016
86
+ 997622 where is the show shameless filmed Where is the show shameless filmed? paraphrase 2016
87
+ 1030303 who is aziz hashim Who is Aziz Hashim? paraphrase 2016
88
+ 1037496 who is rep scalise? Who is rep scalise? paraphrase 2016
89
+ 1043135 who killed nicholas ii of russia Who Killed Nicholas II of Russia paraphrase 2016
90
+ 1051399 who sings monk theme song Who Sings Monk Theme Song paraphrase 2016
91
+ 1064670 why do hunters pattern their shotguns? Why do the hunters shoot? paraphrase 2016
92
+ 1071750 why is pete rose banned from hall of fame Why is Pete Rose banned from Hall of Fame? paraphrase 2016
93
+ 1105792 define: geon What is geon? paraphrase 2016
94
+ 1106979 define pareto chart in statistics What is a pareto chart in statistics? paraphrase 2016
95
+ 1108651 what the best way to get clothes white What is the best way to get clothes white paraphrase 2016
96
+ 1109707 what medium do radio waves travel through What medium do radio waves travel through? paraphrase 2016
97
+ 1110678 what is the un fao What is the unfao? paraphrase 2016
98
+ 1113256 what is reba mcentire's net worth What is reba mcentire's net value paraphrase 2016
99
+ 1115210 what is chaff and flare What is chaff and flare? paraphrase 2016
100
+ 1116380 what is a nonconformity? earth science What is an incompatibility? world science paraphrase 2016
101
+ 1121353 what can you do about discrimination in the workplace in oklahoma city What can you do about discrimination in the workplace in Oklahoma City? paraphrase 2016
102
+ 1122767 what amino produces carnitine What amino acids produce carnitin paraphrase 2016
103
+ 1127540 meaning of shebang What is the meaning of shebang? paraphrase 2016
104
+ 1131069 how many sons robert kraft has How many sons does Robert Kraft have? paraphrase 2016
105
+ 1132532 average annual income data analyst An average annual income analysis paraphrase 2016
106
+ 1133579 how does granulation tissue start How does granulation tissue start? paraphrase 2016
107
+ 1136043 difference between a hotel and motel What is the difference between hotel and motel? paraphrase 2016
108
+ 1136047 difference between a company's strategy and business model is The Difference Between Business Strategy and Business Model paraphrase 2016
109
+ 1136962 why did the ancient egyptians call their land kemet, or black land? Why did the ancient egyptians call their land kemet? paraphrase 2016
110
+ 23849 are naturalization records public information Naturalization registers public information paraphrase 2026
111
+ 42255 average salary for dental hygienist in nebraska What is the average salary for a dental hygienist in nebraska? paraphrase 2026
112
+ 47210 average wedding dress alteration cost How much does a wedding dress alteration cost? paraphrase 2026
113
+ 67316 can fever cause miscarriage early pregnancy Fever can cause pregnancy damage paraphrase 2026
114
+ 118440 define bmt medical Medicalally defined paraphrase 2026
115
+ 121171 define etruscans What is an etruscan? paraphrase 2026
116
+ 135802 definition of laudable The definition of praise paraphrase 2026
117
+ 141630 describe how muscles and bones work together to produce movement How do muscles and bones work together to produce movement? paraphrase 2026
118
+ 156498 do google docs auto save Do Google Docs auto save? paraphrase 2026
119
+ 169208 does mississippi have an income tax Mississippi has an income tax paraphrase 2026
120
+ 174463 dog day afternoon meaning Dogs Day Afternoon paraphrase 2026
121
+ 258062 how long does it take to remove wisdom tooth How long does it take to remove wisdom teeth? paraphrase 2026
122
+ 324585 how much money do motivational speakers make How Much Money Motivating Speakers Make paraphrase 2026
123
+ 330975 how much would it cost to install my own wind turbine How much does it cost to build a wind turbine? paraphrase 2026
124
+ 332593 how often to button quail lay eggs How often do you click quail lay eggs? paraphrase 2026
125
+ 336901 how old is vanessa redgrave How old is Vanessa Redgrave? paraphrase 2026
126
+ 390360 ia suffix meaning What is the meaning of ia suffix? paraphrase 2026
127
+ 405163 is caffeine an narcotic Caffeine is a drug. paraphrase 2026
128
+ 555530 what are best foods to lower cholesterol What are the best foods to lower cholesterol paraphrase 2026
129
+ 583468 what carvedilol used for What Carvedilol is used paraphrase 2026
130
+ 640502 what does it mean if your tsh is low What does it mean if your TSH is low? paraphrase 2026
131
+ 673670 what is a alm What is an alm? paraphrase 2026
132
+ 701453 what is a statutory deed What is a statutory deed? paraphrase 2026
133
+ 730539 what is chronometer who invented it Who invented the chronometer? paraphrase 2026
134
+ 768208 what is mamey What is Mamey paraphrase 2026
135
+ 877809 what metal are hip replacements made of What Metals Are Hip Compensations From paraphrase 2026
136
+ 911232 what type of conflict does della face in o, henry the gift of the magi What type of conflict does della face in o, henry the gift of the magi? paraphrase 2026
137
+ 914916 what type of tissue are bronchioles What tissues are bronchials paraphrase 2026
138
+ 938400 when did family feud come out? When did the family feud come out? paraphrase 2026
139
+ 940547 when did rock n roll begin? When did rock n roll start? paraphrase 2026
140
+ 997622 where is the show shameless filmed Where is the show Shameless filmed? paraphrase 2026
141
+ 1030303 who is aziz hashim Who is aziz hashim? paraphrase 2026
142
+ 1037496 who is rep scalise? Who is rep scalise? paraphrase 2026
143
+ 1043135 who killed nicholas ii of russia Who killed nicholas ii of Russia? paraphrase 2026
144
+ 1051399 who sings monk theme song Who Sings Monk Theme Song paraphrase 2026
145
+ 1064670 why do hunters pattern their shotguns? Why do hunters pattern their shotguns? paraphrase 2026
146
+ 1071750 why is pete rose banned from hall of fame Why is pete rose banned from the hall of fame? paraphrase 2026
147
+ 1105792 define: geon Description of: Geon paraphrase 2026
148
+ 1106979 define pareto chart in statistics What is a pareto chart in statistics? paraphrase 2026
149
+ 1108651 what the best way to get clothes white How can I get my clothes white? paraphrase 2026
150
+ 1109707 what medium do radio waves travel through What medium do radio waves travel through? paraphrase 2026
151
+ 1110678 what is the un fao What is the unfao? paraphrase 2026
152
+ 1113256 what is reba mcentire's net worth What is Reba Mcentire's net worth? paraphrase 2026
153
+ 1115210 what is chaff and flare What is chaff and flare? paraphrase 2026
154
+ 1116380 what is a nonconformity? earth science What is an incompatibility? world science paraphrase 2026
155
+ 1121353 what can you do about discrimination in the workplace in oklahoma city What can you do about discrimination in the workplace in Oklahoma City? paraphrase 2026
156
+ 1122767 what amino produces carnitine What amino acid produces carnitine? paraphrase 2026
157
+ 1127540 meaning of shebang What is the meaning of shebang? paraphrase 2026
158
+ 1131069 how many sons robert kraft has How many sons does Robert Kraft have? paraphrase 2026
159
+ 1132532 average annual income data analyst What is the average annual income data analyst? paraphrase 2026
160
+ 1133579 how does granulation tissue start How does granulation tissue start? paraphrase 2026
161
+ 1136043 difference between a hotel and motel What is the difference between hotel and motel? paraphrase 2026
162
+ 1136047 difference between a company's strategy and business model is The Difference Between Business Strategy and Business Model paraphrase 2026
163
+ 1136962 why did the ancient egyptians call their land kemet, or black land? Why did the Egyptians call their land Kimet or Black Earth? paraphrase 2026
164
+ 23849 are naturalization records public information Naturalization registers public information paraphrase 27
165
+ 42255 average salary for dental hygienist in nebraska What is the average salary for a dental hygienist in nebraska? paraphrase 27
166
+ 47210 average wedding dress alteration cost How much does a wedding dress alteration cost? paraphrase 27
167
+ 67316 can fever cause miscarriage early pregnancy Can a fever cause a miscarriage? paraphrase 27
168
+ 118440 define bmt medical Medicalally defined paraphrase 27
169
+ 121171 define etruscans Definition of Ethereum paraphrase 27
170
+ 135802 definition of laudable What is laudable? paraphrase 27
171
+ 141630 describe how muscles and bones work together to produce movement Describe how muscles and bones work together to produce exercise paraphrase 27
172
+ 156498 do google docs auto save How to save Google Docs Auto paraphrase 27
173
+ 169208 does mississippi have an income tax Mississippi has an income tax paraphrase 27
174
+ 174463 dog day afternoon meaning Dogs Day Afternoon paraphrase 27
175
+ 258062 how long does it take to remove wisdom tooth How long does it take to remove wisdom teeth? paraphrase 27
176
+ 324585 how much money do motivational speakers make How much money do motivational speakers make? paraphrase 27
177
+ 330975 how much would it cost to install my own wind turbine How much does it cost to install my own wind turbine? paraphrase 27
178
+ 332593 how often to button quail lay eggs How often do you click quail lay eggs? paraphrase 27
179
+ 336901 how old is vanessa redgrave How old is Vanessa Redgrave? paraphrase 27
180
+ 390360 ia suffix meaning What is the meaning of ia suffix? paraphrase 27
181
+ 405163 is caffeine an narcotic Is caffeine a narcotic? paraphrase 27
182
+ 555530 what are best foods to lower cholesterol What are the best foods to reduce cholesterol? paraphrase 27
183
+ 583468 what carvedilol used for What is Carnedilol used for? paraphrase 27
184
+ 640502 what does it mean if your tsh is low What does it mean if your TSH is low? paraphrase 27
185
+ 673670 what is a alm What is an alm paraphrase 27
186
+ 701453 what is a statutory deed What is a legal act paraphrase 27
187
+ 730539 what is chronometer who invented it What is the chronometer that invented it? paraphrase 27
188
+ 768208 what is mamey What is Mamey paraphrase 27
189
+ 877809 what metal are hip replacements made of What Metals Are Hip Compensations From paraphrase 27
190
+ 911232 what type of conflict does della face in o, henry the gift of the magi What type of conflict does della face in o, henry the gift of the magi? paraphrase 27
191
+ 914916 what type of tissue are bronchioles What tissues are bronchials paraphrase 27
192
+ 938400 when did family feud come out? When did the family feud come out? paraphrase 27
193
+ 940547 when did rock n roll begin? When did rock n roll start? paraphrase 27
194
+ 997622 where is the show shameless filmed Where is the show shameless filmed? paraphrase 27
195
+ 1030303 who is aziz hashim Who is aziz hashim? paraphrase 27
196
+ 1037496 who is rep scalise? Who is Rep Scalise? paraphrase 27
197
+ 1043135 who killed nicholas ii of russia Who Killed Nicholas II of Russia paraphrase 27
198
+ 1051399 who sings monk theme song Who Sings Monk Theme Song paraphrase 27
199
+ 1064670 why do hunters pattern their shotguns? Why do hunters pattern their shotguns? paraphrase 27
200
+ 1071750 why is pete rose banned from hall of fame Why is Pete Rose banned from Hall of Fame? paraphrase 27
201
+ 1105792 define: geon Description of: Geon paraphrase 27
202
+ 1106979 define pareto chart in statistics What is a pareto chart in statistics? paraphrase 27
203
+ 1108651 what the best way to get clothes white What is the best way to get clothes white paraphrase 27
204
+ 1109707 what medium do radio waves travel through What medium do radio waves travel through? paraphrase 27
205
+ 1110678 what is the un fao What is the unfao? paraphrase 27
206
+ 1113256 what is reba mcentire's net worth What is Reba Mcentire's net worth? paraphrase 27
207
+ 1115210 what is chaff and flare What is Chaff and Flare paraphrase 27
208
+ 1116380 what is a nonconformity? earth science What is a nonconformity? paraphrase 27
209
+ 1121353 what can you do about discrimination in the workplace in oklahoma city What You Can Do About Workplace Discrimination in Oklahoma City paraphrase 27
210
+ 1122767 what amino produces carnitine What amino acids produce carnitin paraphrase 27
211
+ 1127540 meaning of shebang Importance of Shebang paraphrase 27
212
+ 1131069 how many sons robert kraft has How many sons has Robert Kraft paraphrase 27
213
+ 1132532 average annual income data analyst An average annual income analysis paraphrase 27
214
+ 1133579 how does granulation tissue start How to start granulation tissue paraphrase 27
215
+ 1136043 difference between a hotel and motel Difference Between Hotel and Motel paraphrase 27
216
+ 1136047 difference between a company's strategy and business model is The Difference Between Business Strategy and Business Model paraphrase 27
217
+ 1136962 why did the ancient egyptians call their land kemet, or black land? Why did the ancient egyptians call their land kemet? paraphrase 27
218
+ 23849 are naturalization records public information Are naturalization records public information? paraphrase 5
219
+ 42255 average salary for dental hygienist in nebraska What is the average salary for a dental hygienist in nebraska? paraphrase 5
220
+ 47210 average wedding dress alteration cost The average cost of change for wedding clothes paraphrase 5
221
+ 67316 can fever cause miscarriage early pregnancy Fever can cause pregnancy damage paraphrase 5
222
+ 118440 define bmt medical What is bmt medical? paraphrase 5
223
+ 121171 define etruscans Definition of Ethereum paraphrase 5
224
+ 135802 definition of laudable The definition of praise paraphrase 5
225
+ 141630 describe how muscles and bones work together to produce movement How do muscles and bones work together to produce movement? paraphrase 5
226
+ 156498 do google docs auto save How to save Google Docs Auto paraphrase 5
227
+ 169208 does mississippi have an income tax Mississippi has an income tax paraphrase 5
228
+ 174463 dog day afternoon meaning Dogs Day Afternoon paraphrase 5
229
+ 258062 how long does it take to remove wisdom tooth How long does it take to remove wisdom teeth? paraphrase 5
230
+ 324585 how much money do motivational speakers make How Much Money Motivating Speakers Make paraphrase 5
231
+ 330975 how much would it cost to install my own wind turbine How much does it cost to build a wind turbine? paraphrase 5
232
+ 332593 how often to button quail lay eggs How often button quail lay eggs? paraphrase 5
233
+ 336901 how old is vanessa redgrave How old is Vanessa Redgrave? paraphrase 5
234
+ 390360 ia suffix meaning What is the meaning of ia suffix? paraphrase 5
235
+ 405163 is caffeine an narcotic Is caffeine a narcotic? paraphrase 5
236
+ 555530 what are best foods to lower cholesterol What are the best foods to reduce cholesterol? paraphrase 5
237
+ 583468 what carvedilol used for What is Carnedilol used for? paraphrase 5
238
+ 640502 what does it mean if your tsh is low What does it mean if your TSH is low? paraphrase 5
239
+ 673670 what is a alm What is an alm? paraphrase 5
240
+ 701453 what is a statutory deed What is a legal act paraphrase 5
241
+ 730539 what is chronometer who invented it What is the chronometer that invented it? paraphrase 5
242
+ 768208 what is mamey What is Mamey paraphrase 5
243
+ 877809 what metal are hip replacements made of What Metals Are Hip Compensations From paraphrase 5
244
+ 911232 what type of conflict does della face in o, henry the gift of the magi What type of conflict does della face in o, henry the gift of the magi? paraphrase 5
245
+ 914916 what type of tissue are bronchioles What tissues are bronchials paraphrase 5
246
+ 938400 when did family feud come out? When did the family feud come out? paraphrase 5
247
+ 940547 when did rock n roll begin? When did Rock n Roll start? paraphrase 5
248
+ 997622 where is the show shameless filmed Where is the show shameless filmed? paraphrase 5
249
+ 1030303 who is aziz hashim Who is Aziz Hashim? paraphrase 5
250
+ 1037496 who is rep scalise? Who is Rep Scalise? paraphrase 5
251
+ 1043135 who killed nicholas ii of russia Who killed nicholas ii of Russia? paraphrase 5
252
+ 1051399 who sings monk theme song Who Sings Monk Theme Song paraphrase 5
253
+ 1064670 why do hunters pattern their shotguns? Why do hunters pattern their shotguns? paraphrase 5
254
+ 1071750 why is pete rose banned from hall of fame Why is pete rose banned from the hall of fame? paraphrase 5
255
+ 1105792 define: geon Description of: Geon paraphrase 5
256
+ 1106979 define pareto chart in statistics Defining Pareto Diagram in Statistics paraphrase 5
257
+ 1108651 what the best way to get clothes white How can I get my clothes white? paraphrase 5
258
+ 1109707 what medium do radio waves travel through What medium do radio waves travel through? paraphrase 5
259
+ 1110678 what is the un fao What is the unfao? paraphrase 5
260
+ 1113256 what is reba mcentire's net worth What is Reba Mcentire's net worth? paraphrase 5
261
+ 1115210 what is chaff and flare What is Chaff and Flare paraphrase 5
262
+ 1116380 what is a nonconformity? earth science What is a nonconformity? paraphrase 5
263
+ 1121353 what can you do about discrimination in the workplace in oklahoma city What can you do about discrimination in the workplace in Oklahoma City? paraphrase 5
264
+ 1122767 what amino produces carnitine What amino acid produces carnitine? paraphrase 5
265
+ 1127540 meaning of shebang What is the meaning of shebang? paraphrase 5
266
+ 1131069 how many sons robert kraft has How many sons has Robert Kraft paraphrase 5
267
+ 1132532 average annual income data analyst What is the average annual income data analyst? paraphrase 5
268
+ 1133579 how does granulation tissue start How does granulation tissue start? paraphrase 5
269
+ 1136043 difference between a hotel and motel What is the difference between hotel and motel? paraphrase 5
270
+ 1136047 difference between a company's strategy and business model is What is the difference between a business model and a strategy? paraphrase 5
271
+ 1136962 why did the ancient egyptians call their land kemet, or black land? Why did the Egyptians call their land Kimet or Black Earth? paraphrase 5
lost_in_decoding_artifacts/trec-dl-2020/reordering.tsv ADDED
@@ -0,0 +1,271 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ qid original_query perturbed_query perturbation seed
2
+ 23849 are naturalization records public information records naturalization are public information reordering 1999
3
+ 42255 average salary for dental hygienist in nebraska average salary for dental in hygienist nebraska reordering 1999
4
+ 47210 average wedding dress alteration cost average wedding dress cost alteration reordering 1999
5
+ 67316 can fever cause miscarriage early pregnancy can fever cause early miscarriage pregnancy reordering 1999
6
+ 118440 define bmt medical bmt define medical reordering 1999
7
+ 121171 define etruscans etruscans define reordering 1999
8
+ 135802 definition of laudable of definition laudable reordering 1999
9
+ 141630 describe how muscles and bones work together to produce movement and how muscles describe bones work together to produce movement reordering 1999
10
+ 156498 do google docs auto save do google save auto docs reordering 1999
11
+ 169208 does mississippi have an income tax an mississippi have does income tax reordering 1999
12
+ 174463 dog day afternoon meaning meaning day afternoon dog reordering 1999
13
+ 258062 how long does it take to remove wisdom tooth remove long does it take to how wisdom tooth reordering 1999
14
+ 324585 how much money do motivational speakers make how much do money motivational speakers make reordering 1999
15
+ 330975 how much would it cost to install my own wind turbine how turbine would it cost to install my own wind much reordering 1999
16
+ 332593 how often to button quail lay eggs how quail to button often lay eggs reordering 1999
17
+ 336901 how old is vanessa redgrave vanessa old is how redgrave reordering 1999
18
+ 390360 ia suffix meaning meaning suffix ia reordering 1999
19
+ 405163 is caffeine an narcotic is an caffeine narcotic reordering 1999
20
+ 555530 what are best foods to lower cholesterol what are best lower to foods cholesterol reordering 1999
21
+ 583468 what carvedilol used for what used carvedilol for reordering 1999
22
+ 640502 what does it mean if your tsh is low tsh does it mean if your what is low reordering 1999
23
+ 673670 what is a alm is what a alm reordering 1999
24
+ 701453 what is a statutory deed is what a statutory deed reordering 1999
25
+ 730539 what is chronometer who invented it what is chronometer invented who it reordering 1999
26
+ 768208 what is mamey what mamey is reordering 1999
27
+ 877809 what metal are hip replacements made of what metal are replacements hip made of reordering 1999
28
+ 911232 what type of conflict does della face in o, henry the gift of the magi what type of conflict does della face in o, gift the henry of the magi reordering 1999
29
+ 914916 what type of tissue are bronchioles what type of bronchioles are tissue reordering 1999
30
+ 938400 when did family feud come out? when family did feud come out? reordering 1999
31
+ 940547 when did rock n roll begin? when did roll n rock begin? reordering 1999
32
+ 997622 where is the show shameless filmed where is shameless show the filmed reordering 1999
33
+ 1030303 who is aziz hashim is who aziz hashim reordering 1999
34
+ 1037496 who is rep scalise? is who rep scalise? reordering 1999
35
+ 1043135 who killed nicholas ii of russia who killed nicholas of ii russia reordering 1999
36
+ 1051399 who sings monk theme song who sings monk song theme reordering 1999
37
+ 1064670 why do hunters pattern their shotguns? why do their pattern hunters shotguns? reordering 1999
38
+ 1071750 why is pete rose banned from hall of fame of is pete rose banned from hall why fame reordering 1999
39
+ 1105792 define: geon geon: define reordering 1999
40
+ 1106979 define pareto chart in statistics define pareto in chart statistics reordering 1999
41
+ 1108651 what the best way to get clothes white what the best white to get clothes way reordering 1999
42
+ 1109707 what medium do radio waves travel through what medium do radio through travel waves reordering 1999
43
+ 1110678 what is the un fao what is fao un the reordering 1999
44
+ 1113256 what is reba mcentire's net worth what reba is mcentire's net worth reordering 1999
45
+ 1115210 what is chaff and flare what flare chaff and is reordering 1999
46
+ 1116380 what is a nonconformity? earth science earth is a nonconformity? what science reordering 1999
47
+ 1121353 what can you do about discrimination in the workplace in oklahoma city what can you do about discrimination in city workplace in oklahoma the reordering 1999
48
+ 1122767 what amino produces carnitine amino what produces carnitine reordering 1999
49
+ 1127540 meaning of shebang of meaning shebang reordering 1999
50
+ 1131069 how many sons robert kraft has how many has robert kraft sons reordering 1999
51
+ 1132532 average annual income data analyst annual average income data analyst reordering 1999
52
+ 1133579 how does granulation tissue start start does granulation tissue how reordering 1999
53
+ 1136043 difference between a hotel and motel difference between motel hotel and a reordering 1999
54
+ 1136047 difference between a company's strategy and business model is company's between a difference strategy and business model is reordering 1999
55
+ 1136962 why did the ancient egyptians call their land kemet, or black land? why egyptians the ancient did call their land kemet, or black land? reordering 1999
56
+ 23849 are naturalization records public information are records naturalization public information reordering 2016
57
+ 42255 average salary for dental hygienist in nebraska average salary hygienist dental for in nebraska reordering 2016
58
+ 47210 average wedding dress alteration cost average wedding alteration dress cost reordering 2016
59
+ 67316 can fever cause miscarriage early pregnancy can fever early miscarriage cause pregnancy reordering 2016
60
+ 118440 define bmt medical define medical bmt reordering 2016
61
+ 121171 define etruscans etruscans define reordering 2016
62
+ 135802 definition of laudable of definition laudable reordering 2016
63
+ 141630 describe how muscles and bones work together to produce movement describe movement muscles and bones work together to produce how reordering 2016
64
+ 156498 do google docs auto save auto google docs do save reordering 2016
65
+ 169208 does mississippi have an income tax mississippi does have an income tax reordering 2016
66
+ 174463 dog day afternoon meaning dog day meaning afternoon reordering 2016
67
+ 258062 how long does it take to remove wisdom tooth how wisdom does it take to remove long tooth reordering 2016
68
+ 324585 how much money do motivational speakers make how much money speakers motivational do make reordering 2016
69
+ 330975 how much would it cost to install my own wind turbine much how would it cost to install my own wind turbine reordering 2016
70
+ 332593 how often to button quail lay eggs how lay to button quail often eggs reordering 2016
71
+ 336901 how old is vanessa redgrave how is old vanessa redgrave reordering 2016
72
+ 390360 ia suffix meaning meaning suffix ia reordering 2016
73
+ 405163 is caffeine an narcotic an caffeine is narcotic reordering 2016
74
+ 555530 what are best foods to lower cholesterol what are lower foods to best cholesterol reordering 2016
75
+ 583468 what carvedilol used for what for used carvedilol reordering 2016
76
+ 640502 what does it mean if your tsh is low what does it mean if low tsh is your reordering 2016
77
+ 673670 what is a alm a is what alm reordering 2016
78
+ 701453 what is a statutory deed statutory is a what deed reordering 2016
79
+ 730539 what is chronometer who invented it what is chronometer it invented who reordering 2016
80
+ 768208 what is mamey what mamey is reordering 2016
81
+ 877809 what metal are hip replacements made of replacements metal are hip what made of reordering 2016
82
+ 911232 what type of conflict does della face in o, henry the gift of the magi what type the conflict does della face in o, henry the gift of of magi reordering 2016
83
+ 914916 what type of tissue are bronchioles bronchioles type of tissue are what reordering 2016
84
+ 938400 when did family feud come out? when did come feud family out? reordering 2016
85
+ 940547 when did rock n roll begin? rock did when n roll begin? reordering 2016
86
+ 997622 where is the show shameless filmed is where the show shameless filmed reordering 2016
87
+ 1030303 who is aziz hashim is who aziz hashim reordering 2016
88
+ 1037496 who is rep scalise? scalise is rep who? reordering 2016
89
+ 1043135 who killed nicholas ii of russia who killed nicholas ii russia of reordering 2016
90
+ 1051399 who sings monk theme song theme sings monk who song reordering 2016
91
+ 1064670 why do hunters pattern their shotguns? why do hunters their pattern shotguns? reordering 2016
92
+ 1071750 why is pete rose banned from hall of fame why is from rose banned pete hall of fame reordering 2016
93
+ 1105792 define: geon geon: define reordering 2016
94
+ 1106979 define pareto chart in statistics define in chart pareto statistics reordering 2016
95
+ 1108651 what the best way to get clothes white what the way best to get clothes white reordering 2016
96
+ 1109707 what medium do radio waves travel through what medium do radio waves through travel reordering 2016
97
+ 1110678 what is the un fao what is the fao un reordering 2016
98
+ 1113256 what is reba mcentire's net worth what is reba worth net mcentire's reordering 2016
99
+ 1115210 what is chaff and flare what flare chaff and is reordering 2016
100
+ 1116380 what is a nonconformity? earth science what is a earth? nonconformity science reordering 2016
101
+ 1121353 what can you do about discrimination in the workplace in oklahoma city what in you do about discrimination in the workplace can oklahoma city reordering 2016
102
+ 1122767 what amino produces carnitine what produces amino carnitine reordering 2016
103
+ 1127540 meaning of shebang shebang of meaning reordering 2016
104
+ 1131069 how many sons robert kraft has sons many how robert kraft has reordering 2016
105
+ 1132532 average annual income data analyst income annual average data analyst reordering 2016
106
+ 1133579 how does granulation tissue start start does granulation tissue how reordering 2016
107
+ 1136043 difference between a hotel and motel difference a between hotel and motel reordering 2016
108
+ 1136047 difference between a company's strategy and business model is difference between a company's strategy and model business is reordering 2016
109
+ 1136962 why did the ancient egyptians call their land kemet, or black land? why call the ancient egyptians did their land kemet, or black land? reordering 2016
110
+ 23849 are naturalization records public information records naturalization are public information reordering 2026
111
+ 42255 average salary for dental hygienist in nebraska average salary for hygienist dental in nebraska reordering 2026
112
+ 47210 average wedding dress alteration cost average cost dress alteration wedding reordering 2026
113
+ 67316 can fever cause miscarriage early pregnancy can fever pregnancy miscarriage early cause reordering 2026
114
+ 118440 define bmt medical medical bmt define reordering 2026
115
+ 121171 define etruscans etruscans define reordering 2026
116
+ 135802 definition of laudable laudable of definition reordering 2026
117
+ 141630 describe how muscles and bones work together to produce movement describe and muscles how bones work together to produce movement reordering 2026
118
+ 156498 do google docs auto save do auto docs google save reordering 2026
119
+ 169208 does mississippi have an income tax mississippi does have an income tax reordering 2026
120
+ 174463 dog day afternoon meaning day dog afternoon meaning reordering 2026
121
+ 258062 how long does it take to remove wisdom tooth how long does it take tooth remove wisdom to reordering 2026
122
+ 324585 how much money do motivational speakers make how make money do motivational speakers much reordering 2026
123
+ 330975 how much would it cost to install my own wind turbine turbine much would it cost to install my own wind how reordering 2026
124
+ 332593 how often to button quail lay eggs how often to lay quail button eggs reordering 2026
125
+ 336901 how old is vanessa redgrave is old how vanessa redgrave reordering 2026
126
+ 390360 ia suffix meaning meaning suffix ia reordering 2026
127
+ 405163 is caffeine an narcotic an caffeine is narcotic reordering 2026
128
+ 555530 what are best foods to lower cholesterol what are best foods to cholesterol lower reordering 2026
129
+ 583468 what carvedilol used for what carvedilol for used reordering 2026
130
+ 640502 what does it mean if your tsh is low what does it is if your tsh mean low reordering 2026
131
+ 673670 what is a alm alm is a what reordering 2026
132
+ 701453 what is a statutory deed statutory is a what deed reordering 2026
133
+ 730539 what is chronometer who invented it what chronometer is who invented it reordering 2026
134
+ 768208 what is mamey is what mamey reordering 2026
135
+ 877809 what metal are hip replacements made of metal what are hip replacements made of reordering 2026
136
+ 911232 what type of conflict does della face in o, henry the gift of the magi what the of conflict does della face in o, henry the gift of type magi reordering 2026
137
+ 914916 what type of tissue are bronchioles what type tissue of are bronchioles reordering 2026
138
+ 938400 when did family feud come out? when did family out come feud? reordering 2026
139
+ 940547 when did rock n roll begin? rock did when n roll begin? reordering 2026
140
+ 997622 where is the show shameless filmed where is the filmed shameless show reordering 2026
141
+ 1030303 who is aziz hashim is who aziz hashim reordering 2026
142
+ 1037496 who is rep scalise? who scalise rep is? reordering 2026
143
+ 1043135 who killed nicholas ii of russia who killed nicholas russia of ii reordering 2026
144
+ 1051399 who sings monk theme song who theme monk sings song reordering 2026
145
+ 1064670 why do hunters pattern their shotguns? why do pattern hunters their shotguns? reordering 2026
146
+ 1071750 why is pete rose banned from hall of fame why is hall rose banned from pete of fame reordering 2026
147
+ 1105792 define: geon geon: define reordering 2026
148
+ 1106979 define pareto chart in statistics define pareto chart statistics in reordering 2026
149
+ 1108651 what the best way to get clothes white to the best way what get clothes white reordering 2026
150
+ 1109707 what medium do radio waves travel through what do medium radio waves travel through reordering 2026
151
+ 1110678 what is the un fao what is fao un the reordering 2026
152
+ 1113256 what is reba mcentire's net worth net is reba mcentire's what worth reordering 2026
153
+ 1115210 what is chaff and flare is what chaff and flare reordering 2026
154
+ 1116380 what is a nonconformity? earth science what is earth nonconformity? a science reordering 2026
155
+ 1121353 what can you do about discrimination in the workplace in oklahoma city what can you the about discrimination in do workplace in oklahoma city reordering 2026
156
+ 1122767 what amino produces carnitine produces amino what carnitine reordering 2026
157
+ 1127540 meaning of shebang of meaning shebang reordering 2026
158
+ 1131069 how many sons robert kraft has how many robert sons kraft has reordering 2026
159
+ 1132532 average annual income data analyst average data income annual analyst reordering 2026
160
+ 1133579 how does granulation tissue start how granulation does tissue start reordering 2026
161
+ 1136043 difference between a hotel and motel difference and a hotel between motel reordering 2026
162
+ 1136047 difference between a company's strategy and business model is difference between a company's strategy is business model and reordering 2026
163
+ 1136962 why did the ancient egyptians call their land kemet, or black land? why did the call egyptians ancient their land kemet, or black land? reordering 2026
164
+ 23849 are naturalization records public information naturalization are records public information reordering 27
165
+ 42255 average salary for dental hygienist in nebraska average salary for hygienist dental in nebraska reordering 27
166
+ 47210 average wedding dress alteration cost cost wedding dress alteration average reordering 27
167
+ 67316 can fever cause miscarriage early pregnancy can fever cause pregnancy early miscarriage reordering 27
168
+ 118440 define bmt medical define medical bmt reordering 27
169
+ 121171 define etruscans etruscans define reordering 27
170
+ 135802 definition of laudable definition laudable of reordering 27
171
+ 141630 describe how muscles and bones work together to produce movement muscles how describe and bones work together to produce movement reordering 27
172
+ 156498 do google docs auto save save google docs auto do reordering 27
173
+ 169208 does mississippi have an income tax an mississippi have does income tax reordering 27
174
+ 174463 dog day afternoon meaning dog afternoon day meaning reordering 27
175
+ 258062 how long does it take to remove wisdom tooth how long tooth it take to remove wisdom does reordering 27
176
+ 324585 how much money do motivational speakers make how much do money motivational speakers make reordering 27
177
+ 330975 how much would it cost to install my own wind turbine how much cost it would to install my own wind turbine reordering 27
178
+ 332593 how often to button quail lay eggs how often lay button quail to eggs reordering 27
179
+ 336901 how old is vanessa redgrave how old is redgrave vanessa reordering 27
180
+ 390360 ia suffix meaning ia meaning suffix reordering 27
181
+ 405163 is caffeine an narcotic narcotic caffeine an is reordering 27
182
+ 555530 what are best foods to lower cholesterol what are to foods best lower cholesterol reordering 27
183
+ 583468 what carvedilol used for what for used carvedilol reordering 27
184
+ 640502 what does it mean if your tsh is low what does it your if mean tsh is low reordering 27
185
+ 673670 what is a alm what is alm a reordering 27
186
+ 701453 what is a statutory deed what a is statutory deed reordering 27
187
+ 730539 what is chronometer who invented it what invented chronometer who is it reordering 27
188
+ 768208 what is mamey what mamey is reordering 27
189
+ 877809 what metal are hip replacements made of what metal made hip replacements are of reordering 27
190
+ 911232 what type of conflict does della face in o, henry the gift of the magi magi type of conflict does della face in o, henry the gift of the what reordering 27
191
+ 914916 what type of tissue are bronchioles what of type tissue are bronchioles reordering 27
192
+ 938400 when did family feud come out? out did family feud come when? reordering 27
193
+ 940547 when did rock n roll begin? rock did when n roll begin? reordering 27
194
+ 997622 where is the show shameless filmed where is the show filmed shameless reordering 27
195
+ 1030303 who is aziz hashim who is hashim aziz reordering 27
196
+ 1037496 who is rep scalise? rep is who scalise? reordering 27
197
+ 1043135 who killed nicholas ii of russia who killed russia ii of nicholas reordering 27
198
+ 1051399 who sings monk theme song theme sings monk who song reordering 27
199
+ 1064670 why do hunters pattern their shotguns? do why hunters pattern their shotguns? reordering 27
200
+ 1071750 why is pete rose banned from hall of fame hall is pete rose banned from why of fame reordering 27
201
+ 1105792 define: geon geon: define reordering 27
202
+ 1106979 define pareto chart in statistics define chart pareto in statistics reordering 27
203
+ 1108651 what the best way to get clothes white clothes the best way to get what white reordering 27
204
+ 1109707 what medium do radio waves travel through what medium do radio waves through travel reordering 27
205
+ 1110678 what is the un fao what fao the un is reordering 27
206
+ 1113256 what is reba mcentire's net worth what reba is mcentire's net worth reordering 27
207
+ 1115210 what is chaff and flare what flare chaff and is reordering 27
208
+ 1116380 what is a nonconformity? earth science what is science nonconformity? earth a reordering 27
209
+ 1121353 what can you do about discrimination in the workplace in oklahoma city what can you oklahoma about discrimination in the workplace in do city reordering 27
210
+ 1122767 what amino produces carnitine what amino carnitine produces reordering 27
211
+ 1127540 meaning of shebang meaning shebang of reordering 27
212
+ 1131069 how many sons robert kraft has robert many sons how kraft has reordering 27
213
+ 1132532 average annual income data analyst average annual data income analyst reordering 27
214
+ 1133579 how does granulation tissue start tissue does granulation how start reordering 27
215
+ 1136043 difference between a hotel and motel difference between a motel and hotel reordering 27
216
+ 1136047 difference between a company's strategy and business model is a between difference company's strategy and business model is reordering 27
217
+ 1136962 why did the ancient egyptians call their land kemet, or black land? why did the ancient egyptians call kemet land their, or black land? reordering 27
218
+ 23849 are naturalization records public information are naturalization public records information reordering 5
219
+ 42255 average salary for dental hygienist in nebraska average salary for in hygienist dental nebraska reordering 5
220
+ 47210 average wedding dress alteration cost average wedding dress cost alteration reordering 5
221
+ 67316 can fever cause miscarriage early pregnancy can fever cause early miscarriage pregnancy reordering 5
222
+ 118440 define bmt medical bmt define medical reordering 5
223
+ 121171 define etruscans etruscans define reordering 5
224
+ 135802 definition of laudable definition laudable of reordering 5
225
+ 141630 describe how muscles and bones work together to produce movement describe movement muscles and bones work together to produce how reordering 5
226
+ 156498 do google docs auto save do auto docs google save reordering 5
227
+ 169208 does mississippi have an income tax does mississippi an have income tax reordering 5
228
+ 174463 dog day afternoon meaning afternoon day dog meaning reordering 5
229
+ 258062 how long does it take to remove wisdom tooth tooth long does it take to remove wisdom how reordering 5
230
+ 324585 how much money do motivational speakers make how much money motivational do speakers make reordering 5
231
+ 330975 how much would it cost to install my own wind turbine how much would it cost to install my wind own turbine reordering 5
232
+ 332593 how often to button quail lay eggs how often to button lay quail eggs reordering 5
233
+ 336901 how old is vanessa redgrave is old how vanessa redgrave reordering 5
234
+ 390360 ia suffix meaning ia meaning suffix reordering 5
235
+ 405163 is caffeine an narcotic is an caffeine narcotic reordering 5
236
+ 555530 what are best foods to lower cholesterol what are best foods cholesterol lower to reordering 5
237
+ 583468 what carvedilol used for carvedilol what used for reordering 5
238
+ 640502 what does it mean if your tsh is low what does it mean if is tsh your low reordering 5
239
+ 673670 what is a alm is what a alm reordering 5
240
+ 701453 what is a statutory deed is what a statutory deed reordering 5
241
+ 730539 what is chronometer who invented it who is chronometer what invented it reordering 5
242
+ 768208 what is mamey what mamey is reordering 5
243
+ 877809 what metal are hip replacements made of what metal are hip made replacements of reordering 5
244
+ 911232 what type of conflict does della face in o, henry the gift of the magi what type of conflict does in face della o, henry the gift of the magi reordering 5
245
+ 914916 what type of tissue are bronchioles what are of tissue type bronchioles reordering 5
246
+ 938400 when did family feud come out? when did family come feud out? reordering 5
247
+ 940547 when did rock n roll begin? when did n rock roll begin? reordering 5
248
+ 997622 where is the show shameless filmed show is the where shameless filmed reordering 5
249
+ 1030303 who is aziz hashim hashim is aziz who reordering 5
250
+ 1037496 who is rep scalise? who rep is scalise? reordering 5
251
+ 1043135 who killed nicholas ii of russia nicholas killed who ii of russia reordering 5
252
+ 1051399 who sings monk theme song sings who monk theme song reordering 5
253
+ 1064670 why do hunters pattern their shotguns? why do hunters shotguns their pattern? reordering 5
254
+ 1071750 why is pete rose banned from hall of fame why is pete rose of from hall banned fame reordering 5
255
+ 1105792 define: geon geon: define reordering 5
256
+ 1106979 define pareto chart in statistics define statistics chart in pareto reordering 5
257
+ 1108651 what the best way to get clothes white what the white way to get clothes best reordering 5
258
+ 1109707 what medium do radio waves travel through what medium radio do waves travel through reordering 5
259
+ 1110678 what is the un fao what un the is fao reordering 5
260
+ 1113256 what is reba mcentire's net worth what is reba net mcentire's worth reordering 5
261
+ 1115210 what is chaff and flare chaff is what and flare reordering 5
262
+ 1116380 what is a nonconformity? earth science nonconformity is a what? earth science reordering 5
263
+ 1121353 what can you do about discrimination in the workplace in oklahoma city do can you what about discrimination in the workplace in oklahoma city reordering 5
264
+ 1122767 what amino produces carnitine amino what produces carnitine reordering 5
265
+ 1127540 meaning of shebang meaning shebang of reordering 5
266
+ 1131069 how many sons robert kraft has how kraft sons robert many has reordering 5
267
+ 1132532 average annual income data analyst average annual analyst data income reordering 5
268
+ 1133579 how does granulation tissue start how granulation does tissue start reordering 5
269
+ 1136043 difference between a hotel and motel difference a between hotel and motel reordering 5
270
+ 1136047 difference between a company's strategy and business model is model between a company's strategy and business difference is reordering 5
271
+ 1136962 why did the ancient egyptians call their land kemet, or black land? why their the ancient egyptians call did land kemet, or black land? reordering 5
lost_in_decoding_artifacts/trec-dl-2020/synonym.tsv ADDED
@@ -0,0 +1,271 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ qid original_query perturbed_query perturbation seed
2
+ 23849 are naturalization records public information are naturalization recorded public information synonym 1999
3
+ 42255 average salary for dental hygienist in nebraska average pay for dental hygienist in nebraska synonym 1999
4
+ 47210 average wedding dress alteration cost average matrimony dress alteration cost synonym 1999
5
+ 67316 can fever cause miscarriage early pregnancy can fever cause miscarriage early maternity synonym 1999
6
+ 118440 define bmt medical define bmt checkup synonym 1999
7
+ 121171 define etruscans set etruscans synonym 1999
8
+ 135802 definition of laudable definition of commendable synonym 1999
9
+ 141630 describe how muscles and bones work together to produce movement describes how muscles and bones work together to produce movement synonym 1999
10
+ 156498 do google docs auto save do google docs auto economize synonym 1999
11
+ 169208 does mississippi have an income tax does mississippi have an income assess synonym 1999
12
+ 174463 dog day afternoon meaning dog day afternoon import synonym 1999
13
+ 258062 how long does it take to remove wisdom tooth how long does it charter to remove wisdom tooth synonym 1999
14
+ 324585 how much money do motivational speakers make how much money do motivational speakers puddle synonym 1999
15
+ 330975 how much would it cost to install my own wind turbine how much would it cost to install my own nose turbine synonym 1999
16
+ 332593 how often to button quail lay eggs how usually to button quail lay eggs synonym 1999
17
+ 336901 how old is vanessa redgrave how old is Vanessa redgrave synonym 1999
18
+ 390360 ia suffix meaning ia suffix meanings synonym 1999
19
+ 405163 is caffeine an narcotic is caffeine an drug synonym 1999
20
+ 555530 what are best foods to lower cholesterol what are best foods to glower cholesterol synonym 1999
21
+ 583468 what carvedilol used for what carvedilol put-upon for synonym 1999
22
+ 640502 what does it mean if your tsh is low what does it mean if your tsh is small synonym 1999
23
+ 673670 what is a alm what is a alm synonym 1999
24
+ 701453 what is a statutory deed what is a regulatory deed synonym 1999
25
+ 730539 what is chronometer who invented it what is chronometer who coined it synonym 1999
26
+ 768208 what is mamey what is mammee synonym 1999
27
+ 877809 what metal are hip replacements made of what metal are hip replacements constitute of synonym 1999
28
+ 911232 what type of conflict does della face in o, henry the gift of the magi what type of conflict does della typeface in o, henry the gift of the magi synonym 1999
29
+ 914916 what type of tissue are bronchioles what typecast of tissue are bronchioles synonym 1999
30
+ 938400 when did family feud come out? when did family quarrel come out? synonym 1999
31
+ 940547 when did rock n roll begin? when did rock n revolve begin? synonym 1999
32
+ 997622 where is the show shameless filmed where is the exhibitions shameless filmed synonym 1999
33
+ 1030303 who is aziz hashim who is aziz hashim synonym 1999
34
+ 1037496 who is rep scalise? who is rep scalise? synonym 1999
35
+ 1043135 who killed nicholas ii of russia who killed nikolaus ii of russia synonym 1999
36
+ 1051399 who sings monk theme song who sings monk theme Sung synonym 1999
37
+ 1064670 why do hunters pattern their shotguns? why do huntsman pattern their shotguns? synonym 1999
38
+ 1071750 why is pete rose banned from hall of fame why is pete rose banned from antechamber of fame synonym 1999
39
+ 1105792 define: geon set: geon synonym 1999
40
+ 1106979 define pareto chart in statistics define pareto graph in statistics synonym 1999
41
+ 1108651 what the best way to get clothes white what the outflank way to get clothes white synonym 1999
42
+ 1109707 what medium do radio waves travel through what middle do radio waves travel through synonym 1999
43
+ 1110678 what is the un fao what is the un fao synonym 1999
44
+ 1113256 what is reba mcentire's net worth what is reba mcentire's netted worth synonym 1999
45
+ 1115210 what is chaff and flare what is chaff and erupt synonym 1999
46
+ 1116380 what is a nonconformity? earth science what is a nonconformity? earth skill synonym 1999
47
+ 1121353 what can you do about discrimination in the workplace in oklahoma city what can you do about discrimination in the workplace in okla city synonym 1999
48
+ 1122767 what amino produces carnitine what amino grow carnitine synonym 1999
49
+ 1127540 meaning of shebang substance of shebang synonym 1999
50
+ 1131069 how many sons robert kraft has how countless sons robert kraft has synonym 1999
51
+ 1132532 average annual income data analyst average annual income data psychoanalyst synonym 1999
52
+ 1133579 how does granulation tissue start how does granulation tissue launching synonym 1999
53
+ 1136043 difference between a hotel and motel variance between a hotel and motel synonym 1999
54
+ 1136047 difference between a company's strategy and business model is dispute between a company's strategy and business model is synonym 1999
55
+ 1136962 why did the ancient egyptians call their land kemet, or black land? why did the ancient egyptians call their land kemet, or negro land? synonym 1999
56
+ 23849 are naturalization records public information are naturalization enter public information synonym 2016
57
+ 42255 average salary for dental hygienist in nebraska average earnings for dental hygienist in nebraska synonym 2016
58
+ 47210 average wedding dress alteration cost average wedding lop alteration cost synonym 2016
59
+ 67316 can fever cause miscarriage early pregnancy can fever stimulate miscarriage early pregnancy synonym 2016
60
+ 118440 define bmt medical defines bmt medical synonym 2016
61
+ 121171 define etruscans delineate etruscans synonym 2016
62
+ 135802 definition of laudable definition of praiseworthy synonym 2016
63
+ 141630 describe how muscles and bones work together to produce movement describe how muscles and bones sour together to produce movement synonym 2016
64
+ 156498 do google docs auto save do google docs car save synonym 2016
65
+ 169208 does mississippi have an income tax does mississippi have an income assess synonym 2016
66
+ 174463 dog day afternoon meaning dog day afternoon sens synonym 2016
67
+ 258062 how long does it take to remove wisdom tooth how long does it remove to remove wisdom tooth synonym 2016
68
+ 324585 how much money do motivational speakers make how much cash do motivational speakers make synonym 2016
69
+ 330975 how much would it cost to install my own wind turbine how much would it cost to install my own farting turbine synonym 2016
70
+ 332593 how often to button quail lay eggs how often to button quail lay bollock synonym 2016
71
+ 336901 how old is vanessa redgrave how sure-enough is vanessa redgrave synonym 2016
72
+ 390360 ia suffix meaning Iowa suffix meaning synonym 2016
73
+ 405163 is caffeine an narcotic is caffeine an narcotising synonym 2016
74
+ 555530 what are best foods to lower cholesterol what are best foods to lowers cholesterol synonym 2016
75
+ 583468 what carvedilol used for what carvedilol utilizes for synonym 2016
76
+ 640502 what does it mean if your tsh is low what does it tight if your tsh is low synonym 2016
77
+ 673670 what is a alm what is a alm synonym 2016
78
+ 701453 what is a statutory deed what is a regulatory deed synonym 2016
79
+ 730539 what is chronometer who invented it what is chronometer who fabricate it synonym 2016
80
+ 768208 what is mamey what is mamey synonym 2016
81
+ 877809 what metal are hip replacements made of what metallic are hip replacements made of synonym 2016
82
+ 911232 what type of conflict does della face in o, henry the gift of the magi what type of conflict does della face in o, henry the giving of the magi synonym 2016
83
+ 914916 what type of tissue are bronchioles what typewrite of tissue are bronchioles synonym 2016
84
+ 938400 when did family feud come out? when did family feud arriving out? synonym 2016
85
+ 940547 when did rock n roll begin? when did rock n roll commencement? synonym 2016
86
+ 997622 where is the show shameless filmed where is the spectacle shameless filmed synonym 2016
87
+ 1030303 who is aziz hashim who is aziz hashim synonym 2016
88
+ 1037496 who is rep scalise? who is repp scalise? synonym 2016
89
+ 1043135 who killed nicholas ii of russia who killed nicolas ii of russia synonym 2016
90
+ 1051399 who sings monk theme song who sings monk theme birdcall synonym 2016
91
+ 1064670 why do hunters pattern their shotguns? why do hunters pattern their rifles? synonym 2016
92
+ 1071750 why is pete rose banned from hall of fame why is pete develop banned from hall of fame synonym 2016
93
+ 1105792 define: geon set: geon synonym 2016
94
+ 1106979 define pareto chart in statistics set pareto chart in statistics synonym 2016
95
+ 1108651 what the best way to get clothes white what the best way to get clothes ovalbumin synonym 2016
96
+ 1109707 what medium do radio waves travel through what medium do radio wave travel through synonym 2016
97
+ 1110678 what is the un fao what is the UN fao synonym 2016
98
+ 1113256 what is reba mcentire's net worth what is reba mcentire's netted worth synonym 2016
99
+ 1115210 what is chaff and flare what is husk and flare synonym 2016
100
+ 1116380 what is a nonconformity? earth science what is a nonconformity? land science synonym 2016
101
+ 1121353 what can you do about discrimination in the workplace in oklahoma city what can you do about discrimination in the labour in oklahoma city synonym 2016
102
+ 1122767 what amino produces carnitine what amino generated carnitine synonym 2016
103
+ 1127540 meaning of shebang mean of shebang synonym 2016
104
+ 1131069 how many sons robert kraft has how numerous sons robert kraft has synonym 2016
105
+ 1132532 average annual income data analyst middling annual income data analyst synonym 2016
106
+ 1133579 how does granulation tissue start how does granulation tissue initiate synonym 2016
107
+ 1136043 difference between a hotel and motel departure between a hotel and motel synonym 2016
108
+ 1136047 difference between a company's strategy and business model is difference between a company's strategy and business paragon is synonym 2016
109
+ 1136962 why did the ancient egyptians call their land kemet, or black land? why did the old egyptians call their land kemet, or black land? synonym 2016
110
+ 23849 are naturalization records public information are nationalization records public information synonym 2026
111
+ 42255 average salary for dental hygienist in nebraska fair salary for dental hygienist in nebraska synonym 2026
112
+ 47210 average wedding dress alteration cost average wedding coif alteration cost synonym 2026
113
+ 67316 can fever cause miscarriage early pregnancy can fever do miscarriage early pregnancy synonym 2026
114
+ 118440 define bmt medical define bmt doctor synonym 2026
115
+ 121171 define etruscans defining etruscans synonym 2026
116
+ 135802 definition of laudable definition of applaudable synonym 2026
117
+ 141630 describe how muscles and bones work together to produce movement describe how muscles and debone work together to produce movement synonym 2026
118
+ 156498 do google docs auto save do google docs auto economize synonym 2026
119
+ 169208 does mississippi have an income tax does mississippi have an income assess synonym 2026
120
+ 174463 dog day afternoon meaning dog day afternoon mean synonym 2026
121
+ 258062 how long does it take to remove wisdom tooth how long does it film to remove wisdom tooth synonym 2026
122
+ 324585 how much money do motivational speakers make how much money do motivational speakers deliver synonym 2026
123
+ 330975 how much would it cost to install my own wind turbine how much would it cost to install my own roll turbine synonym 2026
124
+ 332593 how often to button quail lay eggs how ofttimes to button quail lay eggs synonym 2026
125
+ 336901 how old is vanessa redgrave how older is vanessa redgrave synonym 2026
126
+ 390360 ia suffix meaning ia suffix mean synonym 2026
127
+ 405163 is caffeine an narcotic is caffeine an soporiferous synonym 2026
128
+ 555530 what are best foods to lower cholesterol what are best foods to lowered cholesterol synonym 2026
129
+ 583468 what carvedilol used for what carvedilol victimised for synonym 2026
130
+ 640502 what does it mean if your tsh is low what does it beggarly if your tsh is low synonym 2026
131
+ 673670 what is a alm what is a alm synonym 2026
132
+ 701453 what is a statutory deed what is a regulatory deed synonym 2026
133
+ 730539 what is chronometer who invented it what is chronometer who fabricate it synonym 2026
134
+ 768208 what is mamey what is mamey synonym 2026
135
+ 877809 what metal are hip replacements made of what metal are rosehip replacements made of synonym 2026
136
+ 911232 what type of conflict does della face in o, henry the gift of the magi what type of conflict does della face in o, henry the donating of the magi synonym 2026
137
+ 914916 what type of tissue are bronchioles what character of tissue are bronchioles synonym 2026
138
+ 938400 when did family feud come out? when did family feud follow out? synonym 2026
139
+ 940547 when did rock n roll begin? when did rock n wind begin? synonym 2026
140
+ 997622 where is the show shameless filmed where is the displays shameless filmed synonym 2026
141
+ 1030303 who is aziz hashim who is aziz hashim synonym 2026
142
+ 1037496 who is rep scalise? who is rep scalise? synonym 2026
143
+ 1043135 who killed nicholas ii of russia who murder nicholas ii of russia synonym 2026
144
+ 1051399 who sings monk theme song who exalt monk theme song synonym 2026
145
+ 1064670 why do hunters pattern their shotguns? why do hunters pattern their rifles? synonym 2026
146
+ 1071750 why is pete rose banned from hall of fame why is pete rose banned from hallway of fame synonym 2026
147
+ 1105792 define: geon determining: geon synonym 2026
148
+ 1106979 define pareto chart in statistics delimitate pareto chart in statistics synonym 2026
149
+ 1108651 what the best way to get clothes white what the best way to get garments white synonym 2026
150
+ 1109707 what medium do radio waves travel through what medium do radio waves trip through synonym 2026
151
+ 1110678 what is the un fao what is the un FAO synonym 2026
152
+ 1113256 what is reba mcentire's net worth what is reba mcentire's netted worth synonym 2026
153
+ 1115210 what is chaff and flare what is chaff and flaring synonym 2026
154
+ 1116380 what is a nonconformity? earth science what is a nonconformity? earth veda synonym 2026
155
+ 1121353 what can you do about discrimination in the workplace in oklahoma city what can you do about discriminating in the workplace in oklahoma city synonym 2026
156
+ 1122767 what amino produces carnitine what amino begets carnitine synonym 2026
157
+ 1127540 meaning of shebang significance of shebang synonym 2026
158
+ 1131069 how many sons robert kraft has how many sons robert vigour has synonym 2026
159
+ 1132532 average annual income data analyst average yearly income data analyst synonym 2026
160
+ 1133579 how does granulation tissue start how does granulation tissue commences synonym 2026
161
+ 1136043 difference between a hotel and motel dispute between a hotel and motel synonym 2026
162
+ 1136047 difference between a company's strategy and business model is difference between a company's strategy and business manakin is synonym 2026
163
+ 1136962 why did the ancient egyptians call their land kemet, or black land? why did the ancient egyptians call their shore kemet, or black land? synonym 2026
164
+ 23849 are naturalization records public information are naturalization recording public information synonym 27
165
+ 42255 average salary for dental hygienist in nebraska average earnings for dental hygienist in nebraska synonym 27
166
+ 47210 average wedding dress alteration cost average marriages dress alteration cost synonym 27
167
+ 67316 can fever cause miscarriage early pregnancy can fever cause miscarriage early childbirth synonym 27
168
+ 118440 define bmt medical specify bmt medical synonym 27
169
+ 121171 define etruscans determine etruscans synonym 27
170
+ 135802 definition of laudable definition of commendable synonym 27
171
+ 141630 describe how muscles and bones work together to produce movement describe how muscles and bones shape together to produce movement synonym 27
172
+ 156498 do google docs auto save do google Dr. auto save synonym 27
173
+ 169208 does mississippi have an income tax does mississippi have an income task synonym 27
174
+ 174463 dog day afternoon meaning doggie day afternoon meaning synonym 27
175
+ 258062 how long does it take to remove wisdom tooth how long does it study to remove wisdom tooth synonym 27
176
+ 324585 how much money do motivational speakers make how much money do motivator speakers make synonym 27
177
+ 330975 how much would it cost to install my own wind turbine how much would it prices to install my own wind turbine synonym 27
178
+ 332593 how often to button quail lay eggs how much to button quail lay eggs synonym 27
179
+ 336901 how old is vanessa redgrave how quondam is vanessa redgrave synonym 27
180
+ 390360 ia suffix meaning ia suffix sens synonym 27
181
+ 405163 is caffeine an narcotic is caffeine an drugs synonym 27
182
+ 555530 what are best foods to lower cholesterol what are best foods to depleted cholesterol synonym 27
183
+ 583468 what carvedilol used for what carvedilol exploited for synonym 27
184
+ 640502 what does it mean if your tsh is low what does it mean if your tsh is downcast synonym 27
185
+ 673670 what is a alm what is a alm synonym 27
186
+ 701453 what is a statutory deed what is a statutory title synonym 27
187
+ 730539 what is chronometer who invented it what is chronometer who fabricate it synonym 27
188
+ 768208 what is mamey what is mammee synonym 27
189
+ 877809 what metal are hip replacements made of what metal are hip substitute made of synonym 27
190
+ 911232 what type of conflict does della face in o, henry the gift of the magi what typewrite of conflict does della face in o, henry the gift of the magi synonym 27
191
+ 914916 what type of tissue are bronchioles what type of cloth are bronchioles synonym 27
192
+ 938400 when did family feud come out? when did family feud descend out? synonym 27
193
+ 940547 when did rock n roll begin? when did rock n curlicue begin? synonym 27
194
+ 997622 where is the show shameless filmed where is the demonstrate shameless filmed synonym 27
195
+ 1030303 who is aziz hashim who is aziz hashim synonym 27
196
+ 1037496 who is rep scalise? who is repp scalise? synonym 27
197
+ 1043135 who killed nicholas ii of russia who slain nicholas ii of russia synonym 27
198
+ 1051399 who sings monk theme song who sings monk paper song synonym 27
199
+ 1064670 why do hunters pattern their shotguns? why do harvesters pattern their shotguns? synonym 27
200
+ 1071750 why is pete rose banned from hall of fame why is pete heighten banned from hall of fame synonym 27
201
+ 1105792 define: geon delimit: geon synonym 27
202
+ 1106979 define pareto chart in statistics define pareto cartes in statistics synonym 27
203
+ 1108651 what the best way to get clothes white what the best agency to get clothes white synonym 27
204
+ 1109707 what medium do radio waves travel through what medium do radio waves go through synonym 27
205
+ 1110678 what is the un fao what is the un fao synonym 27
206
+ 1113256 what is reba mcentire's net worth what is reba mcentire's netted worth synonym 27
207
+ 1115210 what is chaff and flare what is banter and flare synonym 27
208
+ 1116380 what is a nonconformity? earth science what is a nonconformity? terra science synonym 27
209
+ 1121353 what can you do about discrimination in the workplace in oklahoma city what can you do about discrimination in the worksite in oklahoma city synonym 27
210
+ 1122767 what amino produces carnitine what amine produces carnitine synonym 27
211
+ 1127540 meaning of shebang substance of shebang synonym 27
212
+ 1131069 how many sons robert kraft has how many Logos robert kraft has synonym 27
213
+ 1132532 average annual income data analyst average annual income data therapist synonym 27
214
+ 1133579 how does granulation tissue start how does granulation tissue launch synonym 27
215
+ 1136043 difference between a hotel and motel deviation between a hotel and motel synonym 27
216
+ 1136047 difference between a company's strategy and business model is difference between a company's strategy and business manikin is synonym 27
217
+ 1136962 why did the ancient egyptians call their land kemet, or black land? why did the antigua egyptians call their land kemet, or black land? synonym 27
218
+ 23849 are naturalization records public information are naturalization show public information synonym 5
219
+ 42255 average salary for dental hygienist in nebraska average earnings for dental hygienist in nebraska synonym 5
220
+ 47210 average wedding dress alteration cost mean wedding dress alteration cost synonym 5
221
+ 67316 can fever cause miscarriage early pregnancy can fever cause miscarriage quickly pregnancy synonym 5
222
+ 118440 define bmt medical define bmt medicinal synonym 5
223
+ 121171 define etruscans defines etruscans synonym 5
224
+ 135802 definition of laudable definition of meritorious synonym 5
225
+ 141630 describe how muscles and bones work together to produce movement describing how muscles and bones work together to produce movement synonym 5
226
+ 156498 do google docs auto save do google docs auto salve synonym 5
227
+ 169208 does mississippi have an income tax does mississippi have an income task synonym 5
228
+ 174463 dog day afternoon meaning weenie day afternoon meaning synonym 5
229
+ 258062 how long does it take to remove wisdom tooth how foresighted does it take to remove wisdom tooth synonym 5
230
+ 324585 how much money do motivational speakers make how much financial do motivational speakers make synonym 5
231
+ 330975 how much would it cost to install my own wind turbine how much would it costs to install my own wind turbine synonym 5
232
+ 332593 how often to button quail lay eggs how often to button quail position eggs synonym 5
233
+ 336901 how old is vanessa redgrave how former is vanessa redgrave synonym 5
234
+ 390360 ia suffix meaning ia suffix mean synonym 5
235
+ 405163 is caffeine an narcotic is coffeemaker an narcotic synonym 5
236
+ 555530 what are best foods to lower cholesterol what are best foods to weakest cholesterol synonym 5
237
+ 583468 what carvedilol used for what carvedilol practice for synonym 5
238
+ 640502 what does it mean if your tsh is low what does it signify if your tsh is low synonym 5
239
+ 673670 what is a alm what is a alm synonym 5
240
+ 701453 what is a statutory deed what is a regulatory deed synonym 5
241
+ 730539 what is chronometer who invented it what is chronometer who concocted it synonym 5
242
+ 768208 what is mamey what is mamey synonym 5
243
+ 877809 what metal are hip replacements made of what metal are hip replacements construct of synonym 5
244
+ 911232 what type of conflict does della face in o, henry the gift of the magi what type of contravene does della face in o, henry the gift of the magi synonym 5
245
+ 914916 what type of tissue are bronchioles what type of kleenex are bronchioles synonym 5
246
+ 938400 when did family feud come out? when did family feud derive out? synonym 5
247
+ 940547 when did rock n roll begin? when did rock nitrogen roll begin? synonym 5
248
+ 997622 where is the show shameless filmed where is the shew shameless filmed synonym 5
249
+ 1030303 who is aziz hashim who is aziz hashim synonym 5
250
+ 1037496 who is rep scalise? who is repp scalise? synonym 5
251
+ 1043135 who killed nicholas ii of russia who kills nicholas ii of russia synonym 5
252
+ 1051399 who sings monk theme song who sings monastic theme song synonym 5
253
+ 1064670 why do hunters pattern their shotguns? why do hunters pattern their rifles? synonym 5
254
+ 1071750 why is pete rose banned from hall of fame why is pete mount banned from hall of fame synonym 5
255
+ 1105792 define: geon specify: geon synonym 5
256
+ 1106979 define pareto chart in statistics define pareto graph in statistics synonym 5
257
+ 1108651 what the best way to get clothes white what the best way to come clothes white synonym 5
258
+ 1109707 what medium do radio waves travel through what medium do radio roll travel through synonym 5
259
+ 1110678 what is the un fao what is the UN fao synonym 5
260
+ 1113256 what is reba mcentire's net worth what is reba mcentire's netted worth synonym 5
261
+ 1115210 what is chaff and flare what is chaff and flair synonym 5
262
+ 1116380 what is a nonconformity? earth science what is a nonconformism? earth science synonym 5
263
+ 1121353 what can you do about discrimination in the workplace in oklahoma city what can you do about discriminating in the workplace in oklahoma city synonym 5
264
+ 1122767 what amino produces carnitine what amino grow carnitine synonym 5
265
+ 1127540 meaning of shebang sens of shebang synonym 5
266
+ 1131069 how many sons robert kraft has how many sons roberto kraft has synonym 5
267
+ 1132532 average annual income data analyst averaging annual income data analyst synonym 5
268
+ 1133579 how does granulation tissue start how does granulation tissue initiate synonym 5
269
+ 1136043 difference between a hotel and motel difference between a hotel and motels synonym 5
270
+ 1136047 difference between a company's strategy and business model is difference between a company's strategy and firms model is synonym 5
271
+ 1136962 why did the ancient egyptians call their land kemet, or black land? why did the ancient egyptians call their land kemet, or pitch-black land? synonym 5