SRqpczz commited on
Commit
7d604c8
·
verified ·
1 Parent(s): 1cd29e4

Upload folder using huggingface_hub

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
prepare_raw_metadata.py ADDED
@@ -0,0 +1,102 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import argparse
2
+ import csv
3
+ import uuid
4
+ import wave
5
+ from pathlib import Path
6
+
7
+
8
+ def read_wav_info(wav_path: Path) -> tuple[int, float]:
9
+ with wave.open(str(wav_path), "rb") as wav_file:
10
+ sample_rate = wav_file.getframerate()
11
+ frame_count = wav_file.getnframes()
12
+ duration_seconds = frame_count / sample_rate if sample_rate else 0.0
13
+ return sample_rate, duration_seconds
14
+
15
+
16
+ def collect_metadata(raw_dir: Path) -> list[dict[str, object]]:
17
+ wav_files = sorted(raw_dir.glob("*.wav"))
18
+ metadata = []
19
+ for index, wav_path in enumerate(wav_files):
20
+ sample_rate, duration_seconds = read_wav_info(wav_path)
21
+ sequence = f"{index:08d}"
22
+ metadata.append(
23
+ {
24
+ "source_path": wav_path,
25
+ "sequence": sequence,
26
+ "sample_rate": sample_rate,
27
+ "duration_seconds": duration_seconds,
28
+ }
29
+ )
30
+ return metadata
31
+
32
+
33
+ def rename_files(metadata: list[dict[str, object]]) -> None:
34
+ rename_pairs = []
35
+ finalized_pairs = []
36
+ for item in metadata:
37
+ source_path = item["source_path"]
38
+ temp_name = f".__tmp__{uuid.uuid4().hex}.wav"
39
+ temp_path = source_path.with_name(temp_name)
40
+ source_path.rename(temp_path)
41
+ rename_pairs.append((temp_path, source_path))
42
+ item["source_path"] = temp_path
43
+
44
+ try:
45
+ for item in metadata:
46
+ temp_path = item["source_path"]
47
+ final_path = temp_path.with_name(f"{item['sequence']}.wav")
48
+ temp_path.rename(final_path)
49
+ finalized_pairs.append((final_path, temp_path))
50
+ item["final_path"] = final_path
51
+ except Exception:
52
+ for final_path, temp_path in reversed(finalized_pairs):
53
+ if final_path.exists():
54
+ final_path.rename(temp_path)
55
+ for temp_path, original_path in rename_pairs:
56
+ if temp_path.exists():
57
+ temp_path.rename(original_path)
58
+ raise
59
+
60
+
61
+ def write_csv(csv_path: Path, metadata: list[dict[str, object]]) -> None:
62
+ with csv_path.open("w", newline="", encoding="utf-8-sig") as csv_file:
63
+ writer = csv.DictWriter(
64
+ csv_file,
65
+ fieldnames=["sequence", "sample_rate", "duration_seconds"],
66
+ )
67
+ writer.writeheader()
68
+ for item in metadata:
69
+ writer.writerow(
70
+ {
71
+ "sequence": item["sequence"],
72
+ "sample_rate": item["sample_rate"],
73
+ "duration_seconds": f"{item['duration_seconds']:.6f}",
74
+ }
75
+ )
76
+
77
+
78
+ def main() -> None:
79
+ parser = argparse.ArgumentParser(
80
+ description="Rename WAV files under raw/ to 8-digit integers and rebuild raw.csv."
81
+ )
82
+ parser.add_argument("--raw-dir", default="raw", help="Directory containing WAV files.")
83
+ parser.add_argument("--csv-path", default="raw.csv", help="Output CSV path.")
84
+ args = parser.parse_args()
85
+
86
+ raw_dir = Path(args.raw_dir).resolve()
87
+ csv_path = Path(args.csv_path).resolve()
88
+
89
+ if not raw_dir.exists():
90
+ raise FileNotFoundError(f"Raw directory not found: {raw_dir}")
91
+
92
+ metadata = collect_metadata(raw_dir)
93
+ rename_files(metadata)
94
+ write_csv(csv_path, metadata)
95
+
96
+ print(f"Processed {len(metadata)} wav files.")
97
+ print(f"Renamed files in: {raw_dir}")
98
+ print(f"Wrote metadata to: {csv_path}")
99
+
100
+
101
+ if __name__ == "__main__":
102
+ main()
raw.csv CHANGED
@@ -1,4 +1,760 @@
1
- sequence,label(仅用作示例,无实际意义),other_info(仅用作示例,无实际意义)
2
- 000000,1,example_info_0
3
- 000001,0,example_info_1
4
- 000002,1,example_info_2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ sequence,sample_rate,duration_seconds
2
+ 00000000,16000,10.000000
3
+ 00000001,16000,10.000000
4
+ 00000002,16000,10.000000
5
+ 00000003,16000,10.000000
6
+ 00000004,16000,10.000000
7
+ 00000005,16000,8.000000
8
+ 00000006,16000,10.000000
9
+ 00000007,16000,10.000000
10
+ 00000008,16000,10.000000
11
+ 00000009,16000,10.000000
12
+ 00000010,16000,10.000000
13
+ 00000011,16000,10.000000
14
+ 00000012,16000,10.000000
15
+ 00000013,16000,10.000000
16
+ 00000014,16000,10.000000
17
+ 00000015,16000,10.000000
18
+ 00000016,16000,10.000000
19
+ 00000017,16000,10.000000
20
+ 00000018,16000,10.000000
21
+ 00000019,16000,10.000000
22
+ 00000020,16000,10.000000
23
+ 00000021,16000,10.000000
24
+ 00000022,16000,10.000000
25
+ 00000023,16000,10.000000
26
+ 00000024,16000,9.999000
27
+ 00000025,16000,10.000000
28
+ 00000026,16000,10.000000
29
+ 00000027,16000,10.000000
30
+ 00000028,16000,10.000000
31
+ 00000029,16000,10.000000
32
+ 00000030,16000,10.000000
33
+ 00000031,16000,10.000000
34
+ 00000032,16000,10.000000
35
+ 00000033,16000,10.000000
36
+ 00000034,16000,10.000000
37
+ 00000035,16000,10.000000
38
+ 00000036,16000,10.000000
39
+ 00000037,16000,10.000000
40
+ 00000038,16000,10.000000
41
+ 00000039,16000,10.000000
42
+ 00000040,16000,10.000000
43
+ 00000041,16000,10.000000
44
+ 00000042,16000,10.000000
45
+ 00000043,16000,10.000000
46
+ 00000044,16000,10.000000
47
+ 00000045,16000,10.000000
48
+ 00000046,16000,8.000000
49
+ 00000047,16000,10.000000
50
+ 00000048,16000,10.000000
51
+ 00000049,16000,10.000000
52
+ 00000050,16000,10.000000
53
+ 00000051,16000,10.000000
54
+ 00000052,16000,10.000000
55
+ 00000053,16000,10.000000
56
+ 00000054,16000,10.000000
57
+ 00000055,16000,10.000000
58
+ 00000056,16000,10.000000
59
+ 00000057,16000,10.000000
60
+ 00000058,16000,10.000000
61
+ 00000059,16000,10.000000
62
+ 00000060,16000,10.000000
63
+ 00000061,16000,10.000000
64
+ 00000062,16000,10.000000
65
+ 00000063,16000,10.000000
66
+ 00000064,16000,10.000000
67
+ 00000065,16000,10.000000
68
+ 00000066,16000,10.000000
69
+ 00000067,16000,10.000000
70
+ 00000068,16000,10.000000
71
+ 00000069,16000,10.000000
72
+ 00000070,16000,10.000000
73
+ 00000071,16000,10.000000
74
+ 00000072,16000,10.000000
75
+ 00000073,16000,10.000000
76
+ 00000074,16000,10.000000
77
+ 00000075,16000,10.000000
78
+ 00000076,16000,10.000000
79
+ 00000077,16000,10.000000
80
+ 00000078,16000,10.000000
81
+ 00000079,16000,10.000000
82
+ 00000080,16000,10.000000
83
+ 00000081,16000,10.000000
84
+ 00000082,16000,10.000000
85
+ 00000083,16000,10.000000
86
+ 00000084,16000,10.000000
87
+ 00000085,16000,10.000000
88
+ 00000086,16000,10.000000
89
+ 00000087,16000,10.000000
90
+ 00000088,16000,10.000000
91
+ 00000089,16000,10.000000
92
+ 00000090,16000,10.000000
93
+ 00000091,16000,10.000000
94
+ 00000092,16000,10.000000
95
+ 00000093,16000,10.000000
96
+ 00000094,16000,10.000000
97
+ 00000095,16000,10.000000
98
+ 00000096,16000,10.000000
99
+ 00000097,16000,10.000000
100
+ 00000098,16000,8.000000
101
+ 00000099,16000,10.000000
102
+ 00000100,16000,10.000000
103
+ 00000101,16000,10.000000
104
+ 00000102,16000,10.000000
105
+ 00000103,16000,10.000000
106
+ 00000104,16000,10.000000
107
+ 00000105,16000,10.000000
108
+ 00000106,16000,10.000000
109
+ 00000107,16000,10.000000
110
+ 00000108,16000,10.000000
111
+ 00000109,16000,10.000000
112
+ 00000110,16000,10.000000
113
+ 00000111,16000,10.000000
114
+ 00000112,16000,10.000000
115
+ 00000113,16000,10.000000
116
+ 00000114,16000,10.000000
117
+ 00000115,16000,10.000000
118
+ 00000116,16000,10.000000
119
+ 00000117,16000,10.000000
120
+ 00000118,16000,10.000000
121
+ 00000119,16000,10.000000
122
+ 00000120,16000,10.000000
123
+ 00000121,16000,10.000000
124
+ 00000122,16000,10.000000
125
+ 00000123,16000,10.000000
126
+ 00000124,16000,10.000000
127
+ 00000125,16000,10.000000
128
+ 00000126,16000,10.000000
129
+ 00000127,16000,10.000000
130
+ 00000128,16000,10.000000
131
+ 00000129,16000,10.000000
132
+ 00000130,16000,10.000000
133
+ 00000131,16000,10.000000
134
+ 00000132,16000,10.000000
135
+ 00000133,16000,10.000000
136
+ 00000134,16000,10.000000
137
+ 00000135,16000,10.000000
138
+ 00000136,16000,10.000000
139
+ 00000137,16000,10.000000
140
+ 00000138,16000,10.000000
141
+ 00000139,16000,10.000000
142
+ 00000140,16000,10.000000
143
+ 00000141,16000,10.000000
144
+ 00000142,16000,10.000000
145
+ 00000143,16000,10.000000
146
+ 00000144,16000,10.000000
147
+ 00000145,16000,10.000000
148
+ 00000146,16000,10.000000
149
+ 00000147,16000,10.000000
150
+ 00000148,16000,10.000000
151
+ 00000149,16000,10.000000
152
+ 00000150,16000,9.000000
153
+ 00000151,16000,10.000000
154
+ 00000152,16000,10.000000
155
+ 00000153,16000,10.000000
156
+ 00000154,16000,10.000000
157
+ 00000155,16000,10.000000
158
+ 00000156,16000,10.000000
159
+ 00000157,16000,10.000000
160
+ 00000158,16000,10.000000
161
+ 00000159,16000,10.000000
162
+ 00000160,16000,10.000000
163
+ 00000161,16000,10.000000
164
+ 00000162,16000,10.000000
165
+ 00000163,16000,10.000000
166
+ 00000164,16000,10.000000
167
+ 00000165,16000,10.000000
168
+ 00000166,16000,10.000000
169
+ 00000167,16000,10.000000
170
+ 00000168,16000,10.000000
171
+ 00000169,16000,10.000000
172
+ 00000170,16000,10.000000
173
+ 00000171,16000,10.000000
174
+ 00000172,16000,10.000000
175
+ 00000173,16000,10.000000
176
+ 00000174,16000,10.000000
177
+ 00000175,16000,10.000000
178
+ 00000176,16000,10.000000
179
+ 00000177,16000,10.000000
180
+ 00000178,16000,10.000000
181
+ 00000179,16000,10.000000
182
+ 00000180,16000,10.000000
183
+ 00000181,16000,10.000000
184
+ 00000182,16000,10.000000
185
+ 00000183,16000,10.000000
186
+ 00000184,16000,10.000000
187
+ 00000185,16000,10.000000
188
+ 00000186,16000,10.000000
189
+ 00000187,16000,10.000000
190
+ 00000188,16000,10.000000
191
+ 00000189,16000,10.000000
192
+ 00000190,16000,10.000000
193
+ 00000191,16000,10.000000
194
+ 00000192,16000,10.000000
195
+ 00000193,16000,10.000000
196
+ 00000194,16000,10.000000
197
+ 00000195,16000,10.000000
198
+ 00000196,16000,10.000000
199
+ 00000197,16000,10.000000
200
+ 00000198,16000,10.000000
201
+ 00000199,16000,10.000000
202
+ 00000200,16000,10.000000
203
+ 00000201,16000,10.000000
204
+ 00000202,16000,10.000000
205
+ 00000203,16000,10.000000
206
+ 00000204,16000,10.000000
207
+ 00000205,16000,10.000000
208
+ 00000206,16000,10.000000
209
+ 00000207,16000,10.000000
210
+ 00000208,16000,10.000000
211
+ 00000209,16000,10.000000
212
+ 00000210,16000,10.000000
213
+ 00000211,16000,10.000000
214
+ 00000212,16000,10.000000
215
+ 00000213,16000,10.000000
216
+ 00000214,16000,10.000000
217
+ 00000215,16000,10.000000
218
+ 00000216,16000,10.000000
219
+ 00000217,16000,10.000000
220
+ 00000218,16000,10.000000
221
+ 00000219,16000,10.000000
222
+ 00000220,16000,10.000000
223
+ 00000221,16000,10.000000
224
+ 00000222,16000,10.000000
225
+ 00000223,16000,10.000000
226
+ 00000224,16000,10.000000
227
+ 00000225,16000,10.000000
228
+ 00000226,16000,10.000000
229
+ 00000227,16000,10.000000
230
+ 00000228,16000,10.000000
231
+ 00000229,16000,10.000000
232
+ 00000230,16000,10.000000
233
+ 00000231,16000,10.000000
234
+ 00000232,16000,10.000000
235
+ 00000233,16000,10.000000
236
+ 00000234,16000,10.000000
237
+ 00000235,16000,10.000000
238
+ 00000236,16000,10.000000
239
+ 00000237,16000,10.000000
240
+ 00000238,16000,10.000000
241
+ 00000239,16000,10.000000
242
+ 00000240,16000,10.000000
243
+ 00000241,16000,10.000000
244
+ 00000242,16000,10.000000
245
+ 00000243,16000,10.000000
246
+ 00000244,16000,10.000000
247
+ 00000245,16000,10.000000
248
+ 00000246,16000,10.000000
249
+ 00000247,16000,10.000000
250
+ 00000248,16000,10.000000
251
+ 00000249,16000,10.000000
252
+ 00000250,16000,10.000000
253
+ 00000251,16000,10.000000
254
+ 00000252,16000,10.000000
255
+ 00000253,16000,10.000000
256
+ 00000254,16000,10.000000
257
+ 00000255,16000,10.000000
258
+ 00000256,16000,10.000000
259
+ 00000257,16000,10.000000
260
+ 00000258,16000,10.000000
261
+ 00000259,16000,10.000000
262
+ 00000260,16000,10.000000
263
+ 00000261,16000,10.000000
264
+ 00000262,16000,10.000000
265
+ 00000263,16000,10.000000
266
+ 00000264,16000,10.000000
267
+ 00000265,16000,10.000000
268
+ 00000266,16000,10.000000
269
+ 00000267,16000,10.000000
270
+ 00000268,16000,10.000000
271
+ 00000269,16000,10.000000
272
+ 00000270,16000,10.000000
273
+ 00000271,16000,10.000000
274
+ 00000272,16000,10.000000
275
+ 00000273,16000,10.000000
276
+ 00000274,16000,10.000000
277
+ 00000275,16000,10.000000
278
+ 00000276,16000,10.000000
279
+ 00000277,16000,10.000000
280
+ 00000278,16000,10.000000
281
+ 00000279,16000,10.000000
282
+ 00000280,16000,10.000000
283
+ 00000281,16000,10.000000
284
+ 00000282,16000,10.000000
285
+ 00000283,16000,10.000000
286
+ 00000284,16000,10.000000
287
+ 00000285,16000,10.000000
288
+ 00000286,16000,10.000000
289
+ 00000287,16000,10.000000
290
+ 00000288,16000,10.000000
291
+ 00000289,16000,10.000000
292
+ 00000290,16000,10.000000
293
+ 00000291,16000,10.000000
294
+ 00000292,16000,10.000000
295
+ 00000293,16000,10.000000
296
+ 00000294,16000,10.000000
297
+ 00000295,16000,10.000000
298
+ 00000296,16000,10.000000
299
+ 00000297,16000,10.000000
300
+ 00000298,16000,10.000000
301
+ 00000299,16000,10.000000
302
+ 00000300,16000,10.000000
303
+ 00000301,16000,10.000000
304
+ 00000302,16000,10.000000
305
+ 00000303,16000,10.000000
306
+ 00000304,16000,10.000000
307
+ 00000305,16000,10.000000
308
+ 00000306,16000,10.000000
309
+ 00000307,16000,10.000000
310
+ 00000308,16000,10.000000
311
+ 00000309,16000,10.000000
312
+ 00000310,16000,10.000000
313
+ 00000311,16000,10.000000
314
+ 00000312,16000,10.000000
315
+ 00000313,16000,10.000000
316
+ 00000314,16000,10.000000
317
+ 00000315,16000,10.000000
318
+ 00000316,16000,10.000000
319
+ 00000317,16000,10.000000
320
+ 00000318,16000,10.000000
321
+ 00000319,16000,10.000000
322
+ 00000320,16000,10.000000
323
+ 00000321,16000,10.000000
324
+ 00000322,16000,10.000000
325
+ 00000323,16000,10.000000
326
+ 00000324,16000,10.000000
327
+ 00000325,16000,10.000000
328
+ 00000326,16000,10.000000
329
+ 00000327,16000,10.000000
330
+ 00000328,16000,10.000000
331
+ 00000329,16000,10.000000
332
+ 00000330,16000,10.000000
333
+ 00000331,16000,10.000000
334
+ 00000332,16000,10.000000
335
+ 00000333,16000,10.000000
336
+ 00000334,16000,10.000000
337
+ 00000335,16000,10.000000
338
+ 00000336,16000,10.000000
339
+ 00000337,16000,10.000000
340
+ 00000338,16000,10.000000
341
+ 00000339,16000,10.000000
342
+ 00000340,16000,10.000000
343
+ 00000341,16000,10.000000
344
+ 00000342,16000,10.000000
345
+ 00000343,16000,10.000000
346
+ 00000344,16000,10.000000
347
+ 00000345,16000,10.000000
348
+ 00000346,16000,10.000000
349
+ 00000347,16000,10.000000
350
+ 00000348,16000,10.000000
351
+ 00000349,16000,10.000000
352
+ 00000350,16000,10.000000
353
+ 00000351,16000,10.000000
354
+ 00000352,16000,10.000000
355
+ 00000353,16000,10.000000
356
+ 00000354,16000,10.000000
357
+ 00000355,16000,10.000000
358
+ 00000356,16000,10.000000
359
+ 00000357,16000,10.000000
360
+ 00000358,16000,10.000000
361
+ 00000359,16000,10.000000
362
+ 00000360,16000,10.000000
363
+ 00000361,16000,10.000000
364
+ 00000362,16000,10.000000
365
+ 00000363,16000,10.000000
366
+ 00000364,16000,10.000000
367
+ 00000365,16000,10.000000
368
+ 00000366,16000,10.000000
369
+ 00000367,16000,10.000000
370
+ 00000368,16000,10.000000
371
+ 00000369,16000,10.000000
372
+ 00000370,16000,10.000000
373
+ 00000371,16000,10.000000
374
+ 00000372,16000,10.000000
375
+ 00000373,16000,10.000000
376
+ 00000374,16000,10.000000
377
+ 00000375,16000,10.000000
378
+ 00000376,16000,10.000000
379
+ 00000377,16000,10.000000
380
+ 00000378,16000,10.000000
381
+ 00000379,16000,10.000000
382
+ 00000380,16000,10.000000
383
+ 00000381,16000,7.000000
384
+ 00000382,16000,10.000000
385
+ 00000383,16000,10.000000
386
+ 00000384,16000,10.000000
387
+ 00000385,16000,10.000000
388
+ 00000386,16000,10.000000
389
+ 00000387,16000,10.000000
390
+ 00000388,16000,10.000000
391
+ 00000389,16000,10.000000
392
+ 00000390,16000,10.000000
393
+ 00000391,16000,10.000000
394
+ 00000392,16000,10.000000
395
+ 00000393,16000,10.000000
396
+ 00000394,16000,10.000000
397
+ 00000395,16000,10.000000
398
+ 00000396,16000,10.000000
399
+ 00000397,16000,10.000000
400
+ 00000398,16000,10.000000
401
+ 00000399,16000,10.000000
402
+ 00000400,16000,10.000000
403
+ 00000401,16000,10.000000
404
+ 00000402,16000,10.000000
405
+ 00000403,16000,10.000000
406
+ 00000404,16000,10.000000
407
+ 00000405,16000,10.000000
408
+ 00000406,16000,10.000000
409
+ 00000407,16000,10.000000
410
+ 00000408,16000,10.000000
411
+ 00000409,16000,10.000000
412
+ 00000410,16000,10.000000
413
+ 00000411,16000,10.000000
414
+ 00000412,16000,10.000000
415
+ 00000413,16000,10.000000
416
+ 00000414,16000,10.000000
417
+ 00000415,16000,10.000000
418
+ 00000416,16000,10.000000
419
+ 00000417,16000,10.000000
420
+ 00000418,16000,10.000000
421
+ 00000419,16000,10.000000
422
+ 00000420,16000,10.000000
423
+ 00000421,16000,10.000000
424
+ 00000422,16000,10.000000
425
+ 00000423,16000,10.000000
426
+ 00000424,16000,10.000000
427
+ 00000425,16000,10.000000
428
+ 00000426,16000,10.000000
429
+ 00000427,16000,10.000000
430
+ 00000428,16000,10.000000
431
+ 00000429,16000,10.000000
432
+ 00000430,16000,10.000000
433
+ 00000431,16000,10.000000
434
+ 00000432,16000,10.000000
435
+ 00000433,16000,10.000000
436
+ 00000434,16000,10.000000
437
+ 00000435,16000,10.000000
438
+ 00000436,16000,10.000000
439
+ 00000437,16000,10.000000
440
+ 00000438,16000,10.000000
441
+ 00000439,16000,10.000000
442
+ 00000440,16000,10.000000
443
+ 00000441,16000,10.000000
444
+ 00000442,16000,10.000000
445
+ 00000443,16000,10.000000
446
+ 00000444,16000,10.000000
447
+ 00000445,16000,10.000000
448
+ 00000446,16000,10.000000
449
+ 00000447,16000,10.000000
450
+ 00000448,16000,10.000000
451
+ 00000449,16000,10.000000
452
+ 00000450,16000,10.000000
453
+ 00000451,16000,10.000000
454
+ 00000452,16000,10.000000
455
+ 00000453,16000,10.000000
456
+ 00000454,16000,10.000000
457
+ 00000455,16000,10.000000
458
+ 00000456,16000,10.000000
459
+ 00000457,16000,10.000000
460
+ 00000458,16000,8.999000
461
+ 00000459,16000,10.000000
462
+ 00000460,16000,10.000000
463
+ 00000461,16000,10.000000
464
+ 00000462,16000,10.000000
465
+ 00000463,16000,10.000000
466
+ 00000464,16000,10.000000
467
+ 00000465,16000,10.000000
468
+ 00000466,16000,10.000000
469
+ 00000467,16000,10.000000
470
+ 00000468,16000,10.000000
471
+ 00000469,16000,10.000000
472
+ 00000470,16000,10.000000
473
+ 00000471,16000,10.000000
474
+ 00000472,16000,10.000000
475
+ 00000473,16000,10.000000
476
+ 00000474,16000,10.000000
477
+ 00000475,16000,10.000000
478
+ 00000476,16000,10.000000
479
+ 00000477,16000,10.000000
480
+ 00000478,16000,10.000000
481
+ 00000479,16000,10.000000
482
+ 00000480,16000,10.000000
483
+ 00000481,16000,10.000000
484
+ 00000482,16000,10.000000
485
+ 00000483,16000,10.000000
486
+ 00000484,16000,10.000000
487
+ 00000485,16000,10.000000
488
+ 00000486,16000,10.000000
489
+ 00000487,16000,10.000000
490
+ 00000488,16000,10.000000
491
+ 00000489,16000,10.000000
492
+ 00000490,16000,10.000000
493
+ 00000491,16000,10.000000
494
+ 00000492,16000,10.000000
495
+ 00000493,16000,10.000000
496
+ 00000494,16000,10.000000
497
+ 00000495,16000,10.000000
498
+ 00000496,16000,10.000000
499
+ 00000497,16000,10.000000
500
+ 00000498,16000,10.000000
501
+ 00000499,16000,10.000000
502
+ 00000500,16000,10.000000
503
+ 00000501,16000,10.000000
504
+ 00000502,16000,10.000000
505
+ 00000503,16000,10.000000
506
+ 00000504,16000,10.000000
507
+ 00000505,16000,10.000000
508
+ 00000506,16000,10.000000
509
+ 00000507,16000,10.000000
510
+ 00000508,16000,10.000000
511
+ 00000509,16000,10.000000
512
+ 00000510,16000,10.000000
513
+ 00000511,16000,10.000000
514
+ 00000512,16000,10.000000
515
+ 00000513,16000,10.000000
516
+ 00000514,16000,10.000000
517
+ 00000515,16000,10.000000
518
+ 00000516,16000,10.000000
519
+ 00000517,16000,10.000000
520
+ 00000518,16000,10.000000
521
+ 00000519,16000,10.000000
522
+ 00000520,16000,10.000000
523
+ 00000521,16000,10.000000
524
+ 00000522,16000,10.000000
525
+ 00000523,16000,10.000000
526
+ 00000524,16000,10.000000
527
+ 00000525,16000,10.000000
528
+ 00000526,16000,10.000000
529
+ 00000527,16000,10.000000
530
+ 00000528,16000,10.000000
531
+ 00000529,16000,10.000000
532
+ 00000530,16000,10.000000
533
+ 00000531,16000,10.000000
534
+ 00000532,16000,10.000000
535
+ 00000533,16000,10.000000
536
+ 00000534,16000,10.000000
537
+ 00000535,16000,10.000000
538
+ 00000536,16000,10.000000
539
+ 00000537,16000,10.000000
540
+ 00000538,16000,10.000000
541
+ 00000539,16000,10.000000
542
+ 00000540,16000,10.000000
543
+ 00000541,16000,10.000000
544
+ 00000542,16000,10.000000
545
+ 00000543,16000,10.000000
546
+ 00000544,16000,10.000000
547
+ 00000545,16000,10.000000
548
+ 00000546,16000,10.000000
549
+ 00000547,16000,10.000000
550
+ 00000548,16000,10.000000
551
+ 00000549,16000,10.000000
552
+ 00000550,16000,10.000000
553
+ 00000551,16000,10.000000
554
+ 00000552,16000,10.000000
555
+ 00000553,16000,10.000000
556
+ 00000554,16000,10.000000
557
+ 00000555,16000,10.000000
558
+ 00000556,16000,10.000000
559
+ 00000557,16000,10.000000
560
+ 00000558,16000,10.000000
561
+ 00000559,16000,10.000000
562
+ 00000560,16000,10.000000
563
+ 00000561,16000,10.000000
564
+ 00000562,16000,10.000000
565
+ 00000563,16000,10.000000
566
+ 00000564,16000,10.000000
567
+ 00000565,16000,10.000000
568
+ 00000566,16000,10.000000
569
+ 00000567,16000,10.000000
570
+ 00000568,16000,10.000000
571
+ 00000569,16000,10.000000
572
+ 00000570,16000,10.000000
573
+ 00000571,16000,10.000000
574
+ 00000572,16000,10.000000
575
+ 00000573,16000,10.000000
576
+ 00000574,16000,10.000000
577
+ 00000575,16000,10.000000
578
+ 00000576,16000,10.000000
579
+ 00000577,16000,10.000000
580
+ 00000578,16000,10.000000
581
+ 00000579,16000,10.000000
582
+ 00000580,16000,10.000000
583
+ 00000581,16000,10.000000
584
+ 00000582,16000,10.000000
585
+ 00000583,16000,10.000000
586
+ 00000584,16000,10.000000
587
+ 00000585,16000,10.000000
588
+ 00000586,16000,10.000000
589
+ 00000587,16000,10.000000
590
+ 00000588,16000,10.000000
591
+ 00000589,16000,10.000000
592
+ 00000590,16000,10.000000
593
+ 00000591,16000,10.000000
594
+ 00000592,16000,10.000000
595
+ 00000593,16000,10.000687
596
+ 00000594,16000,10.000000
597
+ 00000595,16000,10.000000
598
+ 00000596,16000,10.000000
599
+ 00000597,16000,10.000000
600
+ 00000598,16000,10.000000
601
+ 00000599,16000,10.000000
602
+ 00000600,16000,10.000000
603
+ 00000601,16000,10.000000
604
+ 00000602,16000,10.000000
605
+ 00000603,16000,10.000000
606
+ 00000604,16000,10.000000
607
+ 00000605,16000,10.000000
608
+ 00000606,16000,10.000000
609
+ 00000607,16000,10.000000
610
+ 00000608,16000,10.000000
611
+ 00000609,16000,10.000000
612
+ 00000610,16000,10.000000
613
+ 00000611,16000,10.000000
614
+ 00000612,16000,10.000000
615
+ 00000613,16000,10.000000
616
+ 00000614,16000,10.000000
617
+ 00000615,16000,10.000000
618
+ 00000616,16000,10.000000
619
+ 00000617,16000,10.000000
620
+ 00000618,16000,10.000000
621
+ 00000619,16000,10.000000
622
+ 00000620,16000,10.000000
623
+ 00000621,16000,10.000000
624
+ 00000622,16000,10.000000
625
+ 00000623,16000,10.000000
626
+ 00000624,16000,10.000000
627
+ 00000625,16000,10.000000
628
+ 00000626,16000,10.000000
629
+ 00000627,16000,10.000000
630
+ 00000628,16000,10.000000
631
+ 00000629,16000,10.000000
632
+ 00000630,16000,10.000000
633
+ 00000631,16000,10.000000
634
+ 00000632,16000,10.000000
635
+ 00000633,16000,10.000000
636
+ 00000634,16000,10.000000
637
+ 00000635,16000,10.000000
638
+ 00000636,16000,10.000000
639
+ 00000637,16000,10.000000
640
+ 00000638,16000,10.000000
641
+ 00000639,16000,10.000000
642
+ 00000640,16000,10.000000
643
+ 00000641,16000,10.000000
644
+ 00000642,16000,10.000000
645
+ 00000643,16000,10.000000
646
+ 00000644,16000,10.000000
647
+ 00000645,16000,10.000000
648
+ 00000646,16000,10.000000
649
+ 00000647,16000,10.000000
650
+ 00000648,16000,10.000000
651
+ 00000649,16000,10.000000
652
+ 00000650,16000,10.000000
653
+ 00000651,16000,10.000000
654
+ 00000652,16000,10.000000
655
+ 00000653,16000,10.000000
656
+ 00000654,16000,10.000000
657
+ 00000655,16000,10.000000
658
+ 00000656,16000,10.000000
659
+ 00000657,16000,10.000000
660
+ 00000658,16000,10.000000
661
+ 00000659,16000,10.000000
662
+ 00000660,16000,10.000000
663
+ 00000661,16000,10.000000
664
+ 00000662,16000,10.000000
665
+ 00000663,16000,10.000000
666
+ 00000664,16000,10.000000
667
+ 00000665,16000,10.000000
668
+ 00000666,16000,10.000000
669
+ 00000667,16000,10.000000
670
+ 00000668,16000,10.000000
671
+ 00000669,16000,10.000000
672
+ 00000670,16000,10.000000
673
+ 00000671,16000,10.000000
674
+ 00000672,16000,10.000000
675
+ 00000673,16000,10.000000
676
+ 00000674,16000,10.000000
677
+ 00000675,16000,10.000000
678
+ 00000676,16000,10.000000
679
+ 00000677,16000,10.000000
680
+ 00000678,16000,10.000000
681
+ 00000679,16000,10.000000
682
+ 00000680,16000,10.000000
683
+ 00000681,16000,10.000000
684
+ 00000682,16000,10.000000
685
+ 00000683,16000,10.000000
686
+ 00000684,16000,10.000000
687
+ 00000685,16000,10.000000
688
+ 00000686,16000,10.000000
689
+ 00000687,16000,10.000000
690
+ 00000688,16000,10.000000
691
+ 00000689,16000,10.000000
692
+ 00000690,16000,10.000000
693
+ 00000691,16000,10.000000
694
+ 00000692,16000,10.000000
695
+ 00000693,16000,10.000000
696
+ 00000694,16000,10.000000
697
+ 00000695,16000,10.000000
698
+ 00000696,16000,10.000000
699
+ 00000697,16000,10.000000
700
+ 00000698,16000,10.000000
701
+ 00000699,16000,10.000000
702
+ 00000700,16000,10.000000
703
+ 00000701,16000,10.000000
704
+ 00000702,16000,10.000000
705
+ 00000703,16000,10.000000
706
+ 00000704,16000,10.000000
707
+ 00000705,16000,10.000000
708
+ 00000706,16000,10.000000
709
+ 00000707,16000,10.000000
710
+ 00000708,16000,10.000000
711
+ 00000709,16000,10.000000
712
+ 00000710,16000,10.000000
713
+ 00000711,16000,10.000000
714
+ 00000712,16000,10.000000
715
+ 00000713,16000,10.000000
716
+ 00000714,16000,10.000000
717
+ 00000715,16000,10.000000
718
+ 00000716,16000,10.000000
719
+ 00000717,16000,10.000000
720
+ 00000718,16000,10.000000
721
+ 00000719,16000,10.000000
722
+ 00000720,16000,10.000000
723
+ 00000721,16000,10.000000
724
+ 00000722,16000,10.000000
725
+ 00000723,16000,10.000000
726
+ 00000724,16000,10.000000
727
+ 00000725,16000,10.000000
728
+ 00000726,16000,10.000000
729
+ 00000727,16000,10.000000
730
+ 00000728,16000,10.000000
731
+ 00000729,16000,10.000000
732
+ 00000730,16000,10.000000
733
+ 00000731,16000,10.000000
734
+ 00000732,16000,10.000000
735
+ 00000733,16000,8.000000
736
+ 00000734,16000,10.000000
737
+ 00000735,16000,10.000000
738
+ 00000736,16000,10.000000
739
+ 00000737,16000,10.000000
740
+ 00000738,16000,10.000000
741
+ 00000739,16000,10.000000
742
+ 00000740,16000,10.000000
743
+ 00000741,16000,10.000000
744
+ 00000742,16000,10.000000
745
+ 00000743,16000,10.000000
746
+ 00000744,16000,10.000000
747
+ 00000745,16000,10.000000
748
+ 00000746,16000,10.000000
749
+ 00000747,16000,10.000000
750
+ 00000748,16000,10.000000
751
+ 00000749,16000,10.000000
752
+ 00000750,16000,10.000000
753
+ 00000751,16000,10.000000
754
+ 00000752,16000,10.000000
755
+ 00000753,16000,10.000000
756
+ 00000754,16000,10.000000
757
+ 00000755,16000,10.000000
758
+ 00000756,16000,10.000000
759
+ 00000757,16000,10.000000
760
+ 00000758,16000,10.000000
raw/00000000.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3deddd19e14fb9e422c83092e408072af7028e9a2fcdc6673c23e8a77ad93a32
3
+ size 320078
raw/00000001.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aab3467293c84ccc20c72b3929c1664a85ef5007d98ec0763eb69066927c7e87
3
+ size 320078
raw/00000002.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:118872783120d3b58d5326b62c4607312f2884ff1405440a1b529486bec35b9b
3
+ size 320078
raw/00000003.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c72cbc20a2a824859d0ff2e3423f71b7df0fe91e65ee5bfc6d389d2fcec365b9
3
+ size 320078
raw/00000004.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:20e607db4889ae7db68e63f8adb2921edcdbdd534ce96925ffd4f102afc19aca
3
+ size 320078
raw/00000005.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:492b2f9392318cdfce7cbb634d689f24d47b2e1957031dcb30106e2d22860065
3
+ size 256078
raw/00000006.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f05e5857070d36a2112557a003f4a69cba9c748ff8e2ad8ea80440dde787a9b2
3
+ size 320078
raw/00000007.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e110c0ae7e3842891e61db5ce262b8e65693b907837ba448fdb5e4e55d3b1d30
3
+ size 320078
raw/00000008.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3db4cf87b0b0eea57783c89c072c9ac224facaeb785c0cb9f165ba55a411ef99
3
+ size 320078
raw/00000009.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ec152dc4fc4d1ceade63474226969e448033986804ce6d07225cd621336faed8
3
+ size 320078
raw/00000010.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d3cb325362d963ffbdbfc44de0ef9681b661633cdab9c2259e4883e4d9e51bed
3
+ size 320078
raw/00000011.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d78bf0043961c1af31a695d3edeb4b402d4b7009039148c1ff5116956af3955
3
+ size 320078
raw/00000012.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2933844c1b19e0bb425694d495db1d724cd82edfd8347d27cb925bacab587640
3
+ size 320078
raw/00000013.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:edeca8943635c235fb9313ab57101d6f109d804f1db2d7142038fc031fb49894
3
+ size 320078
raw/00000014.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d3a1a4238453e0aa8f93da37404afe2f08998ea4f93a3c8ba2b5da134dce1ef
3
+ size 320078
raw/00000015.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1aff76a774790318f65bc947c5f9c8888979ff3dc91f98a35c6f8e3c5f06c200
3
+ size 320078
raw/00000016.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9eb7ccc71d4423d35a5cbcbea4ab4d37f61d824c9f4ac21bf313c69f7ae2c821
3
+ size 320078
raw/00000017.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d0a546e098040cad99fc457bb4944edebfc61ca7ff9e5e089c0ad11e5512c7a6
3
+ size 320078
raw/00000018.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac16eda084e309bca03e5e756eedea62bbea2d557c416254e97a7501ef198115
3
+ size 320078
raw/00000019.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e1af45dd35ade49478f5d5e3d94d9f3ed39e62a5f31888a3cb29386a16e5c0be
3
+ size 320078
raw/00000020.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:45e0d5bb559c671a3e7140bf6651389589ace7d5ab738d5489bd441bcd1f7651
3
+ size 320078
raw/00000021.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1d79bd6f2f9cd03a2769c619ac4c1629b7c06be34e47f9f6d3142304e9bf2c8c
3
+ size 320078
raw/00000022.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d559cb6fd32561494807756164922a689f32e21bedc2513822eb9af845d51d6
3
+ size 320078
raw/00000023.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:927fac5d01087056ba32db45de0d3a16e337eb26bb6351e02cb18f5066ffad7b
3
+ size 320078
raw/00000024.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:953e1cbb91a794f1641155a286421a511d6d93d380afeaf499ca6ff3a0c06aa0
3
+ size 320046
raw/00000025.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a702ee9416728ac32ece0da7bba2b257354dfe4791bdb82e71fa402fd0fd416f
3
+ size 320078
raw/00000026.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aef5d6a9fe8c0290a6bac6bc2af880bdd046f6f709c2acb8b5b2cda58d758b90
3
+ size 320078
raw/00000027.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6e85d49df4c7daefdf2bf0ec4911d91f0f8f7fe943c5bf75c853298538b95429
3
+ size 320078
raw/00000028.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9bb848216478f40371d72ec8b665fb619e859281feef34b8eae6a2c50fa66fc2
3
+ size 320078
raw/00000029.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:64df36b9007e53fef042bd2dde465644df9b0b5497c4ad466bf65e816b615aba
3
+ size 320078
raw/00000030.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8b233d20133c71524695f43fd56090eef65e2fba0e25c4bd0ab3ed118dd502f3
3
+ size 320078
raw/00000031.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c837dbf60927773da0bbca07d2dfc0b6beb741ec1ad7a03813828f4eabd1744
3
+ size 320078
raw/00000032.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3a281554f39814b5ab640b8880085642878ec16e8e2c450443731d81171c9651
3
+ size 320078
raw/00000033.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dee0e192be0916bc2b7ecd33678269c18e0ecf77d829eddfd05977c8bcaea8cb
3
+ size 320078
raw/00000034.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:23eeeea2faba7de08a53921a122cdc16456407524046435c8d322c7d48a83bea
3
+ size 320078
raw/00000035.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:094631d789ab89ba38ef60b3a28b903cb709ea457b1e9c2f329d458af45dfc5d
3
+ size 320078
raw/00000036.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce343b3d78215aab04ba5eaa9dd16d1644cb4a1d035b900adbe2273fdf03e31d
3
+ size 320078
raw/00000037.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:41403ae4a88c4ba4fc91ed9f60bd2a5f31d4a065c9570303d61b1f5230596ca7
3
+ size 320078
raw/00000038.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2999cc791ebc098d41fc6639e3b489487661ec0918dc888713b89e4cea3ad7f2
3
+ size 320078
raw/00000039.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aa4c1f3f9d2e42620d01933746ee232c66b1c787648b1898806b945ecc5a2128
3
+ size 320078
raw/00000040.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c63fb30e96550189354163ab28aa96e81603d9cc09ca351f0d9884ca5f764c6a
3
+ size 320078
raw/00000041.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0324aff4705d0f1ab87e8b5ecee2bdb61ff7496ad223b73c1b1de98a7c5c99aa
3
+ size 320078
raw/00000042.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2db49ca761c9492c747f5a61a137eae946bb7f10eb6ce3fba321d818fc731c6d
3
+ size 320078
raw/00000043.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c8ddad369cec111396c54cc9e4c633c29aab84da8e3b22b52c86c749531bf3c8
3
+ size 320078
raw/00000044.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:669e9920f40c8a3bae0d598ac94f78970ce77d9c444b9b551d645164a9dcfeb8
3
+ size 320078
raw/00000045.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad0df37e9979f30fcbea61721084514a5da4a8d1c7043e15d0859efeabdac968
3
+ size 320078
raw/00000046.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:276c4cad7275242afa851665cd227460095a1a4890975248ee32b19d3b071bfc
3
+ size 256078
raw/00000047.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8fdb072c2f698e60c47dc62c4bfad08c8fb14ec919a7ab1f32a7ceab12920923
3
+ size 320078