File size: 12,025 Bytes
90f60d0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
[
    {
        "start": 0.7,
        "end": 1.76,
        "text": " Nè",
        "cut_off_in_the_middle": false
    },
    {
        "start": 1.76,
        "end": 2.44,
        "text": " Ông làm gì vậy",
        "cut_off_in_the_middle": false
    },
    {
        "start": 2.44,
        "end": 3.9799999999999995,
        "text": " Anh định làm gì vậy",
        "cut_off_in_the_middle": false
    },
    {
        "start": 3.9799999999999995,
        "end": 4.7,
        "text": " Nè",
        "cut_off_in_the_middle": false
    },
    {
        "start": 5.5,
        "end": 6.1,
        "text": " Nè",
        "cut_off_in_the_middle": false
    },
    {
        "start": 6.4,
        "end": 7.7,
        "text": " Ê...",
        "cut_off_in_the_middle": false
    },
    {
        "start": 11.8,
        "end": 12.200000000000001,
        "text": " Ớ",
        "cut_off_in_the_middle": false
    },
    {
        "start": 12.8,
        "end": 13.200000000000001,
        "text": " Ờ...",
        "cut_off_in_the_middle": false
    },
    {
        "start": 13.5,
        "end": 14.18,
        "text": " Ờ...",
        "cut_off_in_the_middle": false
    },
    {
        "start": 14.18,
        "end": 14.8,
        "text": " Ờ...",
        "cut_off_in_the_middle": false
    },
    {
        "start": 14.8,
        "end": 15.2,
        "text": " Ờ...",
        "cut_off_in_the_middle": false
    },
    {
        "start": 15.2,
        "end": 15.66,
        "text": " Xin lỗi em",
        "cut_off_in_the_middle": false
    },
    {
        "start": 15.66,
        "end": 16.7,
        "text": " Ừm",
        "cut_off_in_the_middle": false
    },
    {
        "start": 18.5,
        "end": 19.0,
        "text": " Tôi không sao",
        "cut_off_in_the_middle": false
    },
    {
        "start": 19.0,
        "end": 20.04,
        "text": " À được rồi",
        "cut_off_in_the_middle": false
    },
    {
        "start": 20.04,
        "end": 21.6,
        "text": " Em cứ để yên đi",
        "cut_off_in_the_middle": false
    },
    {
        "start": 23.5,
        "end": 24.54,
        "text": " Tôi nói tôi không sao",
        "cut_off_in_the_middle": false
    },
    {
        "start": 24.54,
        "end": 26.2,
        "text": " Để anh lau cho em",
        "cut_off_in_the_middle": false
    },
    {
        "start": 29.6,
        "end": 30.5,
        "text": " Ừ nè",
        "cut_off_in_the_middle": false
    },
    {
        "start": 30.9,
        "end": 32.6,
        "text": " Bộ không tin tán cô nhỏ đó hả ?",
        "cut_off_in_the_middle": false
    },
    {
        "start": 33.3,
        "end": 34.3,
        "text": " Chắc vậy",
        "cut_off_in_the_middle": false
    },
    {
        "start": 37.4,
        "end": 38.199999999999996,
        "text": " Ai mà biết",
        "cut_off_in_the_middle": false
    },
    {
        "start": 39.2,
        "end": 39.78,
        "text": " Chắc là mấy gái",
        "cut_off_in_the_middle": false
    },
    {
        "start": 39.78,
        "end": 41.7,
        "text": " Chứ còn gì nữa",
        "cut_off_in_the_middle": false
    },
    {
        "start": 42.3,
        "end": 43.4,
        "text": " Mà không phải đâu",
        "cut_off_in_the_middle": false
    },
    {
        "start": 43.7,
        "end": 45.1,
        "text": " Chắc để phá án thôi",
        "cut_off_in_the_middle": false
    },
    {
        "start": 45.7,
        "end": 46.300000000000004,
        "text": " Ừ",
        "cut_off_in_the_middle": false
    },
    {
        "start": 50.6,
        "end": 52.94,
        "text": " Làm gì vậy",
        "cut_off_in_the_middle": false
    },
    {
        "start": 52.94,
        "end": 54.38,
        "text": " Ở đây đâu có ướt đâu",
        "cut_off_in_the_middle": false
    },
    {
        "start": 54.38,
        "end": 56.84,
        "text": " Tại da của em nó mướt quá",
        "cut_off_in_the_middle": false
    },
    {
        "start": 56.84,
        "end": 57.86,
        "text": " Long lanh như nước vậy đó",
        "cut_off_in_the_middle": false
    },
    {
        "start": 60.0,
        "end": 62.0,
        "text": " Đàn ông nhìn mày dê thế ghê",
        "cut_off_in_the_middle": false
    },
    {
        "start": 63.7,
        "end": 64.8,
        "text": " Cha nội này",
        "cut_off_in_the_middle": false
    },
    {
        "start": 65.1,
        "end": 67.1,
        "text": " Hôm nay tán cái bị tổ chắc hay sao?",
        "cut_off_in_the_middle": false
    },
    {
        "start": 68.3,
        "end": 70.3,
        "text": " Ông tán gái thô thiện quá mà",
        "cut_off_in_the_middle": false
    },
    {
        "start": 70.6,
        "end": 72.3,
        "text": " Lại em em cũng không chịu nữa",
        "cut_off_in_the_middle": false
    },
    {
        "start": 73.4,
        "end": 74.60000000000001,
        "text": " Chắc là không phải đâu",
        "cut_off_in_the_middle": false
    },
    {
        "start": 75.2,
        "end": 77.10000000000001,
        "text": " Chắc hôm nay chơi chiêu khùng khùng quá",
        "cut_off_in_the_middle": false
    },
    {
        "start": 77.5,
        "end": 79.6,
        "text": " Chiêu chiêu gì, ông khùng thiệt thì có",
        "cut_off_in_the_middle": false
    },
    {
        "start": 80.2,
        "end": 82.4,
        "text": " Còn lâu, ông mới cua được con nhỏ đó",
        "cut_off_in_the_middle": false
    },
    {
        "start": 84.0,
        "end": 84.7,
        "text": " Ừm",
        "cut_off_in_the_middle": false
    },
    {
        "start": 85.5,
        "end": 86.5,
        "text": " Cảm ơn",
        "cut_off_in_the_middle": false
    },
    {
        "start": 89.4,
        "end": 89.80000000000001,
        "text": " Thôi",
        "cut_off_in_the_middle": false
    },
    {
        "start": 93.8,
        "end": 94.67999999999999,
        "text": " Cảm ơn các bạn đã theo dõi và hẹn gặp lại.",
        "cut_off_in_the_middle": false
    },
    {
        "start": 96.7,
        "end": 97.2,
        "text": " Thế nào?",
        "cut_off_in_the_middle": false
    },
    {
        "start": 99.0,
        "end": 100.38,
        "text": " Cũng khi khá uống dở mà",
        "cut_off_in_the_middle": false
    },
    {
        "start": 100.38,
        "end": 102.36,
        "text": " Đâu sao đâu, người đẹp uống mà",
        "cut_off_in_the_middle": false
    },
    {
        "start": 102.36,
        "end": 105.34,
        "text": " Càng không, con mình anh uống á",
        "cut_off_in_the_middle": false
    },
    {
        "start": 105.34,
        "end": 107.32,
        "text": " Có không sao luôn, cà phê ngon mà",
        "cut_off_in_the_middle": false
    },
    {
        "start": 110.6,
        "end": 111.22,
        "text": " Nó...",
        "cut_off_in_the_middle": false
    },
    {
        "start": 111.22,
        "end": 112.25999999999999,
        "text": " Nó...",
        "cut_off_in_the_middle": false
    },
    {
        "start": 112.25999999999999,
        "end": 113.1,
        "text": " Ơ...",
        "cut_off_in_the_middle": false
    },
    {
        "start": 113.8,
        "end": 114.3,
        "text": " Nó...",
        "cut_off_in_the_middle": false
    },
    {
        "start": 114.3,
        "end": 114.8,
        "text": " Nước",
        "cut_off_in_the_middle": false
    },
    {
        "start": 114.8,
        "end": 115.3,
        "text": " Nước",
        "cut_off_in_the_middle": false
    },
    {
        "start": 115.3,
        "end": 115.8,
        "text": " Nước",
        "cut_off_in_the_middle": false
    },
    {
        "start": 115.8,
        "end": 116.3,
        "text": " Nước",
        "cut_off_in_the_middle": false
    },
    {
        "start": 116.3,
        "end": 116.8,
        "text": " Nước",
        "cut_off_in_the_middle": false
    },
    {
        "start": 116.8,
        "end": 117.5,
        "text": " Nước",
        "cut_off_in_the_middle": false
    },
    {
        "start": 117.7,
        "end": 119.10000000000001,
        "text": " Dạ",
        "cut_off_in_the_middle": false
    },
    {
        "start": 120.5,
        "end": 120.8,
        "text": " Hãy subscribe cho kênh Ghiền Mì Gõ Để không bỏ lỡ những video hấp dẫn",
        "cut_off_in_the_middle": false
    },
    {
        "start": 121.9,
        "end": 122.4,
        "text": " Ừ",
        "cut_off_in_the_middle": false
    },
    {
        "start": 124.3,
        "end": 125.39999999999999,
        "text": " Hả?",
        "cut_off_in_the_middle": false
    },
    {
        "start": 125.7,
        "end": 126.0,
        "text": " Ờ",
        "cut_off_in_the_middle": false
    },
    {
        "start": 128.5,
        "end": 128.8,
        "text": " Ê da",
        "cut_off_in_the_middle": false
    },
    {
        "start": 141.6,
        "end": 142.23999999999998,
        "text": " Thấy chưa?",
        "cut_off_in_the_middle": false
    },
    {
        "start": 142.88,
        "end": 144.54,
        "text": " Anh đã nói là cha nội này chơi chiêu mà",
        "cut_off_in_the_middle": false
    },
    {
        "start": 144.54,
        "end": 145.76,
        "text": " Hay lắm chắc",
        "cut_off_in_the_middle": false
    },
    {
        "start": 145.76,
        "end": 147.5,
        "text": " Lặng loạn",
        "cut_off_in_the_middle": false
    },
    {
        "start": 148.4,
        "end": 149.20000000000002,
        "text": " Anh Hùng",
        "cut_off_in_the_middle": false
    },
    {
        "start": 149.6,
        "end": 151.4,
        "text": " Em cũng muốn ăn cóc",
        "cut_off_in_the_middle": false
    },
    {
        "start": 152.1,
        "end": 153.42,
        "text": " Ờ để kêu cho",
        "cut_off_in_the_middle": false
    },
    {
        "start": 153.42,
        "end": 154.5,
        "text": " Ê",
        "cut_off_in_the_middle": false
    },
    {
        "start": 154.9,
        "end": 156.3,
        "text": " Em giỡn.",
        "cut_off_in_the_middle": false
    },
    {
        "start": 170.7,
        "end": 171.2,
        "text": " đến đi thẳng",
        "cut_off_in_the_middle": false
    },
    {
        "start": 173.1,
        "end": 174.6,
        "text": " Em thấy tầm này quen quen",
        "cut_off_in_the_middle": false
    },
    {
        "start": 176.7,
        "end": 178.1,
        "text": " Cám ơn anh nha",
        "cut_off_in_the_middle": false
    },
    {
        "start": 178.4,
        "end": 179.78,
        "text": " Hay là vô nhà chơi chút xíu không?",
        "cut_off_in_the_middle": false
    },
    {
        "start": 180.3,
        "end": 181.3,
        "text": " Ờ, để khi khác đi",
        "cut_off_in_the_middle": false
    },
    {
        "start": 181.52,
        "end": 182.02,
        "text": " Bye",
        "cut_off_in_the_middle": false
    },
    {
        "start": 182.02,
        "end": 182.52,
        "text": " Dạ",
        "cut_off_in_the_middle": false
    },
    {
        "start": 182.84,
        "end": 185.36,
        "text": " À, anh đi thoảng đường này, quẹo trái",
        "cut_off_in_the_middle": false
    },
    {
        "start": 185.36,
        "end": 186.36,
        "text": " Là đường cũ",
        "cut_off_in_the_middle": false
    },
    {
        "start": 186.36,
        "end": 186.86,
        "text": " Uhm",
        "cut_off_in_the_middle": false
    },
    {
        "start": 187.52,
        "end": 188.34,
        "text": " Hẹn gặp lại",
        "cut_off_in_the_middle": false
    },
    {
        "start": 188.94,
        "end": 189.70000000000002,
        "text": " Dạ",
        "cut_off_in_the_middle": false
    }
]