File size: 32,576 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 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 |
[
{
"start": 0.1,
"end": 1.4000000000000001,
"text": " Cháu",
"cut_off_in_the_middle": false
},
{
"start": 1.6,
"end": 4.32,
"text": " Mình ở Sài Gòn, chồng ở dưới quê, sướng bà gì",
"cut_off_in_the_middle": false
},
{
"start": 4.32,
"end": 8.98,
"text": " Ý của tao là chồng khỏe để mà có sức khỏe, hiểu không?",
"cut_off_in_the_middle": false
},
{
"start": 9.12,
"end": 11.48,
"text": " Để mà kiếm tiền để mà nuôi mấy đứa con, hiểu chưa?",
"cut_off_in_the_middle": false
},
{
"start": 11.82,
"end": 12.219999999999999,
"text": " Chưa",
"cut_off_in_the_middle": false
},
{
"start": 12.219999999999999,
"end": 13.799999999999999,
"text": " Không có ai kia đâu mấy bà nội",
"cut_off_in_the_middle": false
},
{
"start": 13.799999999999999,
"end": 16.2,
"text": " Trời, hà hâu, sợ quá",
"cut_off_in_the_middle": false
},
{
"start": 16.2,
"end": 17.82,
"text": " Bà sợ quá, bà ơi",
"cut_off_in_the_middle": false
},
{
"start": 17.82,
"end": 19.6,
"text": " Bà ở Sài Gòn không bao giờ bà về quê hả?",
"cut_off_in_the_middle": false
},
{
"start": 20.62,
"end": 22.6,
"text": " Mà tao nói tối về quê rồi nghe",
"cut_off_in_the_middle": false
},
{
"start": 22.6,
"end": 26.860000000000003,
"text": " Tắt điện tối thui thì chồng xấu chồng đẹp y chang nhau",
"cut_off_in_the_middle": false
},
{
"start": 26.860000000000003,
"end": 29.5,
"text": " Chỉ phân biệt được chồng khỏe hay chồng yếu thôi, đúng không?",
"cut_off_in_the_middle": false
},
{
"start": 29.5,
"end": 32.48,
"text": " Mấy đứa mấy đứa",
"cut_off_in_the_middle": false
},
{
"start": 32.48,
"end": 33.64,
"text": " Muốn học hỏi trân nghiệm không",
"cut_off_in_the_middle": false
},
{
"start": 33.64,
"end": 35.480000000000004,
"text": " Hỏi chị Mười kìa",
"cut_off_in_the_middle": false
},
{
"start": 35.480000000000004,
"end": 37.16,
"text": " Chồng vẽ là số 1",
"cut_off_in_the_middle": false
},
{
"start": 37.16,
"end": 41.36,
"text": " Có bản gì vậy",
"cut_off_in_the_middle": false
},
{
"start": 41.36,
"end": 45.6,
"text": " Hả",
"cut_off_in_the_middle": false
},
{
"start": 50.3,
"end": 51.239999999999995,
"text": " Không hết rồi mà",
"cut_off_in_the_middle": false
},
{
"start": 51.239999999999995,
"end": 52.239999999999995,
"text": " Hôm về đi",
"cut_off_in_the_middle": false
},
{
"start": 52.239999999999995,
"end": 53.059999999999995,
"text": " Không",
"cut_off_in_the_middle": false
},
{
"start": 53.059999999999995,
"end": 54.31999999999999,
"text": " Anh phải nói là",
"cut_off_in_the_middle": false
},
{
"start": 54.31999999999999,
"end": 55.5,
"text": " Anh ăn xong rồi",
"cut_off_in_the_middle": false
},
{
"start": 55.5,
"end": 56.54,
"text": " Em về đi nha",
"cut_off_in_the_middle": false
},
{
"start": 56.54,
"end": 57.81999999999999,
"text": " Cảm ơn em nhiều nha",
"cut_off_in_the_middle": false
},
{
"start": 57.81999999999999,
"end": 58.699999999999996,
"text": " Vậy thì em mới về",
"cut_off_in_the_middle": false
},
{
"start": 60.3,
"end": 62.3,
"text": " Anh ăn xong rồi, cảm ơn em nha, anh về nha",
"cut_off_in_the_middle": false
},
{
"start": 62.3,
"end": 64.3,
"text": " Ừ, học cách chi mà, em về nha",
"cut_off_in_the_middle": false
},
{
"start": 64.3,
"end": 66.3,
"text": " Ừ, em theo về đi",
"cut_off_in_the_middle": false
},
{
"start": 66.3,
"end": 69.3,
"text": " Mà...",
"cut_off_in_the_middle": false
},
{
"start": 69.7,
"end": 70.78,
"text": " Anh có cần em ở lại phụ không?",
"cut_off_in_the_middle": false
},
{
"start": 71.76,
"end": 72.5,
"text": " Không cần đâu.",
"cut_off_in_the_middle": false
},
{
"start": 72.76,
"end": 74.06,
"text": " Công việc của tôi chỉ cần một người thôi à.",
"cut_off_in_the_middle": false
},
{
"start": 74.18,
"end": 74.98,
"text": " Hai người là hơn hết á.",
"cut_off_in_the_middle": false
},
{
"start": 76.3,
"end": 79.7,
"text": " Mà thôi, tha cho anh đó",
"cut_off_in_the_middle": false
},
{
"start": 80.0,
"end": 81.5,
"text": " Em về nha",
"cut_off_in_the_middle": false
},
{
"start": 82.9,
"end": 85.14,
"text": " À, mai mốt chứ đừng đem cơm nữa nha.",
"cut_off_in_the_middle": false
},
{
"start": 85.92,
"end": 87.0,
"text": " Còn một muỗng nè.",
"cut_off_in_the_middle": false
},
{
"start": 90.9,
"end": 92.30000000000001,
"text": " Ăn hết đi anh!",
"cut_off_in_the_middle": false
},
{
"start": 92.30000000000001,
"end": 97.1,
"text": " Aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa vì vì vì vì vì vì vì vì vì vì vì vì vì vì vì vì vì vì vì vì vì vì vì vì vì vì vì vì vì vì vì",
"cut_off_in_the_middle": true
},
{
"start": 99.9,
"end": 102.9,
"text": " Ngon quá, công nhận em nói cơm ngon thiệt ha",
"cut_off_in_the_middle": false
},
{
"start": 103.6,
"end": 104.03999999999999,
"text": " Hẹn gặp lại nha!",
"cut_off_in_the_middle": false
},
{
"start": 110.5,
"end": 111.9,
"text": " Mai mốt thôi đừng có ăn cơm nữa nha.",
"cut_off_in_the_middle": false
},
{
"start": 112.34,
"end": 113.62,
"text": " Tôi ăn lần này lần cuối đó.",
"cut_off_in_the_middle": false
},
{
"start": 115.4,
"end": 116.60000000000001,
"text": " Biến rồi",
"cut_off_in_the_middle": false
},
{
"start": 117.0,
"end": 117.64,
"text": " Em về nha",
"cut_off_in_the_middle": false
},
{
"start": 118.72,
"end": 119.2,
"text": " Ơ",
"cut_off_in_the_middle": false
},
{
"start": 119.6,
"end": 121.11999999999999,
"text": " Em giỡn tí mà",
"cut_off_in_the_middle": false
},
{
"start": 121.11999999999999,
"end": 121.94,
"text": " Về nha",
"cut_off_in_the_middle": false
},
{
"start": 121.94,
"end": 123.69999999999999,
"text": " Úi da",
"cut_off_in_the_middle": false
},
{
"start": 126.9,
"end": 127.48,
"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": 132.8,
"end": 138.14000000000001,
"text": " Em thích màu trời, em đã vội hồi tràn màu áo xanh",
"cut_off_in_the_middle": false
},
{
"start": 138.14000000000001,
"end": 141.14000000000001,
"text": " Chiều thứ bảy mưa gây",
"cut_off_in_the_middle": false
},
{
"start": 141.14000000000001,
"end": 142.44,
"text": " Đồ dâu gì",
"cut_off_in_the_middle": false
},
{
"start": 143.7,
"end": 146.29999999999998,
"text": " Sao lần nào gặp anh em cũng chửi anh vô duyên hết trơn",
"cut_off_in_the_middle": false
},
{
"start": 146.29999999999998,
"end": 149.1,
"text": " Còn không có câu nào khác nói với anh sao không?",
"cut_off_in_the_middle": false
},
{
"start": 149.1,
"end": 150.29999999999998,
"text": " Chơi trẻ",
"cut_off_in_the_middle": false
},
{
"start": 150.29999999999998,
"end": 153.29999999999998,
"text": " Câu này em cũng nói nhiều lần lắm rồi",
"cut_off_in_the_middle": false
},
{
"start": 153.5,
"end": 154.0,
"text": " Lô bà",
"cut_off_in_the_middle": false
},
{
"start": 155.1,
"end": 156.76,
"text": " Nữa nữa, đừng có kêu Lố bịt nữa",
"cut_off_in_the_middle": false
},
{
"start": 156.76,
"end": 159.04,
"text": " Mà kêu là Lố dễ thương, Lố đáng yêu có được không?",
"cut_off_in_the_middle": false
},
{
"start": 159.5,
"end": 160.29999999999998,
"text": " Anh Lố",
"cut_off_in_the_middle": false
},
{
"start": 160.6,
"end": 162.4,
"text": " Dạ",
"cut_off_in_the_middle": false
},
{
"start": 163.2,
"end": 164.2,
"text": " Thù quá à",
"cut_off_in_the_middle": false
},
{
"start": 164.2,
"end": 165.7,
"text": " Sao mà anh vô duyên trơ trẻn",
"cut_off_in_the_middle": false
},
{
"start": 165.7,
"end": 167.0,
"text": " Lố đang lố bệnh như vậy hả",
"cut_off_in_the_middle": false
},
{
"start": 167.0,
"end": 169.29999999999998,
"text": " Em cứ như vậy hoài rồi",
"cut_off_in_the_middle": false
},
{
"start": 169.29999999999998,
"end": 171.35999999999999,
"text": " Tôi nói vậy là còn nhẹ đó",
"cut_off_in_the_middle": false
},
{
"start": 171.35999999999999,
"end": 173.39999999999998,
"text": " Anh lố à",
"cut_off_in_the_middle": false
},
{
"start": 173.8,
"end": 175.10000000000002,
"text": " Tôi đã nói với anh bao nhiêu lần rồi",
"cut_off_in_the_middle": false
},
{
"start": 175.10000000000002,
"end": 176.54000000000002,
"text": " Tôi không có yêu anh",
"cut_off_in_the_middle": false
},
{
"start": 176.54000000000002,
"end": 177.60000000000002,
"text": " Tôi ghét anh",
"cut_off_in_the_middle": false
},
{
"start": 177.60000000000002,
"end": 179.06,
"text": " Ghét thiệt là ghét luôn á",
"cut_off_in_the_middle": false
},
{
"start": 179.06,
"end": 180.58,
"text": " Sao anh theo tôi hoài vậy",
"cut_off_in_the_middle": false
},
{
"start": 180.58,
"end": 182.56,
"text": " Nhưng mà anh yêu em lắm mà Thơ",
"cut_off_in_the_middle": false
},
{
"start": 184.2,
"end": 186.2,
"text": " Năm ơn, tránh xa tôi ra nha",
"cut_off_in_the_middle": false
},
{
"start": 186.2,
"end": 190.2,
"text": " Tàn nhẫn, tại sao em tàn nhẫn với người yêu em vậy hả Thêu",
"cut_off_in_the_middle": false
},
{
"start": 190.2,
"end": 192.2,
"text": " Buồn cười",
"cut_off_in_the_middle": false
},
{
"start": 192.2,
"end": 196.2,
"text": " Bây giờ lại thêm buồn cười, buồn cười, buồn cười",
"cut_off_in_the_middle": false
},
{
"start": 196.2,
"end": 201.6,
"text": " Em nói đi, tại sao mà anh yêu em lại chơi chảng lố lăn lố bịch và buồn cười hả",
"cut_off_in_the_middle": false
},
{
"start": 201.8,
"end": 203.24,
"text": " Thì tôi thấy sao tôi nói vậy thôi à",
"cut_off_in_the_middle": false
},
{
"start": 203.24,
"end": 204.0,
"text": " Ừ",
"cut_off_in_the_middle": false
},
{
"start": 205.6,
"end": 206.78,
"text": " Anh thấy anh cũng dễ thương mà",
"cut_off_in_the_middle": false
},
{
"start": 206.78,
"end": 209.9,
"text": " Nè nha, anh dễ thương nè, em cũng dễ thương nè",
"cut_off_in_the_middle": false
},
{
"start": 209.9,
"end": 212.73999999999998,
"text": " Hai đứa mình mà yêu nhau là sẽ thành một cái cặp đẹp đôi",
"cut_off_in_the_middle": false
},
{
"start": 212.73999999999998,
"end": 215.72,
"text": " Mà người ta gọi là trai sắc mà gái cũng sắc luôn á",
"cut_off_in_the_middle": false
},
{
"start": 215.72,
"end": 217.32,
"text": " Hợp nhau quá trình luôn đó thơ",
"cut_off_in_the_middle": false
},
{
"start": 217.32,
"end": 220.68,
"text": " Cái này là tôi không nói rồi nha",
"cut_off_in_the_middle": false
},
{
"start": 220.68,
"end": 222.42,
"text": " Là anh tự nhận xét thôi à",
"cut_off_in_the_middle": false
},
{
"start": 222.42,
"end": 223.66,
"text": " Mà tôi nói với anh nha",
"cut_off_in_the_middle": false
},
{
"start": 223.66,
"end": 227.74,
"text": " Tôi thấy tôi với anh không hợp, không hợp, không hợp, không hợp",
"cut_off_in_the_middle": false
},
{
"start": 227.74,
"end": 228.66,
"text": " Tôi với anh không hợp",
"cut_off_in_the_middle": false
},
{
"start": 228.66,
"end": 230.54,
"text": " Tôi với anh không thể trở thành một cặp được",
"cut_off_in_the_middle": false
},
{
"start": 230.54,
"end": 231.2,
"text": " Anh nghe rõ",
"cut_off_in_the_middle": false
},
{
"start": 239.0,
"end": 239.6,
"text": " Cái quật",
"cut_off_in_the_middle": false
},
{
"start": 243.6,
"end": 244.1,
"text": " Rrrrr",
"cut_off_in_the_middle": false
},
{
"start": 249.0,
"end": 252.06,
"text": " Em mới đúng là kẻ chơi chạy lố lăn lố bờ chờ buồn cười thì có đó",
"cut_off_in_the_middle": false
},
{
"start": 252.06,
"end": 253.44,
"text": " Anh xứng với em mà",
"cut_off_in_the_middle": false
},
{
"start": 253.44,
"end": 255.74,
"text": " Anh thích em kiếm được thằng nào hơn anh đó",
"cut_off_in_the_middle": false
},
{
"start": 255.74,
"end": 257.2,
"text": " Chứ sao vậy em cũng yêu anh thôi",
"cut_off_in_the_middle": false
},
{
"start": 257.2,
"end": 258.6,
"text": " Anh không có bỏ cuộc đâu",
"cut_off_in_the_middle": false
},
{
"start": 278.2,
"end": 279.9,
"text": " Con mèo ở đâu ra vậy con ?",
"cut_off_in_the_middle": false
},
{
"start": 280.2,
"end": 281.46,
"text": " Mà sao người con ướp nhẹp vậy?",
"cut_off_in_the_middle": false
},
{
"start": 281.97999999999996,
"end": 284.26,
"text": " Con thấy nó bị trôi trên sông nên là xuống vớt nó lên",
"cut_off_in_the_middle": false
},
{
"start": 284.26,
"end": 285.64,
"text": " Nhìn nó tội nghiệp lắm ba",
"cut_off_in_the_middle": false
},
{
"start": 288.3,
"end": 289.32,
"text": " Con mèo chó trên sông à?",
"cut_off_in_the_middle": false
},
{
"start": 289.44,
"end": 290.40000000000003,
"text": " Dạ",
"cut_off_in_the_middle": false
},
{
"start": 291.0,
"end": 293.2,
"text": " Thôi thôi thôi con mang vào nhà đi",
"cut_off_in_the_middle": false
},
{
"start": 293.2,
"end": 294.6,
"text": " Dạ",
"cut_off_in_the_middle": false
},
{
"start": 297.0,
"end": 297.6,
"text": " Ái xíu",
"cut_off_in_the_middle": false
},
{
"start": 304.4,
"end": 305.08,
"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": 315.1,
"end": 316.32000000000005,
"text": " Kêu kèm mà quạ kèm",
"cut_off_in_the_middle": false
},
{
"start": 316.32000000000005,
"end": 317.20000000000005,
"text": " Quạ quạ quạ",
"cut_off_in_the_middle": false
},
{
"start": 320.3,
"end": 336.38,
"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": 337.1,
"end": 338.36,
"text": " Sao mặt chị quạo vậy vậy?",
"cut_off_in_the_middle": false
},
{
"start": 339.18,
"end": 340.04,
"text": " Thằng trả lối mất dịch à",
"cut_off_in_the_middle": false
},
{
"start": 340.04,
"end": 342.22,
"text": " Cứ chặn đường tỏ tình với tao hoài à",
"cut_off_in_the_middle": false
},
{
"start": 342.22,
"end": 343.0,
"text": " Vậy hả?",
"cut_off_in_the_middle": false
},
{
"start": 343.02000000000004,
"end": 343.42,
"text": " Một mình đâu á",
"cut_off_in_the_middle": false
},
{
"start": 343.42,
"end": 345.36,
"text": " Trời ơi mấy anh lối dễ thương mà",
"cut_off_in_the_middle": false
},
{
"start": 345.36,
"end": 346.82000000000005,
"text": " Dễ thương cái đầu mày á",
"cut_off_in_the_middle": false
},
{
"start": 346.82000000000005,
"end": 348.78000000000003,
"text": " Thằng trả lì làm thấy sợ luôn à",
"cut_off_in_the_middle": false
},
{
"start": 348.78000000000003,
"end": 350.16,
"text": " Tao chửi cứ chửi",
"cut_off_in_the_middle": false
},
{
"start": 350.16,
"end": 351.56,
"text": " Thằng trả cua cứ cua à",
"cut_off_in_the_middle": false
},
{
"start": 353.9,
"end": 357.65999999999997,
"text": " Lụa, mày có cách gì để cho thằng cha Lố đừng cua tao nữa không?",
"cut_off_in_the_middle": false
},
{
"start": 357.94,
"end": 359.35999999999996,
"text": " Mày muốn gì tao cũng chịu hết á",
"cut_off_in_the_middle": false
},
{
"start": 359.35999999999996,
"end": 360.38,
"text": " Em đâu biết",
"cut_off_in_the_middle": false
},
{
"start": 360.38,
"end": 362.09999999999997,
"text": " Lúc mặt trời xinh xa",
"cut_off_in_the_middle": false
},
{
"start": 362.09999999999997,
"end": 363.76,
"text": " Thôi nha, nghiêm túc nè",
"cut_off_in_the_middle": false
},
{
"start": 363.76,
"end": 366.56,
"text": " Ủa, mà hả",
"cut_off_in_the_middle": false
},
{
"start": 366.56,
"end": 369.76,
"text": " Anh Lố cua chị thì cũng giống như chị cua anh Dương vậy đó",
"cut_off_in_the_middle": false
},
{
"start": 369.76,
"end": 371.46,
"text": " Người ta sợ chị muốn chết luôn à",
"cut_off_in_the_middle": false
},
{
"start": 371.46,
"end": 372.91999999999996,
"text": " Mà chị cũng đâu có tha đâu",
"cut_off_in_the_middle": false
},
{
"start": 372.91999999999996,
"end": 374.09999999999997,
"text": " Hứ",
"cut_off_in_the_middle": false
},
{
"start": 376.9,
"end": 377.59999999999997,
"text": " Ừm",
"cut_off_in_the_middle": false
},
{
"start": 378.7,
"end": 379.7,
"text": " Thế cơ",
"cut_off_in_the_middle": false
},
{
"start": 381.5,
"end": 383.2,
"text": " Theo tình tình chạy",
"cut_off_in_the_middle": false
},
{
"start": 383.6,
"end": 385.3,
"text": " Mà chạy tình tình theo",
"cut_off_in_the_middle": false
},
{
"start": 386.6,
"end": 388.0,
"text": " Hờ...",
"cut_off_in_the_middle": false
},
{
"start": 388.5,
"end": 390.76,
"text": " Sao cuộc đời tao nó éo le dữ vậy nè",
"cut_off_in_the_middle": false
},
{
"start": 390.76,
"end": 393.7,
"text": " Hay ghê",
"cut_off_in_the_middle": false
},
{
"start": 394.0,
"end": 396.0,
"text": " Kêu cái mà quả, kêu quả quả",
"cut_off_in_the_middle": false
},
{
"start": 396.0,
"end": 398.0,
"text": " Kêu cái mà quả, kêu quả quả quả",
"cut_off_in_the_middle": false
},
{
"start": 398.0,
"end": 400.0,
"text": " Kêu nam đau bắt đau",
"cut_off_in_the_middle": false
},
{
"start": 400.0,
"end": 402.0,
"text": " Lượng phòng",
"cut_off_in_the_middle": false
},
{
"start": 402.0,
"end": 404.0,
"text": " Người dân khác họ",
"cut_off_in_the_middle": false
},
{
"start": 404.0,
"end": 406.0,
"text": " Năn nó thời kia, mai về mai ở",
"cut_off_in_the_middle": false
},
{
"start": 406.0,
"end": 408.0,
"text": " Đường này còn mắc cỡ",
"cut_off_in_the_middle": false
},
{
"start": 408.0,
"end": 410.0,
"text": " Tôi ở đêm về",
"cut_off_in_the_middle": false
},
{
"start": 410.0,
"end": 412.0,
"text": " Là ai á kêu rằng",
"cut_off_in_the_middle": false
},
{
"start": 412.0,
"end": 414.0,
"text": " Rằng theo nhớ thương ai",
"cut_off_in_the_middle": false
},
{
"start": 414.0,
"end": 416.0,
"text": " Là ai á kêu rằng",
"cut_off_in_the_middle": false
},
{
"start": 416.0,
"end": 418.0,
"text": " Rằng theo nhớ thương ai",
"cut_off_in_the_middle": false
},
{
"start": 418.0,
"end": 420.0,
"text": " Hi hi hi",
"cut_off_in_the_middle": false
},
{
"start": 420.0,
"end": 422.0,
"text": " Hổng vui hả?",
"cut_off_in_the_middle": false
},
{
"start": 424.6,
"end": 425.90000000000003,
"text": " Cái đánh dạ",
"cut_off_in_the_middle": false
},
{
"start": 455.9,
"end": 456.29999999999995,
"text": " Con",
"cut_off_in_the_middle": false
},
{
"start": 457.3,
"end": 458.40000000000003,
"text": " Bà thấy con mèo xinh không?",
"cut_off_in_the_middle": false
},
{
"start": 458.8,
"end": 460.38,
"text": " Suốt xíu nữa con sẽ đưa nó đi chích ngừa.",
"cut_off_in_the_middle": false
},
{
"start": 461.14,
"end": 463.74,
"text": " Con vẫn nhớ là ba dị ứng với lông chó lông mèo đấy chứ.",
"cut_off_in_the_middle": false
},
{
"start": 464.18,
"end": 464.78000000000003,
"text": " Con nhớ mà.",
"cut_off_in_the_middle": false
},
{
"start": 466.0,
"end": 468.6,
"text": " Vậy bây giờ con định làm gì với con mèo này?",
"cut_off_in_the_middle": false
},
{
"start": 469.7,
"end": 470.5,
"text": " À chị...",
"cut_off_in_the_middle": false
},
{
"start": 472.5,
"end": 473.4,
"text": " HẸT!",
"cut_off_in_the_middle": false
},
{
"start": 500.1,
"end": 502.40000000000003,
"text": " Chị ơi, anh Minh đây!",
"cut_off_in_the_middle": false
},
{
"start": 503.5,
"end": 503.9,
"text": " Mình...",
"cut_off_in_the_middle": false
},
{
"start": 509.6,
"end": 511.6,
"text": " Có con mèo trôi trên sân thật là kì lạ",
"cut_off_in_the_middle": false
},
{
"start": 511.6,
"end": 512.02,
"text": " Ừ",
"cut_off_in_the_middle": false
},
{
"start": 512.02,
"end": 514.8000000000001,
"text": " Thế em định để tên nó là gì?",
"cut_off_in_the_middle": false
},
{
"start": 515.7,
"end": 518.1,
"text": " Long nó mượt, vợ em quá.",
"cut_off_in_the_middle": false
},
{
"start": 518.4,
"end": 518.8,
"text": " À",
"cut_off_in_the_middle": false
},
{
"start": 519.1,
"end": 523.6,
"text": " Nó còn chơi trên sông nữa, vậy em đặt tên cho nó là sông nha anh",
"cut_off_in_the_middle": false
},
{
"start": 523.9,
"end": 524.52,
"text": " Cái tên hay đấy",
"cut_off_in_the_middle": false
},
{
"start": 524.52,
"end": 525.98,
"text": " Anh cũng thích cái tên này",
"cut_off_in_the_middle": false
},
{
"start": 525.98,
"end": 528.4,
"text": " Và anh nghĩ con mèo cũng sẽ thích",
"cut_off_in_the_middle": false
},
{
"start": 529.6,
"end": 532.0600000000001,
"text": " Nhưng nó là mèo đực hay mèo cái vậy anh?",
"cut_off_in_the_middle": false
},
{
"start": 532.6,
"end": 533.16,
"text": " Mèo cái",
"cut_off_in_the_middle": false
},
{
"start": 534.4,
"end": 535.78,
"text": " Ơ, vậy thì hay quá",
"cut_off_in_the_middle": false
},
{
"start": 535.78,
"end": 538.3199999999999,
"text": " Nó sẽ sinh ra rất nhiều con mèo con",
"cut_off_in_the_middle": false
},
{
"start": 538.3199999999999,
"end": 540.54,
"text": " Và em sẽ nuôi lũ mèo con đó",
"cut_off_in_the_middle": false
},
{
"start": 540.54,
"end": 542.42,
"text": " Rồi em sẽ vô trường mù",
"cut_off_in_the_middle": false
},
{
"start": 542.42,
"end": 544.4,
"text": " Em tặng cho mỗi đứa bạn một con",
"cut_off_in_the_middle": false
},
{
"start": 544.4,
"end": 546.3,
"text": " Chắc chắn tôi nó sẽ rất thích",
"cut_off_in_the_middle": false
},
{
"start": 546.3,
"end": 549.22,
"text": " Ừ, đây là con mèo sinh nhất mà anh từng biết",
"cut_off_in_the_middle": false
},
{
"start": 549.22,
"end": 551.1999999999999,
"text": " Trông nó đang yêu lắm",
"cut_off_in_the_middle": false
},
{
"start": 551.6,
"end": 558.28,
"text": " Em ước gì được nhìn thấy nó, nhưng em có cảm nhận nó rất là ngoan và đẹp nữa đúng không anh Thải Minh?",
"cut_off_in_the_middle": false
},
{
"start": 560.5,
"end": 563.2,
"text": " Anh Minh có thể tải cho em con mèo này được không?",
"cut_off_in_the_middle": false
},
{
"start": 564.1,
"end": 565.7,
"text": " Đây là một con mèo mướp.",
"cut_off_in_the_middle": false
},
{
"start": 566.1,
"end": 568.62,
"text": " Nó có hai màu, màu vàng và màu trắng.",
"cut_off_in_the_middle": false
},
{
"start": 570.2,
"end": 572.2800000000001,
"text": " Phần đầu của nó là màu vàng có điểm đốm trắng.",
"cut_off_in_the_middle": false
},
{
"start": 572.7,
"end": 573.62,
"text": " Đây là phần màu vàng này.",
"cut_off_in_the_middle": false
},
{
"start": 574.0400000000001,
"end": 574.26,
"text": " Đó.",
"cut_off_in_the_middle": false
},
{
"start": 574.82,
"end": 576.36,
"text": " Còn đây bốn cái chân của nó là màu trắng.",
"cut_off_in_the_middle": false
},
{
"start": 576.98,
"end": 577.46,
"text": " Em thấy sao?",
"cut_off_in_the_middle": false
},
{
"start": 578.0400000000001,
"end": 578.5200000000001,
"text": " Thích ạ.",
"cut_off_in_the_middle": false
},
{
"start": 578.84,
"end": 579.0,
"text": " Nó có điểm đốm trắng.",
"cut_off_in_the_middle": false
}
] |