File size: 26,560 Bytes
7bcc015 |
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 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 |
[
{
"start": 22.1,
"end": 30.6,
"text": " Cảm ơn bà",
"cut_off_in_the_middle": false
},
{
"start": 32.4,
"end": 34.699999999999996,
"text": " Điều nhạc lại vang bên tai",
"cut_off_in_the_middle": false
},
{
"start": 34.699999999999996,
"end": 36.9,
"text": " Chi dạng hên đắng người trai",
"cut_off_in_the_middle": false
},
{
"start": 36.9,
"end": 38.699999999999996,
"text": " Chi hương thêm một cành mai",
"cut_off_in_the_middle": false
},
{
"start": 38.699999999999996,
"end": 40.9,
"text": " Cục hương dai trăng lưỡng bay trên dạ",
"cut_off_in_the_middle": false
},
{
"start": 53.2,
"end": 53.64,
"text": " Đẹp quá vậy",
"cut_off_in_the_middle": false
},
{
"start": 53.64,
"end": 55.660000000000004,
"text": " Anh Lố tặng em á chị",
"cut_off_in_the_middle": false
},
{
"start": 55.660000000000004,
"end": 57.84,
"text": " Cái gì",
"cut_off_in_the_middle": false
},
{
"start": 57.84,
"end": 59.580000000000005,
"text": " Ông Lố tặng cho mày hả",
"cut_off_in_the_middle": false
},
{
"start": 59.580000000000005,
"end": 60.660000000000004,
"text": " Thiệt không",
"cut_off_in_the_middle": false
},
{
"start": 60.660000000000004,
"end": 61.260000000000005,
"text": " Thiệt",
"cut_off_in_the_middle": false
},
{
"start": 61.260000000000005,
"end": 62.900000000000006,
"text": " Vậy là ông Chữ Sơn thích mày rồi đúng không",
"cut_off_in_the_middle": false
},
{
"start": 62.900000000000006,
"end": 63.800000000000004,
"text": " Trời ơi",
"cut_off_in_the_middle": false
},
{
"start": 63.800000000000004,
"end": 64.78,
"text": " Vậy là tao thoát rồi",
"cut_off_in_the_middle": false
},
{
"start": 64.78,
"end": 66.26,
"text": " Thôi tao thoát rồi",
"cut_off_in_the_middle": false
},
{
"start": 66.26,
"end": 66.94,
"text": " Sướng quá",
"cut_off_in_the_middle": false
},
{
"start": 66.94,
"end": 67.9,
"text": " Nè",
"cut_off_in_the_middle": false
},
{
"start": 69.9,
"end": 79.4,
"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": 79.8,
"end": 81.2,
"text": " Vô đây cho coi nè",
"cut_off_in_the_middle": false
},
{
"start": 85.1,
"end": 85.89999999999999,
"text": " Nè nè nè nè",
"cut_off_in_the_middle": false
},
{
"start": 86.2,
"end": 88.9,
"text": " Nhắm mắt lại đi, em khoe chị liền nè",
"cut_off_in_the_middle": false
},
{
"start": 90.9,
"end": 91.96000000000001,
"text": " Hết hồn chưa?",
"cut_off_in_the_middle": false
},
{
"start": 92.5,
"end": 93.62,
"text": " Hết hồn",
"cut_off_in_the_middle": false
},
{
"start": 93.62,
"end": 96.98,
"text": " Thấy không? Mình biết nghe thế nào chị cũng thích nó mà",
"cut_off_in_the_middle": false
},
{
"start": 96.98,
"end": 98.32000000000001,
"text": " Hết hồn là thấy ghê đó bà",
"cut_off_in_the_middle": false
},
{
"start": 98.32000000000001,
"end": 100.64,
"text": " Nghĩ sao vậy? Bộ này còn xấu hơn cả",
"cut_off_in_the_middle": false
},
{
"start": 100.64,
"end": 101.62,
"text": " Bộ mày đang mặc nữa",
"cut_off_in_the_middle": false
},
{
"start": 101.62,
"end": 105.10000000000001,
"text": " Thì gớm, chị nhìn kỹ đi, nhìn kỹ lại coi",
"cut_off_in_the_middle": false
},
{
"start": 108.3,
"end": 109.0,
"text": " Ê",
"cut_off_in_the_middle": false
},
{
"start": 109.3,
"end": 111.1,
"text": " Lúc đầu á, nhìn thấy nó xấu thiệt",
"cut_off_in_the_middle": false
},
{
"start": 111.1,
"end": 113.34,
"text": " Nhưng mà công nhận, nhìn kỹ lại á",
"cut_off_in_the_middle": false
},
{
"start": 113.34,
"end": 115.58,
"text": " Thấy nó quá xấu luôn á, số banh nhà lòng luôn á",
"cut_off_in_the_middle": false
},
{
"start": 115.58,
"end": 116.56,
"text": " Thấy mà gớp",
"cut_off_in_the_middle": false
},
{
"start": 116.56,
"end": 119.7,
"text": " Chị nói sao á chú, em thấy nó đẹp mà",
"cut_off_in_the_middle": false
},
{
"start": 119.7,
"end": 122.2,
"text": " Đẹp ơi là đẹp, mà sang ơi là sang luôn á",
"cut_off_in_the_middle": false
},
{
"start": 123.3,
"end": 126.25999999999999,
"text": " Ủa mà hồi nãy mới khen cái đầm của người ta đẹp",
"cut_off_in_the_middle": false
},
{
"start": 126.25999999999999,
"end": 127.67999999999999,
"text": " Giờ tự nhiên nó xấu làm sao",
"cut_off_in_the_middle": false
},
{
"start": 127.67999999999999,
"end": 130.02,
"text": " Ờ thì tao tưởng cái đầm này mày mua",
"cut_off_in_the_middle": false
},
{
"start": 130.02,
"end": 132.22,
"text": " Nên tao giả bộ khen cho mày vui thôi",
"cut_off_in_the_middle": false
},
{
"start": 132.22,
"end": 133.82,
"text": " Chứ thiệt ra hả nó thi gớp",
"cut_off_in_the_middle": false
},
{
"start": 133.82,
"end": 135.7,
"text": " Thôi đem trả đi",
"cut_off_in_the_middle": false
},
{
"start": 136.2,
"end": 138.14,
"text": " Dạ rồi, em nói làm sao với ảnh?",
"cut_off_in_the_middle": false
},
{
"start": 138.92,
"end": 141.0,
"text": " Thì mày nói giống như là tao nói vậy đó",
"cut_off_in_the_middle": false
},
{
"start": 141.9,
"end": 143.22,
"text": " Tàn nhẫn lắm á chị",
"cut_off_in_the_middle": false
},
{
"start": 143.22,
"end": 145.64000000000001,
"text": " Vậy thôi, mày muốn nói gì mày nói đi",
"cut_off_in_the_middle": false
},
{
"start": 145.64000000000001,
"end": 146.74,
"text": " Chị nói á nha",
"cut_off_in_the_middle": false
},
{
"start": 146.74,
"end": 148.1,
"text": " Ừ, ừ",
"cut_off_in_the_middle": false
},
{
"start": 148.6,
"end": 150.4,
"text": " Ý khoan đã",
"cut_off_in_the_middle": false
},
{
"start": 151.2,
"end": 152.98,
"text": " Tao quên mất là tao đang dụ anh Trả",
"cut_off_in_the_middle": false
},
{
"start": 152.98,
"end": 154.72,
"text": " Để anh Trả đừng đánh anh Dương",
"cut_off_in_the_middle": false
},
{
"start": 154.72,
"end": 155.89999999999998,
"text": " Mà thôi bây giờ nha",
"cut_off_in_the_middle": false
},
{
"start": 155.89999999999998,
"end": 157.32,
"text": " Nếu mà anh Trả có hỏi gì á",
"cut_off_in_the_middle": false
},
{
"start": 157.32,
"end": 159.32,
"text": " Thì mày cứ nói là chị thêu mặt đẹp lắm",
"cut_off_in_the_middle": false
},
{
"start": 159.32,
"end": 160.01999999999998,
"text": " Chị thích lắm",
"cut_off_in_the_middle": false
},
{
"start": 160.01999999999998,
"end": 160.94,
"text": " Cảm ơn anh Lố dùm",
"cut_off_in_the_middle": false
},
{
"start": 160.94,
"end": 163.29999999999998,
"text": " Chị thêu mặt đẹp lắm",
"cut_off_in_the_middle": false
},
{
"start": 163.29999999999998,
"end": 164.16,
"text": " Chị thích lắm",
"cut_off_in_the_middle": false
},
{
"start": 164.16,
"end": 165.16,
"text": " Cảm ơn",
"cut_off_in_the_middle": false
},
{
"start": 165.16,
"end": 166.6,
"text": " Cho mày luôn á",
"cut_off_in_the_middle": false
},
{
"start": 166.9,
"end": 167.24,
"text": " Cái gì?",
"cut_off_in_the_middle": false
},
{
"start": 167.66,
"end": 168.5,
"text": " Cho mày luôn á",
"cut_off_in_the_middle": false
},
{
"start": 169.3,
"end": 171.60000000000002,
"text": " Nhưng mà em lỗi em mặc rồi anh biết còn sao",
"cut_off_in_the_middle": false
},
{
"start": 171.60000000000002,
"end": 173.20000000000002,
"text": " Thì mặc còn sao đừng để cho ông thấy",
"cut_off_in_the_middle": false
},
{
"start": 173.20000000000002,
"end": 175.10000000000002,
"text": " Mà nếu ông có thấy thì mày nói là",
"cut_off_in_the_middle": false
},
{
"start": 175.10000000000002,
"end": 176.54000000000002,
"text": " Tại em thích quá em mời em mặc",
"cut_off_in_the_middle": false
},
{
"start": 176.54000000000002,
"end": 178.48000000000002,
"text": " Em mặc xong em trả lại liền à",
"cut_off_in_the_middle": false
},
{
"start": 178.48000000000002,
"end": 179.8,
"text": " Thiệt hả",
"cut_off_in_the_middle": false
},
{
"start": 179.8,
"end": 181.9,
"text": " Vậy là em có hãy",
"cut_off_in_the_middle": false
},
{
"start": 183.8,
"end": 184.48000000000002,
"text": " Vui quá",
"cut_off_in_the_middle": false
},
{
"start": 184.48000000000002,
"end": 185.76000000000002,
"text": " Đi vô thay liền",
"cut_off_in_the_middle": false
},
{
"start": 185.76000000000002,
"end": 188.34,
"text": " Trời ơi",
"cut_off_in_the_middle": false
},
{
"start": 188.34,
"end": 189.5,
"text": " Nói tôi mê trai",
"cut_off_in_the_middle": false
},
{
"start": 189.5,
"end": 190.58,
"text": " Mà bà còn mê trai hơn tôi",
"cut_off_in_the_middle": false
},
{
"start": 190.58,
"end": 192.0,
"text": " Trời ơi",
"cut_off_in_the_middle": false
},
{
"start": 192.8,
"end": 193.3,
"text": " Ừ",
"cut_off_in_the_middle": false
},
{
"start": 197.0,
"end": 198.6,
"text": " Ăn đi con",
"cut_off_in_the_middle": false
},
{
"start": 200.8,
"end": 201.92000000000002,
"text": " Sắp tới con định làm gì?",
"cut_off_in_the_middle": false
},
{
"start": 203.9,
"end": 204.58,
"text": " Con chưa biết nữa",
"cut_off_in_the_middle": false
},
{
"start": 204.58,
"end": 205.78,
"text": " Con sẽ đi tìm việc",
"cut_off_in_the_middle": false
},
{
"start": 205.78,
"end": 208.20000000000002,
"text": " Tìm được việc gì thì sẽ làm việc đó",
"cut_off_in_the_middle": false
},
{
"start": 208.6,
"end": 210.5,
"text": " Vậy đó con làm gì hả con",
"cut_off_in_the_middle": false
},
{
"start": 211.1,
"end": 211.9,
"text": " À...",
"cut_off_in_the_middle": false
},
{
"start": 214.1,
"end": 215.26,
"text": " Con làm đủ thứ nghề hết",
"cut_off_in_the_middle": false
},
{
"start": 215.26,
"end": 217.04,
"text": " Con làm phục vụ quán cà phê",
"cut_off_in_the_middle": false
},
{
"start": 217.04,
"end": 220.29999999999998,
"text": " Chở cát, chở về lễ hội xây dựng",
"cut_off_in_the_middle": false
},
{
"start": 220.8,
"end": 223.10000000000002,
"text": " Con còn đi mua ve chai mấy bữa nữa",
"cut_off_in_the_middle": false
},
{
"start": 224.8,
"end": 226.32000000000002,
"text": " Con cũng đi mua ve chai nữa hả?",
"cut_off_in_the_middle": false
},
{
"start": 226.88000000000002,
"end": 227.14000000000001,
"text": " Dạ",
"cut_off_in_the_middle": false
},
{
"start": 227.14000000000001,
"end": 229.48000000000002,
"text": " Con nhờ Đông Dương chỉ có cách mua ve chai",
"cut_off_in_the_middle": false
},
{
"start": 229.48000000000002,
"end": 231.06,
"text": " Để hiểu hơn về công việc của mẹ",
"cut_off_in_the_middle": false
},
{
"start": 231.06,
"end": 233.72,
"text": " Con đã đi mua ve chai được 3 ngày rồi đó mẹ",
"cut_off_in_the_middle": false
},
{
"start": 233.72,
"end": 235.66000000000003,
"text": " Ngày đầu tiên con nhờ Đông Dương đi cùng",
"cut_off_in_the_middle": false
},
{
"start": 235.66000000000003,
"end": 237.46,
"text": " Còn 2 ngày sau con tự đi",
"cut_off_in_the_middle": false
},
{
"start": 238.7,
"end": 240.72,
"text": " Thằng Dương hồi đó nó cũng đi mua dây chai á",
"cut_off_in_the_middle": false
},
{
"start": 240.72,
"end": 242.57999999999998,
"text": " Là mẹ, mẹ chỉ cho nó đó chứ",
"cut_off_in_the_middle": false
},
{
"start": 242.57999999999998,
"end": 243.0,
"text": " À",
"cut_off_in_the_middle": false
},
{
"start": 243.4,
"end": 244.44,
"text": " Thằng nhỏ dễ thương lắm",
"cut_off_in_the_middle": false
},
{
"start": 244.44,
"end": 246.22,
"text": " Nó có hiếu với bà nội đó",
"cut_off_in_the_middle": false
},
{
"start": 246.22,
"end": 247.20000000000002,
"text": " Ủa mà nè",
"cut_off_in_the_middle": false
},
{
"start": 247.20000000000002,
"end": 248.5,
"text": " Mà sao con quen với nó",
"cut_off_in_the_middle": false
},
{
"start": 248.5,
"end": 249.20000000000002,
"text": " À",
"cut_off_in_the_middle": false
},
{
"start": 249.9,
"end": 250.4,
"text": " Dạ",
"cut_off_in_the_middle": false
},
{
"start": 250.7,
"end": 252.78,
"text": " Khi con có các chuyện rắc rối thì Dương giúp con",
"cut_off_in_the_middle": false
},
{
"start": 252.78,
"end": 255.2,
"text": " Sau đó con mất liên lạc với Dương",
"cut_off_in_the_middle": false
},
{
"start": 255.6,
"end": 256.8,
"text": " Khi mà con đi tìm mẹ ở khu này",
"cut_off_in_the_middle": false
},
{
"start": 256.8,
"end": 258.15999999999997,
"text": " Thì tình cờ con gặp lại Dương",
"cut_off_in_the_middle": false
},
{
"start": 258.15999999999997,
"end": 259.88,
"text": " Con kể cho Dương nghe về mẹ",
"cut_off_in_the_middle": false
},
{
"start": 259.88,
"end": 261.68,
"text": " Ai ngờ Dương lại biết mẹ",
"cut_off_in_the_middle": false
},
{
"start": 261.68,
"end": 263.6,
"text": " Nên giúp con rất nhiệt tình luôn",
"cut_off_in_the_middle": false
},
{
"start": 263.9,
"end": 264.5,
"text": " Ủa?",
"cut_off_in_the_middle": false
},
{
"start": 264.8,
"end": 265.92,
"text": " Vậy là trước khi gặp mẹ",
"cut_off_in_the_middle": false
},
{
"start": 265.92,
"end": 267.36,
"text": " Con đã gặp Đông Dương",
"cut_off_in_the_middle": false
},
{
"start": 267.36,
"end": 270.1,
"text": " Nó đã kể cho con nghe về mẹ rồi",
"cut_off_in_the_middle": false
},
{
"start": 271.1,
"end": 271.6,
"text": " Dạ",
"cut_off_in_the_middle": false
},
{
"start": 271.9,
"end": 274.21999999999997,
"text": " Bởi vì ba chỉ nói là mẹ ở đây và làm nghề mua ve chai",
"cut_off_in_the_middle": false
},
{
"start": 274.21999999999997,
"end": 276.09999999999997,
"text": " Chứ không kể gì thêm ạ",
"cut_off_in_the_middle": false
},
{
"start": 278.9,
"end": 279.35999999999996,
"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": 280.2,
"end": 283.59999999999997,
"text": " Sao là con biết mẹ còn sống và ở đây mà...",
"cut_off_in_the_middle": false
},
{
"start": 284.0,
"end": 285.3,
"text": " Con không đi tìm mẹ liền",
"cut_off_in_the_middle": false
},
{
"start": 288.0,
"end": 290.8,
"text": " Có phải là con cần thời gian để tìm hiểu mẹ đúng không?",
"cut_off_in_the_middle": false
},
{
"start": 293.9,
"end": 294.59999999999997,
"text": " Hay là...",
"cut_off_in_the_middle": false
},
{
"start": 295.1,
"end": 297.0,
"text": " Con sợ mẹ sẽ không thương con",
"cut_off_in_the_middle": false
},
{
"start": 301.0,
"end": 304.0,
"text": " Mẹ thấy mẹ may mắn khi mẹ nghèo như vậy",
"cut_off_in_the_middle": false
},
{
"start": 306.5,
"end": 307.64,
"text": " Vì nếu như mẹ giàu",
"cut_off_in_the_middle": false
},
{
"start": 307.64,
"end": 308.86,
"text": " Con sẽ mặc cảm",
"cut_off_in_the_middle": false
},
{
"start": 308.86,
"end": 311.0,
"text": " Con không muốn gần mẹ",
"cut_off_in_the_middle": false
},
{
"start": 311.3,
"end": 313.5,
"text": " Là coi như mẹ sẽ mất con mãi mãi",
"cut_off_in_the_middle": false
},
{
"start": 318.7,
"end": 319.5,
"text": " Tạm biệt con",
"cut_off_in_the_middle": false
},
{
"start": 331.0,
"end": 331.66,
"text": " Chị Thao, chị Thao",
"cut_off_in_the_middle": false
},
{
"start": 331.66,
"end": 334.64,
"text": " Em thấy mặt đầm giám bi đẹp lắm á",
"cut_off_in_the_middle": false
},
{
"start": 334.64,
"end": 337.84,
"text": " Hay là em mua thêm vài bộ đầm giám bi nữa nha",
"cut_off_in_the_middle": false
},
{
"start": 337.84,
"end": 339.38,
"text": " Chị Thao",
"cut_off_in_the_middle": false
},
{
"start": 339.38,
"end": 339.6,
"text": " Chị Thao",
"cut_off_in_the_middle": false
},
{
"start": 341.3,
"end": 342.14,
"text": " Em mặc có đẹp không?",
"cut_off_in_the_middle": false
},
{
"start": 342.72,
"end": 343.24,
"text": " Thì gớm",
"cut_off_in_the_middle": false
},
{
"start": 343.24,
"end": 346.0,
"text": " Em hộp cho đậm châm bi lắm á",
"cut_off_in_the_middle": false
},
{
"start": 346.9,
"end": 348.0,
"text": " Cái gì?",
"cut_off_in_the_middle": false
},
{
"start": 355.6,
"end": 357.1,
"text": " Cái nằm nó đẹp thiệt quá",
"cut_off_in_the_middle": false
},
{
"start": 360.9,
"end": 361.79999999999995,
"text": " Ít dị",
"cut_off_in_the_middle": false
},
{
"start": 368.4,
"end": 369.85999999999996,
"text": " Bà Hoa ơi",
"cut_off_in_the_middle": false
},
{
"start": 369.85999999999996,
"end": 372.29999999999995,
"text": " Bà Hoa ơi",
"cut_off_in_the_middle": false
},
{
"start": 372.7,
"end": 375.4,
"text": " Bà Hoa ơi! Chị Hoa ơi!",
"cut_off_in_the_middle": false
},
{
"start": 375.7,
"end": 376.64,
"text": " Nhanh nhanh nhanh",
"cut_off_in_the_middle": false
},
{
"start": 376.64,
"end": 377.44,
"text": " Kỳ quá",
"cut_off_in_the_middle": false
},
{
"start": 377.44,
"end": 380.64,
"text": " Đâu đâu đâu",
"cut_off_in_the_middle": false
},
{
"start": 380.64,
"end": 381.94,
"text": " Con trai đâu rồi",
"cut_off_in_the_middle": false
},
{
"start": 381.94,
"end": 383.52,
"text": " Trời ơi tụi em định tối mới qua",
"cut_off_in_the_middle": false
},
{
"start": 383.52,
"end": 387.0,
"text": " Con chị đẹp trai lắm phải không",
"cut_off_in_the_middle": false
},
{
"start": 387.0,
"end": 387.9,
"text": " Tôi nói hồi nào",
"cut_off_in_the_middle": false
},
{
"start": 387.9,
"end": 389.36,
"text": " Bà qua bà nói chứ bộ",
"cut_off_in_the_middle": false
},
{
"start": 389.36,
"end": 390.59999999999997,
"text": " Đâu rồi chị",
"cut_off_in_the_middle": false
},
{
"start": 390.59999999999997,
"end": 394.52,
"text": " Trời ơi",
"cut_off_in_the_middle": false
},
{
"start": 394.52,
"end": 395.96,
"text": " Nó đẹp trai quá trời",
"cut_off_in_the_middle": false
},
{
"start": 395.96,
"end": 397.71999999999997,
"text": " Nó trắng như bồng bưởi vậy đó",
"cut_off_in_the_middle": false
},
{
"start": 397.71999999999997,
"end": 399.26,
"text": " Dễ thương quá đi",
"cut_off_in_the_middle": false
},
{
"start": 399.26,
"end": 400.86,
"text": " Thằng mình tính đẹp trai quá chị",
"cut_off_in_the_middle": false
},
{
"start": 400.86,
"end": 403.59999999999997,
"text": " Con nha bây giờ con nổi tiếng lắm",
"cut_off_in_the_middle": false
},
{
"start": 403.6,
"end": 405.70000000000005,
"text": " Hầu hết các bà ve chai trong Sài Gòn",
"cut_off_in_the_middle": false
},
{
"start": 405.70000000000005,
"end": 407.64000000000004,
"text": " Ai cũng biết tên con với ba con hết",
"cut_off_in_the_middle": false
},
{
"start": 407.64000000000004,
"end": 408.36,
"text": " Đúng rồi",
"cut_off_in_the_middle": false
},
{
"start": 408.36,
"end": 409.6,
"text": " Trời ơi, không biết không",
"cut_off_in_the_middle": false
},
{
"start": 409.6,
"end": 411.94,
"text": " Tụi Di nè, hỏi riết mà người ta ngạc nhiên luôn",
"cut_off_in_the_middle": false
},
{
"start": 411.94,
"end": 412.58000000000004,
"text": " Nói chứ",
"cut_off_in_the_middle": false
},
{
"start": 412.58000000000004,
"end": 413.5,
"text": " Ủa sao kỳ vậy",
"cut_off_in_the_middle": false
},
{
"start": 413.5,
"end": 416.54,
"text": " Cái bà ve chai nào cũng hỏi ông Tùng với tàu Hải Minh hết trơn vậy",
"cut_off_in_the_middle": false
},
{
"start": 416.54,
"end": 418.54,
"text": " Bộ hai người đó là chủ dựa ve chai",
"cut_off_in_the_middle": false
},
{
"start": 418.54,
"end": 419.40000000000003,
"text": " Đi trúng nợ hả",
"cut_off_in_the_middle": false
},
{
"start": 419.40000000000003,
"end": 424.64000000000004,
"text": " Chị Hoa, chị có phước thiệt đó nha",
"cut_off_in_the_middle": false
},
{
"start": 424.64000000000004,
"end": 425.0,
"text": " Quý vị",
"cut_off_in_the_middle": false
}
] |