JuzeZhang commited on
Commit
c79322f
·
verified ·
1 Parent(s): 935f617

Add files using upload-large-folder tool

Browse files
Files changed (9) hide show
  1. FLAME_coeffs_25.tar +3 -0
  2. LICENSE +11 -0
  3. README.md +133 -0
  4. audios.tar +3 -0
  5. audios_token_glm.tar +3 -0
  6. test.txt +304 -0
  7. train.txt +0 -0
  8. transcripts.tar +3 -0
  9. val.txt +290 -0
FLAME_coeffs_25.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:50b53d3b15b7a88ab3926c0f077ef058acde5cbc2877fe4bd00393cafbd00986
3
+ size 15901573120
LICENSE ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ WebTalk-Synthetic is licensed under the Creative Commons
2
+ Attribution-NonCommercial 4.0 International License (CC-BY-NC-4.0).
3
+
4
+ You are free to share and adapt the material for NON-COMMERCIAL purposes,
5
+ provided you give appropriate credit (cite the ViBES paper, see README.md).
6
+
7
+ Full license text: https://creativecommons.org/licenses/by-nc/4.0/legalcode
8
+
9
+ The audio is segmented from public talking-head videos and is provided for
10
+ non-commercial research only. Do not use it for commercial purposes and do not
11
+ attempt to re-identify speakers.
README.md ADDED
@@ -0,0 +1,133 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: WebTalk-Synthetic
3
+ license: cc-by-nc-4.0
4
+ language:
5
+ - en
6
+ task_categories:
7
+ - audio-to-audio
8
+ - other
9
+ tags:
10
+ - co-speech
11
+ - facial-animation
12
+ - talking-face
13
+ - FLAME
14
+ - synthetic
15
+ - 3d-motion
16
+ size_categories:
17
+ - 10K<n<100K
18
+ ---
19
+
20
+ # WebTalk-Synthetic
21
+
22
+ **WebTalk-Synthetic** is a dataset of **synthetic in-the-wild co-speech facial
23
+ motion**: ~12.7 k short clips, each pairing conversational speech with a
24
+ *generated* 3D facial-motion track in [FLAME](https://flame.is.tue.mpg.de/)
25
+ coefficient space. The facial motion is produced by an audio-driven face model
26
+ from filtered in-the-wild talking audio — it is synthesized, not
27
+ motion-captured. The dataset was created for and used by
28
+ [ViBES](https://github.com/Juzezhang/ViBES) (CVPR 2026) to give the face expert
29
+ broad in-the-wild coverage.
30
+
31
+ > ⚠️ **Research use only.** The audio is segmented from public talking-head
32
+ > videos. This dataset is released under **CC-BY-NC-4.0 for non-commercial
33
+ > research only**. Do not use it for commercial purposes.
34
+
35
+ ## Download
36
+
37
+ ```bash
38
+ huggingface-cli download JuzeZhang/WebTalk-Synthetic \
39
+ --repo-type dataset --local-dir WebTalk-Synthetic
40
+ ```
41
+
42
+ Each modality is shipped as a single `.tar` (far faster to upload/sync than ~50k
43
+ loose files). Extract them in place after download:
44
+
45
+ ```bash
46
+ cd WebTalk-Synthetic
47
+ for f in audios audios_token_glm FLAME_coeffs_25 transcripts; do tar -xf "$f.tar"; done
48
+ # optionally: rm *.tar
49
+ ```
50
+
51
+ ## Dataset structure
52
+
53
+ In the repo (as shipped):
54
+
55
+ ```
56
+ WebTalk-Synthetic/
57
+ ├── audios.tar → audios/ (16 kHz mono WAV, one per clip)
58
+ ├── audios_token_glm.tar → audios_token_glm/ (GLM-4-Voice audio tokens, one .npy per clip)
59
+ ├── FLAME_coeffs_25.tar → FLAME_coeffs_25/ (synthetic FLAME face motion, one .npz, 25 fps)
60
+ ├── transcripts.tar → transcripts/ (one .txt per clip)
61
+ ├── train.txt (12,075 clip stems)
62
+ ├── val.txt (290 clip stems)
63
+ ├── test.txt (304 clip stems)
64
+ ├── README.md
65
+ └── LICENSE
66
+ ```
67
+
68
+ `audios_token_glm/<stem>.npy` is a `(N,) int64` array of
69
+ [GLM-4-Voice](https://github.com/THUDM/GLM-4-Voice) discrete audio tokens,
70
+ provided so you can skip re-running audio tokenization.
71
+
72
+ Every modality is keyed by a clip stem of the form `<session>_<segment>`
73
+ (e.g. `202008647_0001`); `audios/<stem>.wav`, `FLAME_coeffs_25/<stem>.npz`, and
74
+ `transcripts/<stem>.txt` all refer to the same clip.
75
+
76
+ - **12,669 clips total** (12,075 train / 290 val / 304 test).
77
+
78
+ ### FLAME motion format (`FLAME_coeffs_25/<stem>.npz`)
79
+
80
+ | Key | Shape | dtype | Description |
81
+ |---|---|---|---|
82
+ | `exp` | `(T, 100)` | float32 | FLAME expression coefficients |
83
+ | `shape` | `(T, 100)` | float64 | FLAME shape coefficients |
84
+ | `pose` | `(T, 6)` | float32 | head pose (3) + jaw pose (3), axis-angle |
85
+ | `mocap_frame_rate` | scalar | int64 | 25 |
86
+
87
+ `T` is the per-clip frame count at 25 fps.
88
+
89
+ ### Audio
90
+
91
+ 16 kHz mono PCM WAV, ~8 s per clip.
92
+
93
+ ## Usage
94
+
95
+ Load a clip directly:
96
+
97
+ ```python
98
+ import numpy as np, soundfile as sf
99
+
100
+ stem = "202008647_0001"
101
+ audio, sr = sf.read(f"audios/{stem}.wav") # 16 kHz mono
102
+ coef = np.load(f"FLAME_coeffs_25/{stem}.npz") # exp / shape / pose
103
+ text = open(f"transcripts/{stem}.txt").read()
104
+ ```
105
+
106
+ The full ViBES preprocessing recipe (audio tokenization, face VQ-VAE
107
+ tokenization, and building the training-ready HuggingFace dataset) is documented
108
+ in [`docs/1-data/webtalk_synthetic.md`](https://github.com/Juzezhang/ViBES/blob/main/docs/1-data/webtalk_synthetic.md).
109
+
110
+ ## Intended use & limitations
111
+
112
+ - Intended for **non-commercial research** on co-speech facial animation,
113
+ audio-driven face generation, and conversational virtual humans.
114
+ - The facial motion is **model-generated**, not ground-truth capture; it reflects
115
+ the biases and failure modes of the audio-driven face model that produced it.
116
+ - Audio originates from public talking-head videos; treat it accordingly and do
117
+ not attempt to re-identify speakers.
118
+
119
+ ## License
120
+
121
+ [CC-BY-NC-4.0](https://creativecommons.org/licenses/by-nc/4.0/) — non-commercial
122
+ research use only.
123
+
124
+ ## Citation
125
+
126
+ ```bibtex
127
+ @inproceedings{zhang2026vibes,
128
+ title={ViBES: A Conversational Agent with Behaviorally-Intelligent 3D Virtual Body},
129
+ author={Juze Zhang and Changan Chen and Xin Chen and Heng Yu and Tiange Xiang and Ali Sartaz Khan and Shrinidhi Kowshika Lakshmikanth and Ehsan Adeli},
130
+ booktitle={CVPR},
131
+ year={2026},
132
+ }
133
+ ```
audios.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8167cee6cc15d417ee7a6cf10b3a0445c9b1526dfc4eb1272ce59f1d9d2c03bb
3
+ size 16615966720
audios_token_glm.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9623d5c259362ca53fb6779592070987ee103507616db3af5edcaddd33e301a4
3
+ size 63098880
test.txt ADDED
@@ -0,0 +1,304 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 202008681_0001
2
+ 202008681_0002
3
+ 202008681_0003
4
+ 202008681_0004
5
+ 202008681_0005
6
+ 202008681_0006
7
+ 202008681_0007
8
+ 202008681_0008
9
+ 202008681_0009
10
+ 202008681_0010
11
+ 202008681_0011
12
+ 202008681_0012
13
+ 202008681_0013
14
+ 202008681_0014
15
+ 202008681_0015
16
+ 202008681_0016
17
+ 202008681_0017
18
+ 202008681_0018
19
+ 202008681_0019
20
+ 202008681_0020
21
+ 202008681_0021
22
+ 202008681_0022
23
+ 202008681_0023
24
+ 202008681_0024
25
+ 202008681_0025
26
+ 202008681_0026
27
+ 202008681_0027
28
+ 202008681_0028
29
+ 202008681_0029
30
+ 202008681_0030
31
+ 202008681_0031
32
+ 202008681_0032
33
+ 202008681_0033
34
+ 202008681_0034
35
+ 202008681_0035
36
+ 202008681_0036
37
+ 202008681_0037
38
+ 202008681_0038
39
+ 202008681_0039
40
+ 202008681_0040
41
+ 202008681_0041
42
+ 202008681_0042
43
+ 202008681_0043
44
+ 202008681_0044
45
+ 202008681_0045
46
+ 202008681_0046
47
+ 202008681_0047
48
+ 202008681_0048
49
+ 202008681_0049
50
+ 202008681_0050
51
+ 202008681_0051
52
+ 202008681_0052
53
+ 202008681_0053
54
+ 202008681_0054
55
+ 202008681_0055
56
+ 202008681_0056
57
+ 202008681_0057
58
+ 202008681_0058
59
+ 202008681_0059
60
+ 202008681_0060
61
+ 202008681_0061
62
+ 202008681_0062
63
+ 202008681_0063
64
+ 202008681_0064
65
+ 202008681_0065
66
+ 202008681_0066
67
+ 202008681_0067
68
+ 202008681_0068
69
+ 202008681_0069
70
+ 202008681_0070
71
+ 202008681_0071
72
+ 202008681_0072
73
+ 202008681_0073
74
+ 202008681_0074
75
+ 202008681_0075
76
+ 202008681_0076
77
+ 202008681_0077
78
+ 202008681_0078
79
+ 202008681_0079
80
+ 202008681_0080
81
+ 202008681_0081
82
+ 202008681_0082
83
+ 202008681_0083
84
+ 202008681_0084
85
+ 202008681_0085
86
+ 202008681_0086
87
+ 202008681_0087
88
+ 202008681_0088
89
+ 202008681_0089
90
+ 202008681_0090
91
+ 202008681_0091
92
+ 202008681_0092
93
+ 202008681_0093
94
+ 202008681_0094
95
+ 202008681_0095
96
+ 202008681_0096
97
+ 202008681_0097
98
+ 202008681_0098
99
+ 202008681_0099
100
+ 202008681_0100
101
+ 202008681_0101
102
+ 202008681_0102
103
+ 202008681_0103
104
+ 202008681_0104
105
+ 202008681_0105
106
+ 202008681_0106
107
+ 202008681_0107
108
+ 202008681_0108
109
+ 202008681_0109
110
+ 202008681_0110
111
+ 202008681_0111
112
+ 202008681_0112
113
+ 202008681_0113
114
+ 202008681_0114
115
+ 202008681_0115
116
+ 202008681_0116
117
+ 202008681_0117
118
+ 202008681_0118
119
+ 202008700_0001
120
+ 202008700_0002
121
+ 202008700_0003
122
+ 202008700_0004
123
+ 202008700_0005
124
+ 202008700_0006
125
+ 202008700_0007
126
+ 202008700_0008
127
+ 202008700_0009
128
+ 202008700_0010
129
+ 202008700_0011
130
+ 202008700_0012
131
+ 202008700_0013
132
+ 202008700_0014
133
+ 202008700_0015
134
+ 202008700_0016
135
+ 202008700_0017
136
+ 202008700_0018
137
+ 202008700_0019
138
+ 202008700_0020
139
+ 202008700_0021
140
+ 202008700_0022
141
+ 202008700_0023
142
+ 202008700_0024
143
+ 202008700_0025
144
+ 202008700_0026
145
+ 202008700_0027
146
+ 202008700_0028
147
+ 202008700_0029
148
+ 202008700_0030
149
+ 202008700_0031
150
+ 202008700_0032
151
+ 202008700_0033
152
+ 202008700_0034
153
+ 202008700_0035
154
+ 202008700_0036
155
+ 202008700_0037
156
+ 202008700_0038
157
+ 202008700_0039
158
+ 202008700_0040
159
+ 202008700_0041
160
+ 202008700_0042
161
+ 202008700_0043
162
+ 202008701_0001
163
+ 202008701_0002
164
+ 202008701_0003
165
+ 202008701_0004
166
+ 202008701_0005
167
+ 202008701_0006
168
+ 202008701_0007
169
+ 202008701_0008
170
+ 202008701_0009
171
+ 202008701_0010
172
+ 202008701_0011
173
+ 202008701_0012
174
+ 202008701_0013
175
+ 202008701_0014
176
+ 202008738_0001
177
+ 202008738_0002
178
+ 202008738_0003
179
+ 202008738_0004
180
+ 202008738_0005
181
+ 202008738_0006
182
+ 202008738_0007
183
+ 202008738_0008
184
+ 202008738_0009
185
+ 202008738_0010
186
+ 202008738_0011
187
+ 202008738_0012
188
+ 202008738_0013
189
+ 202008738_0014
190
+ 202008738_0015
191
+ 202008738_0016
192
+ 202008738_0017
193
+ 202008792_0001
194
+ 202008792_0002
195
+ 202008792_0003
196
+ 202008792_0004
197
+ 202008792_0005
198
+ 202008792_0006
199
+ 202008792_0007
200
+ 202008792_0008
201
+ 202008792_0009
202
+ 202008792_0010
203
+ 202008792_0011
204
+ 202008792_0012
205
+ 202009421_0001
206
+ 202009421_0002
207
+ 202009421_0003
208
+ 202009421_0004
209
+ 202009421_0005
210
+ 202009421_0006
211
+ 202009421_0007
212
+ 202009421_0008
213
+ 202009421_0009
214
+ 202009421_0010
215
+ 202009421_0011
216
+ 202009421_0012
217
+ 202009421_0013
218
+ 202009421_0014
219
+ 202009421_0015
220
+ 202009421_0016
221
+ 202009421_0017
222
+ 202009421_0018
223
+ 202009769_0001
224
+ 202009769_0002
225
+ 202009769_0003
226
+ 202009769_0004
227
+ 202009769_0005
228
+ 202009769_0006
229
+ 202009769_0007
230
+ 202009769_0008
231
+ 202009769_0009
232
+ 202009769_0010
233
+ 202009769_0011
234
+ 202009769_0012
235
+ 202009769_0013
236
+ 202009769_0014
237
+ 202009769_0015
238
+ 202009769_0016
239
+ 202009769_0017
240
+ 202009769_0018
241
+ 202009769_0019
242
+ 202009769_0020
243
+ 202009769_0021
244
+ 202009769_0022
245
+ 202009769_0023
246
+ 202009769_0024
247
+ 202009769_0025
248
+ 202009769_0026
249
+ 202009769_0027
250
+ 202009769_0028
251
+ 202009769_0029
252
+ 202009769_0030
253
+ 202010132_0001
254
+ 202010132_0002
255
+ 202010132_0003
256
+ 202010132_0004
257
+ 202010132_0005
258
+ 202010132_0006
259
+ 202010132_0007
260
+ 202010132_0008
261
+ 202010132_0009
262
+ 202010132_0010
263
+ 202010132_0011
264
+ 202010132_0012
265
+ 202010132_0013
266
+ 202010132_0014
267
+ 202010132_0015
268
+ 202010132_0016
269
+ 202010132_0017
270
+ 202010132_0018
271
+ 202010132_0019
272
+ 202010132_0020
273
+ 202010132_0021
274
+ 202010132_0022
275
+ 202010132_0023
276
+ 202010430_0001
277
+ 202010430_0002
278
+ 202010430_0003
279
+ 202010430_0004
280
+ 202010430_0005
281
+ 202010430_0006
282
+ 202010430_0007
283
+ 202010430_0008
284
+ 202010430_0009
285
+ 202010805_0001
286
+ 202010805_0002
287
+ 202010805_0003
288
+ 202010805_0004
289
+ 202010805_0005
290
+ 202010805_0006
291
+ 202010805_0007
292
+ 202010805_0008
293
+ 202010805_0009
294
+ 202010805_0010
295
+ 202010805_0011
296
+ 202010805_0012
297
+ 202010805_0013
298
+ 202010805_0014
299
+ 202010805_0015
300
+ 202010805_0016
301
+ 202010805_0017
302
+ 202010805_0018
303
+ 202010805_0019
304
+ 202010805_0020
train.txt ADDED
The diff for this file is too large to render. See raw diff
 
transcripts.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:326e15b0f2573b2f93e69f967108f8c2c0deccacc5837732bc5982438b5ad0ce
3
+ size 75776000
val.txt ADDED
@@ -0,0 +1,290 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 202008657_0001
2
+ 202008657_0002
3
+ 202008657_0003
4
+ 202008657_0004
5
+ 202008657_0005
6
+ 202008657_0006
7
+ 202008657_0007
8
+ 202008657_0008
9
+ 202008657_0009
10
+ 202008657_0010
11
+ 202008657_0011
12
+ 202008657_0012
13
+ 202008657_0013
14
+ 202008657_0014
15
+ 202008657_0015
16
+ 202008657_0016
17
+ 202008657_0017
18
+ 202008657_0018
19
+ 202008657_0019
20
+ 202008666_0001
21
+ 202008666_0002
22
+ 202008666_0003
23
+ 202008666_0004
24
+ 202008666_0005
25
+ 202008666_0006
26
+ 202008666_0007
27
+ 202008666_0008
28
+ 202008666_0009
29
+ 202008666_0010
30
+ 202008666_0011
31
+ 202008666_0012
32
+ 202008666_0013
33
+ 202008666_0014
34
+ 202008666_0015
35
+ 202008666_0016
36
+ 202008666_0017
37
+ 202008666_0018
38
+ 202008666_0019
39
+ 202008666_0020
40
+ 202008666_0021
41
+ 202008666_0022
42
+ 202008666_0023
43
+ 202008666_0024
44
+ 202008666_0025
45
+ 202008666_0026
46
+ 202008666_0027
47
+ 202008666_0028
48
+ 202008666_0029
49
+ 202008666_0030
50
+ 202008666_0031
51
+ 202008666_0032
52
+ 202008666_0033
53
+ 202008666_0034
54
+ 202008666_0035
55
+ 202008666_0036
56
+ 202008666_0037
57
+ 202008666_0038
58
+ 202008666_0039
59
+ 202008666_0040
60
+ 202008666_0041
61
+ 202008666_0042
62
+ 202008666_0043
63
+ 202008706_0001
64
+ 202008706_0002
65
+ 202008706_0003
66
+ 202008706_0004
67
+ 202008706_0005
68
+ 202008706_0006
69
+ 202008706_0007
70
+ 202008706_0008
71
+ 202008706_0009
72
+ 202008706_0010
73
+ 202008706_0011
74
+ 202008706_0012
75
+ 202008793_0001
76
+ 202008793_0002
77
+ 202008793_0003
78
+ 202008793_0004
79
+ 202008793_0005
80
+ 202008793_0006
81
+ 202008793_0007
82
+ 202008793_0008
83
+ 202008793_0009
84
+ 202008793_0010
85
+ 202008793_0011
86
+ 202008793_0012
87
+ 202008793_0013
88
+ 202008793_0014
89
+ 202008793_0015
90
+ 202008793_0016
91
+ 202008793_0017
92
+ 202008793_0018
93
+ 202008793_0019
94
+ 202008793_0020
95
+ 202008793_0021
96
+ 202008793_0022
97
+ 202008873_0001
98
+ 202008873_0002
99
+ 202008873_0003
100
+ 202008873_0004
101
+ 202008873_0005
102
+ 202008873_0006
103
+ 202008873_0007
104
+ 202008873_0008
105
+ 202008873_0009
106
+ 202008873_0010
107
+ 202008873_0011
108
+ 202008873_0012
109
+ 202008873_0013
110
+ 202008873_0014
111
+ 202008873_0015
112
+ 202008873_0016
113
+ 202008873_0017
114
+ 202008873_0018
115
+ 202008901_0001
116
+ 202008901_0002
117
+ 202008901_0003
118
+ 202008901_0004
119
+ 202008901_0005
120
+ 202008901_0006
121
+ 202008901_0007
122
+ 202008901_0008
123
+ 202009007_0001
124
+ 202009007_0002
125
+ 202009007_0003
126
+ 202009007_0004
127
+ 202009007_0005
128
+ 202009024_0001
129
+ 202009024_0002
130
+ 202009024_0003
131
+ 202009024_0004
132
+ 202009024_0005
133
+ 202009024_0006
134
+ 202009024_0007
135
+ 202009024_0008
136
+ 202009024_0009
137
+ 202009024_0010
138
+ 202009024_0011
139
+ 202009024_0012
140
+ 202009024_0013
141
+ 202009024_0014
142
+ 202009024_0015
143
+ 202009024_0016
144
+ 202009024_0017
145
+ 202009024_0018
146
+ 202010098_0001
147
+ 202010098_0002
148
+ 202010098_0003
149
+ 202010098_0004
150
+ 202010098_0005
151
+ 202010098_0006
152
+ 202010098_0007
153
+ 202010098_0008
154
+ 202010098_0009
155
+ 202010098_0010
156
+ 202010098_0011
157
+ 202010098_0012
158
+ 202010098_0013
159
+ 202010098_0014
160
+ 202010098_0015
161
+ 202010098_0016
162
+ 202010098_0017
163
+ 202010098_0018
164
+ 202010098_0019
165
+ 202010098_0020
166
+ 202010098_0021
167
+ 202010098_0022
168
+ 202010098_0023
169
+ 202010098_0024
170
+ 202010098_0025
171
+ 202010098_0026
172
+ 202010098_0027
173
+ 202010098_0028
174
+ 202010098_0029
175
+ 202010098_0030
176
+ 202010098_0031
177
+ 202010098_0032
178
+ 202010098_0033
179
+ 202010098_0034
180
+ 202010098_0035
181
+ 202010098_0036
182
+ 202010098_0037
183
+ 202010098_0038
184
+ 202010098_0039
185
+ 202010098_0040
186
+ 202010098_0041
187
+ 202010098_0042
188
+ 202010098_0043
189
+ 202010098_0044
190
+ 202010297_0001
191
+ 202010297_0002
192
+ 202010297_0003
193
+ 202010297_0004
194
+ 202010297_0005
195
+ 202010297_0006
196
+ 202010297_0007
197
+ 202010297_0008
198
+ 202010297_0009
199
+ 202010297_0010
200
+ 202010297_0011
201
+ 202010297_0012
202
+ 202010297_0013
203
+ 202010297_0014
204
+ 202010297_0015
205
+ 202010297_0016
206
+ 202010297_0017
207
+ 202010297_0018
208
+ 202010297_0019
209
+ 202010297_0020
210
+ 202010297_0021
211
+ 202010297_0022
212
+ 202010297_0023
213
+ 202010297_0024
214
+ 202010297_0025
215
+ 202010297_0026
216
+ 202010297_0027
217
+ 202010297_0028
218
+ 202010297_0029
219
+ 202010297_0030
220
+ 202010297_0031
221
+ 202010297_0032
222
+ 202010297_0033
223
+ 202010297_0034
224
+ 202010297_0035
225
+ 202010297_0036
226
+ 202010297_0037
227
+ 202010297_0038
228
+ 202010297_0039
229
+ 202010297_0040
230
+ 202010297_0041
231
+ 202010297_0042
232
+ 202010297_0043
233
+ 202010297_0044
234
+ 202010297_0045
235
+ 202010297_0046
236
+ 202010297_0047
237
+ 202010297_0048
238
+ 202010297_0049
239
+ 202010297_0050
240
+ 202010297_0051
241
+ 202010297_0052
242
+ 202010297_0053
243
+ 202010297_0054
244
+ 202010297_0055
245
+ 202010297_0056
246
+ 202010297_0057
247
+ 202010297_0058
248
+ 202010297_0059
249
+ 202010297_0060
250
+ 202010545_0001
251
+ 202010545_0002
252
+ 202010545_0003
253
+ 202010545_0004
254
+ 202010545_0005
255
+ 202010545_0006
256
+ 202010545_0007
257
+ 202010545_0008
258
+ 202010545_0009
259
+ 202010545_0010
260
+ 202010545_0011
261
+ 202010545_0012
262
+ 202010545_0013
263
+ 202010545_0014
264
+ 202010545_0015
265
+ 202010545_0016
266
+ 202010545_0017
267
+ 202010545_0018
268
+ 202010545_0019
269
+ 202010545_0020
270
+ 202010545_0021
271
+ 202010545_0022
272
+ 202010545_0023
273
+ 202010545_0024
274
+ 202010545_0025
275
+ 202010545_0026
276
+ 202010795_0001
277
+ 202010795_0002
278
+ 202010795_0003
279
+ 202010795_0004
280
+ 202010795_0005
281
+ 202010795_0006
282
+ 202010795_0007
283
+ 202010795_0008
284
+ 202010795_0009
285
+ 202010795_0010
286
+ 202010795_0011
287
+ 202010795_0012
288
+ 202010795_0013
289
+ 202010795_0014
290
+ 202010795_0015