Rvosuke commited on
Commit
aa0481c
·
verified ·
1 Parent(s): 5f280e7

Add BCSS dataset (ZIP archives + metadata) and dataset card

Browse files
LICENSE ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Zeyang Bai
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
README.md CHANGED
@@ -1,3 +1,195 @@
1
  ---
2
  license: mit
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ task_categories:
4
+ - image-segmentation
5
+ language:
6
+ - zh
7
+ tags:
8
+ - chinese-calligraphy
9
+ - stroke-segmentation
10
+ - brush-calligraphy
11
+ - handwriting
12
+ - semantic-segmentation
13
+ pretty_name: Brush Calligraphy Stroke Segmentation (BCSS)
14
+ size_categories:
15
+ - 1K<n<10K
16
  ---
17
+
18
+ # Brush Calligraphy Stroke Segmentation Dataset (BCSS) 🖌️
19
+
20
+ [![GitHub](https://img.shields.io/badge/GitHub-Rvosuke%2FBCSS-181717?logo=github)](https://github.com/Rvosuke/BCSS)
21
+ [![Paper](https://img.shields.io/badge/Paper-IET%20Image%20Processing-brightgreen)](https://doi.org/10.1049/ipr2.13255)
22
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
23
+
24
+ > This dataset card mirrors and is cross-linked with the project's GitHub repository: **[github.com/Rvosuke/BCSS](https://github.com/Rvosuke/BCSS)**. The modeling framework built on this dataset lives at **[github.com/Rvosuke/Stroke-Seg](https://github.com/Rvosuke/Stroke-Seg)**.
25
+
26
+ ## Introduction
27
+
28
+ The **Brush Calligraphy Stroke Segmentation Dataset (BCSS)** is a resource for the task of Chinese brush-calligraphy stroke segmentation. It is derived from the Evaluated Chinese Calligraphy Copies (E3C) dataset — an aesthetic-evaluation dataset for Chinese brush calligraphy — and augmented with additional images from diverse sources to enhance diversity and support the evaluation of model generalization.
29
+
30
+ Each character image is paired with a set of per-stroke binary masks, enabling **multi-label** stroke segmentation where intersecting strokes can overlap. A per-character *prior-knowledge vector* (stroke-count metadata) is also provided.
31
+
32
+ ## What's in this HuggingFace copy
33
+
34
+ The full BCSS dataset described in the paper contains **1,322 images and 10,653 annotated strokes**. This HuggingFace release packages the segmentation-ready split that ships with the reference implementation:
35
+
36
+ | Subset | Images | Notes |
37
+ |---|---|---|
38
+ | Training + Validation | **1,082** | Each image has 6 per-stroke masks + a prior-knowledge vector row |
39
+ | External Testing | **130** | Held-out generalization images (input images only) |
40
+ | **Total** | **1,212** | Segmentation-ready subset |
41
+
42
+ > **Note on counts:** The paper reports 1,322 images (1,022 train/val + 300 external test) and 10,653 strokes over the *complete* collection. This packaged, segmentation-ready subset contains 1,082 train/val images and 130 external-test images. Some raw/reference material (raw instances and label source files) is hosted on the [GitHub repository](https://github.com/Rvosuke/BCSS) under `instances/` and `labels/`.
43
+
44
+ All images are **400 × 400** PNGs.
45
+
46
+ ## Repository Layout
47
+
48
+ To keep the repo efficient (thousands of small PNGs are packed into a few archives), the image/mask files are shipped as ZIP archives, while metadata is left as plain browsable files:
49
+
50
+ ```
51
+ .
52
+ ├── README.md # This dataset card
53
+ ├── LICENSE # MIT License
54
+ ├── train_val_images.zip # images/<id>.png (1,082 files, 400x400)
55
+ ├── train_val_masks.zip # masks/<id>/{1..6}.png (1,082 folders x 6 masks)
56
+ ├── train_val_info.csv # prior-knowledge vector, 1 row per train/val image
57
+ ├── external_test_images.zip # images/<id>.png (130 files)
58
+ ├── external_test_info.csv # prior-knowledge vector for external test
59
+ └── splits/
60
+ ├── train.txt # 944 ids
61
+ ├── val.txt # 98 ids
62
+ ├── test.txt # 40 ids (internal held-out)
63
+ └── train_test.txt # 10 ids (small smoke-test subset)
64
+ ```
65
+
66
+ After extraction, each archive expands to an `images/` or `masks/` directory:
67
+
68
+ ```
69
+ train_val_images.zip -> images/<id>.png
70
+ train_val_masks.zip -> masks/<id>/1.png ... 6.png
71
+ external_test_images.zip -> images/<id>.png
72
+ ```
73
+
74
+ ### Image ↔ mask correspondence
75
+
76
+ - An image `images/<id>.png` (from `train_val_images.zip`) corresponds to the mask folder `masks/<id>/` (from `train_val_masks.zip`).
77
+ - Each mask folder holds **6 binary PNGs** (`1.png` … `6.png`), one per stroke class. During training these are thresholded (`> 150 → 1`) and stacked into a multi-channel label tensor, so overlapping/intersecting strokes are preserved as independent channels rather than a single argmax label map.
78
+ - IDs, images, and masks are 1:1 aligned — every one of the 1,082 images has both an image file and a 6-mask folder (verified: 0 orphans on either side).
79
+
80
+ ### `*_info.csv` — prior-knowledge vector
81
+
82
+ Each `info.csv` has one row per image, comma-separated, no header:
83
+
84
+ ```
85
+ <id>,v1,v2,v3,v4,v5,v6,v7
86
+ ```
87
+
88
+ - **`id`** — image identifier (matches `images/<id>.png` and `masks/<id>/`).
89
+ - **`v1…v7`** — integer prior-knowledge / stroke-statistic values used by the model as a *Prior Knowledge Vector* to guide segmentation. Observed value ranges in this release: `v1 ∈ [0,26]`, `v2 ∈ [0,4]`, `v3 ∈ [0,10]`, `v4 ∈ [0,6]`, `v5 ∈ [0,5]`, `v6 ∈ [0,1]`, `v7 ∈ [0,3]`. `external_test_info.csv` follows the same format.
90
+
91
+ ### Splits
92
+
93
+ The `splits/*.txt` files list image IDs (one per line) for reproducing the reference train/val/test partition used in the Stroke-Seg paper:
94
+
95
+ - `train.txt` — 944 ids
96
+ - `val.txt` — 98 ids
97
+ - `test.txt` — 40 ids (internal held-out)
98
+ - `train_test.txt` — 10 ids (small smoke-test subset)
99
+
100
+ The external-test subset is a separate generalization benchmark (different character styles / handwriting) and is not covered by these split files.
101
+
102
+ ## Usage
103
+
104
+ Download and extract the archives, then load images + multi-label masks with `Pillow`/`NumPy`:
105
+
106
+ ```python
107
+ import os, csv, zipfile, numpy as np
108
+ from PIL import Image
109
+ from huggingface_hub import hf_hub_download
110
+
111
+ REPO = "Rvosuke/BCSS"
112
+
113
+ def fetch_and_extract(filename, dest="."):
114
+ path = hf_hub_download(REPO, filename, repo_type="dataset")
115
+ with zipfile.ZipFile(path) as z:
116
+ z.extractall(dest)
117
+
118
+ # download archives once
119
+ fetch_and_extract("train_val_images.zip") # -> ./images/<id>.png
120
+ fetch_and_extract("train_val_masks.zip") # -> ./masks/<id>/{1..6}.png
121
+ info_path = hf_hub_download(REPO, "train_val_info.csv", repo_type="dataset")
122
+ split_path = hf_hub_download(REPO, "splits/train.txt", repo_type="dataset")
123
+
124
+ # read prior-knowledge vectors
125
+ info = {}
126
+ with open(info_path, errors="ignore") as f:
127
+ for row in csv.reader(f):
128
+ info[row[0]] = list(map(int, row[1:]))
129
+
130
+ def load_sample(img_id, size=(400, 400)):
131
+ img = np.array(Image.open(f"images/{img_id}.png").convert("RGB").resize(size))
132
+ mask_dir = f"masks/{img_id}"
133
+ channels = []
134
+ for fn in sorted(os.listdir(mask_dir)): # 1.png .. 6.png
135
+ m = Image.open(os.path.join(mask_dir, fn)).convert("L").resize(size)
136
+ channels.append((np.array(m) > 150).astype(np.uint8))
137
+ label = np.stack(channels, axis=0) # (6, H, W) multi-label
138
+ return img, label, info[img_id]
139
+
140
+ ids = [l.strip() for l in open(split_path) if l.strip()]
141
+ img, label, prior = load_sample(ids[0])
142
+ print(img.shape, label.shape, prior) # (400,400,3) (6,400,400) [...]
143
+ ```
144
+
145
+ ## Applications
146
+
147
+ BCSS can be used to train and evaluate models for brush-calligraphy stroke segmentation. It offers a rich variety of Chinese character styles and a dedicated external test set for measuring generalization across writing styles. The reference framework, **Stroke-Seg**, is built on DeepLab v3 and introduces a Prior Knowledge Vector, a multi-label output strategy for intersecting strokes, and a boundary-aware loss (BDLoss).
148
+
149
+ ## Data Sources & Composition (per paper)
150
+
151
+ - **Training/Validation (1,022 in paper):** images from the **E3C** dataset.
152
+ - **External Testing (300 in paper):**
153
+ - 90 E3C images with character types unseen in train/val;
154
+ - 113 handwritten images from the **CCSE-W** dataset;
155
+ - 97 images of various Chinese character styles (regular printed and brush calligraphy forms, e.g. Clerical Script).
156
+
157
+ ## License
158
+
159
+ Released under the **MIT License** for research purposes. See `LICENSE`.
160
+
161
+ ## Citation
162
+
163
+ If you use this dataset, code, or methods, please cite:
164
+
165
+ ```bibtex
166
+ @article{gong2024stroke,
167
+ title={Stroke-Seg: A Deep Learning-Based Framework for Chinese Stroke Segmentation},
168
+ author={Gong, Xinyu and Bai, Zeyang and Nie, Haitao and Xie, Bin},
169
+ journal={IET Image Processing},
170
+ volume={18},
171
+ number={13},
172
+ pages={4341--4355},
173
+ year={2024},
174
+ publisher={Wiley Online Library},
175
+ doi={10.1049/ipr2.13255}
176
+ }
177
+ ```
178
+
179
+ ## References
180
+
181
+ 1. Sun, M., et al. (2023). *SRAFE: Siamese Regression Aesthetic Fusion Evaluation for Chinese Calligraphic Copy.* CAAI Transactions on Intelligent Technology, 8(3), 1077–1086.
182
+ 2. Liu, L., Lin, K., Huang, S., Li, Z., Li, C., Cao, Y., & Zhou, Q. (2022). *Instance Segmentation for Chinese Character Stroke Extraction: Datasets and Benchmarks.* arXiv:2210.13826.
183
+ 3. Long, J., Shelhamer, E., & Darrell, T. (2015). *Fully Convolutional Networks for Semantic Segmentation.* CVPR, 3431–3440.
184
+ 4. Chen, L. C., Papandreou, G., Schroff, F., & Adam, H. (2017). *Rethinking Atrous Convolution for Semantic Image Segmentation.* arXiv:1706.05587.
185
+
186
+ ## Contact
187
+
188
+ For inquiries about the dataset, please contact:
189
+
190
+ - zeyangbai.rvo@gmail.com
191
+ - xiebin@csu.edu.cn
192
+
193
+ ---
194
+
195
+ *Related resources — Dataset: [github.com/Rvosuke/BCSS](https://github.com/Rvosuke/BCSS) · Model/framework: [github.com/Rvosuke/Stroke-Seg](https://github.com/Rvosuke/Stroke-Seg) · Paper: [IET Image Processing](https://doi.org/10.1049/ipr2.13255)*
external_test_images.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0ec9b05b512bb0e4d69b4d5571aad0c37b6622d3f36724b2666d4451d2c548bc
3
+ size 438912
external_test_info.csv ADDED
@@ -0,0 +1,130 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 03,1,1,1,1,0,0,0
2
+ 04,2,1,1,1,1,0,0
3
+ 06,3,0,2,1,1,0,0
4
+ 07,4,2,0,0,1,1,1
5
+ 08,5,1,4,4,1,0,1
6
+ 09,6,0,3,2,2,0,0
7
+ 10,7,0,1,1,0,0,0
8
+ 11,8,0,2,1,1,1,1
9
+ 12,9,2,0,0,2,0,2
10
+ 14,10,4,3,4,0,1,1
11
+ 18,11,1,3,1,0,1,0
12
+ 20,12,3,4,4,0,0,2
13
+ 22,13,1,4,3,2,0,1
14
+ 23,14,3,3,4,3,1,1
15
+ 24,15,0,2,1,1,0,0
16
+ 25,16,1,1,0,1,0,1
17
+ 27,17,0,6,4,1,1,2
18
+ 29,18,1,2,1,3,1,0
19
+ 32,19,0,2,2,2,0,0
20
+ 39,20,0,6,2,0,0,0
21
+ 40,21,1,3,2,1,1,1
22
+ 000096,1,1,1,1,0,0,0
23
+ 000104,1,1,1,1,0,0,0
24
+ 000112,1,1,1,1,0,0,0
25
+ 000120,1,1,1,1,0,0,0
26
+ 000216,2,1,1,1,1,0,0
27
+ 000224,2,1,1,1,1,0,0
28
+ 000232,2,1,1,1,1,0,0
29
+ 000240,2,1,1,1,1,0,0
30
+ 000343,3,0,2,1,1,0,0
31
+ 000351,3,0,2,1,1,0,0
32
+ 000632,4,2,0,0,1,1,1
33
+ 000640,4,2,0,0,1,1,1
34
+ 000648,4,2,0,0,1,1,1
35
+ 000664,5,1,4,4,1,0,1
36
+ 000665,5,1,4,4,1,0,1
37
+ 000672,5,1,4,4,1,0,1
38
+ 000698,5,1,4,4,1,0,1
39
+ 001040,6,0,3,2,2,0,0
40
+ 001048,6,0,3,2,2,0,0
41
+ 001056,6,0,3,2,2,0,0
42
+ 001064,6,0,3,2,2,0,0
43
+ 001725,7,0,1,1,0,0,0
44
+ 001729,7,0,1,1,0,0,0
45
+ 001740,7,0,1,1,0,0,0
46
+ 001765,8,0,2,1,1,1,1
47
+ 001773,8,0,2,1,1,1,1
48
+ 001781,8,0,2,1,1,1,1
49
+ 002054,9,2,0,0,2,0,2
50
+ 002062,9,2,0,0,2,0,2
51
+ 002230,10,4,3,4,0,1,1
52
+ 002238,10,4,3,4,0,1,1
53
+ 002246,10,4,3,4,0,1,1
54
+ 002254,10,4,3,4,0,1,1
55
+ 002615,0,3,2,1,0,0,0
56
+ 002616,0,3,2,1,0,0,0
57
+ 002657,22,0,3,1,1,0,0
58
+ 002665,22,0,3,1,1,0,0
59
+ 002673,22,0,3,1,1,0,0
60
+ 002696,22,0,3,1,1,0,0
61
+ 002810,11,1,3,1,0,1,0
62
+ 002818,11,1,3,1,0,1,0
63
+ 002826,11,1,3,1,0,1,0
64
+ 002834,11,1,3,1,0,1,0
65
+ 002963,0,1,1,0,1,0,1
66
+ 002964,0,1,1,0,1,0,1
67
+ 002965,0,1,1,0,1,0,1
68
+ 002966,0,1,1,0,1,0,1
69
+ 002967,0,1,1,0,1,0,1
70
+ 002968,0,1,1,0,1,0,1
71
+ 002969,0,1,1,0,1,0,1
72
+ 002974,12,3,4,4,0,0,2
73
+ 002982,12,3,4,4,0,0,2
74
+ 002990,12,3,4,4,0,0,2
75
+ 002998,12,3,4,4,0,0,2
76
+ 003476,0,1,3,3,2,0,0
77
+ 003481,0,1,3,3,2,0,0
78
+ 003484,0,1,3,3,2,0,0
79
+ 003508,13,1,4,3,2,0,1
80
+ 003516,13,1,4,3,2,0,1
81
+ 003524,13,1,4,3,2,0,1
82
+ 003532,13,1,4,3,2,0,1
83
+ 003540,13,1,4,3,2,0,1
84
+ 004038,14,3,3,4,3,1,1
85
+ 004054,14,3,3,4,3,1,1
86
+ 004070,14,3,3,4,3,1,1
87
+ 004340,16,1,1,0,1,0,1
88
+ 004348,16,1,1,0,1,0,1
89
+ 004356,16,1,1,0,1,0,1
90
+ 004567,0,0,2,1,0,0,1
91
+ 004579,17,0,6,4,1,1,2
92
+ 004587,17,0,6,4,1,1,2
93
+ 004603,17,0,6,4,1,1,2
94
+ 004644,17,0,6,4,1,1,2
95
+ 005082,0,2,4,3,0,0,2
96
+ 005291,18,1,2,1,3,1,0
97
+ 005299,18,1,2,1,3,1,0
98
+ 005307,18,1,2,1,3,1,0
99
+ 005315,18,1,2,1,3,1,0
100
+ 006343,0,2,2,3,1,1,1
101
+ 006350,0,2,2,3,1,1,1
102
+ 006378,23,0,4,2,0,0,0
103
+ 006386,23,0,4,2,0,0,0
104
+ 006513,19,0,2,2,2,0,0
105
+ 006521,19,0,2,2,2,0,0
106
+ 006529,19,0,2,2,2,0,0
107
+ 006537,19,0,2,2,2,0,0
108
+ 006771,0,5,1,2,2,1,1
109
+ 006779,0,5,1,2,2,1,1
110
+ 006805,0,3,4,1,2,1,1
111
+ 006813,0,3,4,1,2,1,1
112
+ 006821,0,3,4,1,2,1,1
113
+ 006829,0,3,4,1,2,1,1
114
+ 006919,24,2,10,6,1,0,3
115
+ 006927,24,2,10,6,1,0,3
116
+ 006935,24,2,10,6,1,0,3
117
+ 006997,0,2,3,1,1,1,0
118
+ 007010,25,3,4,2,3,0,2
119
+ 007018,25,3,4,2,3,0,2
120
+ 007057,25,3,4,2,3,0,2
121
+ 007381,26,2,4,2,5,0,2
122
+ 007389,26,2,4,2,5,0,2
123
+ 007397,26,2,4,2,5,0,2
124
+ 007826,20,0,6,2,0,0,0
125
+ 007834,20,0,6,2,0,0,0
126
+ 007842,20,0,6,2,0,0,0
127
+ 008089,21,1,3,2,1,1,1
128
+ 008097,21,1,3,2,1,1,1
129
+ 008105,21,1,3,2,1,1,1
130
+ 008136,21,1,3,2,1,1,1
splits/test.txt ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 004359
2
+ 007585
3
+ 004164
4
+ 002356
5
+ 000131
6
+ 008389
7
+ 005122
8
+ 000243
9
+ 001976
10
+ 004831
11
+ 002548
12
+ 006516
13
+ 007749
14
+ 007220
15
+ 007300
16
+ 008533
17
+ 007150
18
+ 004310
19
+ 000469
20
+ 006668
21
+ 007198
22
+ 002075
23
+ 004735
24
+ 003928
25
+ 005521
26
+ 003519
27
+ 003663
28
+ 008517
29
+ 003246
30
+ 008813
31
+ 001630
32
+ 003872
33
+ 007821
34
+ 000625
35
+ 007377
36
+ 005922
37
+ 007052
38
+ 002115
39
+ 001068
40
+ 002893
splits/train.txt ADDED
@@ -0,0 +1,944 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 007054
2
+ 000791
3
+ 006700
4
+ 003792
5
+ 002016
6
+ 005834
7
+ 005218
8
+ 23-7
9
+ 001848
10
+ 007308
11
+ 003824
12
+ 001968
13
+ 03
14
+ 004959
15
+ 20-10
16
+ 24-2
17
+ 23-14
18
+ 008965
19
+ 40-9
20
+ 002540
21
+ 06-4
22
+ 008349
23
+ 006998
24
+ 003070
25
+ 27-4
26
+ 003086
27
+ 005039
28
+ 007401
29
+ 06-3
30
+ 003022
31
+ 007102
32
+ 005602
33
+ 004575
34
+ 008333
35
+ 003880
36
+ 007076
37
+ 003848
38
+ 005666
39
+ 003567
40
+ 007641
41
+ 22-11
42
+ 006352
43
+ 005055
44
+ 004615
45
+ 005866
46
+ 008493
47
+ 002404
48
+ 005186
49
+ 004879
50
+ 003808
51
+ 004479
52
+ 003976
53
+ 000609
54
+ 007733
55
+ 006580
56
+ 007342
57
+ 20-5
58
+ 006684
59
+ 004927
60
+ 002909
61
+ 005114
62
+ 004815
63
+ 008413
64
+ 008573
65
+ 005003
66
+ 004951
67
+ 005923
68
+ 008485
69
+ 003687
70
+ 002226
71
+ 006376
72
+ 002095
73
+ 003142
74
+ 003511
75
+ 006905
76
+ 004783
77
+ 000163
78
+ 004343
79
+ 007310
80
+ 29-1
81
+ 004975
82
+ 002175
83
+ 007617
84
+ 04-2
85
+ 004759
86
+ 004591
87
+ 23-12
88
+ 29-3
89
+ 002981
90
+ 22-9
91
+ 002941
92
+ 29-8
93
+ 005130
94
+ 11-5
95
+ 003960
96
+ 18
97
+ 12-2
98
+ 002740
99
+ 11-4
100
+ 000993
101
+ 003743
102
+ 04
103
+ 002644
104
+ 14-4
105
+ 006932
106
+ 007813
107
+ 001060
108
+ 007070
109
+ 03-3
110
+ 11-1
111
+ 004100
112
+ 002781
113
+ 004145
114
+ 002079
115
+ 04-3
116
+ 008509
117
+ 006620
118
+ 001646
119
+ 006488
120
+ 004623
121
+ 005465
122
+ 000988
123
+ 002159
124
+ 000617
125
+ 002195
126
+ 07-2
127
+ 006652
128
+ 001760
129
+ 003856
130
+ 002179
131
+ 008597
132
+ 07-1
133
+ 006548
134
+ 003009
135
+ 001638
136
+ 005467
137
+ 000860
138
+ 005369
139
+ 006416
140
+ 002837
141
+ 004268
142
+ 002524
143
+ 003350
144
+ 08-4
145
+ 001816
146
+ 003326
147
+ 006596
148
+ 08-1
149
+ 004265
150
+ 002151
151
+ 003864
152
+ 004201
153
+ 007869
154
+ 32-5
155
+ 005178
156
+ 12-5
157
+ 008429
158
+ 08
159
+ 14-1
160
+ 004919
161
+ 007697
162
+ 005210
163
+ 007252
164
+ 003286
165
+ 001036
166
+ 27-1
167
+ 003102
168
+ 005051
169
+ 004313
170
+ 007346
171
+ 004327
172
+ 007294
173
+ 005019
174
+ 20-7
175
+ 23-2
176
+ 002099
177
+ 000629
178
+ 004113
179
+ 000580
180
+ 002989
181
+ 003174
182
+ 000179
183
+ 003278
184
+ 002805
185
+ 005802
186
+ 005898
187
+ 006456
188
+ 001832
189
+ 000139
190
+ 001864
191
+ 008645
192
+ 12-6
193
+ 008781
194
+ 006496
195
+ 004663
196
+ 001904
197
+ 003535
198
+ 003800
199
+ 000630
200
+ 004823
201
+ 004839
202
+ 003262
203
+ 004049
204
+ 002877
205
+ 005162
206
+ 18-2
207
+ 000365
208
+ 006908
209
+ 003366
210
+ 007142
211
+ 008885
212
+ 002143
213
+ 004407
214
+ 000841
215
+ 000445
216
+ 005810
217
+ 004137
218
+ 006408
219
+ 004519
220
+ 007561
221
+ 008357
222
+ 12
223
+ 004679
224
+ 003719
225
+ 08-8
226
+ 000929
227
+ 008797
228
+ 000839
229
+ 002412
230
+ 002127
231
+ 006756
232
+ 008877
233
+ 14-14
234
+ 000405
235
+ 004631
236
+ 004204
237
+ 005304
238
+ 000187
239
+ 29-5
240
+ 22-5
241
+ 25-4
242
+ 004124
243
+ 005278
244
+ 002750
245
+ 003599
246
+ 001004
247
+ 002588
248
+ 002684
249
+ 001784
250
+ 004703
251
+ 008693
252
+ 002119
253
+ 008373
254
+ 004302
255
+ 008733
256
+ 14-13
257
+ 000817
258
+ 09-2
259
+ 007665
260
+ 008661
261
+ 008541
262
+ 003759
263
+ 007332
264
+ 002035
265
+ 003767
266
+ 22
267
+ 18-1
268
+ 000509
269
+ 008749
270
+ 004895
271
+ 39-1
272
+ 002071
273
+ 23-13
274
+ 14
275
+ 003462
276
+ 001840
277
+ 007262
278
+ 09-1
279
+ 006740
280
+ 008613
281
+ 002358
282
+ 20
283
+ 007204
284
+ 18-5
285
+ 002580
286
+ 007324
287
+ 002993
288
+ 000333
289
+ 005722
290
+ 007601
291
+ 004246
292
+ 002051
293
+ 008461
294
+ 002111
295
+ 39
296
+ 000211
297
+ 08-9
298
+ 002380
299
+ 004530
300
+ 000865
301
+ 14-5
302
+ 001028
303
+ 004687
304
+ 03-2
305
+ 001076
306
+ 005570
307
+ 002933
308
+ 000357
309
+ 005578
310
+ 003318
311
+ 000485
312
+ 007502
313
+ 005850
314
+ 003134
315
+ 002246
316
+ 008477
317
+ 007166
318
+ 002476
319
+ 003398
320
+ 007244
321
+ 000267
322
+ 008669
323
+ 000601
324
+ 004033
325
+ 002382
326
+ 000807
327
+ 004108
328
+ 007773
329
+ 002420
330
+ 002163
331
+ 001084
332
+ 004105
333
+ 003438
334
+ 000429
335
+ 000605
336
+ 008501
337
+ 002340
338
+ 002107
339
+ 006564
340
+ 004447
341
+ 002187
342
+ 23-15
343
+ 007092
344
+ 004308
345
+ 002428
346
+ 002885
347
+ 000660
348
+ 002829
349
+ 002789
350
+ 007649
351
+ 000389
352
+ 40-1
353
+ 004943
354
+ 006748
355
+ 007028
356
+ 000985
357
+ 007060
358
+ 09-3
359
+ 005674
360
+ 006424
361
+ 007124
362
+ 001622
363
+ 001092
364
+ 004751
365
+ 12-3
366
+ 23-4
367
+ 000341
368
+ 007260
369
+ 002364
370
+ 008549
371
+ 004140
372
+ 003896
373
+ 29
374
+ 004455
375
+ 002742
376
+ 000437
377
+ 001052
378
+ 008853
379
+ 005266
380
+ 008301
381
+ 002230
382
+ 005690
383
+ 08-5
384
+ 006921
385
+ 000493
386
+ 003503
387
+ 22-2
388
+ 004367
389
+ 005234
390
+ 000501
391
+ 008757
392
+ 003038
393
+ 27
394
+ 03-1
395
+ 007302
396
+ 002366
397
+ 007084
398
+ 000913
399
+ 002845
400
+ 002139
401
+ 007268
402
+ 008317
403
+ 004129
404
+ 004236
405
+ 001108
406
+ 004092
407
+ 007545
408
+ 006644
409
+ 29-4
410
+ 007765
411
+ 18-3
412
+ 002508
413
+ 003543
414
+ 09-4
415
+ 002700
416
+ 004180
417
+ 000897
418
+ 004257
419
+ 004487
420
+ 005899
421
+ 000799
422
+ 004169
423
+ 003888
424
+ 004073
425
+ 002708
426
+ 000597
427
+ 002949
428
+ 004671
429
+ 002925
430
+ 007116
431
+ 006636
432
+ 003342
433
+ 002147
434
+ 000453
435
+ 003182
436
+ 004711
437
+ 008917
438
+ 008949
439
+ 008829
440
+ 27-2
441
+ 005738
442
+ 003912
443
+ 23-11
444
+ 25-3
445
+ 007172
446
+ 008557
447
+ 003735
448
+ 004238
449
+ 002853
450
+ 003703
451
+ 007206
452
+ 004097
453
+ 29-7
454
+ 005930
455
+ 007497
456
+ 000937
457
+ 002254
458
+ 29-2
459
+ 005914
460
+ 003695
461
+ 000849
462
+ 002636
463
+ 001116
464
+ 008933
465
+ 006432
466
+ 005242
467
+ 008309
468
+ 002602
469
+ 008845
470
+ 10
471
+ 008381
472
+ 003054
473
+ 007062
474
+ 007236
475
+ 000107
476
+ 002444
477
+ 002516
478
+ 007805
479
+ 007046
480
+ 007409
481
+ 004647
482
+ 008741
483
+ 000953
484
+ 007326
485
+ 002660
486
+ 008869
487
+ 002390
488
+ 003078
489
+ 007132
490
+ 004471
491
+ 007797
492
+ 001856
493
+ 003470
494
+ 20-9
495
+ 008437
496
+ 002556
497
+ 001044
498
+ 32-3
499
+ 005618
500
+ 004148
501
+ 004297
502
+ 000645
503
+ 001792
504
+ 006708
505
+ 005931
506
+ 002957
507
+ 005890
508
+ 000147
509
+ 003952
510
+ 004727
511
+ 007369
512
+ 007489
513
+ 007518
514
+ 002985
515
+ 007789
516
+ 002500
517
+ 08-3
518
+ 004260
519
+ 004193
520
+ 002406
521
+ 008341
522
+ 004562
523
+ 005401
524
+ 007340
525
+ 20-11
526
+ 002917
527
+ 004276
528
+ 003679
529
+ 003631
530
+ 005730
531
+ 005891
532
+ 003968
533
+ 005610
534
+ 005714
535
+ 004871
536
+ 004214
537
+ 002103
538
+ 004228
539
+ 007534
540
+ 004270
541
+ 000373
542
+ 004767
543
+ 005027
544
+ 002374
545
+ 20-3
546
+ 007330
547
+ 18-6
548
+ 003832
549
+ 007148
550
+ 003422
551
+ 005907
552
+ 003302
553
+ 005047
554
+ 004252
555
+ 008861
556
+ 008445
557
+ 000905
558
+ 004719
559
+ 004320
560
+ 002008
561
+ 002460
562
+ 006868
563
+ 000115
564
+ 007254
565
+ 003575
566
+ 007086
567
+ 005794
568
+ 007845
569
+ 004089
570
+ 004935
571
+ 004278
572
+ 004863
573
+ 007174
574
+ 008405
575
+ 004156
576
+ 008525
577
+ 001952
578
+ 002027
579
+ 003647
580
+ 003166
581
+ 002000
582
+ 005650
583
+ 40-2
584
+ 004375
585
+ 008989
586
+ 000219
587
+ 005770
588
+ 003495
589
+ 004318
590
+ 07-4
591
+ 000349
592
+ 008973
593
+ 004554
594
+ 006392
595
+ 007276
596
+ 000637
597
+ 000621
598
+ 004695
599
+ 004172
600
+ 007853
601
+ 000381
602
+ 29-6
603
+ 000259
604
+ 004289
605
+ 004607
606
+ 006368
607
+ 004188
608
+ 002316
609
+ 003751
610
+ 003904
611
+ 008909
612
+ 002977
613
+ 006716
614
+ 27-10
615
+ 003270
616
+ 23
617
+ 007473
618
+ 007100
619
+ 005594
620
+ 004967
621
+ 003030
622
+ 005007
623
+ 008978
624
+ 006556
625
+ 006540
626
+ 008605
627
+ 006897
628
+ 002234
629
+ 007212
630
+ 004233
631
+ 002532
632
+ 22-8
633
+ 004057
634
+ 004017
635
+ 002395
636
+ 000921
637
+ 008685
638
+ 07-3
639
+ 002052
640
+ 004887
641
+ 11-3
642
+ 32-6
643
+ 004008
644
+ 008565
645
+ 008957
646
+ 000477
647
+ 000413
648
+ 002436
649
+ 002724
650
+ 007022
651
+ 007741
652
+ 007526
653
+ 007781
654
+ 000613
655
+ 002797
656
+ 003390
657
+ 007433
658
+ 001752
659
+ 007861
660
+ 002059
661
+ 003527
662
+ 007505
663
+ 007494
664
+ 007361
665
+ 000996
666
+ 004847
667
+ 12-1
668
+ 25-2
669
+ 008725
670
+ 14-3
671
+ 002396
672
+ 20-6
673
+ 008837
674
+ 000668
675
+ 003206
676
+ 006876
677
+ 002869
678
+ 008925
679
+ 006464
680
+ 007036
681
+ 005786
682
+ 006588
683
+ 002087
684
+ 23-10
685
+ 002861
686
+ 006532
687
+ 004206
688
+ 004305
689
+ 004190
690
+ 007529
691
+ 007385
692
+ 007441
693
+ 006660
694
+ 005011
695
+ 000881
696
+ 004185
697
+ 007334
698
+ 007348
699
+ 004655
700
+ 005035
701
+ 007338
702
+ 003094
703
+ 005288
704
+ 003118
705
+ 000847
706
+ 004599
707
+ 007457
708
+ 007425
709
+ 007673
710
+ 005754
711
+ 005586
712
+ 005452
713
+ 005746
714
+ 008629
715
+ 005658
716
+ 001009
717
+ 008421
718
+ 22-3
719
+ 10-1
720
+ 002756
721
+ 000873
722
+ 006572
723
+ 005826
724
+ 001654
725
+ 002468
726
+ 32-2
727
+ 000397
728
+ 008621
729
+ 000815
730
+ 003310
731
+ 004220
732
+ 001936
733
+ 007510
734
+ 004351
735
+ 007214
736
+ 007228
737
+ 006913
738
+ 004121
739
+ 002044
740
+ 003639
741
+ 002250
742
+ 40-5
743
+ 04-1
744
+ 004000
745
+ 000977
746
+ 007465
747
+ 005090
748
+ 004391
749
+ 003382
750
+ 39-5
751
+ 007180
752
+ 007238
753
+ 003583
754
+ 10-2
755
+ 32-1
756
+ 07
757
+ 08-2
758
+ 004132
759
+ 005313
760
+ 006929
761
+ 004639
762
+ 007190
763
+ 003551
764
+ 004423
765
+ 003334
766
+ 004281
767
+ 001800
768
+ 007078
769
+ 007513
770
+ 006724
771
+ 002238
772
+ 008453
773
+ 001163
774
+ 003430
775
+ 002997
776
+ 006916
777
+ 004511
778
+ 000283
779
+ 002276
780
+ 002083
781
+ 007156
782
+ 001888
783
+ 007134
784
+ 000961
785
+ 27-11
786
+ 004065
787
+ 007537
788
+ 004775
789
+ 001984
790
+ 002043
791
+ 004335
792
+ 003816
793
+ 003374
794
+ 000593
795
+ 002676
796
+ 007757
797
+ 008970
798
+ 001944
799
+ 006524
800
+ 008701
801
+ 000585
802
+ 11
803
+ 23-3
804
+ 002131
805
+ 007837
806
+ 000203
807
+ 007118
808
+ 14-2
809
+ 24-4
810
+ 24-3
811
+ 12-4
812
+ 008981
813
+ 20-2
814
+ 14-12
815
+ 005915
816
+ 003005
817
+ 004249
818
+ 000833
819
+ 07-5
820
+ 005858
821
+ 007449
822
+ 004383
823
+ 40
824
+ 005818
825
+ 007353
826
+ 004286
827
+ 27-8
828
+ 002732
829
+ 001920
830
+ 005371
831
+ 09
832
+ 007705
833
+ 008397
834
+ 004230
835
+ 002668
836
+ 007270
837
+ 004041
838
+ 002773
839
+ 000742
840
+ 007316
841
+ 002652
842
+ 007689
843
+ 004225
844
+ 004538
845
+ 002813
846
+ 007068
847
+ 006612
848
+ 007350
849
+ 002067
850
+ 005250
851
+ 007158
852
+ 001768
853
+ 004503
854
+ 000649
855
+ 27-12
856
+ 008893
857
+ 008765
858
+ 000421
859
+ 004309
860
+ 002123
861
+ 004244
862
+ 007030
863
+ 002692
864
+ 007284
865
+ 005682
866
+ 006384
867
+ 007521
868
+ 000969
869
+ 004995
870
+ 06
871
+ 006940
872
+ 008365
873
+ 000552
874
+ 007094
875
+ 007681
876
+ 002063
877
+ 008469
878
+ 008821
879
+ 14-9
880
+ 007609
881
+ 06-2
882
+ 002242
883
+ 000783
884
+ 24-1
885
+ 007417
886
+ 004743
887
+ 007278
888
+ 004546
889
+ 002901
890
+ 25
891
+ 003238
892
+ 005906
893
+ 002060
894
+ 20-12
895
+ 001776
896
+ 007188
897
+ 008805
898
+ 002821
899
+ 002372
900
+ 001928
901
+ 005562
902
+ 008717
903
+ 001017
904
+ 006480
905
+ 11-2
906
+ 007164
907
+ 004025
908
+ 005106
909
+ 08-10
910
+ 001100
911
+ 005626
912
+ 004196
913
+ 004198
914
+ 004791
915
+ 005353
916
+ 003110
917
+ 007286
918
+ 004983
919
+ 006440
920
+ 008901
921
+ 27-9
922
+ 007020
923
+ 003414
924
+ 005226
925
+ 007713
926
+ 32
927
+ 22-10
928
+ 23-1
929
+ 006937
930
+ 004177
931
+ 007014
932
+ 000461
933
+ 24
934
+ 004217
935
+ 005514
936
+ 002167
937
+ 004439
938
+ 004431
939
+ 001960
940
+ 008653
941
+ 007044
942
+ 006892
943
+ 004241
944
+ 005194
splits/train_test.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ 002596
2
+ 008325
3
+ 007070
4
+ 002083
5
+ 005722
6
+ 000849
7
+ 000645
8
+ 007132
9
+ 004198
10
+ 003960
splits/val.txt ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 004855
2
+ 006472
3
+ 001880
4
+ 005098
5
+ 002492
6
+ 007481
7
+ 003920
8
+ 004807
9
+ 007292
10
+ 005762
11
+ 000099
12
+ 000251
13
+ 007633
14
+ 005202
15
+ 004321
16
+ 000857
17
+ 005842
18
+ 004212
19
+ 005939
20
+ 004209
21
+ 003655
22
+ 000275
23
+ 003294
24
+ 003727
25
+ 005706
26
+ 002484
27
+ 001614
28
+ 007140
29
+ 007318
30
+ 006884
31
+ 003046
32
+ 001872
33
+ 005698
34
+ 007126
35
+ 006924
36
+ 005043
37
+ 008637
38
+ 002764
39
+ 000750
40
+ 004222
41
+ 007625
42
+ 007569
43
+ 005146
44
+ 004294
45
+ 004273
46
+ 001896
47
+ 000641
48
+ 000734
49
+ 004254
50
+ 005258
51
+ 002572
52
+ 002604
53
+ 003591
54
+ 007182
55
+ 001124
56
+ 003840
57
+ 006676
58
+ 007230
59
+ 007322
60
+ 005015
61
+ 008789
62
+ 003784
63
+ 007657
64
+ 002564
65
+ 000945
66
+ 004583
67
+ 000589
68
+ 007314
69
+ 007393
70
+ 003607
71
+ 008677
72
+ 003992
73
+ 001912
74
+ 003454
75
+ 005874
76
+ 008581
77
+ 002171
78
+ 002348
79
+ 004153
80
+ 002135
81
+ 007006
82
+ 004262
83
+ 006469
84
+ 005031
85
+ 006628
86
+ 003776
87
+ 004399
88
+ 007196
89
+ 004319
90
+ 007038
91
+ 000091
92
+ 005512
93
+ 006692
94
+ 006448
95
+ 006900
96
+ 004084
97
+ 005170
98
+ 004116
train_val_images.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:956e26e177a98fef594dde9d70c3d13807c22e1dc65a2a51479a7653d1878c8a
3
+ size 3079673
train_val_info.csv ADDED
@@ -0,0 +1,1082 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 03,1,1,1,1,0,0,0
2
+ 04,2,1,1,1,1,0,0
3
+ 06,3,0,2,1,1,0,0
4
+ 07,4,2,0,0,1,1,1
5
+ 08,5,1,4,4,1,0,1
6
+ 09,6,0,3,2,2,0,0
7
+ 10,7,0,1,1,0,0,0
8
+ 11,8,0,2,1,1,1,1
9
+ 12,9,2,0,0,2,0,2
10
+ 14,10,4,3,4,0,1,1
11
+ 18,11,1,3,1,0,1,0
12
+ 20,12,3,4,4,0,0,2
13
+ 22,13,1,4,3,2,0,1
14
+ 23,14,3,3,4,3,1,1
15
+ 24,15,0,2,1,1,0,0
16
+ 25,16,1,1,0,1,0,1
17
+ 27,17,0,6,4,1,1,2
18
+ 29,18,1,2,1,3,1,0
19
+ 32,19,0,2,2,2,0,0
20
+ 39,20,0,6,2,0,0,0
21
+ 40,21,1,3,2,1,1,1
22
+ 000091,1,1,1,1,0,0,0
23
+ 000099,1,1,1,1,0,0,0
24
+ 000107,1,1,1,1,0,0,0
25
+ 000115,1,1,1,1,0,0,0
26
+ 000131,1,1,1,1,0,0,0
27
+ 000139,1,1,1,1,0,0,0
28
+ 000147,1,1,1,1,0,0,0
29
+ 000163,1,1,1,1,0,0,0
30
+ 000179,1,1,1,1,0,0,0
31
+ 000187,1,1,1,1,0,0,0
32
+ 000203,2,1,1,1,1,0,0
33
+ 000211,2,1,1,1,1,0,0
34
+ 000219,2,1,1,1,1,0,0
35
+ 000243,2,1,1,1,1,0,0
36
+ 000251,2,1,1,1,1,0,0
37
+ 000259,2,1,1,1,1,0,0
38
+ 000267,2,1,1,1,1,0,0
39
+ 000275,2,1,1,1,1,0,0
40
+ 000283,2,1,1,1,1,0,0
41
+ 000333,3,0,2,1,1,0,0
42
+ 000341,3,0,2,1,1,0,0
43
+ 000349,3,0,2,1,1,0,0
44
+ 000357,3,0,2,1,1,0,0
45
+ 000365,3,0,2,1,1,0,0
46
+ 000373,3,0,2,1,1,0,0
47
+ 000381,3,0,2,1,1,0,0
48
+ 000389,3,0,2,1,1,0,0
49
+ 000397,3,0,2,1,1,0,0
50
+ 000405,3,0,2,1,1,0,0
51
+ 000413,3,0,2,1,1,0,0
52
+ 000421,3,0,2,1,1,0,0
53
+ 000429,3,0,2,1,1,0,0
54
+ 000437,3,0,2,1,1,0,0
55
+ 000445,3,0,2,1,1,0,0
56
+ 000453,3,0,2,1,1,0,0
57
+ 000461,3,0,2,1,1,0,0
58
+ 000469,3,0,2,1,1,0,0
59
+ 000477,3,0,2,1,1,0,0
60
+ 000485,3,0,2,1,1,0,0
61
+ 000493,3,0,2,1,1,0,0
62
+ 000501,3,0,2,1,1,0,0
63
+ 000509,3,0,2,1,1,0,0
64
+ 000552,3,0,2,1,1,0,0
65
+ 000580,4,2,0,0,1,1,1
66
+ 000585,4,2,0,0,1,1,1
67
+ 000589,4,2,0,0,1,1,1
68
+ 000593,4,2,0,0,1,1,1
69
+ 000597,4,2,0,0,1,1,1
70
+ 000601,4,2,0,0,1,1,1
71
+ 000605,4,2,0,0,1,1,1
72
+ 000609,4,2,0,0,1,1,1
73
+ 000613,4,2,0,0,1,1,1
74
+ 000617,4,2,0,0,1,1,1
75
+ 000621,4,2,0,0,1,1,1
76
+ 000625,4,2,0,0,1,1,1
77
+ 000629,4,2,0,0,1,1,1
78
+ 000630,4,2,0,0,1,1,1
79
+ 000637,4,2,0,0,1,1,1
80
+ 000641,4,2,0,0,1,1,1
81
+ 000645,4,2,0,0,1,1,1
82
+ 000649,4,2,0,0,1,1,1
83
+ 000660,5,1,4,4,1,0,1
84
+ 000668,5,1,4,4,1,0,1
85
+ 000734,5,1,4,4,1,0,1
86
+ 000742,5,1,4,4,1,0,1
87
+ 000750,5,1,4,4,1,0,1
88
+ 000783,5,1,4,4,1,0,1
89
+ 000791,5,1,4,4,1,0,1
90
+ 000799,5,1,4,4,1,0,1
91
+ 000807,5,1,4,4,1,0,1
92
+ 000815,5,1,4,4,1,0,1
93
+ 000817,5,1,4,4,1,0,1
94
+ 000833,5,1,4,4,1,0,1
95
+ 000839,5,1,4,4,1,0,1
96
+ 000841,5,1,4,4,1,0,1
97
+ 000847,5,1,4,4,1,0,1
98
+ 000849,5,1,4,4,1,0,1
99
+ 000857,5,1,4,4,1,0,1
100
+ 000860,5,1,4,4,1,0,1
101
+ 000865,5,1,4,4,1,0,1
102
+ 000873,5,1,4,4,1,0,1
103
+ 000881,5,1,4,4,1,0,1
104
+ 000897,5,1,4,4,1,0,1
105
+ 000905,5,1,4,4,1,0,1
106
+ 000913,5,1,4,4,1,0,1
107
+ 000921,5,1,4,4,1,0,1
108
+ 000929,5,1,4,4,1,0,1
109
+ 000937,5,1,4,4,1,0,1
110
+ 000945,5,1,4,4,1,0,1
111
+ 000953,5,1,4,4,1,0,1
112
+ 000961,5,1,4,4,1,0,1
113
+ 000969,5,1,4,4,1,0,1
114
+ 000977,5,1,4,4,1,0,1
115
+ 000985,5,1,4,4,1,0,1
116
+ 000988,5,1,4,4,1,0,1
117
+ 000993,5,1,4,4,1,0,1
118
+ 000996,5,1,4,4,1,0,1
119
+ 001004,5,1,4,4,1,0,1
120
+ 001009,5,1,4,4,1,0,1
121
+ 001017,5,1,4,4,1,0,1
122
+ 001028,6,0,3,2,2,0,0
123
+ 001036,6,0,3,2,2,0,0
124
+ 001044,6,0,3,2,2,0,0
125
+ 001052,6,0,3,2,2,0,0
126
+ 001060,6,0,3,2,2,0,0
127
+ 001068,6,0,3,2,2,0,0
128
+ 001076,6,0,3,2,2,0,0
129
+ 001084,6,0,3,2,2,0,0
130
+ 001092,6,0,3,2,2,0,0
131
+ 001100,6,0,3,2,2,0,0
132
+ 001108,6,0,3,2,2,0,0
133
+ 001116,6,0,3,2,2,0,0
134
+ 001124,6,0,3,2,2,0,0
135
+ 001163,6,0,3,2,2,0,0
136
+ 001614,7,0,1,1,0,0,0
137
+ 001622,7,0,1,1,0,0,0
138
+ 001630,7,0,1,1,0,0,0
139
+ 001638,7,0,1,1,0,0,0
140
+ 001646,7,0,1,1,0,0,0
141
+ 001654,7,0,1,1,0,0,0
142
+ 001752,8,0,2,1,1,1,1
143
+ 001760,8,0,2,1,1,1,1
144
+ 001768,8,0,2,1,1,1,1
145
+ 001776,8,0,2,1,1,1,1
146
+ 001784,8,0,2,1,1,1,1
147
+ 001792,8,0,2,1,1,1,1
148
+ 001800,8,0,2,1,1,1,1
149
+ 001816,8,0,2,1,1,1,1
150
+ 001832,8,0,2,1,1,1,1
151
+ 001840,8,0,2,1,1,1,1
152
+ 001848,8,0,2,1,1,1,1
153
+ 001856,8,0,2,1,1,1,1
154
+ 001864,8,0,2,1,1,1,1
155
+ 001872,8,0,2,1,1,1,1
156
+ 001880,8,0,2,1,1,1,1
157
+ 001888,8,0,2,1,1,1,1
158
+ 001896,8,0,2,1,1,1,1
159
+ 001904,8,0,2,1,1,1,1
160
+ 001912,8,0,2,1,1,1,1
161
+ 001920,8,0,2,1,1,1,1
162
+ 001928,8,0,2,1,1,1,1
163
+ 001936,8,0,2,1,1,1,1
164
+ 001944,8,0,2,1,1,1,1
165
+ 001952,8,0,2,1,1,1,1
166
+ 001960,8,0,2,1,1,1,1
167
+ 001968,8,0,2,1,1,1,1
168
+ 001976,8,0,2,1,1,1,1
169
+ 001984,8,0,2,1,1,1,1
170
+ 002000,8,0,2,1,1,1,1
171
+ 002008,8,0,2,1,1,1,1
172
+ 002016,8,0,2,1,1,1,1
173
+ 002027,9,2,0,0,2,0,2
174
+ 002035,9,2,0,0,2,0,2
175
+ 002043,9,2,0,0,2,0,2
176
+ 002044,9,2,0,0,2,0,2
177
+ 002051,9,2,0,0,2,0,2
178
+ 002052,9,2,0,0,2,0,2
179
+ 002059,9,2,0,0,2,0,2
180
+ 002060,9,2,0,0,2,0,2
181
+ 002063,9,2,0,0,2,0,2
182
+ 002067,9,2,0,0,2,0,2
183
+ 002071,9,2,0,0,2,0,2
184
+ 002075,9,2,0,0,2,0,2
185
+ 002079,9,2,0,0,2,0,2
186
+ 002083,9,2,0,0,2,0,2
187
+ 002087,9,2,0,0,2,0,2
188
+ 002095,9,2,0,0,2,0,2
189
+ 002099,9,2,0,0,2,0,2
190
+ 002103,9,2,0,0,2,0,2
191
+ 002107,9,2,0,0,2,0,2
192
+ 002111,9,2,0,0,2,0,2
193
+ 002115,9,2,0,0,2,0,2
194
+ 002119,9,2,0,0,2,0,2
195
+ 002123,9,2,0,0,2,0,2
196
+ 002127,9,2,0,0,2,0,2
197
+ 002131,9,2,0,0,2,0,2
198
+ 002135,9,2,0,0,2,0,2
199
+ 002139,9,2,0,0,2,0,2
200
+ 002143,9,2,0,0,2,0,2
201
+ 002147,9,2,0,0,2,0,2
202
+ 002151,9,2,0,0,2,0,2
203
+ 002159,9,2,0,0,2,0,2
204
+ 002163,9,2,0,0,2,0,2
205
+ 002167,9,2,0,0,2,0,2
206
+ 002171,9,2,0,0,2,0,2
207
+ 002175,9,2,0,0,2,0,2
208
+ 002179,9,2,0,0,2,0,2
209
+ 002187,9,2,0,0,2,0,2
210
+ 002195,9,2,0,0,2,0,2
211
+ 002226,10,4,3,4,0,1,1
212
+ 002230,10,4,3,4,0,1,1
213
+ 002234,10,4,3,4,0,1,1
214
+ 002238,10,4,3,4,0,1,1
215
+ 002242,10,4,3,4,0,1,1
216
+ 002246,10,4,3,4,0,1,1
217
+ 002250,10,4,3,4,0,1,1
218
+ 002254,10,4,3,4,0,1,1
219
+ 002276,10,4,3,4,0,1,1
220
+ 002316,10,4,3,4,0,1,1
221
+ 002340,10,4,3,4,0,1,1
222
+ 002348,10,4,3,4,0,1,1
223
+ 002356,10,4,3,4,0,1,1
224
+ 002358,10,4,3,4,0,1,1
225
+ 002364,10,4,3,4,0,1,1
226
+ 002366,10,4,3,4,0,1,1
227
+ 002372,10,4,3,4,0,1,1
228
+ 002374,10,4,3,4,0,1,1
229
+ 002380,10,4,3,4,0,1,1
230
+ 002382,10,4,3,4,0,1,1
231
+ 002390,10,4,3,4,0,1,1
232
+ 002395,10,4,3,4,0,1,1
233
+ 002396,10,4,3,4,0,1,1
234
+ 002404,10,4,3,4,0,1,1
235
+ 002406,10,4,3,4,0,1,1
236
+ 002412,10,4,3,4,0,1,1
237
+ 002420,10,4,3,4,0,1,1
238
+ 002428,10,4,3,4,0,1,1
239
+ 002436,10,4,3,4,0,1,1
240
+ 002444,10,4,3,4,0,1,1
241
+ 002460,10,4,3,4,0,1,1
242
+ 002468,10,4,3,4,0,1,1
243
+ 002476,10,4,3,4,0,1,1
244
+ 002484,10,4,3,4,0,1,1
245
+ 002492,10,4,3,4,0,1,1
246
+ 002500,10,4,3,4,0,1,1
247
+ 002508,10,4,3,4,0,1,1
248
+ 002516,10,4,3,4,0,1,1
249
+ 002524,10,4,3,4,0,1,1
250
+ 002532,10,4,3,4,0,1,1
251
+ 002540,10,4,3,4,0,1,1
252
+ 002548,10,4,3,4,0,1,1
253
+ 002556,10,4,3,4,0,1,1
254
+ 002564,10,4,3,4,0,1,1
255
+ 002572,10,4,3,4,0,1,1
256
+ 002580,10,4,3,4,0,1,1
257
+ 002588,10,4,3,4,0,1,1
258
+ 002602,10,4,3,4,0,1,1
259
+ 002604,10,4,3,4,0,1,1
260
+ 002636,22,0,3,1,1,0,0
261
+ 002644,22,0,3,1,1,0,0
262
+ 002652,22,0,3,1,1,0,0
263
+ 002660,22,0,3,1,1,0,0
264
+ 002668,22,0,3,1,1,0,0
265
+ 002676,22,0,3,1,1,0,0
266
+ 002684,22,0,3,1,1,0,0
267
+ 002692,22,0,3,1,1,0,0
268
+ 002700,22,0,3,1,1,0,0
269
+ 002708,22,0,3,1,1,0,0
270
+ 002724,22,0,3,1,1,0,0
271
+ 002732,22,0,3,1,1,0,0
272
+ 002740,22,0,3,1,1,0,0
273
+ 002742,22,0,3,1,1,0,0
274
+ 002750,22,0,3,1,1,0,0
275
+ 002756,22,0,3,1,1,0,0
276
+ 002764,22,0,3,1,1,0,0
277
+ 002773,11,1,3,1,0,1,0
278
+ 002781,11,1,3,1,0,1,0
279
+ 002789,11,1,3,1,0,1,0
280
+ 002797,11,1,3,1,0,1,0
281
+ 002805,11,1,3,1,0,1,0
282
+ 002813,11,1,3,1,0,1,0
283
+ 002821,11,1,3,1,0,1,0
284
+ 002829,11,1,3,1,0,1,0
285
+ 002837,11,1,3,1,0,1,0
286
+ 002845,11,1,3,1,0,1,0
287
+ 002853,11,1,3,1,0,1,0
288
+ 002861,11,1,3,1,0,1,0
289
+ 002869,11,1,3,1,0,1,0
290
+ 002877,11,1,3,1,0,1,0
291
+ 002885,11,1,3,1,0,1,0
292
+ 002893,11,1,3,1,0,1,0
293
+ 002901,11,1,3,1,0,1,0
294
+ 002909,11,1,3,1,0,1,0
295
+ 002917,11,1,3,1,0,1,0
296
+ 002925,11,1,3,1,0,1,0
297
+ 002933,11,1,3,1,0,1,0
298
+ 002941,11,1,3,1,0,1,0
299
+ 002949,11,1,3,1,0,1,0
300
+ 002957,11,1,3,1,0,1,0
301
+ 002977,12,3,4,4,0,0,2
302
+ 002981,12,3,4,4,0,0,2
303
+ 002985,12,3,4,4,0,0,2
304
+ 002989,12,3,4,4,0,0,2
305
+ 002993,12,3,4,4,0,0,2
306
+ 002997,12,3,4,4,0,0,2
307
+ 003005,12,3,4,4,0,0,2
308
+ 003009,12,3,4,4,0,0,2
309
+ 003022,12,3,4,4,0,0,2
310
+ 003030,12,3,4,4,0,0,2
311
+ 003038,12,3,4,4,0,0,2
312
+ 003046,12,3,4,4,0,0,2
313
+ 003054,12,3,4,4,0,0,2
314
+ 003070,12,3,4,4,0,0,2
315
+ 003078,12,3,4,4,0,0,2
316
+ 003086,12,3,4,4,0,0,2
317
+ 003094,12,3,4,4,0,0,2
318
+ 003102,12,3,4,4,0,0,2
319
+ 003110,12,3,4,4,0,0,2
320
+ 003118,12,3,4,4,0,0,2
321
+ 003134,12,3,4,4,0,0,2
322
+ 003142,12,3,4,4,0,0,2
323
+ 003166,12,3,4,4,0,0,2
324
+ 003174,12,3,4,4,0,0,2
325
+ 003182,12,3,4,4,0,0,2
326
+ 003206,12,3,4,4,0,0,2
327
+ 003238,12,3,4,4,0,0,2
328
+ 003246,12,3,4,4,0,0,2
329
+ 003262,12,3,4,4,0,0,2
330
+ 003270,12,3,4,4,0,0,2
331
+ 003278,12,3,4,4,0,0,2
332
+ 003286,12,3,4,4,0,0,2
333
+ 003294,12,3,4,4,0,0,2
334
+ 003302,12,3,4,4,0,0,2
335
+ 003310,12,3,4,4,0,0,2
336
+ 003318,12,3,4,4,0,0,2
337
+ 003326,12,3,4,4,0,0,2
338
+ 003334,12,3,4,4,0,0,2
339
+ 003342,12,3,4,4,0,0,2
340
+ 003350,12,3,4,4,0,0,2
341
+ 003366,12,3,4,4,0,0,2
342
+ 003374,12,3,4,4,0,0,2
343
+ 003382,12,3,4,4,0,0,2
344
+ 003390,12,3,4,4,0,0,2
345
+ 003398,12,3,4,4,0,0,2
346
+ 003414,12,3,4,4,0,0,2
347
+ 003422,12,3,4,4,0,0,2
348
+ 003430,12,3,4,4,0,0,2
349
+ 003438,12,3,4,4,0,0,2
350
+ 003454,12,3,4,4,0,0,2
351
+ 003462,12,3,4,4,0,0,2
352
+ 003470,12,3,4,4,0,0,2
353
+ 003495,13,1,4,3,2,0,1
354
+ 003503,13,1,4,3,2,0,1
355
+ 003511,13,1,4,3,2,0,1
356
+ 003519,13,1,4,3,2,0,1
357
+ 003527,13,1,4,3,2,0,1
358
+ 003535,13,1,4,3,2,0,1
359
+ 003543,13,1,4,3,2,0,1
360
+ 003551,13,1,4,3,2,0,1
361
+ 003567,13,1,4,3,2,0,1
362
+ 003575,13,1,4,3,2,0,1
363
+ 003583,13,1,4,3,2,0,1
364
+ 003591,13,1,4,3,2,0,1
365
+ 003599,13,1,4,3,2,0,1
366
+ 003607,13,1,4,3,2,0,1
367
+ 003631,13,1,4,3,2,0,1
368
+ 003639,13,1,4,3,2,0,1
369
+ 003647,13,1,4,3,2,0,1
370
+ 003655,13,1,4,3,2,0,1
371
+ 003663,13,1,4,3,2,0,1
372
+ 003679,13,1,4,3,2,0,1
373
+ 003687,13,1,4,3,2,0,1
374
+ 003695,13,1,4,3,2,0,1
375
+ 003703,13,1,4,3,2,0,1
376
+ 003719,13,1,4,3,2,0,1
377
+ 003727,13,1,4,3,2,0,1
378
+ 003735,13,1,4,3,2,0,1
379
+ 003743,13,1,4,3,2,0,1
380
+ 003751,13,1,4,3,2,0,1
381
+ 003759,13,1,4,3,2,0,1
382
+ 003767,13,1,4,3,2,0,1
383
+ 003776,13,1,4,3,2,0,1
384
+ 003784,13,1,4,3,2,0,1
385
+ 003792,13,1,4,3,2,0,1
386
+ 003800,13,1,4,3,2,0,1
387
+ 003808,13,1,4,3,2,0,1
388
+ 003816,13,1,4,3,2,0,1
389
+ 003824,13,1,4,3,2,0,1
390
+ 003832,13,1,4,3,2,0,1
391
+ 003840,13,1,4,3,2,0,1
392
+ 003848,13,1,4,3,2,0,1
393
+ 003856,13,1,4,3,2,0,1
394
+ 003864,13,1,4,3,2,0,1
395
+ 003872,13,1,4,3,2,0,1
396
+ 003880,13,1,4,3,2,0,1
397
+ 003888,13,1,4,3,2,0,1
398
+ 003896,13,1,4,3,2,0,1
399
+ 003904,13,1,4,3,2,0,1
400
+ 003912,13,1,4,3,2,0,1
401
+ 003920,13,1,4,3,2,0,1
402
+ 003928,13,1,4,3,2,0,1
403
+ 003952,13,1,4,3,2,0,1
404
+ 003960,13,1,4,3,2,0,1
405
+ 003968,13,1,4,3,2,0,1
406
+ 003976,13,1,4,3,2,0,1
407
+ 003992,13,1,4,3,2,0,1
408
+ 004000,13,1,4,3,2,0,1
409
+ 004008,13,1,4,3,2,0,1
410
+ 004017,14,3,3,4,3,1,1
411
+ 004025,14,3,3,4,3,1,1
412
+ 004033,14,3,3,4,3,1,1
413
+ 004041,14,3,3,4,3,1,1
414
+ 004049,14,3,3,4,3,1,1
415
+ 004057,14,3,3,4,3,1,1
416
+ 004065,14,3,3,4,3,1,1
417
+ 004073,14,3,3,4,3,1,1
418
+ 004084,14,3,3,4,3,1,1
419
+ 004089,14,3,3,4,3,1,1
420
+ 004092,14,3,3,4,3,1,1
421
+ 004097,14,3,3,4,3,1,1
422
+ 004100,14,3,3,4,3,1,1
423
+ 004105,14,3,3,4,3,1,1
424
+ 004108,14,3,3,4,3,1,1
425
+ 004113,14,3,3,4,3,1,1
426
+ 004116,14,3,3,4,3,1,1
427
+ 004121,14,3,3,4,3,1,1
428
+ 004124,14,3,3,4,3,1,1
429
+ 004129,14,3,3,4,3,1,1
430
+ 004132,14,3,3,4,3,1,1
431
+ 004137,14,3,3,4,3,1,1
432
+ 004140,14,3,3,4,3,1,1
433
+ 004145,14,3,3,4,3,1,1
434
+ 004148,14,3,3,4,3,1,1
435
+ 004153,14,3,3,4,3,1,1
436
+ 004156,14,3,3,4,3,1,1
437
+ 004164,14,3,3,4,3,1,1
438
+ 004169,14,3,3,4,3,1,1
439
+ 004172,14,3,3,4,3,1,1
440
+ 004177,14,3,3,4,3,1,1
441
+ 004180,14,3,3,4,3,1,1
442
+ 004185,14,3,3,4,3,1,1
443
+ 004188,14,3,3,4,3,1,1
444
+ 004190,14,3,3,4,3,1,1
445
+ 004193,14,3,3,4,3,1,1
446
+ 004196,14,3,3,4,3,1,1
447
+ 004198,14,3,3,4,3,1,1
448
+ 004201,14,3,3,4,3,1,1
449
+ 004204,14,3,3,4,3,1,1
450
+ 004206,14,3,3,4,3,1,1
451
+ 004209,14,3,3,4,3,1,1
452
+ 004212,14,3,3,4,3,1,1
453
+ 004214,14,3,3,4,3,1,1
454
+ 004217,14,3,3,4,3,1,1
455
+ 004220,14,3,3,4,3,1,1
456
+ 004222,14,3,3,4,3,1,1
457
+ 004225,14,3,3,4,3,1,1
458
+ 004228,14,3,3,4,3,1,1
459
+ 004230,14,3,3,4,3,1,1
460
+ 004233,14,3,3,4,3,1,1
461
+ 004236,14,3,3,4,3,1,1
462
+ 004238,14,3,3,4,3,1,1
463
+ 004241,14,3,3,4,3,1,1
464
+ 004244,14,3,3,4,3,1,1
465
+ 004246,14,3,3,4,3,1,1
466
+ 004249,14,3,3,4,3,1,1
467
+ 004252,14,3,3,4,3,1,1
468
+ 004254,14,3,3,4,3,1,1
469
+ 004257,14,3,3,4,3,1,1
470
+ 004260,14,3,3,4,3,1,1
471
+ 004262,14,3,3,4,3,1,1
472
+ 004265,14,3,3,4,3,1,1
473
+ 004268,14,3,3,4,3,1,1
474
+ 004270,14,3,3,4,3,1,1
475
+ 004273,14,3,3,4,3,1,1
476
+ 004276,14,3,3,4,3,1,1
477
+ 004278,14,3,3,4,3,1,1
478
+ 004281,14,3,3,4,3,1,1
479
+ 004286,14,3,3,4,3,1,1
480
+ 004289,14,3,3,4,3,1,1
481
+ 004294,14,3,3,4,3,1,1
482
+ 004297,14,3,3,4,3,1,1
483
+ 004302,14,3,3,4,3,1,1
484
+ 004305,14,3,3,4,3,1,1
485
+ 004308,14,3,3,4,3,1,1
486
+ 004309,14,3,3,4,3,1,1
487
+ 004310,14,3,3,4,3,1,1
488
+ 004313,14,3,3,4,3,1,1
489
+ 004318,14,3,3,4,3,1,1
490
+ 004319,15,0,2,1,1,0,0
491
+ 004320,15,0,2,1,1,0,0
492
+ 004321,15,0,2,1,1,0,0
493
+ 004327,15,0,2,1,1,0,0
494
+ 004335,16,1,1,0,1,0,1
495
+ 004343,16,1,1,0,1,0,1
496
+ 004351,16,1,1,0,1,0,1
497
+ 004359,16,1,1,0,1,0,1
498
+ 004367,16,1,1,0,1,0,1
499
+ 004375,16,1,1,0,1,0,1
500
+ 004383,16,1,1,0,1,0,1
501
+ 004391,16,1,1,0,1,0,1
502
+ 004399,16,1,1,0,1,0,1
503
+ 004407,16,1,1,0,1,0,1
504
+ 004423,16,1,1,0,1,0,1
505
+ 004431,16,1,1,0,1,0,1
506
+ 004439,16,1,1,0,1,0,1
507
+ 004447,16,1,1,0,1,0,1
508
+ 004455,16,1,1,0,1,0,1
509
+ 004471,16,1,1,0,1,0,1
510
+ 004479,16,1,1,0,1,0,1
511
+ 004487,16,1,1,0,1,0,1
512
+ 004503,16,1,1,0,1,0,1
513
+ 004511,16,1,1,0,1,0,1
514
+ 004519,16,1,1,0,1,0,1
515
+ 004530,16,1,1,0,1,0,1
516
+ 004538,16,1,1,0,1,0,1
517
+ 004546,16,1,1,0,1,0,1
518
+ 004554,16,1,1,0,1,0,1
519
+ 004562,16,1,1,0,1,0,1
520
+ 004575,17,0,6,4,1,1,2
521
+ 004583,17,0,6,4,1,1,2
522
+ 004591,17,0,6,4,1,1,2
523
+ 004599,17,0,6,4,1,1,2
524
+ 004607,17,0,6,4,1,1,2
525
+ 004615,17,0,6,4,1,1,2
526
+ 004623,17,0,6,4,1,1,2
527
+ 004631,17,0,6,4,1,1,2
528
+ 004639,17,0,6,4,1,1,2
529
+ 004647,17,0,6,4,1,1,2
530
+ 004655,17,0,6,4,1,1,2
531
+ 004663,17,0,6,4,1,1,2
532
+ 004671,17,0,6,4,1,1,2
533
+ 004679,17,0,6,4,1,1,2
534
+ 004687,17,0,6,4,1,1,2
535
+ 004695,17,0,6,4,1,1,2
536
+ 004703,17,0,6,4,1,1,2
537
+ 004711,17,0,6,4,1,1,2
538
+ 004719,17,0,6,4,1,1,2
539
+ 004727,17,0,6,4,1,1,2
540
+ 004735,17,0,6,4,1,1,2
541
+ 004743,17,0,6,4,1,1,2
542
+ 004751,17,0,6,4,1,1,2
543
+ 004759,17,0,6,4,1,1,2
544
+ 004767,17,0,6,4,1,1,2
545
+ 004775,17,0,6,4,1,1,2
546
+ 004783,17,0,6,4,1,1,2
547
+ 004791,17,0,6,4,1,1,2
548
+ 004807,17,0,6,4,1,1,2
549
+ 004815,17,0,6,4,1,1,2
550
+ 004823,17,0,6,4,1,1,2
551
+ 004831,17,0,6,4,1,1,2
552
+ 004839,17,0,6,4,1,1,2
553
+ 004847,17,0,6,4,1,1,2
554
+ 004855,17,0,6,4,1,1,2
555
+ 004863,17,0,6,4,1,1,2
556
+ 004871,17,0,6,4,1,1,2
557
+ 004879,17,0,6,4,1,1,2
558
+ 004887,17,0,6,4,1,1,2
559
+ 004895,17,0,6,4,1,1,2
560
+ 004919,17,0,6,4,1,1,2
561
+ 004927,17,0,6,4,1,1,2
562
+ 004935,17,0,6,4,1,1,2
563
+ 004943,17,0,6,4,1,1,2
564
+ 004951,17,0,6,4,1,1,2
565
+ 004959,17,0,6,4,1,1,2
566
+ 004967,17,0,6,4,1,1,2
567
+ 004975,17,0,6,4,1,1,2
568
+ 004983,17,0,6,4,1,1,2
569
+ 004995,17,0,6,4,1,1,2
570
+ 005003,17,0,6,4,1,1,2
571
+ 005007,17,0,6,4,1,1,2
572
+ 005011,17,0,6,4,1,1,2
573
+ 005015,17,0,6,4,1,1,2
574
+ 005019,17,0,6,4,1,1,2
575
+ 005027,17,0,6,4,1,1,2
576
+ 005031,17,0,6,4,1,1,2
577
+ 005035,17,0,6,4,1,1,2
578
+ 005039,17,0,6,4,1,1,2
579
+ 005043,17,0,6,4,1,1,2
580
+ 005047,17,0,6,4,1,1,2
581
+ 005051,17,0,6,4,1,1,2
582
+ 005055,17,0,6,4,1,1,2
583
+ 005090,18,1,2,1,3,1,0
584
+ 005098,18,1,2,1,3,1,0
585
+ 005106,18,1,2,1,3,1,0
586
+ 005114,18,1,2,1,3,1,0
587
+ 005122,18,1,2,1,3,1,0
588
+ 005130,18,1,2,1,3,1,0
589
+ 005146,18,1,2,1,3,1,0
590
+ 005162,18,1,2,1,3,1,0
591
+ 005170,18,1,2,1,3,1,0
592
+ 005178,18,1,2,1,3,1,0
593
+ 005186,18,1,2,1,3,1,0
594
+ 005194,18,1,2,1,3,1,0
595
+ 005202,18,1,2,1,3,1,0
596
+ 005210,18,1,2,1,3,1,0
597
+ 005218,18,1,2,1,3,1,0
598
+ 005226,18,1,2,1,3,1,0
599
+ 005234,18,1,2,1,3,1,0
600
+ 005242,18,1,2,1,3,1,0
601
+ 005250,18,1,2,1,3,1,0
602
+ 005258,18,1,2,1,3,1,0
603
+ 005266,18,1,2,1,3,1,0
604
+ 005278,18,1,2,1,3,1,0
605
+ 005288,18,1,2,1,3,1,0
606
+ 005304,18,1,2,1,3,1,0
607
+ 005313,18,1,2,1,3,1,0
608
+ 005353,18,1,2,1,3,1,0
609
+ 005369,18,1,2,1,3,1,0
610
+ 005371,18,1,2,1,3,1,0
611
+ 005401,18,1,2,1,3,1,0
612
+ 005452,18,1,2,1,3,1,0
613
+ 005465,18,1,2,1,3,1,0
614
+ 005467,18,1,2,1,3,1,0
615
+ 005512,18,1,2,1,3,1,0
616
+ 005514,18,1,2,1,3,1,0
617
+ 005521,18,1,2,1,3,1,0
618
+ 005562,18,1,2,1,3,1,0
619
+ 005570,18,1,2,1,3,1,0
620
+ 005578,18,1,2,1,3,1,0
621
+ 005586,18,1,2,1,3,1,0
622
+ 005594,18,1,2,1,3,1,0
623
+ 005602,18,1,2,1,3,1,0
624
+ 005610,18,1,2,1,3,1,0
625
+ 005618,18,1,2,1,3,1,0
626
+ 005626,18,1,2,1,3,1,0
627
+ 005650,18,1,2,1,3,1,0
628
+ 005658,18,1,2,1,3,1,0
629
+ 005666,18,1,2,1,3,1,0
630
+ 005674,18,1,2,1,3,1,0
631
+ 005682,18,1,2,1,3,1,0
632
+ 005690,18,1,2,1,3,1,0
633
+ 005698,18,1,2,1,3,1,0
634
+ 005706,18,1,2,1,3,1,0
635
+ 005714,18,1,2,1,3,1,0
636
+ 005722,18,1,2,1,3,1,0
637
+ 005730,18,1,2,1,3,1,0
638
+ 005738,18,1,2,1,3,1,0
639
+ 005746,18,1,2,1,3,1,0
640
+ 005754,18,1,2,1,3,1,0
641
+ 005762,18,1,2,1,3,1,0
642
+ 005770,18,1,2,1,3,1,0
643
+ 005786,18,1,2,1,3,1,0
644
+ 005794,18,1,2,1,3,1,0
645
+ 005802,18,1,2,1,3,1,0
646
+ 005810,18,1,2,1,3,1,0
647
+ 005818,18,1,2,1,3,1,0
648
+ 005826,18,1,2,1,3,1,0
649
+ 005834,18,1,2,1,3,1,0
650
+ 005842,18,1,2,1,3,1,0
651
+ 005850,18,1,2,1,3,1,0
652
+ 005858,18,1,2,1,3,1,0
653
+ 005866,18,1,2,1,3,1,0
654
+ 005874,18,1,2,1,3,1,0
655
+ 005890,18,1,2,1,3,1,0
656
+ 005891,18,1,2,1,3,1,0
657
+ 005898,18,1,2,1,3,1,0
658
+ 005899,18,1,2,1,3,1,0
659
+ 005906,18,1,2,1,3,1,0
660
+ 005907,18,1,2,1,3,1,0
661
+ 005914,18,1,2,1,3,1,0
662
+ 005915,18,1,2,1,3,1,0
663
+ 005922,18,1,2,1,3,1,0
664
+ 005923,18,1,2,1,3,1,0
665
+ 005930,18,1,2,1,3,1,0
666
+ 005931,18,1,2,1,3,1,0
667
+ 005939,18,1,2,1,3,1,0
668
+ 006352,23,0,4,2,0,0,0
669
+ 006368,23,0,4,2,0,0,0
670
+ 006376,23,0,4,2,0,0,0
671
+ 006384,23,0,4,2,0,0,0
672
+ 006392,23,0,4,2,0,0,0
673
+ 006408,23,0,4,2,0,0,0
674
+ 006416,23,0,4,2,0,0,0
675
+ 006424,23,0,4,2,0,0,0
676
+ 006432,23,0,4,2,0,0,0
677
+ 006440,23,0,4,2,0,0,0
678
+ 006448,23,0,4,2,0,0,0
679
+ 006456,23,0,4,2,0,0,0
680
+ 006464,23,0,4,2,0,0,0
681
+ 006469,23,0,4,2,0,0,0
682
+ 006472,23,0,4,2,0,0,0
683
+ 006480,23,0,4,2,0,0,0
684
+ 006488,23,0,4,2,0,0,0
685
+ 006496,23,0,4,2,0,0,0
686
+ 006516,19,0,2,2,2,0,0
687
+ 006524,19,0,2,2,2,0,0
688
+ 006532,19,0,2,2,2,0,0
689
+ 006540,19,0,2,2,2,0,0
690
+ 006548,19,0,2,2,2,0,0
691
+ 006556,19,0,2,2,2,0,0
692
+ 006564,19,0,2,2,2,0,0
693
+ 006572,19,0,2,2,2,0,0
694
+ 006580,19,0,2,2,2,0,0
695
+ 006588,19,0,2,2,2,0,0
696
+ 006596,19,0,2,2,2,0,0
697
+ 006612,19,0,2,2,2,0,0
698
+ 006620,19,0,2,2,2,0,0
699
+ 006628,19,0,2,2,2,0,0
700
+ 006636,19,0,2,2,2,0,0
701
+ 006644,19,0,2,2,2,0,0
702
+ 006652,19,0,2,2,2,0,0
703
+ 006660,19,0,2,2,2,0,0
704
+ 006668,19,0,2,2,2,0,0
705
+ 006676,19,0,2,2,2,0,0
706
+ 006684,19,0,2,2,2,0,0
707
+ 006692,19,0,2,2,2,0,0
708
+ 006700,19,0,2,2,2,0,0
709
+ 006708,19,0,2,2,2,0,0
710
+ 006716,19,0,2,2,2,0,0
711
+ 006724,19,0,2,2,2,0,0
712
+ 006740,19,0,2,2,2,0,0
713
+ 006748,19,0,2,2,2,0,0
714
+ 006756,19,0,2,2,2,0,0
715
+ 006868,24,2,10,6,1,0,3
716
+ 006876,24,2,10,6,1,0,3
717
+ 006884,24,2,10,6,1,0,3
718
+ 006892,24,2,10,6,1,0,3
719
+ 006897,24,2,10,6,1,0,3
720
+ 006900,24,2,10,6,1,0,3
721
+ 006905,24,2,10,6,1,0,3
722
+ 006908,24,2,10,6,1,0,3
723
+ 006913,24,2,10,6,1,0,3
724
+ 006916,24,2,10,6,1,0,3
725
+ 006921,24,2,10,6,1,0,3
726
+ 006924,24,2,10,6,1,0,3
727
+ 006929,24,2,10,6,1,0,3
728
+ 006932,24,2,10,6,1,0,3
729
+ 006937,24,2,10,6,1,0,3
730
+ 006940,24,2,10,6,1,0,3
731
+ 006998,25,3,4,2,3,0,2
732
+ 007006,25,3,4,2,3,0,2
733
+ 007014,25,3,4,2,3,0,2
734
+ 007020,25,3,4,2,3,0,2
735
+ 007022,25,3,4,2,3,0,2
736
+ 007028,25,3,4,2,3,0,2
737
+ 007030,25,3,4,2,3,0,2
738
+ 007036,25,3,4,2,3,0,2
739
+ 007038,25,3,4,2,3,0,2
740
+ 007044,25,3,4,2,3,0,2
741
+ 007046,25,3,4,2,3,0,2
742
+ 007052,25,3,4,2,3,0,2
743
+ 007054,25,3,4,2,3,0,2
744
+ 007060,25,3,4,2,3,0,2
745
+ 007062,25,3,4,2,3,0,2
746
+ 007068,25,3,4,2,3,0,2
747
+ 007070,25,3,4,2,3,0,2
748
+ 007076,25,3,4,2,3,0,2
749
+ 007078,25,3,4,2,3,0,2
750
+ 007084,25,3,4,2,3,0,2
751
+ 007086,25,3,4,2,3,0,2
752
+ 007092,25,3,4,2,3,0,2
753
+ 007094,25,3,4,2,3,0,2
754
+ 007100,25,3,4,2,3,0,2
755
+ 007102,25,3,4,2,3,0,2
756
+ 007116,25,3,4,2,3,0,2
757
+ 007118,25,3,4,2,3,0,2
758
+ 007124,25,3,4,2,3,0,2
759
+ 007126,25,3,4,2,3,0,2
760
+ 007132,25,3,4,2,3,0,2
761
+ 007134,25,3,4,2,3,0,2
762
+ 007140,25,3,4,2,3,0,2
763
+ 007142,25,3,4,2,3,0,2
764
+ 007148,25,3,4,2,3,0,2
765
+ 007150,25,3,4,2,3,0,2
766
+ 007156,25,3,4,2,3,0,2
767
+ 007158,25,3,4,2,3,0,2
768
+ 007164,25,3,4,2,3,0,2
769
+ 007166,25,3,4,2,3,0,2
770
+ 007172,25,3,4,2,3,0,2
771
+ 007174,25,3,4,2,3,0,2
772
+ 007180,25,3,4,2,3,0,2
773
+ 007182,25,3,4,2,3,0,2
774
+ 007188,25,3,4,2,3,0,2
775
+ 007190,25,3,4,2,3,0,2
776
+ 007196,25,3,4,2,3,0,2
777
+ 007198,25,3,4,2,3,0,2
778
+ 007204,25,3,4,2,3,0,2
779
+ 007206,25,3,4,2,3,0,2
780
+ 007212,25,3,4,2,3,0,2
781
+ 007214,25,3,4,2,3,0,2
782
+ 007220,25,3,4,2,3,0,2
783
+ 007228,25,3,4,2,3,0,2
784
+ 007230,25,3,4,2,3,0,2
785
+ 007236,25,3,4,2,3,0,2
786
+ 007238,25,3,4,2,3,0,2
787
+ 007244,25,3,4,2,3,0,2
788
+ 007252,25,3,4,2,3,0,2
789
+ 007254,25,3,4,2,3,0,2
790
+ 007260,25,3,4,2,3,0,2
791
+ 007262,25,3,4,2,3,0,2
792
+ 007268,25,3,4,2,3,0,2
793
+ 007270,25,3,4,2,3,0,2
794
+ 007276,25,3,4,2,3,0,2
795
+ 007278,25,3,4,2,3,0,2
796
+ 007284,25,3,4,2,3,0,2
797
+ 007286,25,3,4,2,3,0,2
798
+ 007292,25,3,4,2,3,0,2
799
+ 007294,25,3,4,2,3,0,2
800
+ 007300,25,3,4,2,3,0,2
801
+ 007302,25,3,4,2,3,0,2
802
+ 007308,25,3,4,2,3,0,2
803
+ 007310,25,3,4,2,3,0,2
804
+ 007314,25,3,4,2,3,0,2
805
+ 007316,25,3,4,2,3,0,2
806
+ 007318,25,3,4,2,3,0,2
807
+ 007322,25,3,4,2,3,0,2
808
+ 007324,25,3,4,2,3,0,2
809
+ 007326,25,3,4,2,3,0,2
810
+ 007330,25,3,4,2,3,0,2
811
+ 007332,25,3,4,2,3,0,2
812
+ 007334,25,3,4,2,3,0,2
813
+ 007338,25,3,4,2,3,0,2
814
+ 007340,25,3,4,2,3,0,2
815
+ 007342,25,3,4,2,3,0,2
816
+ 007346,25,3,4,2,3,0,2
817
+ 007348,25,3,4,2,3,0,2
818
+ 007350,25,3,4,2,3,0,2
819
+ 007353,26,2,4,2,5,0,2
820
+ 007361,26,2,4,2,5,0,2
821
+ 007369,26,2,4,2,5,0,2
822
+ 007377,26,2,4,2,5,0,2
823
+ 007385,26,2,4,2,5,0,2
824
+ 007393,26,2,4,2,5,0,2
825
+ 007401,26,2,4,2,5,0,2
826
+ 007409,26,2,4,2,5,0,2
827
+ 007417,26,2,4,2,5,0,2
828
+ 007425,26,2,4,2,5,0,2
829
+ 007433,26,2,4,2,5,0,2
830
+ 007441,26,2,4,2,5,0,2
831
+ 007449,26,2,4,2,5,0,2
832
+ 007457,26,2,4,2,5,0,2
833
+ 007465,26,2,4,2,5,0,2
834
+ 007473,26,2,4,2,5,0,2
835
+ 007481,26,2,4,2,5,0,2
836
+ 007489,26,2,4,2,5,0,2
837
+ 007494,26,2,4,2,5,0,2
838
+ 007497,26,2,4,2,5,0,2
839
+ 007502,26,2,4,2,5,0,2
840
+ 007505,26,2,4,2,5,0,2
841
+ 007510,26,2,4,2,5,0,2
842
+ 007513,26,2,4,2,5,0,2
843
+ 007518,26,2,4,2,5,0,2
844
+ 007521,26,2,4,2,5,0,2
845
+ 007526,26,2,4,2,5,0,2
846
+ 007529,26,2,4,2,5,0,2
847
+ 007534,26,2,4,2,5,0,2
848
+ 007537,26,2,4,2,5,0,2
849
+ 007545,26,2,4,2,5,0,2
850
+ 007561,26,2,4,2,5,0,2
851
+ 007569,26,2,4,2,5,0,2
852
+ 007585,26,2,4,2,5,0,2
853
+ 007601,26,2,4,2,5,0,2
854
+ 007609,26,2,4,2,5,0,2
855
+ 007617,26,2,4,2,5,0,2
856
+ 007625,26,2,4,2,5,0,2
857
+ 007633,26,2,4,2,5,0,2
858
+ 007641,26,2,4,2,5,0,2
859
+ 007649,26,2,4,2,5,0,2
860
+ 007657,26,2,4,2,5,0,2
861
+ 007665,26,2,4,2,5,0,2
862
+ 007673,26,2,4,2,5,0,2
863
+ 007681,26,2,4,2,5,0,2
864
+ 007689,26,2,4,2,5,0,2
865
+ 007697,26,2,4,2,5,0,2
866
+ 007705,26,2,4,2,5,0,2
867
+ 007713,26,2,4,2,5,0,2
868
+ 007733,20,0,6,2,0,0,0
869
+ 007741,20,0,6,2,0,0,0
870
+ 007749,20,0,6,2,0,0,0
871
+ 007757,20,0,6,2,0,0,0
872
+ 007765,20,0,6,2,0,0,0
873
+ 007773,20,0,6,2,0,0,0
874
+ 007781,20,0,6,2,0,0,0
875
+ 007789,20,0,6,2,0,0,0
876
+ 007797,20,0,6,2,0,0,0
877
+ 007805,20,0,6,2,0,0,0
878
+ 007813,20,0,6,2,0,0,0
879
+ 007821,20,0,6,2,0,0,0
880
+ 007837,20,0,6,2,0,0,0
881
+ 007845,20,0,6,2,0,0,0
882
+ 007853,20,0,6,2,0,0,0
883
+ 007861,20,0,6,2,0,0,0
884
+ 007869,20,0,6,2,0,0,0
885
+ 008301,21,1,3,2,1,1,1
886
+ 008309,21,1,3,2,1,1,1
887
+ 008317,21,1,3,2,1,1,1
888
+ 008333,21,1,3,2,1,1,1
889
+ 008341,21,1,3,2,1,1,1
890
+ 008349,21,1,3,2,1,1,1
891
+ 008357,21,1,3,2,1,1,1
892
+ 008365,21,1,3,2,1,1,1
893
+ 008373,21,1,3,2,1,1,1
894
+ 008381,21,1,3,2,1,1,1
895
+ 008389,21,1,3,2,1,1,1
896
+ 008397,21,1,3,2,1,1,1
897
+ 008405,21,1,3,2,1,1,1
898
+ 008413,21,1,3,2,1,1,1
899
+ 008421,21,1,3,2,1,1,1
900
+ 008429,21,1,3,2,1,1,1
901
+ 008437,21,1,3,2,1,1,1
902
+ 008445,21,1,3,2,1,1,1
903
+ 008453,21,1,3,2,1,1,1
904
+ 008461,21,1,3,2,1,1,1
905
+ 008469,21,1,3,2,1,1,1
906
+ 008477,21,1,3,2,1,1,1
907
+ 008485,21,1,3,2,1,1,1
908
+ 008493,21,1,3,2,1,1,1
909
+ 008501,21,1,3,2,1,1,1
910
+ 008509,21,1,3,2,1,1,1
911
+ 008517,21,1,3,2,1,1,1
912
+ 008525,21,1,3,2,1,1,1
913
+ 008533,21,1,3,2,1,1,1
914
+ 008541,21,1,3,2,1,1,1
915
+ 008549,21,1,3,2,1,1,1
916
+ 008557,21,1,3,2,1,1,1
917
+ 008565,21,1,3,2,1,1,1
918
+ 008573,21,1,3,2,1,1,1
919
+ 008581,21,1,3,2,1,1,1
920
+ 008597,21,1,3,2,1,1,1
921
+ 008605,21,1,3,2,1,1,1
922
+ 008613,21,1,3,2,1,1,1
923
+ 008621,21,1,3,2,1,1,1
924
+ 008629,21,1,3,2,1,1,1
925
+ 008637,21,1,3,2,1,1,1
926
+ 008645,21,1,3,2,1,1,1
927
+ 008653,21,1,3,2,1,1,1
928
+ 008661,21,1,3,2,1,1,1
929
+ 008669,21,1,3,2,1,1,1
930
+ 008677,21,1,3,2,1,1,1
931
+ 008685,21,1,3,2,1,1,1
932
+ 008693,21,1,3,2,1,1,1
933
+ 008701,21,1,3,2,1,1,1
934
+ 008717,21,1,3,2,1,1,1
935
+ 008725,21,1,3,2,1,1,1
936
+ 008733,21,1,3,2,1,1,1
937
+ 008741,21,1,3,2,1,1,1
938
+ 008749,21,1,3,2,1,1,1
939
+ 008757,21,1,3,2,1,1,1
940
+ 008765,21,1,3,2,1,1,1
941
+ 008781,21,1,3,2,1,1,1
942
+ 008789,21,1,3,2,1,1,1
943
+ 008797,21,1,3,2,1,1,1
944
+ 008805,21,1,3,2,1,1,1
945
+ 008813,21,1,3,2,1,1,1
946
+ 008821,21,1,3,2,1,1,1
947
+ 008829,21,1,3,2,1,1,1
948
+ 008837,21,1,3,2,1,1,1
949
+ 008845,21,1,3,2,1,1,1
950
+ 008853,21,1,3,2,1,1,1
951
+ 008861,21,1,3,2,1,1,1
952
+ 008869,21,1,3,2,1,1,1
953
+ 008877,21,1,3,2,1,1,1
954
+ 008885,21,1,3,2,1,1,1
955
+ 008893,21,1,3,2,1,1,1
956
+ 008901,21,1,3,2,1,1,1
957
+ 008909,21,1,3,2,1,1,1
958
+ 008917,21,1,3,2,1,1,1
959
+ 008925,21,1,3,2,1,1,1
960
+ 008933,21,1,3,2,1,1,1
961
+ 008949,21,1,3,2,1,1,1
962
+ 008957,21,1,3,2,1,1,1
963
+ 008965,21,1,3,2,1,1,1
964
+ 008970,21,1,3,2,1,1,1
965
+ 008973,21,1,3,2,1,1,1
966
+ 008978,21,1,3,2,1,1,1
967
+ 008981,21,1,3,2,1,1,1
968
+ 008989,21,1,3,2,1,1,1
969
+ 03-1,0,0,1,0,0,0,0
970
+ 03-2,0,0,0,1,0,0,0
971
+ 03-3,0,1,0,0,0,0,0
972
+ 04-1,0,0,1,0,0,0,0
973
+ 04-2,0,0,0,0,1,0,0
974
+ 04-3,0,0,0,1,0,0,0
975
+ 06-2,0,0,0,1,0,0,0
976
+ 06-3,0,0,1,0,0,0,0
977
+ 06-4,0,0,1,0,0,0,0
978
+ 07-1,0,0,0,0,1,0,0
979
+ 07-2,0,0,0,0,0,1,0
980
+ 07-3,0,1,0,0,0,0,0
981
+ 07-4,0,0,0,0,0,0,1
982
+ 07-5,0,1,0,0,0,0,0
983
+ 08-1,0,0,0,0,1,0,0
984
+ 08-2,0,0,0,1,0,0,0
985
+ 08-3,0,0,1,0,0,0,0
986
+ 08-4,0,0,0,1,0,0,0
987
+ 08-5,0,0,0,0,0,0,1
988
+ 08-8,0,0,0,1,0,0,0
989
+ 08-9,0,0,1,0,0,0,0
990
+ 08-10,0,0,0,1,0,0,0
991
+ 09-1,0,0,0,0,1,0,0
992
+ 09-2,0,0,0,1,0,0,0
993
+ 09-3,0,0,0,0,1,0,0
994
+ 09-4,0,0,0,1,0,0,0
995
+ 10-1,0,0,1,0,0,0,0
996
+ 10-2,0,0,0,1,0,0,0
997
+ 11-1,0,0,0,0,1,0,0
998
+ 11-2,0,0,0,0,0,1,0
999
+ 11-3,0,0,1,0,0,0,0
1000
+ 11-4,0,0,0,1,0,0,0
1001
+ 11-5,0,0,0,0,0,0,1
1002
+ 12-1,0,0,0,0,1,0,0
1003
+ 12-2,0,0,0,0,0,0,1
1004
+ 12-3,0,1,0,0,0,0,0
1005
+ 12-4,0,0,0,0,1,0,0
1006
+ 12-5,0,0,0,0,0,0,1
1007
+ 12-6,0,1,0,0,0,0,0
1008
+ 14-1,0,1,0,0,0,0,0
1009
+ 14-2,0,1,0,0,0,0,0
1010
+ 14-3,0,0,1,0,0,0,0
1011
+ 14-4,0,1,0,0,0,0,0
1012
+ 14-5,0,0,0,0,0,1,0
1013
+ 14-9,0,0,0,0,0,0,1
1014
+ 14-12,0,0,1,0,0,0,0
1015
+ 14-13,0,0,1,0,0,0,0
1016
+ 14-14,0,0,0,1,0,0,0
1017
+ 18-1,0,0,1,0,0,0,0
1018
+ 18-2,0,0,0,0,0,1,0
1019
+ 18-3,0,0,1,0,0,0,0
1020
+ 18-5,0,0,1,0,0,0,0
1021
+ 18-6,0,1,0,0,0,0,0
1022
+ 20-2,0,1,0,0,0,0,0
1023
+ 20-3,0,0,0,0,1,0,0
1024
+ 20-5,0,0,1,0,0,0,0
1025
+ 20-6,0,0,0,1,0,0,0
1026
+ 20-7,0,0,0,0,0,0,1
1027
+ 20-9,0,0,0,1,0,0,0
1028
+ 20-10,0,0,0,0,0,0,1
1029
+ 20-11,0,0,1,0,0,0,0
1030
+ 20-12,0,0,0,1,0,0,0
1031
+ 22-2,0,0,0,0,1,0,0
1032
+ 22-3,0,0,0,1,0,0,0
1033
+ 22-5,0,0,0,0,0,0,1
1034
+ 22-8,0,0,1,0,0,0,0
1035
+ 22-9,0,0,1,0,0,0,0
1036
+ 22-10,0,0,0,1,0,0,0
1037
+ 22-11,0,1,0,0,0,0,0
1038
+ 23-1,0,0,0,0,1,0,0
1039
+ 23-2,0,0,0,0,1,0,0
1040
+ 23-3,0,0,0,1,0,0,0
1041
+ 23-4,0,0,1,0,0,0,0
1042
+ 23-7,0,0,0,0,0,0,1
1043
+ 23-10,0,0,1,0,0,0,0
1044
+ 23-11,0,0,1,0,0,0,0
1045
+ 23-12,0,1,0,0,0,0,0
1046
+ 23-13,0,0,0,0,0,1,0
1047
+ 23-14,0,1,0,0,0,0,0
1048
+ 23-15,0,1,0,0,0,0,0
1049
+ 24-1,0,0,0,0,1,0,0
1050
+ 24-2,0,0,1,0,0,0,0
1051
+ 24-3,0,0,1,0,0,0,0
1052
+ 24-4,0,0,0,1,0,0,0
1053
+ 25-2,0,0,1,0,0,0,0
1054
+ 25-3,0,0,0,0,0,0,1
1055
+ 25-4,0,0,0,0,1,0,0
1056
+ 27-1,0,0,1,0,0,0,0
1057
+ 27-2,0,0,0,1,0,0,0
1058
+ 27-4,0,0,0,1,0,0,0
1059
+ 27-8,0,0,1,0,0,0,0
1060
+ 27-9,0,0,0,0,1,0,0
1061
+ 27-10,0,0,0,0,0,1,0
1062
+ 27-11,0,0,0,1,0,0,0
1063
+ 27-12,0,0,0,0,0,0,1
1064
+ 29-1,0,0,1,0,0,0,0
1065
+ 29-2,0,0,0,1,0,0,0
1066
+ 29-3,0,0,0,0,1,0,0
1067
+ 29-4,0,1,0,0,0,0,0
1068
+ 29-5,0,0,0,0,1,0,0
1069
+ 29-6,0,0,1,0,0,0,0
1070
+ 29-7,0,0,0,0,1,0,0
1071
+ 29-8,0,0,0,0,0,0,1
1072
+ 32-1,0,0,0,0,1,0,0
1073
+ 32-2,0,0,0,0,1,0,0
1074
+ 32-3,0,0,0,1,0,0,0
1075
+ 32-5,0,0,1,0,0,0,0
1076
+ 32-6,0,0,0,1,0,0,0
1077
+ 39-1,0,0,1,0,0,0,0
1078
+ 39-5,0,0,0,1,0,0,0
1079
+ 40-1,0,0,0,0,1,0,0
1080
+ 40-2,0,0,0,0,0,0,1
1081
+ 40-5,0,0,0,0,0,0,1
1082
+ 40-9,0,1,0,0,0,0,0
train_val_masks.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:17708b0bf2ae2ca444cc6ef09641472f53f96123ba1cf7a2cef4f3eb0fabe753
3
+ size 19250936