File size: 40,156 Bytes
27f381d |
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 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 |
1
00:00:05,010 --> 00:00:08,550
ุจุณู
ุงููู ุงูุฑุญู
ู ุงูุฑุญูู
ุงูุณูุงู
ุนูููู
ูุฑุญู
ุฉ ุงููู
2
00:00:08,550 --> 00:00:14,970
ูุจุฑูุงุชู ุงูุขู ุจููุชูู ูุฌุฒุก ุงูุซุงูู ู
ู ุงูู
ุญุงุถุฑุฉ ุงูุณุงุจุนุฉ
3
00:00:14,970 --> 00:00:20,150
ุงูุซุงูุซ ุจูุฒุง ุงููููููุงู ุฏุงููุณููุงููู ุงู ุณูุฑูุจููุง ูู
4
00:00:20,150 --> 00:00:24,110
ุงูุฌุฒุก ุงูุฃูู ุงุชููู
ุช ู
ุนูู
ุนูู ุงูุจูุฒุง ุงููููููุงู
5
00:00:24,110 --> 00:00:27,430
ุฃููุงุนูู
ูุฃุฌุฒุงูู
ูุงูู functions ุจุชุงุนุฉ ุงูุจูุฒุง
6
00:00:27,430 --> 00:00:31,620
ุงููููููุงู ู ุจุฏุฃุช ูู ุฌุฒุก ุงูุซุงูู ุงููู ูู ุงูู
7
00:00:31,620 --> 00:00:34,460
Diencephalon ุฃุฎุฏูุง ู
ู ุงูู Diencephalon ุงููู ูู
8
00:00:34,460 --> 00:00:39,320
Thalamus and Epithalamus ุงูููู
ูู ุฌุฒุก ุซุงูู ู
ู
9
00:00:39,320 --> 00:00:44,640
ู
ุญุงุถุฑุชูุง ุฑุงุญ ุฃูู
ู Metathalamus, Subthalamus and
10
00:00:44,640 --> 00:00:49,720
Hypothalamus ููุชููู
ุนู ุฌุฒุก ุงูููุงุฆู ุงููู ูู ุงูู
11
00:00:49,720 --> 00:00:55,320
cerebellum ูุจูู ุงูุขู ุฑุงุญ ุฃูู
ู ู
ูุถูุน ุงููู ูู ุงูู
12
00:00:55,320 --> 00:01:02,310
Diencephalon ู
ุชุฐูุฑููุ ูู ุงูู
ุญุงุถุฑุฉ ุงูุณุงุจูุฉ ุฑุณู
ูุง
13
00:01:02,310 --> 00:01:08,830
Diencephalon ููููุง ูุฐุง ุนุจุงุฑุฉ ุนู ุงูู thalamus ูุฐุง
14
00:01:08,830 --> 00:01:14,510
thalamus ููุง
15
00:01:14,510 --> 00:01:20,410
ุนุจุงุฑุฉ ุนู interthalamic adhesions ุจุนุฏูู ุจูุฌููุง ุงููู
16
00:01:20,410 --> 00:01:25,930
ูู ุงูู subthalamus ู
ู ุงูุฃู
ุงู
ูู
ู ุชุญุช ุจูุฌู
17
00:01:26,920 --> 00:01:33,320
hypothalamus ู
ุฑุชุจุท ุจุดูุก ุงุณู
ู pituitary gland ููู
18
00:01:33,320 --> 00:01:39,180
ุงูุฎูู ุจูููู inferior ุจูููู metathalamus superior ู
19
00:01:39,180 --> 00:01:45,280
posterior ุจูููู epithalamus ุจุนุฏูู ุจูุฌููุง ุงูู
20
00:01:45,280 --> 00:01:51,400
midbrain pons medulla
21
00:01:51,400 --> 00:01:52,220
oblongata
22
00:01:54,530 --> 00:01:58,970
ูุจููุฒู spinal cord spinal cord medulla oblongata
23
00:01:58,970 --> 00:02:11,790
bones mid brain ุงูุฌุฒุก ูุฐุง ุจูุณู
ู diencephalon okay
24
00:02:11,790 --> 00:02:18,270
you can see metathalamus ูู ุนุจุงุฑุฉ ุนู part of
25
00:02:18,270 --> 00:02:23,670
diencephalon, part of the encephalon which is
26
00:02:23,670 --> 00:02:29,330
attached to the posterior inferior surface of
27
00:02:29,330 --> 00:02:32,930
thalamus ูู ู
ูุฌูุฏ ูููุ ูู ุงูู posterior inferior
28
00:02:32,930 --> 00:02:36,610
surface of thalamus ุทุจ ุงูู epithalamus ู
ูุฌูุฏ ูู ุงูู
29
00:02:36,610 --> 00:02:40,730
posterior superior surface of thalamus ุงูู
30
00:02:40,730 --> 00:02:44,990
metathalamus contains two parts ุจุชููู ู
ู ุฌุฒุฆูู
31
00:02:44,990 --> 00:02:52,320
ุงูุฌุฒุก ุงูุฃูู Lateral geniculate body ุงูุฌุฒุก ุงูุซุงูู
32
00:02:52,320 --> 00:02:59,810
Medial geniculate body ุงูุฌุฒุก ุงูุฃูู ุงููู ุนูุงูุฉ ุจุงูู
33
00:02:59,810 --> 00:03:04,310
vision ูุงุถููุชู visual function connected with
34
00:03:04,310 --> 00:03:10,030
superior colliculus of the midbrain ุฃู
ุง ุงูู medial
35
00:03:10,030 --> 00:03:14,830
geniculate body ูู ุนูุงูุฉ ุจุงูู hearing ู connected
36
00:03:14,830 --> 00:03:18,050
with inferior
37
00:03:20,220 --> 00:03:23,800
colliculus ูุจูู with inferior colliculus ูููู media
38
00:03:23,800 --> 00:03:27,080
geniculate body ุงููู ุนูุงูุฉ ุจูู ุจุงูhearing ู
39
00:03:27,080 --> 00:03:31,340
connected with ุงูู with inferior colliculus ูุงู
40
00:03:31,340 --> 00:03:33,980
ูุงุญุฏุฉ ูู ุงูู slide lateral geniculate body visual
41
00:03:33,980 --> 00:03:37,760
function ู media geniculate body ุงููู ุนูุงูุฉ ุจุงูู
42
00:03:37,760 --> 00:03:40,460
hearing ุฃู auditory function hearing ุฃู auditory
43
00:03:40,460 --> 00:03:47,040
the same ูุงุถุญุฉ ุฅู ุงูู lateral geniculate body
44
00:03:52,240 --> 00:03:59,180
ู medial geniculate body ุงูู medial geniculate body
45
00:03:59,180 --> 00:04:09,440
ู
ุฑุชุจุทุฉ ุจู
ููุ ุจู inferior colliculus ุฃู
ุง ุงูู lateral
46
00:04:09,440 --> 00:04:14,000
geniculate body ู
ุฑุชุจุทุฉ ุจู superior colliculus ููุงุญุธูุง
47
00:04:14,000 --> 00:04:18,520
ุงูู lateral geniculate body ู
ุจุงุดุฑุฉ ู
ุฑุชุจุทุฉ ุจู
ููุ ุจู
48
00:04:18,520 --> 00:04:24,550
optic tract ููุง ุนูุงูุฉ ุจู visual function visual
49
00:04:24,550 --> 00:04:31,830
function ุฃู
ุง ุงูู medial geniculate body ู
ุฑุชุจุท ุจุงูู
50
00:04:31,830 --> 00:04:35,430
inferior colliculus ุงููู ุนูุงูุฉ ุจุงูู hearing ุฃู
51
00:04:35,430 --> 00:04:39,790
auditory function ููู
ุงุชููู
ูุง ุนูู ุงูู pathway of
52
00:04:39,790 --> 00:04:44,510
vision ุงุชุทุฑููุง ุฅูู ู
ูุถูุน lateral geniculate body ู
53
00:04:44,510 --> 00:04:49,670
ููู
ุงุชููู
ุช ุนูู ุงูู hearing ุงุชููู
ุช ุนูู medial
54
00:04:49,670 --> 00:04:54,460
geniculate body ูู ุนูุฏู lateral geniculate body
55
00:04:54,460 --> 00:04:57,660
ู ูุฐู media geniculate body ุงูู media geniculate
56
00:04:57,660 --> 00:05:01,620
body ููุง connection ู
ุน ุงูู inferior colliculus ู ุงูู
57
00:05:01,620 --> 00:05:03,740
lateral geniculate body ููุง connection ู
ุน ุงูู
58
00:05:03,740 --> 00:05:07,460
superior colliculus of midbrain
59
00:05:09,440 --> 00:05:13,940
ูู ูุนุชุจุฑ a part of the encephalon which is located
60
00:05:13,940 --> 00:05:19,040
between the thalamus and middle brainุ ุฅูู ุฌุฒุฆููุ
61
00:05:19,040 --> 00:05:22,620
ุฅูู posterior part ู anterior part ู ุงูู anterior
62
00:05:22,620 --> 00:05:25,660
ุจุชููู ู
ู ุฃุฌุฒุงุก ูุงูู posterior ุจุชููู ู
ู ุฃุฌุฒุงุกุ
63
00:05:25,660 --> 00:05:28,880
ู
ุงุจุฏู ุฃุถุทุฑู ููู
ูุถูุน ูุฐุงุ ุฅูู ุจูููููู ุฃุนุฑู ุฅูู ุตุฏุฑ
64
00:05:28,880 --> 00:05:32,300
ุงูู thalamus ููู ู
ูุงููุ ููุนุทููู
ุงูุนุงููุฉ ุจุณูููุฉ ููู
65
00:05:32,300 --> 00:05:36,400
ุฏู ุงูู subthalamus ุจููุน ุชุญุช ุฅูุดุ ุชุญุช ุงูู thalamus
66
00:05:36,400 --> 00:05:39,680
ูุจูู ูุงู ูุงุญุฏ ููุงู ูุงุญุฏ ุจููุน ูููุ ุชุญุช ุงูู thalamus
67
00:05:39,680 --> 00:05:43,920
ู ุจููุน above ุงูู midbrain ููู ุจูููู ุฅููุ ุงูู
68
00:05:43,920 --> 00:05:50,200
midbrain ูุนูู ู
ุญุตูุฑ ู
ุง ุจูู ุงูู thalamus ู midbrain
69
00:05:50,200 --> 00:05:58,980
ูุฃู ูู ู
ูุถูุน ู
ูู
hypothalamus hypothalamus it is
70
00:05:58,980 --> 00:06:05,350
part of diencephalon located in front of the
71
00:06:05,350 --> 00:06:11,870
subthalamus ุจูู ุฃู
ุงู
ุงูู subthalamus and anterior
72
00:06:11,870 --> 00:06:15,030
inferiorly ูุฅููุ ููุซูุงู
ุณ
73
00:06:23,150 --> 00:06:28,050
ูุนุชุจุฑ ุฌุฒุก ู
ู ุงูู Thalamus ูุณู
ูู Neuroendocrine
74
00:06:28,050 --> 00:06:33,030
organุ Neuroendocrine organุ ูุญุธุฉ ุญุฌู
ุงูููุจูุซูุงู
ุณ
75
00:06:33,030 --> 00:06:38,490
ุซูุงุซุฉ ู
ู ุนุดุฑุฉ ู
ู ุญุฌู
ุงูู brainุ ุซูุงุซุฉ ู
ู ุนุดุฑุฉ ู
ู
76
00:06:38,490 --> 00:06:44,620
ุญุฌู
ุงูู brainุ ููู it is very ูู ุฌุฒุก ู
ูู
ุฌุฏูุง ู
ู
77
00:06:44,620 --> 00:06:49,420
ูุธุงู
ุงูููุฑุจุง ุงูู
ุฑูุฒู ูู ุฌุฒุก ุฌุฏูุง ู
ูู
ุฌุฏูุง ู
ู ูุธุงู
78
00:06:49,420 --> 00:06:53,680
ุงูููุฑุจุง ุงูู
ุฑูุฒู ุงููู ุนูุงูุฉ ูู ุจูุงุก ุงูุญุฑู
ููุงุช ู
79
00:06:53,680 --> 00:06:59,160
ุจูุงุก ุงูุงูููุจูุชูุฑู ูุฅุทูุงู ุงูุญุฑู
ููุงุช ุงููู ุจุชุนู
ู ุฅูู
80
00:06:59,160 --> 00:07:03,920
ุงูู control ุจุชุดุชุฑู ุฌูุงูุฏ ุงูุบุฏุงู ุงููุฎุงู
ูุฉ ูุฃู ูู
81
00:07:03,920 --> 00:07:06,600
ูุนุชุจุฑ ูููุฑู ุงูุฏููุฑุงูู ุฃูุฑุบุงู
82
00:07:10,110 --> 00:07:14,350
ูุฐุง ูู ุงูููุจูุซุงูุงู
ุณ
83
00:07:14,350 --> 00:07:19,930
ููุง ุนูุฏู ูุฐุง ุงูููุจูุซุงูุงู
ุณ ูุฐุง ุงูููุจูุซุงูุงู
ุณ ูุฐุง
84
00:07:19,930 --> 00:07:20,810
ุงูููุจูุซุงูุงู
ุณ ูุฐุง ุงูููุจูุซุงูุงู
ุณ ูุฐุง ุงูููุจูุซุงูุงู
ุณ
85
00:07:34,270 --> 00:07:38,950
ุงููู ูู hypothalamus ู
ุฑุชุจุท ู
ุน ู
ูู ุจูููู ู
ุน ุงูู
86
00:07:38,950 --> 00:07:42,970
Pituitary gland posterior loop ู anterior loop Okay
87
00:07:42,970 --> 00:07:47,710
ู
ู ุงูุฎูู ุจูุฌููุง Superior ุจูููู ููุง Epithalamus ู
88
00:07:47,710 --> 00:07:52,550
ุชุญุช ุจูููู ููุง Metathalamus ูุฐุง ุชุฑููุจุฉ ูุชูุฒูุนู
89
00:07:52,550 --> 00:07:56,290
ุงููู ูู Diencephalon Diencephalon ูุจูู
90
00:07:56,290 --> 00:08:00,450
ุงูู hypothalamus located anterior ููู subthalamus ู
91
00:08:00,450 --> 00:08:05,710
ุจูููู anterior inferior ูู
ููุ ููู thalamus ูุฐูู ูุณู
ูุง
92
00:08:05,710 --> 00:08:07,990
hypothalamus
93
00:08:10,370 --> 00:08:14,930
ุฃู ููุจูุซูุงู
ุณ ุจุชููู ู
ู ุฃุฌุฒุงุก ุงููู ูู optic part ู
94
00:08:14,930 --> 00:08:19,410
ุงูู tubular part ู ุงูู mammary part ู
ุงุฑุงุญ ุฃููุช ูู
95
00:08:19,410 --> 00:08:22,830
ุชุฑููุจูู
ูุงูููููุงู ุงููู ู
ูุฌูุฏูู ุฏุงุฎููู
ูุถู ุจุดุฑุญูู
96
00:08:22,830 --> 00:08:27,510
ููุทุจ ูู ุฌุฒุก ุฅูุด ู
ูุฌูุฏ ููู ููููุงู ูู ู
ุงุฑุงุญ ุฃุชูุณุน
97
00:08:27,510 --> 00:08:32,270
ุฃุดุฑุญ ูุซูุฑ ููู ููู ุจูุนุฑู ููู ู
ูุฌูุฏ ุงูููุจูุซูุงู
ุณ ุงูู
98
00:08:32,270 --> 00:08:35,050
functions of hypothalamus ุฅูุด ูุธููุฉ ุงูู hypothalamus
99
00:08:36,540 --> 00:08:39,480
regulation of temperature ุงููู ุนูุงูุฉ ุจู regulation
100
00:08:39,480 --> 00:08:42,320
of temperature ูู ุจุนุถ ุงูุฃุญูุงู ุจูุฌููุง ู
ุฑูุถ ุจูููู ุนูุฏู
101
00:08:42,320 --> 00:08:47,580
ูุฒูู ุฏู
ุงุบู ูุฃุซูุงุก ูุฌูุฏ ุงููุฒูู ุงูุฏู
ุงุบู ุจูุญุฏุซ ู
ุนู
102
00:08:47,580 --> 00:08:50,840
ุงุฑุชูุงุน ุฏุฑุฌุฉ ุญุฑุงุฑุฉ ุงูุฌุณู
ูุฐุง ุงุฑุชูุงุน ุฏุฑุฌุฉ ุญุฑุงุฑุฉ
103
00:08:50,840 --> 00:08:55,540
ุงูุฌุณู
ูุฏ ุชููู central fever ูุนูู ุงุฑุชูุงุน ู
ุฑูุฒู ูุงุชุฌ
104
00:08:55,540 --> 00:09:00,860
ุนู irritation of blood to the hypothalamus ุจูุนู
ู
105
00:09:00,860 --> 00:09:07,110
ุนู
ููุฉ ุชููุฌ ูู
ููุ ูู thermoregulatory receptors
106
00:09:07,110 --> 00:09:11,150
ุงูู
ูุฌูุฏูู ูู ุงูููุจูุชุงูู
ูุณ ู ุจุชุฑุชูุน ุฏุฑุฌุฉ ุงูุญุฑุงุฑุฉ
107
00:09:11,150 --> 00:09:15,070
ุงุซููู emotional regulation ุงูุนูุงูุฉ ุจุงูู regulation
108
00:09:15,070 --> 00:09:20,790
of emotions ุงูุนุงุทูุฉ ุชูุงุชุฉ ุงูู growth function ุงููู
ู
109
00:09:20,790 --> 00:09:27,730
ุฃุฑุจุนุฉ hunger and thirst ุฃูุง ุฌูุนุงู ุฃูุง ุนุทุดุงู ุงููู
110
00:09:27,730 --> 00:09:29,910
ุนูุงูุฉ ุจุงูููุจูุชุงูู
ูุณ ุงูููุจูุชุงูู
ูุณ ุงููู ุจูุนุทููุง
111
00:09:29,910 --> 00:09:35,650
ุฅุดุงุฑุฉ ูุฃูู ุฃู ูุดุฑุจ sexual behavior control of
112
00:09:35,650 --> 00:09:39,690
various endocrine and activity rhythm ุนู ุทุฑูู ุงูู
113
00:09:39,690 --> 00:09:43,990
hormones ุงูุนูุงูุฉ ุจุงูุฐุงูุฑุฉ memory visual memory
114
00:09:43,990 --> 00:09:49,150
ูุนูู ุฃูุง ุดูุช ุดุฎุต ูุจุนุฏ ุณูุฉ ุบุงุจ ุนูู ุงุชุฐูุฑุช ุจุนุฏูู ุฅู
115
00:09:49,150 --> 00:09:54,660
ุฃูุง ุดูุช ูุฐุง ู
ูู
ุฌุฏูุง ุงููู ููุจูู ููู
ุณ ุงูู
ูุถูุน ูุฐุง ุฃุญุฏ
116
00:09:54,660 --> 00:09:59,220
ุฃุตุฏูุงุฆู ุงุชููู
ู
ุนู ูู ู
ูุถูุน ุจุนุฏ ูุชุฑุฉ ุตุฏูู ุซุงูู
117
00:09:59,220 --> 00:10:01,120
ุงุชููู
ููุช ูุงููู ุฃูุง ุณู
ุนุช ูุฐุง ุงูู
ูุถูุน ุญูู ููู
118
00:10:01,120 --> 00:10:05,520
ุตุงุญุจู ููุฏู ูููู ูุฐุง ุงุณู
ู verbal memory verbal
119
00:10:05,520 --> 00:10:10,560
memory ุงููู ุนูุงูุฉ ุจุงูุฐุงูุฑุฉ connections of
120
00:10:10,560 --> 00:10:13,500
hypothalamus with hypophysis ู
ูู ูู ุงูู hypophysis
121
00:10:13,500 --> 00:10:17,440
ูู pituitary gland ุฃููุฏ ู
ู
ูู ุฃุฎุฏุชู ูู ุงูู general
122
00:10:17,440 --> 00:10:22,710
ูู ุงูููุณููููุฌูุง ุฃู ูุฏู ุงูู hormones ุจูุณู
ูู Anti
123
00:10:22,710 --> 00:10:27,670
-diuretic hormone ู ุงูู Oxytocin ุจุตูุนูู
ุงูู
124
00:10:27,670 --> 00:10:31,710
hypothalamus Hypothalamus ุฅูุด ูุธููุฉ ุงูู Oxytocinุ
125
00:10:31,710 --> 00:10:35,550
ุงูู Oxytocin ูุฐุง ุจุดุชุบู ุนูุฏ ุงูุณุชุงุช ุฃุซูุงุก ุงูููุงุฏุฉ ู
ุน
126
00:10:35,550 --> 00:10:38,870
ูุฑู
ูู ุฃุณุชุฑูุฌูู ุงููู ุนูุงูุฉ ุจุงูู increase
127
00:10:38,870 --> 00:10:41,910
contractivity function ุงููู ุนูุงูุฉ ุจุงูู uterine
128
00:10:41,910 --> 00:10:47,030
contraction ุจุชููุตุงุช ุนุถูุงุช ุงูุฑุญู
ุฃุซูุงุก ุงูููุงุฏุฉ ูุนูู
129
00:10:47,030 --> 00:10:50,610
ูู ู
ูุฌูุฏ ุนูุฏ ุงูู females ุนูุฏ ุงูู females ุงูู
130
00:10:50,610 --> 00:10:55,270
vasopressin ุฃู ุงูู antidiuretic hormone ูู ุญุฏุซ ููุต
131
00:10:55,270 --> 00:10:57,970
ูู ุงูู antidiuretic hormone ุฃู ุงูู vasopressin
132
00:10:57,970 --> 00:11:03,690
ุงูุฅูุณุงู ูุตุงุจ ุจู
ุฑุถ ู
ุฑุถ ุงูุณูุฑ ุงููุงุฐุจ ุงููู ุจูุณู
ูู
133
00:11:03,690 --> 00:11:07,830
diabetes insipidus ูุนูู ูุธููุฉ ุงูู hormone ูุฐุง ุฅุญูุง
134
00:11:07,830 --> 00:11:10,490
ุจูุดุฑุจ ู
ูุงู ุจูุฑูุญ ุญู
ุงู
ุงููู ูู ู
ุง ูุงู ุนูุฏูุง ุงูู
135
00:11:10,490 --> 00:11:13,030
hormone ูุฐุง ูุงู ูู ุงูุณูุงุฆู ูู ุงูุฌุณู
ุชูุฒู ู
ุน ุงูู
136
00:11:13,030 --> 00:11:16,410
urine ุชูุฒู ู
ุน ุงูู urine ูุฐุง ุงูู hormone ุจูุนู
ู
137
00:11:16,410 --> 00:11:23,140
reabsorption ูู ุงูููู ูู
ูุ ููุณูุงุฆู ุจู
ูุน ุงูุณูุงุฆู
138
00:11:23,140 --> 00:11:26,800
ุชุฎุฑุฌ ู
ุน ุงูุจูู ุจูู
ูุฉ ูุจูุฑุฉ ุทุจ ูู ู
ุง ูุงู ูู ูุงู ูู
139
00:11:26,800 --> 00:11:29,860
ููุต ุนููุฉ ูู ุงููุฑู
ูู ูุฐุง ูุงู ุงูุฅูุณุงู ุจูุดุฑุจ ู
ูุฉ ูุน
140
00:11:29,860 --> 00:11:33,420
ุงูุญู
ุงู
ู
ุจุงุดุฑุฉ ุจุฏู ุทูู ุงูููุงุฑ ุฅูุด ุซุงููุฉ ู
ูุฉ ูุธููุง
141
00:11:33,420 --> 00:11:36,660
ูุดุฑุจูุง ููู ูุน ุงูุญู
ุงู
transit ุงูู
ูุฉ ุจุชุทูุน ูุจูู ูุฐุง
142
00:11:36,660 --> 00:11:39,980
ูุธููุฉ ุงููุฑู
ูู ูุนู
ู ุญุฌุฒ ุจู
ูุน ุงูุณูุงุฆู ู
ู ุงูุฎุฑูุฌ
143
00:11:39,980 --> 00:11:46,360
ุจูู
ูุฉ ูุจูุฑุฉ ุงุณู
ู antidiuretic ูุนูู ุจู
ูุน ุฎุฑูุฌ ุงูุจูู
144
00:11:46,360 --> 00:11:56,020
ุจูู
ูุฉ ูุจูุฑุฉ ุงูููุจูุซูุงู
ุณ ูู ุฑููุฉ ู
ูู
ุฉ ูู ูุดุทุฉ ูุดุฑ
145
00:11:56,020 --> 00:12:00,960
ุงูุญุฑู
ูู ููุดุฑ ุงูุญุฑู
ูู ุงูููุจูุซูุงู
ุณ ุจููุฑุฒููุง
146
00:12:00,960 --> 00:12:04,640
ูุฑู
ููุงุช ุงููู ูู ุนูุงูุฉ ุจุชุนู
ู control ูู Pituitary
147
00:12:04,640 --> 00:12:08,680
gland ุฅู
ุง ุจุชุฒูุฏ ูุธููุชูู
ุฃู ุจุชุฎูู ุงููุธููุฉ ุชุจุนุช ู
ููุ
148
00:12:08,680 --> 00:12:13,160
Pituitary gland ุทุจ ุงูู Oxytocin ู ุงูู antidiuretic
149
00:12:13,160 --> 00:12:17,060
hormone ูุฏูู ุฃู ุบุงุฒูุจุฑูุณูู ูุฏูู ุงูู hypothalamus
150
00:12:17,060 --> 00:12:21,520
ุจูุฑุฒูู
ูุจูุณูู
ูู
ุฌุงูุฒูู ูู
ููุ ููู posterior loop
151
00:12:21,520 --> 00:12:23,280
of Pituitary gland
152
00:12:31,410 --> 00:12:40,910
ูุฐุง posterior loop ููุฐุง anterior loop ูููุถุญ
153
00:12:40,910 --> 00:12:44,710
ุฅู ูุฐุง ู
ูุงู ุงูููุจูุซูุงู
ุณ ููู ูุฑู
ููุงุช ุจูุณูู
ูุง
154
00:12:44,710 --> 00:12:50,330
ู
ุฌูุฒูู ููู posterior loop of pituitary gland ูููุง
155
00:12:50,330 --> 00:12:55,330
ุนูุฏู anterior loop of pituitary gland ุทุจ ูู ุญุฏุซ
156
00:12:55,330 --> 00:13:01,180
ู
ุดููุฉ ุฃุตูุจ ุงูููุจูุซูุงู
ุณ ูู ุฃุนุฑุงุถ ุชูุฌู ุนูุฏ ุงูู
ุฑูุถ
157
00:13:01,180 --> 00:13:05,960
Endocrine ุฃู metabolic syndromeุ hypogonadism
158
00:13:05,960 --> 00:13:10,570
ู
ุดุงูู ูู ุนู
ููุฉ ุงูุฅูุฌุงุจ ุจุญุฏุซ ุนูุฏูู
ุงุซูููุ diabetes
159
00:13:10,570 --> 00:13:14,190
insipidus ุจูุญุฏุซ ู
ุนุงูู
ู
ุฑุถ ุงูุณูุฑ ุงููุงุฐุจุ ุจูุถููุง
160
00:13:14,190 --> 00:13:17,850
ูุดุฑุจูุง ู
ูุฉ ูุซูุฑ ููุจูููุง ูุซูุฑุ ุจูููุฑ ุงูู
ุฑูุถ ุนูุฏู
161
00:13:17,850 --> 00:13:20,890
ู
ุฑุถ ุงูุณูุฑุ ุจููุญุต ุงูู glucose ูู ุงูู bloodุ ุจููุงููู
162
00:13:20,890 --> 00:13:24,030
normalุ ูุจูู ุฅู ูุฐุง ุจูุณู
ูู ู
ุฑุถ ุงูุณูุฑ ุงููุงุฐุจุ ููุต
163
00:13:24,030 --> 00:13:28,070
ููู hormone ุงูู antidiureticุ opposite ุณู
ูุฉุ
164
00:13:28,070 --> 00:13:33,290
ุงูุฃูุฑุงุฏ ูู ุงููุฒูุ ุณู
ูุฉุ anorexia ุงููู ูู ููุฏุงู
165
00:13:33,290 --> 00:13:39,820
ุงูุดููุฉุ loss of appetite ุจูููู
ูุง ูุงู ุนูุฏูุง ู
ุฑูุถ ูุงู
166
00:13:39,820 --> 00:13:43,920
ุนูุฏู stroke of head trauma severe head trauma ูุฐุง
167
00:13:43,920 --> 00:13:46,980
ุงูู
ุฑูุถ ูุงู ูู ุฌุณู
ุงูู neurology ูุงู ูู ุฃููุฑุงููุง
168
00:13:46,980 --> 00:13:51,300
ู
ุงุฎูุงุด ุชูุงุฌุฉ ูู
ุฑุถู ุงููู ุณุฑู ู
ููุง ุงูุฃูู ุฎูุงุต ู
ุงุญุฏุด
169
00:13:51,300 --> 00:13:54,520
ู
ู
ูุนู ุนู ุงูุฃูู ูุฐุง ุทูู ุงูููู
ูุธููุชู ูุฃูู ุทูู ุงูููู
170
00:13:54,520 --> 00:13:58,060
ูุธููุชู ูุฃูู ูุฃูู ูุจุนุฏ ู
ุง ููู ุงูุชูู ุชุจุนู ูุฑูุญ ูุนู
ู
171
00:13:58,060 --> 00:14:01,960
vomiting ูุฑุฌุน ู
ู ูุชุฑ ู
ุง ุฃูู ุจุนุฏูู ูุฑูุญ ูุฃูู ูุฐู
172
00:14:01,960 --> 00:14:07,250
ุจูุณู
ููุง ุฅูู ุจูููู
ูุง eat much ู it's associated with
173
00:14:07,250 --> 00:14:10,250
vomiting ุจูุถู ูุฃูู ููุฑุฌุน ูุฃูู ููุฑุฌุน ูููุชู ุงูุฃูู
174
00:14:10,250 --> 00:14:14,030
ุจุณ ุญุฏ ููู ู
ุดููุฉ ุนูุฏู ููู ุงูู hypothalamus ุจูููู
175
00:14:14,030 --> 00:14:17,970
central hyperthermia ุฃู hypothermia ู
ู
ูู ุงูู
ุฑุถู
176
00:14:17,970 --> 00:14:21,590
ูุฏุฎู ูู ุงุฑุชูุงุน ุฏุฑุฌุฉ ุงูุญุฑุงุฑุฉ ููููู ูุงุชุฌ ุนู ุฅูู
177
00:14:21,590 --> 00:14:25,570
ุงุฑุชูุงุน ู
ุฑูุฒู ุงุฑุชูุงุน ู
ุฑูุฒู ู
ู ู
ุดุงูู ุงูู hypothalamus
178
00:14:25,570 --> 00:14:30,370
ููุฏ ูุนุทููุง neurological disturbances psychic
179
00:14:30,370 --> 00:14:33,010
disturbances ู
ุดุงูู ููุณูุฉ ุงุถุทุฑุงุจุงุช ููุณูุฉ
180
00:14:34,540 --> 00:14:37,020
Extrapyramidal manifestation ูููู ุนูุฏูู
181
00:14:37,020 --> 00:14:41,600
involuntary movement ุญุฑูุงุช ูุง ุฅุฑุงุฏูุฉ ู I signs
182
00:14:41,600 --> 00:14:45,480
miosis ุฃู ู
ุฏุฑูุงุณู ูุฃูู ุฅุญูุง ุจูุนุฑู ุงูู sympathetic
183
00:14:45
201
00:16:04,690 --> 00:16:09,770
ุจุญุฏูู
ุงูู cavernous sinus ู its contents ูุงูู
202
00:16:09,770 --> 00:16:13,490
contents ุงูู
ูุฌูุฏูู ููู ู
ุน ู
ูู ู
ุฑุชุจุท ูุฐู ุงูู
203
00:16:13,490 --> 00:16:16,610
pituitary gland connected with hypothalamus ู
ุน ุงูู
204
00:16:16,610 --> 00:16:22,970
hypothalamus ุจุชููุณู
ููุณู
ูู anterior loop ุจูุณู
ููุง
205
00:16:22,970 --> 00:16:27,470
adenohypophysis ู posterior loop ุจูุณู
ููุง
206
00:16:27,470 --> 00:16:29,490
neurohypophysis
207
00:16:31,050 --> 00:16:35,530
ููู ุงู pituitary gland ู
ุฑุชุจุทุฉ ู
ุน ู
ูู ูููุง ู
ุน
208
00:16:35,530 --> 00:16:40,550
ุงูhypothalamus ุจูุญุฏูุง ู
ู ุชุญุช sphenoid sinus ู
209
00:16:40,550 --> 00:16:45,850
sphenoid bone ู
ู ุฃุนูู ูู ุฏูุงูุฑุงุฌ ู
ุซู ูุฐุง ูุตููุง ุนู
210
00:16:45,850 --> 00:16:50,450
ุงู optic chiasm on each side ุจูููู ุนูุฏูุง ุงู
211
00:16:50,450 --> 00:16:53,450
cavernous sinus and its contents
212
00:16:56,650 --> 00:17:00,570
ููุง ูุงุถุญุฉ ุงูุตูุฑุฉ ุงููู ูู ุงู posterior loop ุงููู ูู
213
00:17:00,570 --> 00:17:04,350
neurohypophysis ู anterior loop ุงููู ูู
214
00:17:04,350 --> 00:17:12,950
adenohypophysis ุงู functions of pituitary gland ุงู
215
00:17:12,950 --> 00:17:15,430
anterior ู pituitary hormones ุงููู ุจููุฑุฒูุง ู
ู ุงู
216
00:17:15,430 --> 00:17:20,570
anterior loop growth hormoneุ ูุฑู
ูู ุงููู
ูุ
217
00:17:20,570 --> 00:17:26,100
prolactin hormoneุ ูุฑู
ูู ุงูุญููุจุ ูุงูู
ูููู ุฒุงุฏ
218
00:17:26,100 --> 00:17:33,540
ูุณุจุชู ู
ู
ูู ูุตุจุญ ูู ุญุงูุงุช ุงููุฑู
ุงูุจุฑููุงูุชูููู
ุง ุชุฏุฎู
219
00:17:33,540 --> 00:17:36,700
ุฃู ูุฑู
ูู ุงูุจุฑููุงูุชูู ุณููุฒ ุงููู ุนูุงูุฉ ุจู increase
220
00:17:36,700 --> 00:17:41,700
in milk secretion STH adrenocorticotropic hormone
221
00:17:41,700 --> 00:17:46,400
ุงููู ุนูุงูุฉ ุจุงูุฃุฏุฑููุงู ุฌูุงูุฏ TSH thyroid
222
00:17:46,400 --> 00:17:49,520
stimulating hormone ุงููู ุนูุงูุฉ ุจู
ูุถูุน ุงูุซูุฑููุฏ
223
00:17:49,520 --> 00:17:56,830
ุฌูุงูุฏ ุงูุบุฏุฉ ุงูุฏุฑููุฉ ุงูู LH ูุงูู FSH ุงููู ูู
ุนูุงูุฉ ุจุงูู
224
00:17:56,830 --> 00:18:05,870
hormones ุจุชุงุนูู ุงู female hormones ุงู posterior
225
00:18:08,870 --> 00:18:11,950
ุจุชุชุฑู ูุฑู
ูู ุงููู ุจููุฑุฒู ู
ู ุจุณุชูุฑูููุจ ูููู ุฃู ูู
226
00:18:11,950 --> 00:18:16,190
ุงุซููู ูู
ุฃุตูุงู ุจููุฑุฒู ู
ู ุงูููุจูุซูุงู
ุณ ูุงูููุจูุซูุงู
ุณ
227
00:18:16,190 --> 00:18:20,990
ุจูุณูู
ูู
ูู
ูุ ูู pituitary gland ุนุจุงุฑุฉ ุนู antidiuretic
228
00:18:20,990 --> 00:18:27,650
hormone ุฃู vasopressin ูุงูุซุงูู oxytocin
229
00:18:27,650 --> 00:18:33,570
ููู ูุงุถุญุฉ ุฃู ุฏู ุงููู ูู posterior lobe ูุงู anterior lobe ููู
230
00:18:33,570 --> 00:18:37,830
ุงูุซุงูู
ุณ connection ู
ุน ุงูุซุงูู
ุณ ููููู ุฎูุตุช ู
ูุถูุน
231
00:18:37,830 --> 00:18:41,770
ุงู diencephalon ุฏูููุชู ูุชููู
ุนูู ุฌุฒุก ุงูุฃุฎูุฑ ู
ู
232
00:18:41,770 --> 00:18:45,870
ุงูู
ุญุงุถุฑุฉ ุงููู ูู cerebellum cerebellum it is a
233
00:18:45,870 --> 00:18:52,860
little brain ูุฏููุง ู
ุฎ cerebrum ูู
ุฎูุฎ cerebellum ู
ู
234
00:18:52,860 --> 00:18:56,180
ุงูู embryological origin it is largest part of
235
00:18:56,180 --> 00:19:01,220
hindbrainุ ุงูู hindbrain ู
ููุณู
ููุณู
ููุ ู
ููุณู
ู
236
00:19:01,220 --> 00:19:05,480
metencephalon ู myelencephalonุ metencephalon
237
00:19:05,480 --> 00:19:09,980
ุชุนุทููุง cerebellum and pons ู myelencephalon ูุนุทููุง
238
00:19:09,980 --> 00:19:15,250
ู
ุฏููุฉ ุฃุจูุงูุฌุฉ ูุจูู ูุงุถุญุฉุ hindbrain ุฃุนุทุงูุง ุฑูู
ุจูู
239
00:19:15,250 --> 00:19:20,290
ุณููุงูููุ ุฑูู
ุจูู ุณููุงููู ุฃุนุทุงูุง ู
ุชูุณููุงูููุ ูุงูู
ุชู
240
00:19:20,290 --> 00:19:23,390
ุณููุงููู ูู ุงููู ุฃุนุทู ุงู cerebellum and ponsุ ููู
241
00:19:23,390 --> 00:19:27,550
ู
ูุฌูุฏ ุงู cerebellumุุณูุฑูุจููุง ู
ูุฌูุฏ ูู ุงูู
242
00:19:27,550 --> 00:19:33,230
posterior cranial fossa ุชุญุช
243
00:19:33,230 --> 00:19:40,190
ุงูุชูุชูุฑููู
ุณูุฑูุจููุงู ูุฎูู ุงูู brain stem and
244
00:19:40,190 --> 00:19:43,790
fourth ventricle ูุจูู ุฃู ูู ุจูุฌู ุฎูู ุงู brain stem
245
00:19:43,790 --> 00:19:50,340
ุฃุฏู ุฎูู ุงู pons ู ุงู open medulla ุทุจ ู
ูู ุจููุตู ู
ุง
246
00:19:50,340 --> 00:19:54,980
ุจูู ุงู cerebellum ู ุงู pons ู ุงูู
ูุฏุงูุฉุ ุจููุตู
247
00:19:54,980 --> 00:19:59,640
ุจูููู
ุงููู ูู fourth ventricle ุทุจ ู
ู ุฃุนูู .. ุฃุนูู
248
00:19:59,640 --> 00:20:03,200
ุจูููู ูู tentorium cerebelli ุชูุตู ุนู ุฅููุ ุนู ุงููู
249
00:20:03,200 --> 00:20:08,460
ูู ุงู cerebrum it is part of the brain located
250
00:20:08,460 --> 00:20:14,700
dorsal or posterior to the pons and upper medulla
251
00:20:15,390 --> 00:20:19,950
occupies most of the posterior cranial fossa ู
ูุฌูุฏ
252
00:20:19,950 --> 00:20:24,010
ูู ุงู posterior cranial fossa and located also
253
00:20:24,010 --> 00:20:29,630
below the tentorium cerebelli ุชุนู
ู separation
254
00:20:29,630 --> 00:20:34,610
between ุงููู ูู ุฅูู ุงูcerebrum and cerebellum
255
00:20:34,610 --> 00:20:41,990
shape ุงูcerebellum ุนุจุงุฑุฉ ุนู global shape relation
256
00:20:41,990 --> 00:20:48,090
of cerebellum ู
ูู ุจูุญุฏ ุงู cerebellum ู
ู ูููุ
257
00:20:48,090 --> 00:20:52,010
tentorium cerebelli ุชูุตู ุจูู ุงู cerebellum below
258
00:20:52,010 --> 00:20:56,050
and cerebrum above ูุจูู ุงู cerebrum ูุนุชุจุฑ supra
259
00:20:56,050 --> 00:20:59,470
tentorial ูุงูcerebellum infra tentorial ูุงู ูุงุญุฏ
260
00:21:02,370 --> 00:21:06,870
fourth ventricle ุจูุนู
ู separation between the
261
00:21:06,870 --> 00:21:13,090
cerebellum and pons ู ุงู open medulla ูุจูู ุงู fourth
262
00:21:13,090 --> 00:21:16,470
ventricle ุจููุตู ุจูู ุงู cerebellum ุงู cerebellum
263
00:21:16,470 --> 00:21:21,900
ุจุชููู ุฎููู ูุฃู
ุงู
ุฉ ุจูููู ุงู pons ู ุงู open medulla on
264
00:21:21,900 --> 00:21:26,040
each side ู
ู ุงูุฌุงูุจ ุงููู
ูู ูุงูุดู
ุงู ุจูุญุถูุง ุงู
265
00:21:26,040 --> 00:21:31,640
mastoid antrum ูุจูุญุถูุง ุงููู ูู ุงู sigmoid dural
266
00:21:31,640 --> 00:21:39,020
venous sinus ูุงู ุนูุฏู ูุงุถุญุฉ ููุง tentorium cerebelli
267
00:21:39,020 --> 00:21:44,820
ูุงุฏู ุจุชูุตู ู
ู ุฃุนูู ุจูู ุงู cerebellum ุชุญุชูุง ูุงู
268
00:21:44,820 --> 00:21:50,210
cerebrum ููููุง ู on each side ุจูููู sigmoid venous
269
00:21:50,210 --> 00:21:54,130
sinus ู ุงู mastoid antrum ู
ุด ูุงุถุญุฉ ูุชูุฑ ููุง ูู
ู
270
00:21:54,130 --> 00:21:59,290
ุงูุฃู
ุงู
ูุงุถุญุฉ ููุง ุฏู ุงููู ูู ุงู fourth ventricle ุงู
271
00:21:59,290 --> 00:22:04,210
fourth ventricle ุจููุตู ุจูู ุงู cerebellum behind ุนู
272
00:22:04,210 --> 00:22:10,300
ุงู pons ู ุงู open medulla anteriorly ู above ู
ู
273
00:22:10,300 --> 00:22:13,840
ููู ุจุชููู ุฃู ุงู tentorium cerebelli ุจุชูุตู ู
ุง ุจูู
274
00:22:13,840 --> 00:22:20,380
cerebellum below ุนู cerebrum above ูุงู ูุงุถุญุฉ ุงู
275
00:22:20,380 --> 00:22:23,780
fourth ventricle ุงููู ูู ุจููุตู ู
ุง ุจูู ุงู
276
00:22:23,780 --> 00:22:28,800
cerebellum behind ุนู ุงู pons ู ุงู upper medulla
277
00:22:28,800 --> 00:22:34,540
anteriorly what's the functions of cerebellumุ ุฅูุด
278
00:22:34,540 --> 00:22:39,100
ูุธููุฉ ุงู cerebellumุ ุฃูู ุดูุก maintain equilibrium
279
00:22:39,100 --> 00:22:45,100
of the trunk ุงูุนูุงูุฉ ุจุนู
ููุฉ ุงูุชูุงุฒู muscle tone
280
00:22:45,100 --> 00:22:48,820
regulation regulation of muscle tone ุซูุงุซุฉ
281
00:22:48,820 --> 00:22:53,980
coordination and regulation of involuntary motor
282
00:22:53,980 --> 00:22:57,440
activity ุฃูุง ุจุฏู ุงู
ุณู ุงููุจุฑุฉ ุจูุฏู it is fine
283
00:22:57,440 --> 00:22:58,220
activity
284
00:23:00,610 --> 00:23:04,790
ุฒุฑ ุงูุฌู
ูุต fine activity ูุจูู ุฃูุง ุจุชุญูู
ูููู
ุตุญ ููู
285
00:23:04,790 --> 00:23:07,390
ูู ุนูุฏู ู
ุดููุฉ ูู ุงู cerebellum ุจูููู ุนูุฏู ุชุฑูุญ ู
286
00:23:07,390 --> 00:23:11,070
dis coordination ููู ุงูุญุงูุฉ ูุฐู ู
ุง ุจูุฏุฑ ุฃุนู
ู
287
00:23:11,070 --> 00:23:17,610
ุงูุญุฑูุงุช ูุฐู ุจูุญุฏุซ ู
ุนุงูุง tremor ุฑุดูุฉ ูููุฐุง ู
ุงุฐุง ุนู
288
00:23:17,610 --> 00:23:21,030
ููุงุฉ ุงูู
ูุฌูุฏูู ูู ุงูู cerebellumุ ู
ุชุฐูุฑูู ุงูู
289
00:23:21,030 --> 00:23:23,910
cerebrum ูู
ุง ุงุฎุฐูุงูุ ุชููู
ูุง ุฃูู ููู basal nuclei
290
00:23:23,910 --> 00:23:28,730
ููู basal nuclei ุงูุขู ูู
ุง ุงุฎุฐูุง ุงูcerebrum ูุงู
291
00:23:28,730 --> 00:23:31,630
ููู basal nuclei ุงูุขู ูู
ุง ูุชููู
ุนู ุงูcerebellum
292
00:23:31,630 --> 00:23:36,230
ููู ูู
ุงู nuclei ุฅูุด ุงุณู
ุงูnucleiุ dented nucleus
293
00:23:36,230 --> 00:23:40,850
ุงุณู
ูุง dented ูุฃู ุดูููุง ูุณุจุจ ุงูุฃุณูุงู ู
ุณููุฉ ู
ุซู
294
00:23:40,850 --> 00:23:45,660
ุงูุฃุณูุงู ู
ุซู ุฅููุ ุงูุฃุณูุงู ุฅูู ุงูุนูุงูุฉุ ุจู
295
00:23:45,660 --> 00:23:49,340
Coordination and Regulation of Voluntary Motor
296
00:23:49,340 --> 00:23:56,960
Activity ุจู Coordination
297
00:23:56,960 --> 00:23:57,520
and Regulation of Voluntary Motor Activity ุจู
298
00:23:57,520 --> 00:23:57,640
Activity ุจู Coordination and Regulation of
299
00:23:57,640 --> 00:23:57,760
Regulation of Voluntary Motor Activity ุจู
300
00:23:57,760 --> 00:23:58,320
Activity ุจู Coordination and Regulation of
301
00:23:58,320 --> 00:24:01,440
Regulation of Voluntary Motor Activity ุจู
302
00:24:01,440 --> 00:24:07,460
Coordination
303
00:24:07,460 --> 00:24:11,640
and Regulation
304
00:24:11,640 --> 00:24:14,200
of Voluntary Motor Act
305
00:24:16,230 --> 00:24:20,270
ูู ูุงุถุญุฉ ุฃูู nucleus ู
ูุงุญุธูู ุฃุณูุงููุง ู
ุซู ุงูุฃุณูุงู
306
00:24:20,270 --> 00:24:28,210
ุณู
ููุง ุฅููุ ุฏูุชูุช ูููููุงุฒ ุฏูุชูุช ูููููุงุฒ ูุงุถุญุฉุ ููุณ
307
00:24:28,210 --> 00:24:32,730
ุงูุฃุณูุงู ุณู
ููุง ุฅููุ ุฏูุชูุช ูููููุงุฒ ุงูููุน ุงูุซุงูู ุงููู
308
00:24:32,730 --> 00:24:40,030
ูู emboliform nucleus ุงูุจุนุฏู globose nucleus ูุขุฎุฑ
309
00:24:40,030 --> 00:24:42,150
ุดูุก fastigial nucleus
310
00:24:51,500 --> 00:24:56,220
Cerebellar connections ู
ุน ู
ูู ู
ุฑุชุจุท ุงูcerebellumุ
311
00:24:56,220 --> 00:25:00,720
On each side connected with the brainstem by three
312
00:25:00,720 --> 00:25:05,140
peduncles ูุนูู ุงูcerebellar ูู three pairs of
313
00:25:05,140 --> 00:25:09,900
pedunclesุ ูู ุซูุงุซุฉ ุฃุฒูุงุฌ ู
ู ุงู pedunclesุ ุนูู ุงู
314
00:25:09,900 --> 00:25:13,880
right ูุนูู ุงู left superior cerebellar peduncles
315
00:25:13,880 --> 00:25:18,660
ู
ุฑุชุจุทุฉ ู
ุน ุงู midbrain middle cerebellar peduncles
316
00:25:18,660 --> 00:25:23,950
ู
ุฑุชุจุทุฉ ู
ุน ุงู pons ู inferior cerebellar peduncles
317
00:25:23,950 --> 00:25:27,750
ู
ุฑุชุจุทุฉ ู
ุน ุงูู
ูุฏุงูุง ุฃู ุจูุงูุฌุงุชุง ุฃูุจุฑ ูุงุญุฏ ูู ุงูุญุฌู
318
00:25:27,750 --> 00:25:32,290
ูููู
ุงููู ูู ุงู middle middle cerebellar peduncle
319
00:25:32,290 --> 00:25:41,030
ูุงู ูุงุถุญุฉ ููุง ุนูุฏู superior
320
00:25:41,030 --> 00:25:44,150
cerebellar
321
00:25:44,150 --> 00:25:50,920
peduncle ููุง ู
ุฏู .. ูุฃ ููุง inferior cerebellar
322
00:25:50,920 --> 00:25:55,960
peduncles ูุงููุจูุฑ ูุฐุง middle cerebellar peduncles
323
00:25:55,960 --> 00:26:00,440
ูุจูู ูุฐุง superior ูุฐุง inferior ูุฐุง middle
324
00:26:00,440 --> 00:26:04,840
cerebellar peduncles ุงู middle ู
ุฑุชุจุท ู
ุน ู
ููุ ู
ุน ุงู
325
00:26:04,840 --> 00:26:08,720
pons inferior ู
ุน ุงู medulla oblongata ูุงู
326
00:26:08,720 --> 00:26:12,460
superior ู
ุฑุชุจุท ู
ุน ู
ููุ ู
ุน midbrain
327
00:26:15,620 --> 00:26:18,880
ูู ุทูุนูุง ุนูู external features of the cerebellum
328
00:26:18,880 --> 00:26:22,220
ุจุงููุงุญุธ
329
00:26:22,220 --> 00:26:26,360
ุฃู ุงู cerebellar ูู right and left cerebellar
330
00:26:26,360 --> 00:26:30,720
hemisphere ูู
ุฑุชุจุทูู ู
ุน ุจุนุถ ุนู ุทุฑูู vermis ุงููู ูู
331
00:26:30,720 --> 00:26:34,920
ุฅูู vermis superior ู inferior anterior lobe
332
00:26:34,920 --> 00:26:41,840
posterior lobe ุฃู middle lobe posterior lobe ุฃู
333
00:26:41,840 --> 00:26:45,460
middle lobe ู flocculonodular lobe
334
00:26:49,640 --> 00:26:53,460
ู posterior lobe ู flocculonodular lobe ุงู
335
00:26:53,460 --> 00:26:57,720
posterior lobe ุจูุณู
ูู ูู
ุงู middle lobe ุจูุณู
ูู ุฅูู
336
00:26:57,720 --> 00:27:00,640
middle lobe ููู middle lobe ูุฃูู ุจูุน ุจูู ุงู
337
00:27:00,640 --> 00:27:03,980
anterior ู flocculonodular lobe ูุจูุณู
ูู
338
00:27:03,980 --> 00:27:07,020
posterior ูุฃูู ุจูุน ูู ุงูุฎูู ุฎูู ุงู anterior lobe
339
00:27:07,020 --> 00:27:12,190
okay ูู primary fissure ู
ูุฌูุฏุฉ ุงู primary fissure
340
00:27:12,190 --> 00:27:17,130
between the anterior and middle lobe ููู ุชูุฒู on
341
00:27:17,130 --> 00:27:21,690
each side of the inferior vermis ููู horizontal
342
00:27:21,690 --> 00:27:25,250
fissure ูููู posterior lateral fissure ุงู
343
00:27:25,250 --> 00:27:28,370
posterior lateral fissure ุจูุฌู ุจูู floccular
344
00:27:28,370 --> 00:27:31,770
nodular lobe ู ุงู posterior lobe ุฃู ุงู middle lobe
345
00:27:33,010 --> 00:27:37,730
ุจูุถุญ ุนูุฏู cerebellar hemispheres ููู ุงููุต ุจูููู
ูู
346
00:27:37,730 --> 00:27:42,430
ุดูุก ุงุณู
ู vermis ููุง ุจูุถุญ ุงูุฃุญู
ุฑ ุงู anterior lobe
347
00:27:42,430 --> 00:27:46,930
ุฃู
ุงู
ู ูุงูุฎููู ุจูููู posterior lobe ุฃู ุจูุณู
ููุง
348
00:27:46,930 --> 00:27:50,270
middle lobe ููู ุณู
ููุงูุง middle lobe ูุฃููุง ุจุชูุน ุจูู
349
00:27:50,270 --> 00:27:53,950
ุงู anterior lobe ู flocculonodular lobes ูุฐู ุงู
350
00:27:53,950 --> 00:27:57,270
primary fissure ุงู primary fissure ูุฐู ุดุงูููููุง
351
00:27:57,270 --> 00:28:01,870
ูุฐู ุจุชูุน ุฃู ุจุชูุตู ู
ุง ุจูู ุงููู ูู
352
00:28:04,650 --> 00:28:09,630
Anterior Lobe ูPosterior
353
00:28:09,630 --> 00:28:14,110
Lobe ุฃู Middle Lobe ููู ุนูุฏู Horizontal Fissure
354
00:28:14,110 --> 00:28:17,470
ูุฐู ู
ูุฌูุฏุฉ Horizontal Fissure ูู Posterior Lobe ุฃู
355
00:28:17,470 --> 00:28:23,430
ูู Middle Lobe ูุฐู ุชุนุชุจุฑ Anterior Lobe ูุฐู
356
00:28:23,430 --> 00:28:31,870
Posterior Lobe ุฃู Middle Lobe ุทุจุนุงู ูุชููู
ููุง ุนู ุงูู
357
00:28:31,870 --> 00:28:39,390
External Features of the Cerebellum ููู
ู ูู
ุงู ูุงู
358
00:28:39,390 --> 00:28:46,470
ูุงุถุญุฉ ุนูุฏู ุงูู tonsils ูุฐุง ุงูู vermis ููุง ุงููู ูู
359
00:28:46,470 --> 00:28:52,930
Posterolateral Fissure ุจูุตู ุจูู flocculonodular
360
00:28:52,930 --> 00:28:58,230
Lobes ูุงูุจูุณุชูุฑููููุจ ุฃู ุงู middle lobe ุงูููููููู
361
00:28:58,230 --> 00:29:02,730
ููุฏููุงุฑ ููุจ ุจุชููู ู
ู two flocculi ุญููุงู ููููููุงุช ู
362
00:29:02,730 --> 00:29:08,390
ุญููุงู ู one nodule ุนุดุงู ููู ุณู
ูู ููููููู ููุฏููุงุฑ
363
00:29:08,390 --> 00:29:16,790
ููุจ ุจุชููู ู
ู two flocculi ู one nodule ุงู
364
00:29:16,790 --> 00:29:20,570
sub divisions of cerebellum ููุฎุชูููุง ุงูุนูู
ุงุก ูู
365
00:29:20,570 --> 00:29:24,590
ุชูุณูู
ุงู cerebellum ุงูุฃุฎุตุงุฆู ุจุชุงุนู ุงู morphology
366
00:29:24,590 --> 00:29:31,380
ูุงููุง ุฃู ููุณู
ู ูุฃ right ู left cerebellar
367
00:29:31,380 --> 00:29:37,220
hemispheres ููู ุงููุต median vermis ูุจูู ูุชุนููู ุงู
368
00:29:37,220 --> 00:29:41,860
morphology ุงุฎุชูููุง ูุงููุง ุจุฏูุง ูุฌุฒุฆู ู ุฅูู ู right
369
00:29:41,860 --> 00:29:45,060
cerebellar hemispheres left cerebellar hemispheres
370
00:29:45,060 --> 00:29:48,480
ู median vermis ูู ุงููุต ุจุชุนููู ุงู Anatomy ูุงููุง ูุฃ
371
00:29:48,480 --> 00:29:51,340
ุจุฏูุงุด ุงูุชูุณูู
ุฉ ูุฐู ู
ุด ุนุงุฌุจุงูุง ู
ุด ู
ุงุดูุฉ ู
ุนูุง ูุฐู
372
00:29:51,340 --> 00:29:54,320
ุงูุชูุณูู
ุฉ ููู ุจุฏูุง ูุฌุฒุฆู ุจุชุนููู ุงู Anatomy ูุงููุง
373
00:29:54,320 --> 00:29:57,580
ูุฌุฒุฆู ู anterior lobe ุจุชููู ุฃู
ุงู
ุงู primary
374
00:29:57,580 --> 00:30:01,460
fissure ู posterior lobe ุฃู middle lobe ุงููู ุจุชููู
375
00:30:01,460 --> 00:30:04,720
ู
ุญุตูุฑุฉ ู
ุง ุจูู ุงู primary fissure ูุงู posterior
376
00:30:04,720 --> 00:30:09,580
lateral sulcus ูุนูู ุจุชููู ุจูู ุงู anterior lobe ู
377
00:30:09,580 --> 00:30:14,220
flocculonodular lobe ูุซูุงุซุฉ flocculonodular lobe
378
00:30:14,220 --> 00:30:17,640
ุชุชููู ู
ู two flocculi ู one nodule in the middle
379
00:30:18,470 --> 00:30:20,530
ุจุชุงุนูู ุงูููุณููููุฌูุง ูุงููุง ูุฃ ู
ุด ุนุงุฌุจุงูุง ุงูุชูุณูู
ุฉ
380
00:30:20,530 --> 00:30:22,770
ูุฐู ุงุญูุง ู
ุง ููุงุด ุนูุงูุฉ ุจุชุงุนูู ุงู anatomy ูุงูู
ูุฑูุถ
381
00:30:22,770 --> 00:30:25,010
ูุฌูุจูุง ุชูุณูู
ุฉ ุซุงููุฉ ุจุชุงุนูู ุงูููุณููููุฌูุง ูุงููุง
382
00:30:25,010 --> 00:30:31,850
ููุณู
ูู
ู vestibular part ุฃู archicerebellum ู paleo
383
00:30:31,850 --> 00:30:36,070
cerebellum ู neocerebellum ุญุณุจ ุงู development ูุฐู
384
00:30:36,070 --> 00:30:40,790
ุงูุฃูุฏู
ุฃูู ูุงุญุฏุฉ ุจุชุจุฏุฃ ูู ุงูุฌููู ุจุนุฏู ุจูุจุฏุฃ ุงูู
385
00:30:40,790 --> 00:30:43,810
paleocerebellum ู ุงูู neocerebellum ุฃุฌุฏุฏ ุดูุก ุจุชููู
386
00:30:43,810 --> 00:30:49,310
ูู development of cerebellum ุฌููุง ุงุญูุง ุญุทููุง ููู
ุงู
387
00:30:49,310 --> 00:30:51,670
physiological ุฃู functional ู anatomically
388
00:30:51,670 --> 00:30:54,47
401
00:31:48,090 --> 00:31:53,060
emboliform globus nucleus ู
ูู ุจููุงุจููุง ู
ู ูุงุญูุฉ
402
00:31:53,060 --> 00:31:55,500
physiology ุฃู functional area ุงููู ูู
403
00:31:55,500 --> 00:32:01,020
paleocerebellum ู
ู ูุงุญูุฉ ุงูู development it is the
404
00:32:01,020 --> 00:32:06,580
next one next one ุทุจุนุง ุงูู function ุชุจุนุชู muscle
405
00:32:06,580 --> 00:32:10,760
tone regulation muscle tone ุงูู regulation ูู ุญุฏุซ
406
00:32:10,760 --> 00:32:16,770
ููู lesions muscle hypotonia ูุจูู lesion of
407
00:32:16,770 --> 00:32:20,170
cerebellum ุจูุนุทููุง muscle hypotonia ูู ุณุฃูุชููุง
408
00:32:20,170 --> 00:32:24,430
ุณุคุงู ู
ุชู ุฑุงุญ ูุญุฏุซ muscle spasticity ูู ุญุงูุงุช ุงูู
409
00:32:24,430 --> 00:32:27,630
cerebellar damage ู ูุง ุนู
ุฑู ุฑุงุญ ูููู ุนูุฏูู
ู
ุฑุถู ุงูู
410
00:32:27,630 --> 00:32:30,510
cerebellar damage spasticity ูุฃู ุงูู lesion ุจุชุงุน ุงูู
411
00:32:30,510 --> 00:32:36,340
cerebellum ุจูููู ุนูุฏูู
muscle hypotonia ุจูุณุชูุฑู ููุจ
412
00:32:36,340 --> 00:32:40,380
ุฃูุจุฑ ูุงุญุฏ ูููู
ููู ุฏูุชูุฉ ููููููุงุณ ู
ูู ุจููุงุจููู
ูู
413
00:32:40,380 --> 00:32:45,020
ุงูู physiological subdivision ููู ุณูุฑุจููุง it is
414
00:32:45,020 --> 00:32:48,700
most recent part of cerebellum ูุงุถููุชู
415
00:32:48,700 --> 00:32:53,800
coordination and regulation of fine voluntary
416
00:32:53,800 --> 00:32:58,660
motor activity ูู ุญุฏุซ lesion ููู ุจูุนุทููุง ุงูู in
417
00:32:58,660 --> 00:33:01,920
coordination of movement ุทุจ ูู ุนุฌู ุณุคุงู ู
ูู ูู ุงูู
418
00:33:01,920 --> 00:33:07,040
anterior loop ุนุงูุณุฑูุฑ ุจุฏูุง ูุบุฒ ุนููู paleocerebellum ู
ู
419
00:33:07,040 --> 00:33:10,040
ูู flocculonodular loop? vestibular part ุฃู
420
00:33:10,040 --> 00:33:13,900
archocerebellum ู
ู ูู ุงูู posterior loopุ ุงูููู
421
00:33:13,900 --> 00:33:16,520
ุณูุฑุจููู ุทุจ ูู ุฃุชู ุณุคุงู ุงูู middle loop ููุณ
422
00:33:16,520 --> 00:33:19,260
ุงูู posterior ุงูู middle loop ุฃู ุงูู posterior ูุงุญุฏ ุชู
ุงู
423
00:33:19,260 --> 00:33:26,240
ุงูู posterior ู ุงูู middle ุจูููููุง ุงููุ ูุงุญุฏ okay
424
00:33:26,240 --> 00:33:32,190
ูุจูู ููุง ุนูุฏู ูุฐุง ุงูู anterior loop ุจุงููู ุณูุฑุงุจููุงู
425
00:33:32,190 --> 00:33:36,630
ูุฐุง posterior loop ููู ุณูุฑุงุจููุงู
ููุฐุง ุงูู floccular
426
00:33:36,630 --> 00:33:39,910
nodular loop ุงููู ุนุจุงุฑุฉ ุนู ุงุฑุดู ุณูุฑุงุจููุงู
ุฃู
427
00:33:39,910 --> 00:33:44,390
vestibular part of the cerebellum ููุง ุจูููู ุนูุฏู
428
00:33:44,390 --> 00:33:49,070
ุงูู dentate ุฌุงู ูู ุงูู posterior part ูู ุงูู
429
00:33:49,070 --> 00:33:51,790
anterior part ุจูููู ุงูู globus ุงูู nucleus
430
00:33:51,790 --> 00:33:56,650
ูemboliform nucleus ููู flocculonodular loop ุจูููู
431
00:33:56,650 --> 00:34:01,990
ู
ูุฌูุฏุฉ ูู fastigial ุงูู nucleus ู ููุฐุง ุจูููู ูุตููุง
432
00:34:01,990 --> 00:34:05,390
ูููุงูุฉ ู
ุญุงุถุฑุฉ ุฃุณุจูุน ุชุงูุช ุงููู ูู Anatomy and
433
00:34:05,390 --> 00:34:06,990
physiology of cerebellum
|