File size: 33,356 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 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 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 |
[
{
"start": 0.2,
"end": 0.5800000000000001,
"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": 13.2,
"end": 13.899999999999999,
"text": " Các bạn",
"cut_off_in_the_middle": false
},
{
"start": 15.2,
"end": 16.9,
"text": " Cô chấp nhận trở lại vụ án",
"cut_off_in_the_middle": false
},
{
"start": 19.0,
"end": 19.6,
"text": " Ừ",
"cut_off_in_the_middle": false
},
{
"start": 20.3,
"end": 21.900000000000002,
"text": " Không chơi thì bức rứt",
"cut_off_in_the_middle": false
},
{
"start": 24.2,
"end": 26.2,
"text": " Thấy nhớ Hồng vậy, thiệt là đau lòng",
"cut_off_in_the_middle": false
},
{
"start": 27.0,
"end": 29.6,
"text": " Thôi thì một liều, ba bảy cũng liều",
"cut_off_in_the_middle": false
},
{
"start": 30.6,
"end": 31.700000000000003,
"text": " Ừm",
"cut_off_in_the_middle": false
},
{
"start": 32.3,
"end": 32.9,
"text": " Em bỏ phiếu trắng",
"cut_off_in_the_middle": false
},
{
"start": 32.9,
"end": 34.8,
"text": " Là sao ?",
"cut_off_in_the_middle": false
},
{
"start": 35.1,
"end": 37.08,
"text": " Là không theo, cũng không chống",
"cut_off_in_the_middle": false
},
{
"start": 37.08,
"end": 38.800000000000004,
"text": " Ai muốn làm gì làm",
"cut_off_in_the_middle": false
},
{
"start": 42.2,
"end": 42.980000000000004,
"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": 43.5,
"end": 44.38,
"text": " Em nói giỡn chơi thôi",
"cut_off_in_the_middle": false
},
{
"start": 44.38,
"end": 45.94,
"text": " Chứ em sẽ theo tới cùng mạ",
"cut_off_in_the_middle": false
},
{
"start": 46.8,
"end": 49.599999999999994,
"text": " Một tí nữa nổi tiếng lừa mạng trong giới giang hồ đó nha",
"cut_off_in_the_middle": false
},
{
"start": 49.9,
"end": 50.9,
"text": " Ừm",
"cut_off_in_the_middle": false
},
{
"start": 53.6,
"end": 54.9,
"text": " Từ từ mọi người sẽ biết",
"cut_off_in_the_middle": false
},
{
"start": 58.0,
"end": 60.5,
"text": " Vậy thì bây giờ tôi sẽ qua bên nhỏ Hồng.",
"cut_off_in_the_middle": false
},
{
"start": 60.8,
"end": 63.199999999999996,
"text": " Bắt nó phun ra kẻ nào bắn ma túy trung trại",
"cut_off_in_the_middle": false
},
{
"start": 73.1,
"end": 73.8,
"text": " Không thể",
"cut_off_in_the_middle": false
},
{
"start": 75.9,
"end": 77.9,
"text": " Mọi người cũng hiểu lý do mà",
"cut_off_in_the_middle": false
},
{
"start": 78.4,
"end": 79.52000000000001,
"text": " Vậy sao lần trước mày phun ra thật sát?",
"cut_off_in_the_middle": false
},
{
"start": 80.28,
"end": 80.60000000000001,
"text": " Ờ...",
"cut_off_in_the_middle": false
},
{
"start": 80.9,
"end": 82.5,
"text": " Tại vì...",
"cut_off_in_the_middle": false
},
{
"start": 82.7,
"end": 85.0,
"text": " Lần trước anh Huy gặp nguy hiểm",
"cut_off_in_the_middle": false
},
{
"start": 87.2,
"end": 88.14,
"text": " Hồng ơi con",
"cut_off_in_the_middle": false
},
{
"start": 88.14,
"end": 89.0,
"text": " Mẹ",
"cut_off_in_the_middle": false
},
{
"start": 91.8,
"end": 93.0,
"text": " Tôi đừng có ép con",
"cut_off_in_the_middle": false
},
{
"start": 94.0,
"end": 94.88,
"text": " Mẹ không hiểu đâu",
"cut_off_in_the_middle": false
},
{
"start": 94.88,
"end": 95.9,
"text": " Con nhỏ này",
"cut_off_in_the_middle": false
},
{
"start": 95.9,
"end": 96.98,
"text": " Mẹ đúng là cứng đầu",
"cut_off_in_the_middle": false
},
{
"start": 96.98,
"end": 97.58,
"text": " Nói coi",
"cut_off_in_the_middle": false
},
{
"start": 97.58,
"end": 98.8,
"text": " Ôi",
"cut_off_in_the_middle": false
},
{
"start": 105.3,
"end": 106.8,
"text": " Tôi xin mọi người đó",
"cut_off_in_the_middle": false
},
{
"start": 109.9,
"end": 112.9,
"text": " Tôi xin mọi người mà",
"cut_off_in_the_middle": false
},
{
"start": 113.6,
"end": 114.1,
"text": " À",
"cut_off_in_the_middle": false
},
{
"start": 114.9,
"end": 118.5,
"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": 128.3,
"end": 129.76000000000002,
"text": " Em gửi chị, cảm ơn chị",
"cut_off_in_the_middle": false
},
{
"start": 129.76000000000002,
"end": 131.10000000000002,
"text": " Dạ, cảm ơn chị",
"cut_off_in_the_middle": false
},
{
"start": 131.10000000000002,
"end": 134.10000000000002,
"text": " Tôi hiểu, cậu về giám đốc tôi gặp tôi liền đi",
"cut_off_in_the_middle": false
},
{
"start": 135.9,
"end": 136.70000000000002,
"text": " Anh đợi",
"cut_off_in_the_middle": false
},
{
"start": 137.1,
"end": 138.2,
"text": " Tụi em xin phép",
"cut_off_in_the_middle": false
},
{
"start": 138.8,
"end": 140.60000000000002,
"text": " Tụi em vẫn dứt khoát đưa Hùng về nhà.",
"cut_off_in_the_middle": false
},
{
"start": 143.2,
"end": 145.89999999999998,
"text": " Trong trại vẫn có hàng trắng, nên em lo...",
"cut_off_in_the_middle": false
},
{
"start": 148.1,
"end": 148.79999999999998,
"text": " Cũng đúng thôi",
"cut_off_in_the_middle": false
},
{
"start": 149.5,
"end": 151.16,
"text": " Chuyện này làm cho anh rất là đau.",
"cut_off_in_the_middle": false
},
{
"start": 151.9,
"end": 154.0,
"text": " Nhưng mà anh sẽ dứt khoát tìm ra được kẻ bắn.",
"cut_off_in_the_middle": false
},
{
"start": 154.5,
"end": 156.7,
"text": " Anh sẽ xử giám đốc liền bây giờ cho tụi em coi",
"cut_off_in_the_middle": false
},
{
"start": 169.5,
"end": 171.1,
"text": " Đã tìm ra cái đầu cung cấp chưa?",
"cut_off_in_the_middle": false
},
{
"start": 171.7,
"end": 174.76,
"text": " Dạ chưa? Vẫn đang rà soát. Chúng tôi sợ rất khó.",
"cut_off_in_the_middle": false
},
{
"start": 175.39999999999998,
"end": 177.0,
"text": " Nói như vậy là xong trách nhiệm.",
"cut_off_in_the_middle": false
},
{
"start": 177.3,
"end": 177.68,
"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": 178.1,
"end": 178.44,
"text": " Từ bây giờ",
"cut_off_in_the_middle": false
},
{
"start": 178.44,
"end": 180.9,
"text": " Cậu không còn là giám đốc trung tâm nữa",
"cut_off_in_the_middle": false
},
{
"start": 180.9,
"end": 181.84,
"text": " Dạ thưa anh",
"cut_off_in_the_middle": false
},
{
"start": 181.84,
"end": 183.5,
"text": " Đừng có đó nữa",
"cut_off_in_the_middle": false
},
{
"start": 183.9,
"end": 186.1,
"text": " Quy tính và danh dự của trung tâm đã bị phá bự",
"cut_off_in_the_middle": false
},
{
"start": 186.7,
"end": 187.28,
"text": " Cậu bị đuổi diệt",
"cut_off_in_the_middle": false
},
{
"start": 187.28,
"end": 187.89999999999998,
"text": " Đi",
"cut_off_in_the_middle": false
},
{
"start": 196.6,
"end": 197.1,
"text": " Cậu cậu",
"cut_off_in_the_middle": false
},
{
"start": 197.1,
"end": 198.0,
"text": " Dạ",
"cut_off_in_the_middle": false
},
{
"start": 198.5,
"end": 202.4,
"text": " Ngoài công việc quản lý, cậu sẽ kiêm luôn cả chức vụ nguyên giám đốc.",
"cut_off_in_the_middle": false
},
{
"start": 202.7,
"end": 202.95999999999998,
"text": " Dạ",
"cut_off_in_the_middle": false
},
{
"start": 202.95999999999998,
"end": 206.11999999999998,
"text": " Và phải tìm cho ra được kẻ nào bán hàng trong trung tâm",
"cut_off_in_the_middle": false
},
{
"start": 206.11999999999998,
"end": 207.32,
"text": " Dạ em biết rồi",
"cut_off_in_the_middle": false
},
{
"start": 207.32,
"end": 209.0,
"text": " Dạ em xin phép",
"cut_off_in_the_middle": false
},
{
"start": 212.5,
"end": 213.5,
"text": " Anh Đại",
"cut_off_in_the_middle": false
},
{
"start": 214.5,
"end": 216.5,
"text": " Em thấy tội nghiệp anh giám đốc quá à",
"cut_off_in_the_middle": false
},
{
"start": 216.9,
"end": 217.56,
"text": " Phải nghiêm khắc chứ",
"cut_off_in_the_middle": false
},
{
"start": 217.56,
"end": 219.9,
"text": " Nếu không thì loạn hết",
"cut_off_in_the_middle": false
},
{
"start": 220.4,
"end": 221.3,
"text": " Không nha",
"cut_off_in_the_middle": false
},
{
"start": 221.6,
"end": 223.5,
"text": " Anh xin lỗi em, anh có việc phải vào trong",
"cut_off_in_the_middle": false
},
{
"start": 223.5,
"end": 224.7,
"text": " Chào hai em",
"cut_off_in_the_middle": false
},
{
"start": 224.7,
"end": 226.0,
"text": " Dạ chào anh",
"cut_off_in_the_middle": false
},
{
"start": 226.0,
"end": 228.0,
"text": " Dạ chào anh",
"cut_off_in_the_middle": false
},
{
"start": 231.3,
"end": 232.0,
"text": " Công nhận anh đại",
"cut_off_in_the_middle": false
},
{
"start": 232.0,
"end": 234.4,
"text": " Dù tình cảm mà lại dù rất nghiêm khắc ha",
"cut_off_in_the_middle": false
},
{
"start": 234.4,
"end": 237.4,
"text": " Trên đời này rất hiếm gặp một người giống như anh",
"cut_off_in_the_middle": false
},
{
"start": 237.7,
"end": 238.29999999999998,
"text": " Ừm",
"cut_off_in_the_middle": false
},
{
"start": 244.9,
"end": 245.78,
"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": 248.5,
"end": 248.88,
"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": 252.7,
"end": 253.29999999999998,
"text": " Hư",
"cut_off_in_the_middle": false
},
{
"start": 254.9,
"end": 257.2,
"text": " Đời em kẻ như bỏ rồi phải không anh?",
"cut_off_in_the_middle": false
},
{
"start": 259.4,
"end": 260.9,
"text": " Em ước gì ạ?",
"cut_off_in_the_middle": false
},
{
"start": 261.6,
"end": 262.70000000000005,
"text": " Trước đây mình...",
"cut_off_in_the_middle": false
},
{
"start": 265.3,
"end": 267.8,
"text": " Không xa với con đường chết chóc này",
"cut_off_in_the_middle": false
},
{
"start": 269.9,
"end": 270.79999999999995,
"text": " Thôi mà em",
"cut_off_in_the_middle": false
},
{
"start": 271.9,
"end": 273.79999999999995,
"text": " Mọi thứ vẫn còn ở phía trước mà",
"cut_off_in_the_middle": false
},
{
"start": 275.1,
"end": 278.5,
"text": " Đây chính là cơ hội để mình thay đổi cuộc đời của mình đó",
"cut_off_in_the_middle": false
},
{
"start": 278.9,
"end": 280.5,
"text": " Em muốn lắm chứ",
"cut_off_in_the_middle": false
},
{
"start": 283.1,
"end": 284.70000000000005,
"text": " Nhưng mà em cũng biết",
"cut_off_in_the_middle": false
},
{
"start": 287.1,
"end": 289.5,
"text": " Mình có thể vượt qua nỗi không nữa",
"cut_off_in_the_middle": false
},
{
"start": 291.4,
"end": 292.5,
"text": " Anh huỳnh...",
"cut_off_in_the_middle": false
},
{
"start": 293.5,
"end": 295.3,
"text": " Anh hãy ôm em đi",
"cut_off_in_the_middle": false
},
{
"start": 296.4,
"end": 298.4,
"text": " Anh ấy ôm em cho thật chặt",
"cut_off_in_the_middle": false
},
{
"start": 299.1,
"end": 300.6,
"text": " để em có sức mạnh",
"cut_off_in_the_middle": false
},
{
"start": 312.1,
"end": 313.40000000000003,
"text": " Mình làm sao vậy",
"cut_off_in_the_middle": false
},
{
"start": 313.7,
"end": 314.8,
"text": " Mình mới giỏi như là anh",
"cut_off_in_the_middle": false
},
{
"start": 316.7,
"end": 317.3,
"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": 319.4,
"end": 320.09999999999997,
"text": " Hay là...",
"cut_off_in_the_middle": false
},
{
"start": 320.6,
"end": 322.8,
"text": " Mình đã yêu cái gái trai lãng tử nữa rồi",
"cut_off_in_the_middle": false
},
{
"start": 323.2,
"end": 324.0,
"text": " Không",
"cut_off_in_the_middle": false
},
{
"start": 324.2,
"end": 325.0,
"text": " Làm gì có chuyện đó",
"cut_off_in_the_middle": false
},
{
"start": 325.0,
"end": 326.74,
"text": " Mắt mới yêu hắn chứ",
"cut_off_in_the_middle": false
},
{
"start": 326.74,
"end": 328.09999999999997,
"text": " Ủa",
"cut_off_in_the_middle": false
},
{
"start": 328.4,
"end": 329.0,
"text": " Ủa mà",
"cut_off_in_the_middle": false
},
{
"start": 329.3,
"end": 332.2,
"text": " Yêu gái ta thì cũng tốt chứ có sao",
"cut_off_in_the_middle": false
},
{
"start": 332.8,
"end": 334.3,
"text": " Nhưng mà đừng có ý",
"cut_off_in_the_middle": false
},
{
"start": 355.7,
"end": 357.59999999999997,
"text": " Cảm ơn anh quê nha",
"cut_off_in_the_middle": false
},
{
"start": 358.3,
"end": 360.3,
"text": " Bây giờ em vẫn tin rồi đó",
"cut_off_in_the_middle": false
},
{
"start": 361.4,
"end": 362.29999999999995,
"text": " Không nên",
"cut_off_in_the_middle": false
},
{
"start": 362.6,
"end": 364.40000000000003,
"text": " Em có thể giúp cho anh một chuyện được không ?",
"cut_off_in_the_middle": false
},
{
"start": 364.8,
"end": 367.90000000000003,
"text": " Anh nói đi, em không có tiếc với anh cái gì đâu.",
"cut_off_in_the_middle": false
},
{
"start": 368.5,
"end": 369.54,
"text": " Em nói cho anh biết",
"cut_off_in_the_middle": false
},
{
"start": 369.54,
"end": 371.3,
"text": " Người bán hàng ở trong trại được không ?",
"cut_off_in_the_middle": false
},
{
"start": 372.7,
"end": 374.4,
"text": " Anh chỉ cần biết cái tên thôi",
"cut_off_in_the_middle": false
},
{
"start": 375.4,
"end": 375.79999999999995,
"text": " Ừ",
"cut_off_in_the_middle": false
},
{
"start": 376.1,
"end": 376.8,
"text": " Không",
"cut_off_in_the_middle": false
},
{
"start": 377.1,
"end": 378.56,
"text": " Em hãy giúp cho họ đi.",
"cut_off_in_the_middle": false
},
{
"start": 378.56,
"end": 380.26000000000005,
"text": " Hàng trăm trại viên ở trong trại",
"cut_off_in_the_middle": false
},
{
"start": 380.26000000000005,
"end": 382.06,
"text": " sẽ không có cơ hội để mà cai nghiện",
"cut_off_in_the_middle": false
},
{
"start": 382.06,
"end": 383.90000000000003,
"text": " nếu như cả đó vẫn còn tồn tại.",
"cut_off_in_the_middle": false
},
{
"start": 385.4,
"end": 387.29999999999995,
"text": " Nói ra anh sẽ bị sốc",
"cut_off_in_the_middle": false
},
{
"start": 387.7,
"end": 388.59999999999997,
"text": " Ai vậy?",
"cut_off_in_the_middle": false
},
{
"start": 389.8,
"end": 391.40000000000003,
"text": " Chính là anh cha quản lý",
"cut_off_in_the_middle": false
},
{
"start": 392.3,
"end": 393.7,
"text": " Cha quản lý trong trại",
"cut_off_in_the_middle": false
},
{
"start": 396.8,
"end": 397.90000000000003,
"text": " Đúng là sốc thiệt",
"cut_off_in_the_middle": false
},
{
"start": 401.6,
"end": 403.34000000000003,
"text": " Hay là đưa Hồng trở lại trại",
"cut_off_in_the_middle": false
},
{
"start": 403.34000000000003,
"end": 405.14000000000004,
"text": " Để tìm ra nơi giấu hàng của gã đó",
"cut_off_in_the_middle": false
},
{
"start": 405.14000000000004,
"end": 406.40000000000003,
"text": " Không được",
"cut_off_in_the_middle": false
},
{
"start": 406.9,
"end": 407.58,
"text": " Cứ để đó em",
"cut_off_in_the_middle": false
},
{
"start": 407.58,
"end": 409.09999999999997,
"text": " Em đã sẵn sàng rồi",
"cut_off_in_the_middle": false
},
{
"start": 409.09999999999997,
"end": 412.17999999999995,
"text": " Thật ra em cũng muốn làm gì đó để giúp tụi anh",
"cut_off_in_the_middle": false
},
{
"start": 412.17999999999995,
"end": 414.09999999999997,
"text": " Anh nói là không được mà",
"cut_off_in_the_middle": false
},
{
"start": 414.6,
"end": 415.70000000000005,
"text": " Tại sao?",
"cut_off_in_the_middle": false
},
{
"start": 415.9,
"end": 418.59999999999997,
"text": " Chẳng lẽ không ai tin em hết hả",
"cut_off_in_the_middle": false
},
{
"start": 419.1,
"end": 420.42,
"text": " Anh tin là em thật sự muốn thay đổi",
"cut_off_in_the_middle": false
},
{
"start": 420.42,
"end": 422.56,
"text": " Nhưng mà việc này quá sức đối với em",
"cut_off_in_the_middle": false
},
{
"start": 422.56,
"end": 426.90000000000003,
"text": " Và trong đó hàng ngày phải tiếp xúc với ma túy thì rất khó kiềm chế",
"cut_off_in_the_middle": false
},
{
"start": 429.4,
"end": 430.5,
"text": " Không, không thể.",
"cut_off_in_the_middle": false
},
{
"start": 430.8,
"end": 432.3,
"text": " Vậy thì bây giờ ai có thể...",
"cut_off_in_the_middle": false
},
{
"start": 433.9,
"end": 437.9,
"text": " Một người trong nhóm của mình sẽ giả làm con Nghiện để thâm nhập vào trong đó.",
"cut_off_in_the_middle": false
},
{
"start": 438.3,
"end": 440.1,
"text": " Anh Huy và anh Hùng mới không có cửa đâu",
"cut_off_in_the_middle": false
},
{
"start": 440.1,
"end": 442.0,
"text": " Chỉ có thể là...",
"cut_off_in_the_middle": false
},
{
"start": 442.7,
"end": 443.5,
"text": " Úp sen",
"cut_off_in_the_middle": false
},
{
"start": 443.5,
"end": 445.0,
"text": " Hả?",
"cut_off_in_the_middle": false
},
{
"start": 445.7,
"end": 446.4,
"text": " Tại sao?",
"cut_off_in_the_middle": false
},
{
"start": 447.6,
"end": 448.40000000000003,
"text": " Hai anh nữ",
"cut_off_in_the_middle": false
},
{
"start": 448.8,
"end": 450.62,
"text": " Rất là khó tiếp cận với anh cha quản lý này",
"cut_off_in_the_middle": false
},
{
"start": 450.62,
"end": 453.6,
"text": " Bởi vì thằng Trả cực kỳ cảnh giác",
"cut_off_in_the_middle": false
},
{
"start": 454.3,
"end": 456.5,
"text": " Vậy tại sao Úc sang lại lầm được?",
"cut_off_in_the_middle": false
},
{
"start": 457.1,
"end": 457.94,
"text": " Vấn đề là",
"cut_off_in_the_middle": false
},
{
"start": 457.94,
"end": 460.3,
"text": " Cha quản lý đó có điểm yếu chết người",
"cut_off_in_the_middle": false
},
{
"start": 460.7,
"end": 461.8,
"text": " Đó chính là...",
"cut_off_in_the_middle": false
},
{
"start": 462.3,
"end": 463.90000000000003,
"text": " cực kỳ hám gái",
"cut_off_in_the_middle": false
},
{
"start": 464.4,
"end": 466.9,
"text": " Nhưng mà gã quản lý cũng biết mặt Úc Sen rồi",
"cut_off_in_the_middle": false
},
{
"start": 467.4,
"end": 470.4,
"text": " Cho nên Úc Seng không phải là Úc Seng nữa",
"cut_off_in_the_middle": false
},
{
"start": 480.4,
"end": 481.4,
"text": " Hư hư",
"cut_off_in_the_middle": false
},
{
"start": 483.4,
"end": 484.4,
"text": " Mộng nguyên thương",
"cut_off_in_the_middle": false
},
{
"start": 485.5,
"end": 486.0,
"text": " Bỏng Nguyên Thu",
"cut_off_in_the_middle": false
},
{
"start": 486.0,
"end": 488.38,
"text": " Ôi mà ơi, hết hôn",
"cut_off_in_the_middle": false
},
{
"start": 488.38,
"end": 490.98,
"text": " Ờ, anh, anh xin lỗi",
"cut_off_in_the_middle": false
},
{
"start": 490.98,
"end": 492.9,
"text": " Ừm, ừm",
"cut_off_in_the_middle": false
},
{
"start": 493.7,
"end": 497.09999999999997,
"text": " Từ trước giờ anh chưa thấy một trại viên nào mà xinh đẹp như em vậy đó",
"cut_off_in_the_middle": false
},
{
"start": 498.1,
"end": 499.0,
"text": " thì rắn",
"cut_off_in_the_middle": false
},
{
"start": 499.4,
"end": 502.78,
"text": " Này, người ta là hóa đã có chu rồi đó nghe",
"cut_off_in_the_middle": false
},
{
"start": 502.78,
"end": 505.59999999999997,
"text": " Thì anh chỉ nói vậy thôi",
"cut_off_in_the_middle": false
},
{
"start": 506.4,
"end": 508.09999999999997,
"text": " Em thấy ở đây sao?",
"cut_off_in_the_middle": false
},
{
"start": 526.0,
"end": 527.2,
"text": " Biệt nói mừng rắn",
"cut_off_in_the_middle": false
},
{
"start": 527.6,
"end": 530.8000000000001,
"text": " Ở ngoài thì một hai quyệt tấm vô đây",
"cut_off_in_the_middle": false
},
{
"start": 531.1,
"end": 533.5,
"text": " Mà vô đấy rồi thì...",
"cut_off_in_the_middle": false
},
{
"start": 534.4,
"end": 536.9,
"text": " Mà Nguyên Thu thấy có gì khó chịu hả?",
"cut_off_in_the_middle": false
},
{
"start": 537.5,
"end": 539.26,
"text": " Nói ra với anh quản lý cũng băng không",
"cut_off_in_the_middle": false
},
{
"start": 542.3,
"end": 543.4,
"text": " Cứ nói...",
"cut_off_in_the_middle": false
},
{
"start": 544.2,
"end": 546.5,
"text": " Nội, anh cũng chẳng dịp được gì mà",
"cut_off_in_the_middle": false
},
{
"start": 546.5,
"end": 550.3000000000001,
"text": " Anh anh nói là cứ nói mà",
"cut_off_in_the_middle": false
},
{
"start": 554.8,
"end": 556.3,
"text": " Người mong huyền thủ của bé chứ",
"cut_off_in_the_middle": false
},
{
"start": 556.3,
"end": 557.16,
"text": " Nó",
"cut_off_in_the_middle": false
},
{
"start": 557.16,
"end": 560.1999999999999,
"text": " Hả? Người em sao?",
"cut_off_in_the_middle": false
},
{
"start": 560.6,
"end": 562.26,
"text": " Nè, bỏ cái tay ra",
"cut_off_in_the_middle": false
},
{
"start": 562.26,
"end": 565.24,
"text": " Đã nói là Hoa Nhi đã có chù rồi",
"cut_off_in_the_middle": false
},
{
"start": 565.24,
"end": 567.8000000000001,
"text": " Thêm thuộc",
"cut_off_in_the_middle": false
},
{
"start": 568.1,
"end": 569.3000000000001,
"text": " Thêm thuốc hả?",
"cut_off_in_the_middle": false
},
{
"start": 570.4,
"end": 573.28,
"text": " Người mong nguyện thù bé chư cứ như là",
"cut_off_in_the_middle": false
},
{
"start": 573.28,
"end": 576.76,
"text": " Hàng trăm, hàng triệu, hàng ngàn, hàng tỷ mùi kiếm",
"cut_off_in_the_middle": false
},
{
"start": 576.76,
"end": 580.9,
"text": " Đấm, đấm, đốt, đốt, bực rực, khó chịu",
"cut_off_in_the_middle": false
},
{
"start": 581.3,
"end": 584.0999999999999,
"text": " Vì thiệu cái thứ bột chẳng nở",
"cut_off_in_the_middle": false
},
{
"start": 584.8,
"end": 585.4,
"text": " Ừ",
"cut_off_in_the_middle": false
},
{
"start": 586.0,
"end": 587.0,
"text": " Ờ...",
"cut_off_in_the_middle": false
},
{
"start": 587.8,
"end": 588.56,
"text": " Anh Quang Lị",
"cut_off_in_the_middle": false
},
{
"start": 588.56,
"end": 589.3199999999999,
"text": " Hả?",
"cut_off_in_the_middle": false
},
{
"start": 589.52,
"end": 590.0799999999999,
"text": " Có không?",
"cut_off_in_the_middle": false
},
{
"start": 590.9,
"end": 591.78,
"text": " Hẹn gặp lại các bạn trong những video tiếp theo.",
"cut_off_in_the_middle": false
},
{
"start": 592.6,
"end": 593.1,
"text": " Nhi",
"cut_off_in_the_middle": false
},
{
"start": 593.1,
"end": 594.8000000000001,
"text": " Rửa là có rồi",
"cut_off_in_the_middle": false
},
{
"start": 594.8000000000001,
"end": 596.4,
"text": " Bậy ai nói",
"cut_off_in_the_middle": false
},
{
"start": 596.9,
"end": 598.24,
"text": " Thì nhìn cái mắt là biết liền",
"cut_off_in_the_middle": false
},
{
"start": 598.24,
"end": 601.12,
"text": " Mừng rắn mà quá mặc được mồm nguyên thú này",
"cut_off_in_the_middle": false
},
{
"start": 604.8,
"end": 605.9,
"text": " Nè, nè",
"cut_off_in_the_middle": false
},
{
"start": 606.3,
"end": 607.8,
"text": " Hứa là không cho ai biết nha",
"cut_off_in_the_middle": false
},
{
"start": 607.8,
"end": 610.0,
"text": " Chỉ em và anh biết thôi đó",
"cut_off_in_the_middle": false
},
{
"start": 610.0,
"end": 612.76,
"text": " Dần chí mà dữ thưa rửa",
"cut_off_in_the_middle": false
},
{
"start": 612.76,
"end": 614.3199999999999,
"text": " Ủa chú choa",
"cut_off_in_the_middle": false
},
{
"start": 614.3199999999999,
"end": 615.5,
"text": " Trời đất ơi",
"cut_off_in_the_middle": false
},
{
"start": 615.5,
"end": 618.54,
"text": " Mân rắn mà có con người mà có hai cái lụng đông tiên",
"cut_off_in_the_middle": false
},
{
"start": 618.54,
"end": 619.56,
"text": " Về ghẹt như ri",
"cut_off_in_the_middle": false
},
{
"start": 619.56,
"end": 621.92,
"text": " Nè anh",
"cut_off_in_the_middle": false
},
{
"start": 621.92,
"end": 623.66,
"text": " Anh còn ba tép em sẽ đỡ nha",
"cut_off_in_the_middle": false
},
{
"start": 627.2,
"end": 627.6,
"text": " Ê",
"cut_off_in_the_middle": false
},
{
"start": 628.6,
"end": 630.3000000000001,
"text": " Nè",
"cut_off_in_the_middle": false
},
{
"start": 631.0,
"end": 631.3,
"text": " Ừ",
"cut_off_in_the_middle": false
},
{
"start": 645.4,
"end": 646.1,
"text": " Hử?",
"cut_off_in_the_middle": false
},
{
"start": 656.1,
"end": 656.84,
"text": " Ờ, tôi nghe",
"cut_off_in_the_middle": false
},
{
"start": 656.84,
"end": 659.0,
"text": " Có một con nhỏ mới nhập",
"cut_off_in_the_middle": false
}
] |