File size: 28,985 Bytes
8de7e09 |
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 |
1
00:00:01,400 --> 00:00:06,900
ุจุณู
ุงููู ุงูุฑุญู
ู ุงูุฑุญูู
ุณูุชุญุฏุซ ุงูููู
ุงู ุดุงุก ุงููู ุนู
2
00:00:06,900 --> 00:00:11,860
ุงู non-nuclear phagocytes in immune defense ุฏูุฑูุง
3
00:00:11,860 --> 00:00:18,960
ุงูุฃุณุงุณู ูู
ุงุฐุง ุชุนู
ู
4
00:00:18,960 --> 00:00:26,000
microphage ูู ุนุจุงุฑุฉ ุนู highly efficient phagocytes
5
00:00:26,000 --> 00:00:31,480
ูุนูู ุฏูุฑูุง ุงูุฃุณุงุณู phagocytic cell ุจุดูู ุฃุณุงุณูููู
6
00:00:31,480 --> 00:00:37,360
ุชูุนุจ ุฑููุฉ ู
ูู
ุฉ ูู ุงูู pathogen ุฅุนูุงู ูุฅุทูุงู
7
00:00:37,360 --> 00:00:43,500
ูุฅุฒุงูุฉ ูุนูู ูู
ุงู ุจุชุดูู ูู ุงูุฏุจุฑูุฒ ูู ุงูcells ุงููู
8
00:00:43,500 --> 00:00:48,180
ู
ุงุชุช ู
ู ุงูู
ุฌุชู
ุน ูู
ุด
9
00:00:48,180 --> 00:00:51,120
ุจุณ ููู ุงู macrophage ุจุชุนุจุฑ ูุจูุฑ ูู
ุงู ูู ุงู cell
10
00:00:51,120 --> 00:00:55,200
mediated immunity ู recognition of a intracellular
11
00:00:55,200 --> 00:00:59,380
pathogen ูdefense against them ุฒู ุงู mycobacteria
12
00:00:59,750 --> 00:01:02,970
ู
ู ุฎูุงู ุชูููู ู
ุง ูุณู
ู ุจุงูู Granuloma accumulation
13
00:01:02,970 --> 00:01:08,150
of the site of infection and formation of the
14
00:01:08,150 --> 00:01:14,450
granuloma ุงูุฌุฏูู ุงูุชุงูู ููุจูู ููุง ุฏูุฑ ูู ู
ู ุงู
15
00:01:14,450 --> 00:01:18,050
macrophage ูdendritic cell in cell in immune
16
00:01:18,050 --> 00:01:25,310
defense mechanism ููุดูู ู
ู ุงููุธุฑุฉ ุงูุฃููููููุงุญุธ ุฃู
17
00:01:25,310 --> 00:01:30,110
ุงูู Macrophage ููุง ุณุช ูุธุงุฆู ุฃู ุจุชูุนุจ ูู ุณุช ุงุชุฌุงูุงุช
18
00:01:30,110 --> 00:01:34,730
ู
ุฎุชููุฉ ู
ุงุดู ููุง ุฏูุฑ ุฃุณุงุณู ูู ุงู innate immunity
19
00:01:34,730 --> 00:01:39,570
and Optical Clearance ู
ู ุฎูุงู ุงูู Non-specific ุฃู
20
00:01:39,570 --> 00:01:45,350
Non-opsinic Receptor ุฃููุงุฌูู ุณูุชูุณุณ ู
ุงุดู ูุฐู ุงูุฏูุฑ
21
00:01:45,350 --> 00:01:48,970
ุงูุฃุณุงุณู ูู
ุงู ุชูุนุจ ุฏูุฑ ูุจูุฑ ูู ุงู acquired humoral
22
00:01:48,970 --> 00:01:53,830
immunityูู
ู ุฎูุงู Antibody and Complement Dependent
23
00:01:53,830 --> 00:01:58,010
Phagocytosis and Cytotoxicity ูู ุฑูุณุจุชุฑ ุนูู ุณุทุญูุง
24
00:01:58,010 --> 00:02:04,230
ููุฐู ุงูุนูุงุตุฑ ููุง ุฏูุฑ ูุจูุฑ ูู ุงู inflammation and
25
00:02:04,230 --> 00:02:11,030
repair and tissue injury ู
ู ุฎูุงู certain mediators
26
00:02:12,180 --> 00:02:17,140
At of local and systemic response So one can ูุนูู
27
00:02:17,140 --> 00:02:21,460
at site of infection or at distance ุงููู ูุฏูู
28
00:02:21,460 --> 00:02:25,380
ุฃุณุงุณู ูู ุงู acquired immunity ู
ู ุฎูุงู antigen
29
00:02:25,380 --> 00:02:31,200
processing and presentation ูุทุจุนุงุชุฑุชูุจูุง ููู
30
00:02:31,200 --> 00:02:35,400
Dentatexel ุซู
ููู
ููุฑูููุฑุฌ ุฃูุถูุง ููุง ุฏูุฑ ูู ุงูู
31
00:02:35,400 --> 00:02:38,820
Acquired Cellular Immunity ู
ู ุฎูุงู ุงูู Activation
32
00:02:38,820 --> 00:02:44,020
Activation of Microphage Effector Mechanism By ุงูู
33
00:02:44,020 --> 00:02:49,720
NK and T Cell ู ูุฐุง ู
ููุงูุฒู
ุญูููุง ููู ุณุงุจููุง ุซู
34
00:02:49,720 --> 00:02:56,320
ุฃูุถูุง ููุง ุฏูุฑ ูู ุงู Immunosuppression ู
ู ุฎูุงู ุงูู
35
00:02:56,320 --> 00:03:03,960
Tolerance VersusAuto-immunity ูุฐู ุงูุฃุฏูุงุฑ ูุซูุฑุฉ
36
00:03:03,960 --> 00:03:12,560
ูู
ูู
ุฉ ุฌุฏุง ูู ุงูู Immune Defense ูุณู
ููู
37
00:03:12,560 --> 00:03:21,880
ุฅูู two populations ุฌุงูู ูู Resident or
38
00:03:21,880 --> 00:03:26,640
stationary macrophage ุจู
ุนูู ุงููุง ุฌุงุนุฏุฉ ูู organs
39
00:03:26,640 --> 00:03:27,540
ู
ุซุงุจุชุฉ
40
00:03:30,110 --> 00:03:33,690
ุญุงุฌุฉ ุชุฏุฎู ุนูู ูุฐุง ุงู organs ุฏูุฑูุง ุงูุฃุณุงุณู ุงููุง
41
00:03:33,690 --> 00:03:39,790
ุชุฎูุตูุง ู
ูู ููู ุงููู ูู circulatory macrophage ุงู
42
00:03:39,790 --> 00:03:42,990
ู
ุง ุชุณู
ู ุงู recruited macrophage ุงููู ุจูุงุฏู ุนูููุง
43
00:03:42,990 --> 00:03:46,610
at site of infection ุฌุฏูู ูุฐุง ุชุจูู ุงู ุงู resident
44
00:03:46,610 --> 00:03:51,010
tissue macrophage population ุงุณู
ูุง ูู ุงูุนุถุงุก
45
00:03:51,010 --> 00:03:55,850
ุงูู
ุฎุชููุฉ ู
ู ุงูุฌุณู
ููุธููุชูุง ุฃูุถุง ูุนูู ุนูู ุณุจูู
46
00:03:55,850 --> 00:03:59,030
ุงูู
ุซุงู ูู ุงูุจูู
ุฑู ูู stromal macrophage ุดู ุฏูุฑูุงุ
47
00:03:59,320 --> 00:04:02,920
ูุฌุจ ุฃู ุชุชุนุงู
ู ู
ุน ุจูุงูุงุช ุงูููู
ูุจูุงุชูููุฉ ู ุชุญุฑุฑ
48
00:04:02,920 --> 00:04:10,560
ุงูููููููุงุช ุงูููููููุงุช ุชุจุน ุงู RBCs ูู ุงููููุฑ ูููุฑ
49
00:04:10,560 --> 00:04:15,180
ุชุนู
ู ุชูุฑูู ุจูุงูุงุช ู ููู
ุจูููุณูู ู
ู ุงูุฏู
ูู ุงูุงุณุจููู
50
00:04:15,180 --> 00:04:18,660
ู
ูุฌูุฏุฉ ูู ุงู red polyps ู ูู ุงู white polyps ู
51
00:04:18,660 --> 00:04:25,930
ุฃูุถุง ุชุนู
ู ุชูุฑูู ูุณูุณูุช ู ุฃุจูุจุชู ุจูุงูุงุช ู ููุฐุงูู ูู
52
00:04:25,930 --> 00:04:30,050
ุนุถู ู
ู ุงูุฃุนุถุงุก ุงููู ูู ุงุณู
ู
ุนูู and it's distinct
53
00:04:30,050 --> 00:04:35,590
wished from other ุงููู ูู specific phenotypic
54
00:04:35,590 --> 00:04:42,830
appearance ุจุชุฎุชูู ู
ู ุนุถู ุฅูู ุนุถู ุงู microphage
55
00:04:42,830 --> 00:04:46,990
ุฃูุถุง can regulate ูุฒู ู
ุง ุงูุชูุง ุดุงูููู ููู ุงูุชุฑ ู
ู
56
00:04:46,990 --> 00:04:51,960
signal can activate ููู ุงููู ูู ุงู microphageุนูู
57
00:04:51,960 --> 00:04:55,860
ุณุจูู ุงูู
ุซุงู ุงูููุจู ุจูุฑูุณุง ูุฑูุชุฒ ุงููู ูู ุงูููุจู
58
00:04:55,860 --> 00:04:57,480
ุจูุฑูุณุง ูุฑูุชุฒ ุงููู ูู ุงูููุจู ุจูุฑูุณุง ูุฑูุชุฒ ุงููู ูู
59
00:04:57,480 --> 00:04:57,880
ุงูููุจู ุจูุฑูุณุง ูุฑูุชุฒ ุงููู ูู ุงูููุจู ุจูุฑูุณุง ูุฑูุชุฒ
60
00:04:57,880 --> 00:04:59,040
ุงููู ูู ุงูููุจู ุจูุฑูุณุง ูุฑูุชุฒ ุงููู ูู ุงูููุจู ุจูุฑูุณุง
61
00:04:59,040 --> 00:04:59,860
ูุฑูุชุฒ ุงููู ูู ุงูููุจู ุจูุฑูุณุง ูุฑูุชุฒ ุงููู ูู ุงูููุจู
62
00:04:59,860 --> 00:05:00,540
ุจูุฑูุณุง ูุฑูุชุฒ ุงููู ูู ุงูููุจู ุจูุฑูุณุง ูุฑูุชุฒ ุงููู ูู
63
00:05:00,540 --> 00:05:03,620
ุงูููุจู ุจูุฑูุณุง ูุฑูุชุฒ ุงููู ูู ุงูููุจู ุจูุฑูุณุง ูุฑูุชุฒ
64
00:05:03,620 --> 00:05:09,480
ุงููู ูู ุงูููุจู ุจูุฑูุณุง ูุฑูุฃูุถูุง ูู
ูู ุชูุนููู
65
00:05:09,480 --> 00:05:14,960
ุจุงุณุชุฎุฏุงู
ุงูุนุงูุฉ ุงูู cytokine ุชู
ุฑ ููุฑูุณูุณ ุฌุงู
ุง
66
00:05:14,960 --> 00:05:19,680
ุงูุชุฑููุฑูู
ุชู
ุฅุทูุงูู ู
ู ุชู
ุฑ ุชููุจุฑ 1 ููู ูู
ูู ุชูุนููู
67
00:05:19,680 --> 00:05:24,020
ุฃูุถูุง ูู ู
ูุฑูููุฌ ูู
ู ุซู
ููุณูู ูุจุงูุชุงูู ูุจุชุฏุน
68
00:05:24,020 --> 00:05:30,460
ุนุจุฏุงููุจูุฑ ูู ุงูุจุฑู ุงูููุงู
ุงุชูุฑู ู
ูุฏูุงุชุฑ ููู
69
00:05:30,460 --> 00:05:34,380
ุงูcell mediated immunity ู
ู ุฎูุงู ุชูุดูุท ุฃู ู
ุง ูุณู
ู
70
00:05:34,380 --> 00:05:38,210
ุจุงูุฌุฑุงููุงูููู
ุง ุงููู ุชููุน ุญูููุง ุนููุงูุชุฎูุต ู
ู ุชุฌุงุฑุจ
71
00:05:38,210 --> 00:05:44,170
ุงูู Hypersensitivity ุฃูุถูุง ุงูู Monocytes ูู
ูู ุฃู
72
00:05:44,170 --> 00:05:49,690
ูููููุง ู
ูุนูููู ู
ู ุฎูุงู ุชุญุณูู ุงูุงุฎุชุตุงู
ุงูุฎุงุต ุจู MHC
73
00:05:49,690 --> 00:05:54,150
Class 2 ูุจุงูุชุงูู ูุชุญุณู ุงูุงูุชุฌู ุจุฑูุฒูุชูุดู ุฃูุถูุง
74
00:05:54,150 --> 00:05:58,450
ูู
ูู ุฃู ูุชุญุณู ุงูุงูุฏู ุณุงูุชูุณูุณ ู
ู ุฎูุงู ูุฐู ุงูุชูููุฉ
75
00:05:58,450 --> 00:06:04,270
ุฃู ู
ู ุฎูุงู ูุฐู ุงูุชูููุฉ ูุฅู ูุงูุช ูุฐู ุงูุชูููุฉ ููุท
76
00:06:04,270 --> 00:06:09,230
ู
ุณุชุฎุฏู
ุฉุงูุฏู ุณุงูุชูุณูุฒ ุงูู
ุง ุงู killing process is
77
00:06:09,230 --> 00:06:13,550
not efficient ุจูุฐุง ุงูุชูููู ุงู ุจูุฐุง ุงู procedure
78
00:06:13,550 --> 00:06:17,050
ุงููุฌู
79
00:06:17,050 --> 00:06:22,070
ุงูุขุฎุฑ ุงู ุงูุซุงูุซ ูู macrophage ุงูู can induce anti
80
00:06:22,070 --> 00:06:25,070
inflammatory response by releasing certain
81
00:06:25,070 --> 00:06:31,410
cytokine ุฒู IL-10 ุฏู ูู which can induce the
82
00:06:31,410 --> 00:06:33,570
secretion of transforming growth factor beta
83
00:06:34,640 --> 00:06:38,880
ูุจุงูุชุงูู ุจุชุดุชุบู ุจุชุตูุฑ Deactivated Macrophage
84
00:06:38,880 --> 00:06:47,700
ูุจุงูุชุงูู it's an anti-inflammatory response ูุจุฏุฃ
85
00:06:47,700 --> 00:06:51,280
ู
ุฑุงุช ุจูpro-inflammatory a release of certain
86
00:06:51,280 --> 00:06:52,180
mediators
87
00:06:54,980 --> 00:06:59,640
ุจุฏูุฑ ุฃุณุงุณู ูู
ุงู ุจุชูุนุจ ุฏูุฑ ูุจูุฑ ู Anti-inflammatory
88
00:06:59,640 --> 00:07:05,340
ู it can be alternatively activated ู
ู ุฎูุงู ุงููู
89
00:07:05,340 --> 00:07:09,020
ูู ุงู endocytosis process ุงููู can be induced
90
00:07:09,020 --> 00:07:12,460
which ูุจุงูุชุงูู ุจููุฏุฑ ูููู ุงู ุงู signals from
91
00:07:12,460 --> 00:07:16,580
microbial products or phytocytosis and cytokine
92
00:07:16,580 --> 00:07:23,220
ูููุง ุจุชุฃุฏู ุฅููุงููู ูู ุฃูุฌู ู
ุฎุชููุฉ ูู Macrophage
93
00:07:23,220 --> 00:07:28,540
ูุชูุดูุทุงุช ู
ุฎุชููุฉ ูู Macrophage ูุฏูุฑ ุฃุณุงุณู ูู ู
ูุงูุน
94
00:07:28,540 --> 00:07:33,380
ู
ุฎุชููุฉ ู
ุง ูู ุงูู Secretory Products which are
95
00:07:33,380 --> 00:07:37,460
released from Macrophageุ ููุฐุง ุฌุฏูู ุจูุจูู ุฃููุง
96
00:07:37,460 --> 00:07:42,700
Different Secretory Product ุชูุชุฌ ู
ู ุงูู Macrophage
97
00:07:42,700 --> 00:07:45,760
ูุฃูู ูุงุญุฏ ูู ุงููู ูู Molecular Weight Metabolites
98
00:07:45,760 --> 00:07:50,280
ุฒู ูู Reactiveุฃูุณุฌูู ู ููุชุฑูุฌูู ู ููุชุฑูุฌูู ู
99
00:07:50,280 --> 00:07:50,400
ููุชุฑูุฌูู ู ููุชุฑูุฌูู ู ููุชุฑูุฌูู ู ููุชุฑูุฌูู ู
100
00:07:50,400 --> 00:07:51,660
ููุชุฑูุฌูู ู ููุชุฑูุฌูู ู ููุชุฑูุฌูู ู ููุชุฑูุฌูู ู
101
00:07:51,660 --> 00:07:54,160
ููุชุฑูุฌูู ู ููุชุฑูุฌูู ู ููุชุฑูุฌูู ู ููุชุฑูุฌูู ู
102
00:07:54,160 --> 00:07:58,260
ููุชุฑูุฌูู ู ููุชุฑูุฌูู ู ููุชุฑูุฌูู ู ููุชุฑูุฌูู ู
103
00:07:58,260 --> 00:08:03,640
ููุชุฑูุฌูู ู ููุชุฑูุฌูู ู ููุชุฑูุฌูู ู ููุชุฑูุฌูู ู
104
00:08:03,640 --> 00:08:03,900
ููุชุฑูุฌูู ู ููุชุฑูุฌูู ู ููุชุฑูุฌูู ู ููุชุฑูุฌูู ู
105
00:08:03,900 --> 00:08:03,900
ููุชุฑูุฌูู ู ููุชุฑูุฌูู ู ููุชุฑูุฌูู ู ููุชุฑูุฌูู ู
106
00:08:03,900 --> 00:08:08,820
ููุชุฑูุฌูู ู ููุชุฑูุฌูู ู ููุชุฑูุฌูู ู ููุชุฑูุฌูู ู
107
00:08:08,820 --> 00:08:14,760
ููุชุฑูุฌูู ู ููุชุฑูุฌูู ู
108
00:08:14,760 --> 00:08:18,260
ููุชู
ู ุงูู cytokine ุณูุงุก ูุงูุช stimulatory ุฃู
109
00:08:18,260 --> 00:08:20,640
inhibitory ุฒู ุงูู transform of growth factor beta
110
00:08:20,640 --> 00:08:28,320
ุฃูุถุง it can release certain chemokine ุฒู ุงููู ูู
111
00:08:28,320 --> 00:08:36,660
CCL2 ู 3 ุฃู 4 ุฃู 5 ุฃู 8 ูููู
ููู
ุฏูุฑ ูุจูุฑ ูุงููู ูู
112
00:08:36,660 --> 00:08:42,370
ุงููู ูู ุงู receptors ูู ู
ูุงูุน ู
ุฎุชููุฉุฃุฏููุฌู
113
00:08:42,370 --> 00:08:46,250
ุงูู
ูููููููุฒ ุงููุงุจุฑูููุชุฑุงุชุฑูู
ุจุณุจุฑุฏูู ูุฏู ุจูุนุจ ุฏูุฑ
114
00:08:46,250 --> 00:08:48,730
ูุจูุฑ ูู ุงู optionization Matrix adhesion ูู
115
00:08:48,730 --> 00:08:54,870
agocytosis ูู pheropoptic cells complement ุจุชูุชุฌ
116
00:08:54,870 --> 00:09:02,430
ูู ุงู complement ุฃุดูุฑูุง C3 ูุจุชูุนุจ ุฏูุฑ ูุจูุฑ ู local
117
00:09:02,430 --> 00:09:07,810
optionizer Procoagulant ุจุชูุชุฌ Tesiofactor ูุฐุง
118
00:09:07,810 --> 00:09:10,170
ุนุจุงุฑุฉ ุนู plotting cascade
119
00:09:14,570 --> 00:09:19,290
ูุงูุชูุฑ ู ุงูุถุง ุชูุฑุฒ ุงูุฒุงูู
ู
ุซู Lysosome ,
120
00:09:19,290 --> 00:09:23,190
Eurokinese, Collagenese, Elastese ูููู
ุจููุนุจูุง ุฏูุฑ
121
00:09:23,190 --> 00:09:28,550
ูุจูุฑ ู Gram Positive Bacterial Lysis Lysosome ู
122
00:09:28,550 --> 00:09:34,070
Eurokinese ู
ุซู Fibrinolysis ู ููุฐุง ุทูุจ
123
00:09:34,070 --> 00:09:39,160
ูุฌู ูุฃูุฏ ูุฐุง ุงูููุงู
ู
ู ุฎูุงูุงููุชุงุจุฉ Macrophage,
124
00:09:39,260 --> 00:09:42,220
Myeloid, Dendritic Cells and Osteoclast ูููู
125
00:09:42,220 --> 00:09:48,740
ุจูุทูุนูุง ู
ู ุงูู
ุงุก ู
ูููุณุงูุชุฒ ูููู
ู
ุงุดู ู
ู
ูู ุชูุฑุดูู
126
00:09:48,740 --> 00:09:53,000
ู
ู ุงูู
ุดุงุฑูุฉ ููู
ูููุณุงูุชุฒ ูู ุชุญูููุง ุงู ูู resident
127
00:09:53,000 --> 00:09:55,960
macrophages ุงููู which are widely distributed
128
00:09:55,960 --> 00:09:59,120
through out the body ู they are phenotypically
129
00:09:59,120 --> 00:10:03,050
distinct populationsูุนูู ุจูุฎุชูููุง ุจุงุฎุชูุงู ุงูู
ูุทูุฉ
130
00:10:03,050 --> 00:10:08,550
within the different zone of spleen, lymph nodes
131
00:10:08,550 --> 00:10:14,250
or whatever the organ is Resident macrophage and
132
00:10:14,250 --> 00:10:19,530
recruited macrophage respond according to locally
133
00:10:19,530 --> 00:10:23,370
produced cytokine ุญุณุจ ุงู cytokine ุงูู
ุตูุฉ ูุนูู ุณุจูู
134
00:10:23,370 --> 00:10:30,800
ุงูู
ุซุงู QTL-1 SecretGamma Interferon ุจุฅู
ูุงููุง ุชุญุณู
135
00:10:30,800 --> 00:10:34,200
ุงูุงูููุงู
ุงุชูุฑู ูุงูุงูุชู
ุงููุฑูุจูุง ูุงูุงูุชูุงุฉ ูุดููุงูุง ูู
136
00:10:34,200 --> 00:10:40,880
ุงููุฌุฑ ุงููู ูุงุช ุฏู ุงู ุจุงุจ ุชู ุฃูุถุง ุงูุฏูุณ ุงูุงุฎุชูุงู
137
00:10:40,880 --> 00:10:42,660
ุงูุงุฎุชูุงู ุงูุงุฎุชูุงู ุงูุงุฎุชูุงู ุงูุงุฎุชูุงู ุงูุงุฎุชูุงู
138
00:10:42,660 --> 00:10:46,520
ุงูุงุฎุชูุงู ุงูุงุฎุชูุงู ุงูุงุฎุชูุงู ุงูุงุฎุชูุงู ุงูุงุฎุชูุงู
139
00:10:46,520 --> 00:10:51,440
ุงูุงุฎุชูุงู ุงูุงุฎุชูุงู
140
00:10:51,440 --> 00:10:53,720
ุงูุงุฎุชูุงู ุงูุงุฎุชูุงู ุงูุงุฎุชูุงู ุงูุงุฎุชูุงู ุงูุงุฎุชูุงู
141
00:10:53,720 --> 00:10:54,260
ุงูุงุฎุชูุงู ุงูุงุฎุชูุงู ุงูุงุฎุชูุงู ุงูุงุฎุชูุงู ุงูุงุฎุชูุงู
142
00:10:54,260 --> 00:10:54,280
ุงูุงุฎุชูุงู ุงูุงุฎุชูุงู ุงูุงุฎุชูุงู ุงูุงุฎุชูุงู ุงูุงุฎุชูุงู
143
00:10:54,280 --> 00:10:58,140
ุงูุงุฎุชูุงู ุงูุงุฎุชูุงู ุงูุงุฎุชูุงู ุงูุงุฎุชุงูุดู ุงูุฏูุฒ
144
00:10:58,140 --> 00:11:03,440
ุงูุชูุงูููุงู
ุชุฑู ุงูุดู ู
ู ุฎูุงู ูู secretion of ุงู
145
00:11:03,440 --> 00:11:10,040
inducing its inhibitory effectsresident macrophage
146
00:11:10,040 --> 00:11:14,760
clear apoptic cells ู
ู ุฎูุงู ุฒู ู
ุง ูููุง ุงููู ูู
147
00:11:14,760 --> 00:11:21,160
certain adhesion molecule ู adhesion receptors
148
00:11:21,160 --> 00:11:24,520
ูุจุชุนู
ู ุฒู ุงู vetronectal receptors ูุจุชุนู
ู
149
00:11:24,520 --> 00:11:30,640
endocytosis ูุฒู ู
ุง ูููุง ุงู killing activity is not
150
00:11:30,640 --> 00:11:37,070
efficient ุจูุฐุง ุงูู
ููุงูุฒู
ุงู macrophageุฃูุถูุง
151
00:11:37,070 --> 00:11:40,150
Internalized pathogen using variety of specific
152
00:11:40,150 --> 00:11:44,010
and opsonic receptor ู
ู ูุฐู ุงูุฑูุณุจุชูุฑ ูู ุงู
153
00:11:44,010 --> 00:11:46,530
-hypopolysaccharide receptor ุงู-dolyric receptor
154
00:11:46,530 --> 00:11:50,250
ุงูู
ููุณ ุฑูุณุจุชูุฑ ุงู-RFC ุฑูุณุจุชูุฑ ุงููู
ุจููู
ูุช ุฑูุณุจุชูุฑ
155
00:11:50,250 --> 00:11:55,350
ููุงุญุฏ ู ุชูุงุชุฉ ู ุฃุฑุจุนุฉ complement component ูุนูู
156
00:11:55,350 --> 00:12:00,650
ููุง different receptor ุนูู ุณุทุญูุง ุชุฎูููุง ูุฏุงุด ุชุนุฏุงุฏ
157
00:12:00,650 --> 00:12:06,310
ูุฐู ุงูุฑูุณุจุชูุฑุงูุชููุดูู ู
ุงููุฑููุงุฌ ุงูุถุง ุชุฎูุต ู
ู
158
00:12:06,310 --> 00:12:11,370
ุณูุชููุงูู ูุงูุฒูู ุงู complement system ู
ููููููู ู
159
00:12:11,370 --> 00:12:16,310
ุจุฑูููุงุฌูุงูุฏ ู
ููููููู ููุฐุง ุดููุงู ูู ุงูุฌุฏูู ุงูุณุงุจู
160
00:12:16,310 --> 00:12:22,170
ุงูุชููุดูู ู
ุงููุฑููุงุฌ ููุชุฌ ุงูุณุฌูู ุฑููุจ ูููุชุฑูุฌูู
161
00:12:22,170 --> 00:12:28,870
ู
ุชูุณุท ูุคูุงุก ู
ุฎูุตุงู ุฌุฏูุง ูุฅูุฏูุณุชูุฒ ุจูุชูุฑูุง ูููุฌุงู
162
00:12:29,550 --> 00:12:34,730
ูุฃูุถุง ุดููุงูุง ูู ุงูุฌุฏูู recently recruited cells
163
00:12:34,730 --> 00:12:41,570
are most effective at antimicrobial killing ุจููู
ุง
164
00:12:41,570 --> 00:12:46,270
ุงู resting macrophages have only limited killing
165
00:12:46,270 --> 00:12:50,430
activity ุทุจูุนู ุงููู ุจุชุญุฑู ูุดุงุทู ููููู ุฃูุชุฑ ู
ู ุงููู
166
00:12:50,430 --> 00:12:58,550
ุนูุด ู
ู ุงููู ูุงุนุฏูุฐุง ู
ุง ูุชุนูู ุจุงูู macrophage ุจุชุทูู
167
00:12:58,550 --> 00:13:03,650
ุฅูู other cytotoxic cells Cell-mediated
168
00:13:03,650 --> 00:13:08,150
cytotoxicity is essential defense mechanism ููุด
169
00:13:08,150 --> 00:13:10,690
ุงูู intracellular pathogen ุจู
ุง ูููุง ุงูููุฑูุณ
170
00:13:10,690 --> 00:13:15,990
ุจูุชูุฑูุง parasites and tumor cells ูููุง ุจุชูุนุจ ุฏูุฑ
171
00:13:15,990 --> 00:13:20,230
ูุจูุฑ they can become cytotoxic or target for
172
00:13:20,230 --> 00:13:24,700
cytotoxic cellsุงูprocess is important in the
173
00:13:24,700 --> 00:13:27,940
destruction of allergenic tissue graft ุถูุฑ
174
00:13:27,940 --> 00:13:33,480
cytotoxic cells ูู ูุฐุง ุงูู
ูุถูุน ุญูุซ ูู ุงูุฃุณุงุณู this
175
00:13:33,480 --> 00:13:37,880
activity is executed by several types of cells
176
00:13:37,880 --> 00:13:43,760
ู
ููุง ูููุง cytotoxic T cell ู ุงู NK cell ู ุจุนุถ ู
ุฑุงุช
177
00:13:43,760 --> 00:13:49,200
ุงู myeloid cells ูุจูู ุงู major cellsุงูุชู ูู
ูู ุฃู
178
00:13:49,200 --> 00:13:52,640
ุชุณุชุฎุฏู
ู
ุตุงุฏุฑ ู
ุฏุนูู
ุฉ ูู Cytotoxicity ูุจูุณู
ููุง
179
00:13:52,640 --> 00:13:57,480
Cytotoxic Cells ูู ุงูู T-Cytotoxic ู ุงูู NK Cell
180
00:13:57,480 --> 00:14:03,460
ุจุดูู ุฃุณุงุณู ูุนูู ุงูู T-Cytotoxic C ุฏู ุงูู ุงูู T
181
00:14:03,460 --> 00:14:06,480
-Cytotoxic Cellุ ูุงู ุฑููููููุฒ ุฃูุชุฌูููู ุฏู ุจุชุงุนุช
182
00:14:06,480 --> 00:14:10,580
presented on MHC Class I ู
ุด ุจุชูุฏู
ููุง ุงูุงูุชุฌู ู
ุฑุชุจุท
183
00:14:10,580 --> 00:14:15,190
ุจ MHC Class I ู
ูููููููุจููู
ุง ุงูู NK cell react
184
00:14:15,190 --> 00:14:18,490
against cell which do not express MSC class I
185
00:14:18,490 --> 00:14:23,610
ุดูููุง ุงููุงุฑู ูู ุงูู
ููุงููุฒู
ูุงุญุฏุฉ ุจุชุชุนุฑู ุนูู MSC
186
00:14:23,610 --> 00:14:27,710
class I ู
ูููููู ููุงุญุฏุฉ ุจุชุชุนุฑู ุนูู ุงู presence of
187
00:14:27,710 --> 00:14:31,930
MSC class I ู
ูููููู ูุฌูุฏู ุชุงูุชุฑ ูุบูุฑู they can
188
00:14:31,930 --> 00:14:35,710
interact with these cells using a variety of
189
00:14:35,710 --> 00:14:40,990
receptors ูุดูููุง ู
ููุงููุฒู
ุงูู NK cell ูู ู
ุญุงุถุฑุฉ
190
00:14:40,990 --> 00:14:48,050
ุณุงุจูุฉุทูุจ ููู ูุญุฏุซ ุงูู cytotoxicityุ ูุงููุง ุบูุงุตุฑ
191
00:14:48,050 --> 00:14:51,850
ุงูู cytotoxicity ูู
ุฑุฉ ูุงุญุฏ ุงููู ูู cell to cell
192
00:14:51,850 --> 00:14:54,630
interaction ูุงุฒู
ูุญุตู ููู cell to cell contact
193
00:14:54,630 --> 00:14:59,410
ูู
ุฑุฉ ุงุชููู cytokine release ููู
ุฑุฉ ุชูุงุชุฉ granule
194
00:14:59,410 --> 00:15:04,070
release ู
ุงุดู ูุญุตู ููู ุงููู ูู ุงูู lithium-heat
195
00:15:04,070 --> 00:15:09,860
degranulation ูู ุขุฎุฑ ุงูุญุงุฌุฉู
ููุงููุฒู
ุขุฎุฑ ุฃูุถูุง can
196
00:15:09,860 --> 00:15:13,140
be included ู ูู ุงูู Fas-Ligand Anti-Human
197
00:15:13,140 --> 00:15:18,000
Necrosis Factor These can signal apoptosis to the
198
00:15:18,000 --> 00:15:20,900
target cell ูุญู ูุนุฑู ุงูู Fas ูู ุนุจุงุฑุฉ ุนู death
199
00:15:20,900 --> 00:15:27,840
receptor ุฃู ุงูู Fas-Ligand ู ุจุงูุชุงูู can induce
200
00:15:27,840 --> 00:15:33,390
apoptosis to the cellุฃูุถูุง ู
ู ุฃุฏูุงุช ุงููุชู ุงูู
201
00:15:33,390 --> 00:15:37,070
Granules ุฒู ุงูู Perforin ูุงูู Granzyme ุชุฏูุน ุฅูู
202
00:15:37,070 --> 00:15:42,990
ุชููุฃุฉ ุฃุฏูุงุช ุงูุฃุฏูุงุช ุงูุชู ุชุณุชุฎุฏู
ูุง ุงูู cell ุงูู
203
00:15:42,990 --> 00:15:48,290
cytotoxic cells ูู ู
ู ุดุฑูุทูุง cell to cell contactุ
204
00:15:48,290 --> 00:15:52,000
release of cytokineุ release of granulesุฃูุถูุง
205
00:15:52,000 --> 00:15:55,760
ุฃุณููุจ ุขุฎุฑ ูููุชู ู
ู ุฎูุงู ุงูู Death Receptor ููู ุงูู
206
00:15:55,760 --> 00:16:02,260
Fas-Ligand and Tumor Necrosis Factor Signal ู
207
00:16:02,260 --> 00:16:06,860
ุงูุฃุฎูุฑ ูุงูู Granules ู
ู ุฎูุงู ุงูู Release ุฃู ุงูู
208
00:16:06,860 --> 00:16:10,640
Perforation of the Enzyme ุงููู ุจูุนู
ููุง ุฃูุถูุง ุชุดู
209
00:16:10,640 --> 00:16:19,120
ุฃู Cell Damage ุงุชูููุง ุนูู ุฃู ุงููุงุณูุชู
ุชูููุฑู ุนูู
210
00:16:19,120 --> 00:16:22,260
ู
ููุฑูุณูุงูุชูุฑูุณูุจุชุฑ ุนูู ุงูู target cell ุจูุคุฏู
211
00:16:22,260 --> 00:16:25,580
ููุงูุชูุงุก ู
ู ูุงุณุง ุจูุณูุณ ูุงููุงุณุง ุจูุณูุณ ูู ุนุจุงุฑุฉ ุนู
212
00:16:25,580 --> 00:16:30,680
ู
ุฌู
ูุนุฉ ู
ู ุงูุฅูุฒูู
ุงุช ุงูุชู ุชุชุนุงู
ู ุจุงูุชุนุจูุฑ ุนูู
213
00:16:30,680 --> 00:16:34,360
ุฃุจูุจุชูุณุณ
214
00:16:34,360 --> 00:16:40,040
ูุงูุฌุฏูู ุงููุงุชูุจูุจูู ููุง ุฃู ุงูุตูุฑุฉ ุงููุงุฏู
ุฉ ูู ุฌุฑุญ
215
00:16:40,040 --> 00:16:45,460
ุงูุฅุชูุงุท ุจูุจูู ููุง ุงููู ูู ุงู interaction between T
216
00:16:45,460 --> 00:16:48,880
-cytotoxic and their target cell ูุทุจุนุง ูุฐุง ุงู
217
00:16:48,880 --> 00:16:52,380
interaction ุญูููุง ููู ุณุงุจูุง ุฒู ู
ุง ุงูุชูุง ุดุงูููู ูู
218
00:16:52,380 --> 00:16:57,120
T-cytotoxic lymphocytes ููู ุงู target cell T
219
00:16:57,120 --> 00:17:02,790
-cytotoxic ุฃูู ุชุญุชุงุฌ ุฅูู ุฃูุชุฑ ู
ู ูุงุดู
ู signal to
220
00:17:02,790 --> 00:17:07,470
be activated ูุงูู ูุงุญุฏุฉ TCR ุจุชุจูู ุงู antigen ุงููู
221
00:17:07,470 --> 00:17:12,810
ู
ู
ุณูู ุจุงู MHC class I ู
ููููููู ูุจูุฌู ุงู coreceptor
222
00:17:12,810 --> 00:17:18,890
ุงููู ูู CD8 ุจูุฑุชุจุท ุจุงู MHC class I ู
ููููููู ููุฐู
223
00:17:18,890 --> 00:17:25,530
ุจุชุณู
ููุง ุงููู ูู ุงู first signal ููููุง ุชุญุชุงุฌ ุฅูู
224
00:17:25,530 --> 00:17:34,370
other signalู
ุงุดู ู
ููุง ุงููู ูู CD2 ุจุฑุชุจุท ุจุงู
225
00:17:34,370 --> 00:17:40,210
leukocyte functioning antigen ุชูุงุชุฉ ู leukocyte
226
00:17:40,210 --> 00:17:43,450
functioning antigen one ุนูู cytotoxic telemphocyte
227
00:17:43,450 --> 00:17:46,950
ุจุฑุชุจุท ุจุงู ICAM-1 ูุงู ICAM-1 ูู ุนุจุงุฑุฉ ุนู
228
00:17:46,950 --> 00:17:53,320
intracellularAdhesion molecule number one ูุจุชููู
229
00:17:53,320 --> 00:17:58,940
ุงูุฑุงุจุทุฉ ุจูุตูุฑ ููู ุงูุด ูู activation and cytotoxic
230
00:17:58,940 --> 00:18:03,740
activity activation
231
00:18:03,740 --> 00:18:05,960
and
232
00:18:07,470 --> 00:18:11,830
Target Cell Killing By CD8-T Cytotoxic Cell ุญูููุง
233
00:18:11,830 --> 00:18:17,650
ูููุง ูู ุงูู B Cell Activity Lecture ู ุฃูุถุง ููููุฉ
234
00:18:17,650 --> 00:18:22,410
ุงููู ูู ูุงุฒ ูุงุฒ legend activity ูู ุฒู ู
ุง ูููุง CD4
235
00:18:22,410 --> 00:18:31,650
-T Cell ุจุชุณุชุฎุฏู
CD95 ููู ุนุจุงุฑุฉ ุนู ูุงุฒ ู
ุน ุงู CD178
236
00:18:31,650 --> 00:18:36,490
ู ุงููู ู
ูุฌูุฏ ุนูู ุงู
237
00:18:38,320 --> 00:18:42,240
ุจู Target Cell ูุจุงูุชุงูู ุจูุตูุฑ ููู ุฃูุถูุง Fast Fast
238
00:18:42,240 --> 00:18:51,020
-Legend Activity ู Killing Mechanism ูุญูู
239
00:18:51,020 --> 00:18:54,500
ุนูู ุงูุงู ุนูู ุงูู Non-Lymphoid Cytotoxic Effects
240
00:18:54,500 --> 00:18:59,220
ุฎูุงูุง ุบูุฑ ูููููุฉ ูุนูู ุงู ุงูู Macrophages
241
00:18:59,220 --> 00:19:02,920
Macrophages can damage target using their non
242
00:19:02,920 --> 00:19:08,160
-specific toxic effect or system and viavia
243
00:19:08,160 --> 00:19:16,460
cytokine ูููู
ุง ุนุฏุฏ ู
ู ุงูู non lymphoid cytotoxic
244
00:19:16,460 --> 00:19:21,540
cell which can invade micro organism ุฒู ุงูุจูุชูุฑูุง
245
00:19:21,540 --> 00:19:28,460
ู ุงูุจุฑุงุณูุฒ cytotoxicity ุฃูุถุง ู
ู
ูู ุชุตูุฑ ู
ู ุฎูุงูุงูู
246
00:19:28,460 --> 00:19:32,440
Antibody Dependent Cell-mediated Cytotoxicity
247
00:19:32,440 --> 00:19:39,480
ู
ููุงููุฒู
ุงููู ูุชุนุงู
ู ู
ุน ู
ุฏููุฉ ุชูุณูู ุบูุฑ ู
ุญุฏูุฏุฉ
248
00:19:43,160 --> 00:19:46,140
ุฃูุถูุง ู
ู ุฎูุงู ุงูุงุฑุชุจุงุท ุงููู ูู ุงูู macrophage ู
249
00:19:46,140 --> 00:19:48,680
ุงูููุชุฑููููุ these are phagocytic cell ุงููู ููู
250
00:19:48,680 --> 00:19:53,560
receptors ูู-FC portion of IgG ุนูู ุณุทุญูู
ุ ูุนูู
251
00:19:53,560 --> 00:19:56,980
ุณุจูู ุงูู
ุซุงูุ ุงูุชูุชููุฉ ุฏูู ุงููู ููู
receptor ูู-FC
252
00:19:56,980 --> 00:20:00,300
gamma ุฑูุญุต ุงููReceptor 1 ูุงููFC gamma ุฑูุญุต
253
00:20:00,300 --> 00:20:06,040
ุงููReceptor 2ุ ูุฏู ุจูู
ูููู
ู
ู ุงูุงุฑุชุจุงุท ุจุงู tumor
254
00:20:06,040 --> 00:20:10,100
cell ุจุงููantigen and induce ADCC
255
00:20:12,640 --> 00:20:16,740
ู
ููุฑููุงุฌูุง ุงูููุชุฑูููู ุชููุฃ ูุฅุฏู
ุงุฑ ุงููุถุน ุจุฅุฏุฎุงูู
256
00:20:16,740 --> 00:20:20,320
ููุฏุงุฎููุฉ ููุฌุณู
ูู
ู ุฎูุงู ุฐูู ูุชู
ุฅุฏุฎุงูู ููุฏุงุฎููุฉ
257
00:20:20,320 --> 00:20:22,840
ููุฌุณู
ู ูุชู
ุฅุฏุฎุงูู ููุฏุงุฎููุฉ ููุฌุณู
ู ูุชู
ุฅุฏุฎุงูู
258
00:20:22,840 --> 00:20:24,460
ููุฏุงุฎููุฉ ููุฌุณู
ู ูุชู
ุฅุฏุฎุงูู ููุฏุงุฎููุฉ ููุฌุณู
ู ูุชู
259
00:20:24,460 --> 00:20:25,300
ุฅุฏุฎุงูู ููุฏุงุฎููุฉ ููุฌุณู
ู ูุชู
ุฅุฏุฎุงูู ููุฏุงุฎููุฉ ููุฌุณู
260
00:20:25,300 --> 00:20:28,140
ู ูุชู
ุฅุฏุฎุงูู ููุฏุงุฎููุฉ ููุฌุณู
ู ูุชู
ุฅุฏุฎุงูู ููุฏุงุฎููุฉ
261
00:20:28,140 --> 00:20:31,080
ููุฌุณู
ู ูุชู
ุฅุฏุฎุงูู ููุฏุงุฎููุฉ ููุฌุณู
ู ูุชู
ุฅุฏุฎุงูู
262
00:20:31,080 --> 00:20:38,400
ููุฏุงุฎููุฉ ููุฌุณู
ู ูุชู
ุฅุฏุฎุงูู ููุฏุงุฎููุฉ ููุฌุณู
ู
263
00:20:38,400 --> 00:20:42,510
ูุชู
ุฃูุถุง ู
ุงูุฑูููุฑุณ ูุฌุนู ููู
ุฎููู ุงููู ูุณู
ูู human
264
00:20:42,510 --> 00:20:50,030
necrosis ูุงูุชูุฑ ู
ู
ูู ุฃู ูุฏุนู
ุงุจูุจุชูุณูุฒ ูุฃูุถุง
265
00:20:50,030 --> 00:20:56,810
ุงูููุฌุฑ ุงูุฃุชู ุจูุจูู ูู ุงู mechanism that may
266
00:20:56,810 --> 00:21:00,330
contribute to the cytotoxicity of myeloid cell
267
00:21:00,330 --> 00:21:04,930
ุดูููุง ุฅูุด ุงููู ุจูุตูุฑ ุจุทูุน reactive oxygen species
268
00:21:04,930 --> 00:21:08,710
ู
ุงุดู ุจุทูุน
269
00:21:10,040 --> 00:21:19,600
reactive nitrogen species ุจูุทูุน c3a receptor sorry
270
00:21:19,600 --> 00:21:25,120
c3a component ู ุทุจุนุง ูุฐู ุงููู ูุฏูุฑ ูู ุงู
271
00:21:25,120 --> 00:21:31,260
recruitment of other cells super oxide, anion,
272
00:21:31,400 --> 00:21:34,740
reactive intermediate, nitric oxide, human
273
00:21:34,740 --> 00:21:40,050
interest factor alpha ูููู
ูุฏูู ุจูุทูุนูุง ู
ุงุดูุงูุฐู
274
00:21:40,050 --> 00:21:43,390
ูุชู
ุฅุทูุงูู ู
ู ุฌุณุฏ ุงูู
ูููููุฏ ููู
ููู ุชุฏู
ูุฑ ุงูุฌุณุฏ
275
00:21:43,390 --> 00:21:48,590
ุงูู
ูุงุฌุฑ ุจุงูุฅุถุงูุฉ ุฅูู ุณูุชููุงูู ู
ูุฏูุงุชูุงู ุงูุชุญูู
276
00:21:48,590 --> 00:21:53,550
ุงูุงุฏููููู ุฃูุถูุง ููุณ ููููููุฏ
277
00:21:56,710 --> 00:22:03,490
ุจุชุนู
ู ุชุนู
ู ุชุนู
ู ุชุนู
ู ุชุนู
ู ุชุนู
ู
278
00:22:03,490 --> 00:22:11,850
ุชุนู
ู ุชุนู
ู ุชุนู
ู ุชุนู
ู ุชุนู
ู
279
00:22:15,110 --> 00:22:20,230
ุงูุฌุฑุงู
ููุณ ุชุญุชูู ุนูู ุงูุชุงูู ุชุญุชูู ุนูู ุจุฑูุชูู ุฃุณุงุณู
280
00:22:20,230 --> 00:22:24,870
ูุจูุฑ ูู
ูู ุฃู ููุชู ุงูุญููุงูุงุช ุฅูุฒูููููู ุจุงูุงูุณูุฏูุฒ
281
00:22:24,870 --> 00:22:31,050
ููู ูุงุชู ููู ููุญููุงูุงุช ุจุฅูุณูุฏ ุงููุงูุงูุฏ ูุฅูุชุงุฌ
282
00:22:31,050 --> 00:22:37,570
ุญูุจููุงูุงูุฏ ูุฅูุฒูููููู ูุงุชูุงููู ุจุฑูุชูู ููู ูุงุฏุฑ ุนูู
283
00:22:37,570 --> 00:22:43,310
ูุชู ุงูุญููุงูุงุช ู
ุซู ุงูุดูุณุชูุณูู
ุง ูู
ูู ุฃู ูููู
284
00:22:43,310 --> 00:22:51,190
ุงุณุชุนุฑุถูุงุงูู Mononuclear phagocytic cell ู ุงูู
285
00:22:51,190 --> 00:23:02,330
cytotoxic effect induced by these cells ุฃุดูุฑ
286
00:23:02,330 --> 00:23:03,470
ููู
ุงุณุชู
ุงุนูู
|