File size: 49,127 Bytes
2640614 |
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 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 |
[
{
"Title": "Prokaryotes ",
"Video ID": "UHw6xCnv1UU"
},
{
"Title": "Eukaryotes ",
"Video ID": "LYvccVz5tew"
},
{
"Title": "Autotrophs and Heterotrophs ",
"Video ID": "FVfEThlRKq4"
},
{
"Title": "Cell Nucleus",
"Video ID": "QV3mOU84QNc"
},
{
"Title": "Cell Membrane and Fluid Mosaic Model",
"Video ID": "5ArOofhOAwI"
},
{
"Title": "Electrochemical Gradient",
"Video ID": "M66B7D5WwXk"
},
{
"Title": "Cell Membrane Transport ",
"Video ID": "hpECyJbtQ38"
},
{
"Title": "Pinocytosis, Phagocytosis and Receptor-Mediated Endocytosis",
"Video ID": "9tOGgB_mJPg"
},
{
"Title": "Microfilaments, Intermediate Filaments, and Microtubules ",
"Video ID": "kHLspuHXvK8"
},
{
"Title": "Centrosome and Centrioles",
"Video ID": "TE_n2p6dpUo"
},
{
"Title": "Endoplasmic Reticulum and Golgi Apparatus",
"Video ID": "3vBnZKRmikU"
},
{
"Title": "Mitochondria ",
"Video ID": "rPKywyTvua4"
},
{
"Title": "Vacuoles, Lysosomes, and Microbodies ",
"Video ID": "wyl9AHk_SWU"
},
{
"Title": "Tight Junctions, Gap Junctions, and Desmosomes",
"Video ID": "wGQabqD3HlI"
},
{
"Title": "Tissue Types and Extracellular Matrix ",
"Video ID": "Eev9Ui_8YPI"
},
{
"Title": "Prokaryotic vs. Eukaryotic Flagella ",
"Video ID": "8porJA2wrFU"
},
{
"Title": "Bacterial Cell Envelope, Gram Positive and Gram Negative Bacteria ",
"Video ID": "HvqRqqSLGvk"
},
{
"Title": "Viruses, Lytic Cycle and Lysogenic Cycle ",
"Video ID": "QHZ1Ir_UaZQ"
},
{
"Title": "RNA and DNA Viruses ",
"Video ID": "SMOO2WaMTiI"
},
{
"Title": "Life Cycle of HIV ",
"Video ID": "0hd1IuAPRSQ"
},
{
"Title": "Introduction to Immune System ",
"Video ID": "bW-eEBxJYaM"
},
{
"Title": "Leukocytes of Immune System ",
"Video ID": "ZQSzIOMRZMQ"
},
{
"Title": "Innate (Non-specific) Immune System ",
"Video ID": "os1oh8AprYw"
},
{
"Title": "Interferons",
"Video ID": "X2-LZ6LeqxA"
},
{
"Title": "Adaptive Immune System ",
"Video ID": "Kr9WsHUSnp4"
},
{
"Title": "Classical Pathway of Complement System ",
"Video ID": "ER0hzqJnt_s"
},
{
"Title": "Alternative Pathway of Complement System ",
"Video ID": "XW-qMHAUqUY"
},
{
"Title": "Major Histocompatibility Complex ",
"Video ID": "yDAGxVxY-L8"
},
{
"Title": "Antibodies ",
"Video ID": "H3LXXq05eko"
},
{
"Title": "Activation of Lymphocytes ",
"Video ID": "Dvs1lN_uKXc"
},
{
"Title": "Antigen Presenting Cells ",
"Video ID": "TadJkUCJLHo"
},
{
"Title": "Mechanism of B-lymphocytes ",
"Video ID": "pZLDjmfaJ0Y"
},
{
"Title": "Alpha Beta T-cells ",
"Video ID": "QLtPj0o5wsI"
},
{
"Title": "Gamma Delta T-cells ",
"Video ID": "NCNi9oDdxbw"
},
{
"Title": "Primary vs. Secondary Immune Response ",
"Video ID": "e2gT4nnETpc"
},
{
"Title": "Immunization, Active Immunity and Passive Immunity",
"Video ID": "3w9ylCxFAa0"
},
{
"Title": "Grafting, Organ Transplants and Immunosuppression",
"Video ID": "0y1UOq7EIMg"
},
{
"Title": "ABO Blood Types ",
"Video ID": "LAFvwRkeUQ8"
},
{
"Title": "ABO Blood Types Part II",
"Video ID": "2iEg1ZPY0jU"
},
{
"Title": "Rh Factor and Rh Incompatibility",
"Video ID": "1dpw8yoggYY"
},
{
"Title": "Autoimmunity",
"Video ID": "3XszVyYWZJE"
},
{
"Title": "Innate and Adaptive Immune Systems ",
"Video ID": "e2TCjFPn2g8"
},
{
"Title": "HIV, AIDS, and Helper T-Cells ",
"Video ID": "QqoezqZIA6c"
},
{
"Title": "Allergens and Allergic Reactions ",
"Video ID": "iicHiSbEx8U"
},
{
"Title": "Immunosurveillance and Cancer Cells ",
"Video ID": "oJnU20cwg8Q"
},
{
"Title": "Lymphatic System ",
"Video ID": "BOCv_WhLcD8"
},
{
"Title": "Enzymes ",
"Video ID": "3UlxoNrDtNM"
},
{
"Title": "Cofactors, Lock-and-Key and Induced Fit Model ",
"Video ID": "qO2DvzAvnPY"
},
{
"Title": "Enzyme Activity",
"Video ID": "FFViDx5TxUM"
},
{
"Title": "Reversible and Irreversible Enzyme Inhibition",
"Video ID": "ixDdTbeby6s"
},
{
"Title": "Allosteric Regulation of Enzymes ",
"Video ID": "ttiduKb_DQ4"
},
{
"Title": "Proteolytic Cleavage and Reversible Covalent Modification ",
"Video ID": "ifPhVmNRReg"
},
{
"Title": "Glycolysis ",
"Video ID": "bfhKGPRCu2o"
},
{
"Title": "Pyruvate Decarboxylation Reaction ",
"Video ID": "FJBNkXAajrk"
},
{
"Title": "Citric Acid Cycle ",
"Video ID": "nurJmumQ8FQ"
},
{
"Title": "Electron Transport Chain ",
"Video ID": "yil3EnXtyvI"
},
{
"Title": "Summary of Aerobic Respiration ",
"Video ID": "Jztm2tsAdtw"
},
{
"Title": "Alcohol and Lactic Acid Fermentation ",
"Video ID": "mQKTDw9Yeaw"
},
{
"Title": "NAD+ and FAD+ Cofactors ",
"Video ID": "eL_iVLHT9Q0"
},
{
"Title": "Triglyceride Metabolism ",
"Video ID": "BIHT5Ay-t-g"
},
{
"Title": "Cell Cycle and Interphase ",
"Video ID": "gBj_ZXCTa2U"
},
{
"Title": "Mitosis and Cytokinesis",
"Video ID": "XFdBvgykVCc"
},
{
"Title": "Meiosis I ",
"Video ID": "ZBqEtIoQmQY"
},
{
"Title": "Meiosis II ",
"Video ID": "9gQS-FnwmxI"
},
{
"Title": "Nondisjunction of Chromosomes ",
"Video ID": "a0-nmZz3r8g"
},
{
"Title": "Conjugation, Transformation and Transduction ",
"Video ID": "MR7yvRDL5iQ"
},
{
"Title": "Spermatogenesis",
"Video ID": "d5cQreR9h20"
},
{
"Title": "Oogenesis",
"Video ID": "Y6s3obXg8Gs"
},
{
"Title": "Fertilization",
"Video ID": "ze01boViRsk"
},
{
"Title": "Anatomy of Reproductive Organs ",
"Video ID": "c55qrVbwZTk"
},
{
"Title": "Anatomy and Function of Female Breasts ",
"Video ID": "ICQQC2KWinM"
},
{
"Title": "The Menstrual Cycle ",
"Video ID": "RQQ4KuH5XME"
},
{
"Title": "Hormones in Menstrual Cycle",
"Video ID": "EooU0vkt-r0"
},
{
"Title": "Asexual Reproduction ",
"Video ID": "6zEo0MmEevI"
},
{
"Title": "Introduction to Embryological Development",
"Video ID": "VxmTBhB2HkA"
},
{
"Title": "Cleavage and Blastulation ",
"Video ID": "W6Vwojq5b98"
},
{
"Title": "Cell Determination and Differentiation",
"Video ID": "W8xx975RtP4"
},
{
"Title": "Morphogenesis",
"Video ID": "dMkvezo9t2c"
},
{
"Title": "Apoptosis",
"Video ID": "aemXc6AtpR0"
},
{
"Title": "Implantation of Blastocyst ",
"Video ID": "hGEXLmPU5mw"
},
{
"Title": "Gastrulation",
"Video ID": "w9tJ7UiLrQs"
},
{
"Title": "Neurulation ",
"Video ID": "7z_8HYV41Bc"
},
{
"Title": "Organogenesis",
"Video ID": "jbkHi2UGMyU"
},
{
"Title": "Extraembryonic Membranes ",
"Video ID": "czjfWCaa4Fw"
},
{
"Title": "Development and Function of Placenta ",
"Video ID": "S_Y2ZMVzl4o"
},
{
"Title": "Human Gestation and Birth",
"Video ID": "p_JccNhopuQ"
},
{
"Title": "Factors Affecting Fetal Development ",
"Video ID": "iAF4FhnrE7A"
},
{
"Title": "Fetal Circulation",
"Video ID": "CWwkC5g-vnY"
},
{
"Title": "Fetal Circulation After Birth",
"Video ID": "29Mg9cgm9k4"
},
{
"Title": "Circulation in Fetal Heart ",
"Video ID": "OJ6KmqxKIU8"
},
{
"Title": "Patent Ductus Arteriosus and Patent Foramen Oval ",
"Video ID": "yjWjEORwQUU"
},
{
"Title": "Gas Exchange in Placenta, Fetal Hemoglobin and Double Bohr Effect ",
"Video ID": "EwvzSJUFMOE"
},
{
"Title": "Introduction to DNA",
"Video ID": "sLdJTcBnO3c"
},
{
"Title": "DNA Replication: Helices and Unwinding",
"Video ID": "9unpqe8087E"
},
{
"Title": "DNA Replication: Leading and Lagging Strand ",
"Video ID": "gxeak5TuRIk"
},
{
"Title": "Summary of DNA Replication",
"Video ID": "WONqRyoi49A"
},
{
"Title": "mRNA, rRNA, and tRNA ",
"Video ID": "dcvtHSFzKOQ"
},
{
"Title": "RNA Transcription",
"Video ID": "IsMHhnGILwg"
},
{
"Title": "Post-transcriptional modifications of mRNA",
"Video ID": "ertPYuifrQM"
},
{
"Title": "The Genetic Code",
"Video ID": "9OvzIpQhXTw"
},
{
"Title": "Translation: Ribosomes and Initiation",
"Video ID": "1fUswlOwslw"
},
{
"Title": "Translation: Elongation and Termination",
"Video ID": "5nMEpRG-az8"
},
{
"Title": "Signal Sequences and Signal-Recognition Particles",
"Video ID": "kp06l4zx7Pw"
},
{
"Title": "Post Translational Modifications ",
"Video ID": "PMsxwRCliBE"
},
{
"Title": "Law of Dominance ",
"Video ID": "OiZEfMe8NJk"
},
{
"Title": "Law of Segregation",
"Video ID": "FG3S2qxy8GE"
},
{
"Title": "Genes, Alleles and Loci on Chromosomes",
"Video ID": "GUS9qmG1wY4"
},
{
"Title": "Genotypes, Phenotypes and Punnett square ",
"Video ID": "-zZf8GXVuiU"
},
{
"Title": "Monohybrid Test Cross",
"Video ID": "gpAzz8f5k9I"
},
{
"Title": "Test Cross",
"Video ID": "0IGXRMEgI4I"
},
{
"Title": "Sum and Product Rule in Genetics ",
"Video ID": "QTGAk6hScGI"
},
{
"Title": "Sum and Product Rule in Genetics Part II",
"Video ID": "Qeu2-VKpEgc"
},
{
"Title": "Genetic Probability Example ",
"Video ID": "wmVPqpMyyAw"
},
{
"Title": "Dihybrid Cross ",
"Video ID": "y9P3WEalvkM"
},
{
"Title": "Dihybrid Cross Part II",
"Video ID": "mTO8xrGRbo8"
},
{
"Title": "Law of Independent Assortment ",
"Video ID": "VjPjyLwcYYQ"
},
{
"Title": "Linked Genes, Crossing Over and Genetic Recombination",
"Video ID": "99A6v-5_sFg"
},
{
"Title": "Linked Genes",
"Video ID": "B3GDK6mWaGU"
},
{
"Title": "Linked Genes Part II",
"Video ID": "vtd0GTJrslI"
},
{
"Title": "Non-linked Genes and Offspring Distribution",
"Video ID": "-RFNS5Xat1M"
},
{
"Title": "Non-linked Genes and Offspring Distribution Part II",
"Video ID": "FXPr0pI1_sI"
},
{
"Title": "Gene Mapping, Percent Recombination and Map Units ",
"Video ID": "asNgHpOuJmY"
},
{
"Title": "Gene Mapping, Recombination and Map Units Part II",
"Video ID": "exl4zSK0X4U"
},
{
"Title": "Determining Gene Order ",
"Video ID": "UKf9lcVmpK4"
},
{
"Title": "Sex Chromosomes",
"Video ID": "a9qrCtDeXf4"
},
{
"Title": "Colorblind Genetics Example ",
"Video ID": "e12A6y4QeyU"
},
{
"Title": "Incomplete Dominance",
"Video ID": "vIh-hiGQwR4"
},
{
"Title": "Multiple Alleles and Codominance",
"Video ID": "jnx16oERTg0"
},
{
"Title": "Pleiotropy and Epistasis ",
"Video ID": "XEltUZ0_gDQ"
},
{
"Title": "Polygenic Inheritance",
"Video ID": "tKnOvPtwZL4"
},
{
"Title": "Pedigree Analysis",
"Video ID": "Wgmgt_Ph6Ko"
},
{
"Title": "Pedigree Analysis of Sex Linked Recessive Traits ",
"Video ID": "9GpCOqFxjmw"
},
{
"Title": "Pedigree Analysis for Autosomal Dominant Traits ",
"Video ID": "TFhQFbYDwEw"
},
{
"Title": "Pedigree Analysis for Autosomal Dominant Traits (Part II) ",
"Video ID": "WzQX5f-zXyY"
},
{
"Title": "Aneuploidy and Nondisjunction ",
"Video ID": "BxmaH5LiIkg"
},
{
"Title": "Aneuploidy and Nondisjunction (Part II) ",
"Video ID": "WF_rsMh9YSU"
},
{
"Title": "Chromosomal Depletion, Inversion, Duplication and Translocation ",
"Video ID": "wEKQ1gQxR88"
},
{
"Title": "Down syndrome (Trisomy 21 and Translocation)",
"Video ID": "MLWs3h7Gf60"
},
{
"Title": "Sex Chromosomal Abnormalities ",
"Video ID": "gdXHq8FrfHI"
},
{
"Title": "Autosomal Recessive Diseases",
"Video ID": "t2QbbnOmc4w"
},
{
"Title": "Point Mutations (Base-Pair Substitutions)",
"Video ID": "aFwxHnuOGks"
},
{
"Title": "Insertion, Deletions and Frameshift Mutations",
"Video ID": "wv73LL6OaKU"
},
{
"Title": "Summary of Gene Mutations ",
"Video ID": "vfp0JUCTbdE"
},
{
"Title": "Restriction Enzymes and Recombinant DNA",
"Video ID": "mMIRBNUuX6I"
},
{
"Title": "Gene Library",
"Video ID": "vWhyUEzhvwE"
},
{
"Title": "cDNA Library",
"Video ID": "lXOVdIFPyjs"
},
{
"Title": "Polymerase Chain Reaction",
"Video ID": "HmkNzMrhIFQ"
},
{
"Title": "Restriction Map and Gel Electrophoresis",
"Video ID": "afdP3eWFj3k"
},
{
"Title": "Gene Regulation and the Lac Operon",
"Video ID": "UXI3_tbsi0E"
},
{
"Title": "Tryptophan Operon",
"Video ID": "O4SdDuBnoW4"
},
{
"Title": "Gene Regulation in Eukaryotes ",
"Video ID": "fabBvmzGBYw"
},
{
"Title": "Types of Macromolecules ",
"Video ID": "BkukWlEd_5Q"
},
{
"Title": "Epithelial Tissue",
"Video ID": "ON5ZNcaM4Gs"
},
{
"Title": "Introduction to Digestive System ",
"Video ID": "R6lTFi3lhOM"
},
{
"Title": "Oral Cavity, Pharynx, and Esophagus",
"Video ID": "5PteyUvJma8"
},
{
"Title": "Stomach",
"Video ID": "j7wTeakwo_g"
},
{
"Title": "Small Intestine",
"Video ID": "ry0ML_DZnuQ"
},
{
"Title": "Digestive Enzymes of Small Intestine and Pancreas ",
"Video ID": "0HsW6LVdRQ4"
},
{
"Title": "Emulsification of Fats ",
"Video ID": "Zqvr20ZOtvM"
},
{
"Title": "Absorption of Carbohydrates by Small Intestine",
"Video ID": "b6_IMnoAv3k"
},
{
"Title": "Absorption of Proteins in Small Intestine",
"Video ID": "S21NMwtsRFA"
},
{
"Title": "Large Intestine",
"Video ID": "GEfrHDQSgG8"
},
{
"Title": "Absorption of Fats in Small Intestine ",
"Video ID": "P1jiWxmqS-o"
},
{
"Title": "Structure of the Nephron",
"Video ID": "WTC1zXPotUs"
},
{
"Title": "Structure of the Kidney",
"Video ID": "ZwnEIooqpgk"
},
{
"Title": "Filtration in Renal Corpuscle",
"Video ID": "GHBDhMsUjWM"
},
{
"Title": "Proximal Convoluted Tubule ",
"Video ID": "IQGvjDDnrkw"
},
{
"Title": "Countercurrent Multiplier System and Loop of Henle",
"Video ID": "X0vVJecAFTo"
},
{
"Title": "Distal Convoluted Tubule",
"Video ID": "0rIQh4100bQ"
},
{
"Title": "Collecting Duct ",
"Video ID": "uEKe33kkup0"
},
{
"Title": "Renal Clearance, Renal Plasma Flow and Glomerular Filtration Rate ",
"Video ID": "yFx5Kqu_T54"
},
{
"Title": "Function of the Liver",
"Video ID": "a6s6mlju3_8"
},
{
"Title": "Structure of Skin",
"Video ID": "hjhlGMOFSZQ"
},
{
"Title": "Function of the Skin ",
"Video ID": "sEqSFWjj2_Q"
},
{
"Title": "Neuron Structure and Function",
"Video ID": "-_uIDESvr6Y"
},
{
"Title": "Resting Membrane Potential of Neuron",
"Video ID": "M0JWkOnnOVw"
},
{
"Title": "Initiation of Action Potential",
"Video ID": "N8lFrHo0FkM"
},
{
"Title": "Propagation of Action Potential",
"Video ID": "KWIWemjaHJA"
},
{
"Title": "Myelination and Saltatory Conduction ",
"Video ID": "X4hl5hKDmHw"
},
{
"Title": "Synaptic Terminal ",
"Video ID": "rxhqKXvkYXU"
},
{
"Title": "Secondary Messenger Systems ",
"Video ID": "jpimow0N0BU"
},
{
"Title": "Neuroglia ",
"Video ID": "n7YCZZ_wg2U"
},
{
"Title": "Introduction to Nervous System ",
"Video ID": "IEGphXyKJgI"
},
{
"Title": "Central Nervous System ",
"Video ID": "m8V9fldkDv8"
},
{
"Title": "Somatic Nervous System ",
"Video ID": "pbzbVM5W-Ak"
},
{
"Title": "Autonomic Nervous System ",
"Video ID": "-rGZfOoZgzI"
},
{
"Title": "Structure of the Human Eye",
"Video ID": "1PGIXXuFu14"
},
{
"Title": "Structure of the Human Ear ",
"Video ID": "3LyWqpknNFQ"
},
{
"Title": "Sarcomere ",
"Video ID": "YaCELjR7vxw"
},
{
"Title": "Structure of Skeletal Muscle ",
"Video ID": "DfKKf89-dFI"
},
{
"Title": "Contraction of Skeletal Muscle ",
"Video ID": "UhSSqToeMsI"
},
{
"Title": "The Motor Unit ",
"Video ID": "kSABUj48Yls"
},
{
"Title": "Cardiac Muscle ",
"Video ID": "UaWv5vYpiFs"
},
{
"Title": "Smooth Muscle ",
"Video ID": "WA5ybT8Xtj8"
},
{
"Title": "Action Potential vs. Muscle Construction Graphs",
"Video ID": "cxj3y5KAl9E"
},
{
"Title": "Action Potential of Cardiac Muscle ",
"Video ID": "uUbgcqo_IOg"
},
{
"Title": "Slow Oxidative, Fast Oxidative and Fast Glycolytic Muscles ",
"Video ID": "L_R7XHqWW_w"
},
{
"Title": "Introduction to Human Skeletal System ",
"Video ID": "TL2oRHsrpzs"
},
{
"Title": "Compact Bone Structure and Osteon System ",
"Video ID": "PQpYZ0RcAKM"
},
{
"Title": "Structure of Long Bones ",
"Video ID": "dJnud23zv8c"
},
{
"Title": "Bone Metabolism",
"Video ID": "ZTBH61OQZTU"
},
{
"Title": "Cartilage and Joints",
"Video ID": "wPfoKaRXYd0"
},
{
"Title": "Agonist-Antagonist Muscle Pairs ",
"Video ID": "x48DZ-ixxMk"
},
{
"Title": "Long Bones, Short Bones, Flat Bones, Irregular Bones ",
"Video ID": "VXsYri-d4QE"
},
{
"Title": "Introduction to Endocrine System ",
"Video ID": "wKRXfbbH-U8"
},
{
"Title": "Anterior Pituitary Gland",
"Video ID": "pilwS8vbqGk"
},
{
"Title": "Posterior Pituitary Gland",
"Video ID": "oQwE6WJQMeM"
},
{
"Title": "Thyroid Gland",
"Video ID": "IA09d-zN-2Y"
},
{
"Title": "Parathyroid Gland",
"Video ID": "MycQU9qw5yI"
},
{
"Title": "Adrenal Gland",
"Video ID": "9o2dqeajWsI"
},
{
"Title": "Islets of Langerhans ",
"Video ID": "O0Qz62nbDvA"
},
{
"Title": "Thymus ",
"Video ID": "vZpFsOvIe_U"
},
{
"Title": "Renin-angiotensin-Aldosterone System",
"Video ID": "NMWaKdO76NQ"
},
{
"Title": "Endocrine Ability of Heart, Kidney, Liver and Skin ",
"Video ID": "BE-CfPkONmo"
},
{
"Title": "Testes",
"Video ID": "mRjG7lciWvw"
},
{
"Title": "Ovaries",
"Video ID": "csxZj8fDh7Y"
},
{
"Title": "Placenta ",
"Video ID": "UznR0DsqhXE"
},
{
"Title": "Hypoglycemia and Hyperglycemia ",
"Video ID": "WszJHxsdpnI"
},
{
"Title": "Introduction to Cardiovascular System ",
"Video ID": "wiy23SyIK-g"
},
{
"Title": "Composition of Blood",
"Video ID": "c2B6C-W_tIg"
},
{
"Title": "Types of Blood Vessels ",
"Video ID": "-zjUZjkNLsI"
},
{
"Title": "Blood Pressure in Arteries, Veins, and Capillaries",
"Video ID": "PTYwFQq4loI"
},
{
"Title": "Compliance of Blood Vessels",
"Video ID": "uhYnKRH8Gho"
},
{
"Title": "Resistance of Blood Vessels and Volume Flow Rate ",
"Video ID": "-QclTMSvm3U"
},
{
"Title": "Structure of the Heart",
"Video ID": "KwbqTHEnJw0"
},
{
"Title": "Blood Flow in the Heart ",
"Video ID": "vWUvsX1OvbQ"
},
{
"Title": "Electrical Conduction in the heart ",
"Video ID": "4o2nHfVMfC8"
},
{
"Title": "Introduction to Electrocardiogram ",
"Video ID": "O04d0hZ1ofo"
},
{
"Title": "Major Arteries of Circulation System ",
"Video ID": "XqCi3dk18pI"
},
{
"Title": "Osmosis Osmotic pressure and Hydrostatic Pressure ",
"Video ID": "2ukQlpNA6-s"
},
{
"Title": "Exchange Across Capillaries ",
"Video ID": "bmQDAM-q2OM"
},
{
"Title": "Recycling of Red Blood Cells ",
"Video ID": "DjmWmbzUogM"
},
{
"Title": "Blood Clotting Cascade",
"Video ID": "SPSvc7-1dec"
},
{
"Title": "Blood Clotting Cascade (Part II)",
"Video ID": "VJm1kaVQI9E"
},
{
"Title": "Amplification of Blood Clotting ",
"Video ID": "zGlW29VuSkA"
},
{
"Title": "Introduction to Human Respiratory System",
"Video ID": "CGVOWh20ufA"
},
{
"Title": "Respiration in the Lungs ",
"Video ID": "ke48zGU9fQw"
},
{
"Title": "Protective Capabilities of Lungs ",
"Video ID": "L_VDawZa9EI"
},
{
"Title": "Alveolar Structure and Gas Exchange ",
"Video ID": "JSZH0rcR9cg"
},
{
"Title": "Surfactant in Alveoli and Surface Tension",
"Video ID": "dmjXQ05cSXw"
},
{
"Title": "Hemoglobin Cooperativity and Oxygen Dissociation Curve ",
"Video ID": "XcupwWwfsz8"
},
{
"Title": "Hemoglobin and Bohr Effect",
"Video ID": "K_bkjbtzdAw"
},
{
"Title": "Effect of Temperature on Hemoglobin Dissociation Curve",
"Video ID": "sd0rkzgOFC0"
},
{
"Title": "2,3 BPG and Hemoglobin",
"Video ID": "vYyIdE_BlQc"
},
{
"Title": "Carbon Monoxide and Hemoglobin",
"Video ID": "Lsq-zyrzXxE"
},
{
"Title": "Chloride Shift in Red Blood Cells ",
"Video ID": "3J3uaVPWmOY"
},
{
"Title": "Factors that Affect Hemoglobin Dissociation curve",
"Video ID": "mrETSLgRYeE"
},
{
"Title": "Myoglobin Dissociation Curve ",
"Video ID": "B8XmUpjCtik"
},
{
"Title": "Lung Capacity and Volume ",
"Video ID": "chMedJwp4wo"
},
{
"Title": "Properties of Water and Hydrophobic Effect ",
"Video ID": "3vy__KvTi6I"
},
{
"Title": "Properties of Water and Hydrophobic Effect Part II",
"Video ID": "fuVbeVapafk"
},
{
"Title": "Intramolecular and Intermolecular Forces ",
"Video ID": "U_W-Ee3h12o"
},
{
"Title": "Intramolecular and Intermolecular Forces (Part II)",
"Video ID": "6WTQFiWUUgc"
},
{
"Title": "First and Second Law of Thermodynamics ",
"Video ID": "1kzsLGq3-14"
},
{
"Title": "Gibbs Free Energy ",
"Video ID": "ZuccSLJYSnk"
},
{
"Title": "Formation of DNA Double Helix ",
"Video ID": "uhsDspChg18"
},
{
"Title": "Acid-Base Reactions and pH ",
"Video ID": "CVC6tykua6A"
},
{
"Title": "pH disrupts double helix of DNA",
"Video ID": "85OUxwxBEgs"
},
{
"Title": "Biological Buffer Systems",
"Video ID": "id1yK29TTcc"
},
{
"Title": "Biological Buffer Systems Part II ",
"Video ID": "RdojMjPjuR0"
},
{
"Title": "Introduction to Proteins ",
"Video ID": "ZfsuDfui0oU"
},
{
"Title": "Introduction to Amino Acids ",
"Video ID": "LHNNOIMt5x0"
},
{
"Title": "Nonpolar and Uncharged Polar Amino Acids ",
"Video ID": "cL2_e83v3js"
},
{
"Title": "Basic and Acidic Amino Acids ",
"Video ID": "dF48PWHbA10"
},
{
"Title": "Ionizable Amino Acids ",
"Video ID": "eE4WgONS6-k"
},
{
"Title": "Peptide Bond Formation",
"Video ID": "4_2fA_W7snM"
},
{
"Title": "Primary Structure of Proteins ",
"Video ID": "KW8Uo8jsiGY"
},
{
"Title": "Primary Structure of Proteins (II)",
"Video ID": "qNWZCIoldWA"
},
{
"Title": "Secondary Structure of Proteins ",
"Video ID": "4YbwjjZWGPA"
},
{
"Title": "Tertiary Structure of Proteins ",
"Video ID": "p5Oi_yFfAhg"
},
{
"Title": "Quaternary Structure of Proteins ",
"Video ID": "-3uYmi7C2DI"
},
{
"Title": "Anfinsen’s Experiment of Protein Folding ",
"Video ID": "pZee0XCCqH4"
},
{
"Title": "Prions and Protein misfiling ",
"Video ID": "Chs7ixRstQk"
},
{
"Title": "Cooperatively of Protein Folding ",
"Video ID": "9XK1Ekx5tYc"
},
{
"Title": "Modification of Amino Acids ",
"Video ID": "gpnyMM44lXc"
},
{
"Title": "Enzyme Assay, Enzyme Activity and Specific Activity",
"Video ID": "rgpN2OXg7mI"
},
{
"Title": "Cell Fractionation ",
"Video ID": "ukHA2tnc8mQ"
},
{
"Title": "Centrifugation and Sedimentation Coefficient ",
"Video ID": "oxiB3UoRc0E"
},
{
"Title": "Derivation of Sedimentation Coefficient Equation",
"Video ID": "EIl9kbeOLeA"
},
{
"Title": "Salting Out",
"Video ID": "TIMGH2z1eh4"
},
{
"Title": "Dialysis",
"Video ID": "P4vxEs7YDXY"
},
{
"Title": "Gel Filtration Chromatography",
"Video ID": "6t1BeXk1Gvc"
},
{
"Title": "Ion Exchange Chromatography",
"Video ID": "jOf_zHw2Hd4"
},
{
"Title": "Affinity Chromatography",
"Video ID": "4lWxWjQB5mo"
},
{
"Title": "Isoelectric Focusing and Isoelectric Point ",
"Video ID": "x62WZGd3VCM"
},
{
"Title": "Isoelectric Focusing and Isoelectric Point (Part II) ",
"Video ID": "Flu1EDgyJxs"
},
{
"Title": "Calculating Isoelectric Point of Proteins ",
"Video ID": "c2kK4My2Jzc"
},
{
"Title": "Calculation of Net Charge on Proteins ",
"Video ID": "g0TZncwkJxU"
},
{
"Title": "SDS Polyacrylamide Gel Electrophoresis ",
"Video ID": "tM0VNhjiFSU"
},
{
"Title": "SDS polyacrylamide Gel Electrophoresis ",
"Video ID": "9ly9bVbS8IU"
},
{
"Title": "Two Dimensional Gel Electrophoresis",
"Video ID": "mXkIWIE0H-0"
},
{
"Title": "Analysis of Protein Purification ",
"Video ID": "7h0XrF1BleM"
},
{
"Title": "Analysis of Protein Purification (Part II)",
"Video ID": "95PAEel-Fy8"
},
{
"Title": "Amino Acid Composition in Proteins ",
"Video ID": "5bBeXvo7ScA"
},
{
"Title": "Sequencing Amino Acids and Edman Degradation ",
"Video ID": "VxaGNLCIETA"
},
{
"Title": "Sequencing Amino Acids by Proteolytic Cleavage ",
"Video ID": "--rkLKzHi5s"
},
{
"Title": "Protein Sequencing Example ",
"Video ID": "X1LeQ3pcNow"
},
{
"Title": "Diagonal Electrophoresis",
"Video ID": "tAZu557bMQw"
},
{
"Title": "Polyclonal Antibodies ",
"Video ID": "13u9zjqU1Sw"
},
{
"Title": "Monoclonal Antibodies ",
"Video ID": "kVs4VQQroOg"
},
{
"Title": "Indirect and Sandwich ELISA ",
"Video ID": "MzrJ35aQPMo"
},
{
"Title": "Western Blotting ",
"Video ID": "8F_SFymyMCw"
},
{
"Title": "Solid-Phase Synthesis of Proteins ",
"Video ID": "ISjHVbG5CTE"
},
{
"Title": "Introduction to Nucleic Acids ",
"Video ID": "1Wc4jTH2v_w"
},
{
"Title": "Composition of Nucleic Acids ",
"Video ID": "Ux1tAy1Jb_I"
},
{
"Title": "Nucleosides and Nucleotides",
"Video ID": "GgQrEJaEH0U"
},
{
"Title": "Watson-Crick Model of DNA",
"Video ID": "VLD9VLxN3PI"
},
{
"Title": "Meselson and Stahl Experiment ",
"Video ID": "_GN4F-PaAWA"
},
{
"Title": "Melting and Annealing of DNA ",
"Video ID": "OblPqlOOgew"
},
{
"Title": "Stem-Loop Structure of RNA ",
"Video ID": "g_pwHZZ0oSo"
},
{
"Title": "DNA Polymerase and Catalysis of Phosphodiester Bond",
"Video ID": "wvaBZSQzGVY"
},
{
"Title": "Circular DNA, RNA Genes and Viruses ",
"Video ID": "TEfHW21ZIoc"
},
{
"Title": "Types of RNA ",
"Video ID": "ruIIccU32nU"
},
{
"Title": "RNA Polymerase ",
"Video ID": "1bAhZayllHc"
},
{
"Title": "Promoter and Termination Sites ",
"Video ID": "a9ZMTVlrLY0"
},
{
"Title": "Central Dogma and Genetic Code ",
"Video ID": "0t5eVgtrdWg"
},
{
"Title": "Start and Stop Codons ",
"Video ID": "HxOGxj2jEfA"
},
{
"Title": "Exons and Introns of Eukaryotic mRNA",
"Video ID": "B8gnuhvnfUs"
},
{
"Title": "Introduction to Biotechnology",
"Video ID": "FlsD__uCRws"
},
{
"Title": "Restriction Enzymes and Palindromic Sequences ",
"Video ID": "GDIu_t_SUTY"
},
{
"Title": "Southern and Northern Blotting",
"Video ID": "EoTq-Ql_Zzc"
},
{
"Title": "Sanger Sequencing of DNA ",
"Video ID": "IAf_6TZ6BYc"
},
{
"Title": "Sanger Sequencing of DNA (Part II) ",
"Video ID": "Kw2-LKRzRMM"
},
{
"Title": "Amplifying DNA with Polymerase Chain Reaction ",
"Video ID": "uHKiohWvY_0"
},
{
"Title": "Plasmids and Recombinant DNA technology ",
"Video ID": "2YxTcBimxlw"
},
{
"Title": "Lambda Phages as Vectors ",
"Video ID": "0Mw-0G2m6uE"
},
{
"Title": "Building and Screening Genomic Libraries ",
"Video ID": "2ikPiR0-rnc"
},
{
"Title": "Cassette Mutagenesis and Gene Deletions ",
"Video ID": "EpQB06gRoLg"
},
{
"Title": "Site-Directed Mutagenesis",
"Video ID": "cCUKopDvTks"
},
{
"Title": "Synthesizing cDNA with Reverse Transcriptase ",
"Video ID": "EU39PDzz9co"
},
{
"Title": "Gene Transfection ",
"Video ID": "oj_h06k9z0g"
},
{
"Title": "Heme Group of Hemoglobin and Myoglobin ",
"Video ID": "L6vhDsi8O_g"
},
{
"Title": "Oxygen Binding Curve for Myoglobin and Hemoglobin",
"Video ID": "Y3hRYzEmKrc"
},
{
"Title": "Hemoglobin vs Myoglobin as Oxygen Carrier ",
"Video ID": "XUI5vGfNYZY"
},
{
"Title": "T-state and R-state of Hemoglobin",
"Video ID": "LKvQLasB6jw"
},
{
"Title": "Concerted and Sequential Model for Hemoglobin",
"Video ID": "VNln4wn7_f4"
},
{
"Title": "Effect of 2,3-BPG on Hemoglobin ",
"Video ID": "20HfkCZy0dI"
},
{
"Title": "Fetal Hemoglobin and 2,3 BPG ",
"Video ID": "WMArOG94H3E"
},
{
"Title": "The Bohr Effect and Hemoglobin",
"Video ID": "vwdT15oc3IE"
},
{
"Title": "The Bohr Effect and Hemoglobin (Part II) ",
"Video ID": "J7Wjq5YiJhs"
},
{
"Title": "Transport of Carbon Dioxide and Chloride Shift ",
"Video ID": "7l-WHYD_uYE"
},
{
"Title": "Haldane Effect ",
"Video ID": "NN60olUJu1I"
},
{
"Title": "High Altitude and 2,3 BPG",
"Video ID": "tTtbU8KD5JM"
},
{
"Title": "Alpha Hemoglobin and Stabilizing Protein ",
"Video ID": "-vpde5PGMX8"
},
{
"Title": "Sickle-Cell Anemia ",
"Video ID": "e67ZP2C3Pr4"
},
{
"Title": "Properties of Enzymes ",
"Video ID": "Gy3fEdy9cCA"
},
{
"Title": "Enzymes’ Effect on Activation Energy and Free Energy ",
"Video ID": "tPCOEUo6J8s"
},
{
"Title": "Gibbs Free Energy and Spontaneity",
"Video ID": "u_IQu7h6xfo"
},
{
"Title": "Enzymes Stabilize Transition State ",
"Video ID": "NEQ9WS8w-2I"
},
{
"Title": "Properties of Active Sites, Lock-and-Key Model and Induced Fit Model ",
"Video ID": "xzeg7ult6pM"
},
{
"Title": "Effect of Enzymes on Rate Law and Rate Constant ",
"Video ID": "htZgbALo8uE"
},
{
"Title": "Effect of Enzymes on Rate Law and Rate Constant (Part II) ",
"Video ID": "yD6CTA-tT6A"
},
{
"Title": "Derivation of Michaelis-Menten Equation",
"Video ID": "NVDxNal06zM"
},
{
"Title": "Derivation of Michaelis Menten-Equation Part II ",
"Video ID": "OOzj_dFzPH4"
},
{
"Title": "Michaelis menten Equation ",
"Video ID": "ALwziZSRiqM"
},
{
"Title": "Michaelis Constant ",
"Video ID": "ZU2EAZQ6Mok"
},
{
"Title": "Maximal Velocity and Turnover Number of Enzymes ",
"Video ID": "KM2Kq9L_V4M"
},
{
"Title": "Catalytic Efficiency of Enzymes ",
"Video ID": "EUunw7voY-o"
},
{
"Title": "Catalytic Efficiency of Enzymes Part II ",
"Video ID": "5dhAuaZMCUg"
},
{
"Title": "Sequential and Ping Pong Reactions ",
"Video ID": "pWURzs8GiB4"
},
{
"Title": "Mechanisms of Enzyme Catalysis ",
"Video ID": "0vvUIIulzMk"
},
{
"Title": "Introduction to Proteases",
"Video ID": "Y9VgJw4w69Q"
},
{
"Title": "Chymotrypsin and Covalent Catalysis ",
"Video ID": "TXSZMLvqx-A"
},
{
"Title": "Reaction Mechanism of Chymotrypsin",
"Video ID": "OY1WsqlcUdo"
},
{
"Title": "Specificity of Serine Proteases",
"Video ID": "4iJY90Fxj7c"
},
{
"Title": "Cysteine, Apsratyl and metalloproteases",
"Video ID": "n8NFSMfV9dc"
},
{
"Title": "Carbonic Anhyrdase",
"Video ID": "W5nLcHtuBvM"
},
{
"Title": "NMP Kinases ",
"Video ID": "z-sII0ooX3g"
},
{
"Title": "Irreversible and Reversible Inhibition",
"Video ID": "0ZiCqwtFMTs"
},
{
"Title": "Irreversibile and Reversible Inhibition Part II ",
"Video ID": "RouBlFpd_mk"
},
{
"Title": "Enzyme Kinetics of Reversible Inhibition",
"Video ID": "rNBEUGYu034"
},
{
"Title": "Enzyme Kinetics of Reversible Inhibition (Part II) ",
"Video ID": "OfjuWqtC51o"
},
{
"Title": "Lineweaver Burke Plot and Reversible Inhibition",
"Video ID": "GVUkZL1jCw0"
},
{
"Title": "Lineweaver Burke Plot and REversible Inhibition Part II ",
"Video ID": "md9QC5oQmLY"
},
{
"Title": "Group Specific Affinity Labels and Suicide Inhibitors ",
"Video ID": "K1uq9AXwo5Q"
},
{
"Title": "Transition State Analogs and Catalytic Antibodies ",
"Video ID": "Q1nUbwJ6wF8"
},
{
"Title": "Structure and Function of Penicillin ",
"Video ID": "JZPo_iXiGuA"
},
{
"Title": "Enzyme Regulation ",
"Video ID": "I82orkqyOEY"
},
{
"Title": "ATCase Allosteric Regulation",
"Video ID": "Z2ZN_9nFl1E"
},
{
"Title": "Structure of ATCase ",
"Video ID": "zSAABNvECGI"
},
{
"Title": "Structure of ATCase Part II",
"Video ID": "m-SxOxZ0PwA"
},
{
"Title": "Cooperatively and Allosteric Effectors of ATCase ",
"Video ID": "gZmlhlK9lTQ"
},
{
"Title": "Covalent Modification and Phosphorylation ",
"Video ID": "zHJexIQbHvc"
},
{
"Title": "Covalent Modification and Phosphorylation Part II ",
"Video ID": "0l924_AJ-iA"
},
{
"Title": "Protein Kinase A ",
"Video ID": "jwp5vwnTyPc"
},
{
"Title": "Proteolytic Activation ",
"Video ID": "Jrp7T9-fMcM"
},
{
"Title": "Proteolytic Activation of Digestive Enzymes ",
"Video ID": "zPX_RGh3Ho0"
},
{
"Title": "Inhibition of Digestive Enzymes ",
"Video ID": "Brx4S1L6NOY"
},
{
"Title": "Inhibition of Digestive Enzymes ",
"Video ID": "bg0K9U5d0xU"
},
{
"Title": "Activation of Coagulation Cascade ",
"Video ID": "fcvhf9vmj5U"
},
{
"Title": "Factor VIII and Hemophilia A ",
"Video ID": "LbbzuBN2Eao"
},
{
"Title": "Inhibition of Coagulation Cascade ",
"Video ID": "jUs6eGbRrfk"
},
{
"Title": "Isozymes ",
"Video ID": "pzdjg3iG4oM"
},
{
"Title": "Introduction to Carbohydrates ",
"Video ID": "OBP8ltttH5U"
},
{
"Title": "Aldoses, Ketoses Fischer Projections and Epimers ",
"Video ID": "ECKrQu0Y2PI"
},
{
"Title": "Cyclic Form of Carbohydrates ",
"Video ID": "H7z1vNc1jos"
},
{
"Title": "Stability of Glucose Anomie’s ",
"Video ID": "MaY1UOYRFMo"
},
{
"Title": "Modification of Carbohydrates ",
"Video ID": "qrvlx5zD4Vc"
},
{
"Title": "Disaccharides (maltose, lactose, and sucrose) ",
"Video ID": "Kj15mH5zB6Y"
},
{
"Title": "Polysaccharides ",
"Video ID": "e0ijBDroE48"
},
{
"Title": "Glycosaminoglycans and Proteoglycans ",
"Video ID": "l3W60xr9ac4"
},
{
"Title": "Glycosylation and Glycoproteins ",
"Video ID": "xHpQuV80xhs"
},
{
"Title": "Functions of Glycoproteins and I-Cell Disease ",
"Video ID": "ti_fvQRfLys"
},
{
"Title": "Glycosyltransferases and ABO Blood Groups ",
"Video ID": "YSVbO2sHlBE"
},
{
"Title": "Properties of Cell Membranes ",
"Video ID": "32F9xpfXUsc"
},
{
"Title": "Fatty Acids ",
"Video ID": "eB9tgWB4YEw"
},
{
"Title": "Fatty Acids Part II ",
"Video ID": "nqBe9jAlTgQ"
},
{
"Title": "Phospholipids ",
"Video ID": "xrn9qeVM9o4"
},
{
"Title": "Glycolipids and Cholesterol ",
"Video ID": "c_RTc7aSFp4"
},
{
"Title": "Micelles and Lipid Bilayer ",
"Video ID": "MTwUy3c5Etc"
},
{
"Title": "Liposomes (Lipid Vesicles) ",
"Video ID": "KiZvvd5dhfM"
},
{
"Title": "Permeability of Cell Membrane ",
"Video ID": "mkkQK6emawM"
},
{
"Title": "Integral and Peripheral Membrane Proteins ",
"Video ID": "AB0tlX6IUYU"
},
{
"Title": "Integral and Peripheral Membrane Proteins Part II ",
"Video ID": "Onq25qxxsco"
},
{
"Title": "Lateral Diffusion of Lipids and Proteins ",
"Video ID": "eHEsOFGOSC4"
},
{
"Title": "Flip-Flopping and Fluid Mosaic Model ",
"Video ID": "ftgQ8-w8YGA"
},
{
"Title": "Asymmetry of Cell Membrane ",
"Video ID": "h7x6Ojc_6iI"
},
{
"Title": "Cholesterol and Fatty Acids Regulate membrane Fluidity ",
"Video ID": "wnBTZ02wnAE"
},
{
"Title": "Introduction to Membrane Transport ",
"Video ID": "veserg9SrtU"
},
{
"Title": "Measuring the Electrochemical Gradient ",
"Video ID": "hnGsBEZ_PeI"
},
{
"Title": "Measuring the Electrochemical Gradient ",
"Video ID": "M5pW6oex-qA"
},
{
"Title": "P-Type ATPases ",
"Video ID": "eJtowEuMjfQ"
},
{
"Title": "ABC Transporters ",
"Video ID": "AYGnZHzXsLs"
},
{
"Title": "Secondary Transporters ",
"Video ID": "JzmH5o0L3tw"
},
{
"Title": "Membrane Channels ",
"Video ID": "HG2Syp6O9EM"
},
{
"Title": "Ligand-Gated Ion Channels ",
"Video ID": "2FMxQsJfCZY"
},
{
"Title": "Resting Membrane Potential ",
"Video ID": "EqjGJ-Zn7Ic"
},
{
"Title": "Generation of Action Potential",
"Video ID": "APKc8A-Ak4s"
},
{
"Title": "Gap Junctions",
"Video ID": "attLYnvWH9M"
},
{
"Title": "Aquaporins ",
"Video ID": "DFu86zguTZA"
},
{
"Title": "Cancer and Termination of Signal Pathways ",
"Video ID": "zA7rl1exdRI"
},
{
"Title": "Signal Transduction Pathways ",
"Video ID": "KiBxUKk4u6g"
},
{
"Title": "Epinephrine Signal Transduction Pathway",
"Video ID": "Z7YK9cA1x70"
},
{
"Title": "Termination of Epinephrine Signaling ",
"Video ID": "pFVLjibWBik"
},
{
"Title": "Phosphoinositide Signal Pathway",
"Video ID": "2PCexQiCjfI"
},
{
"Title": "Calcium and Calmodulin ",
"Video ID": "XhVcqUugv7I"
},
{
"Title": "Insulin Signal Transduction Pathway ",
"Video ID": "CUXQsAdxuYw"
},
{
"Title": "EGF Signal Transduction Pathway",
"Video ID": "fqo7EYIh0XM"
},
{
"Title": "Common Properties of Signal Pathways ",
"Video ID": "fGqbIVj7L_s"
},
{
"Title": "Cholera and G-Protein Coupled Signaling ",
"Video ID": "GQtgUgxidpM"
},
{
"Title": "Introduction to Glucose Metabolism ",
"Video ID": "2yMQsmoZo2A"
},
{
"Title": "Stage 1 of Glycolysis ",
"Video ID": "QEIWcOY0x0g"
},
{
"Title": "Stage 2 of Glycolysis ",
"Video ID": "iL5ThXvldLo"
},
{
"Title": "Stage 2 of Glycolysis Part II ",
"Video ID": "omeKnebHq5c"
},
{
"Title": "Stage 3 of Glycolysis ",
"Video ID": "U4f9jdQU8LM"
},
{
"Title": "Stage 3 of Glycolysis ",
"Video ID": "Cqvl_wRZHXs"
},
{
"Title": "Overview of Glycolysis ",
"Video ID": "elXjUqZRcE0"
},
{
"Title": "Overview of Glycolysis Part II ",
"Video ID": "xgIEqgrvO4c"
},
{
"Title": "Ethanol and Lactic Acid Fermentation ",
"Video ID": "gPbnjk2orcQ"
},
{
"Title": "Fructose and Galactose Breakdown Pathways ",
"Video ID": "y6kVNOs89D4"
},
{
"Title": "Lactose Intolerance ",
"Video ID": "pyfBZCGOUGs"
},
{
"Title": "Regulation of Glycolysis in Skeletal Muscle ",
"Video ID": "uXNi7WQ5JEo"
},
{
"Title": "Regulation of Glycolysis in Skeletal Muscle Part II ",
"Video ID": "KVnP8WOGZA8"
},
{
"Title": "Regulation of Glycolysis in Liver Cells ",
"Video ID": "OG4A3Fkitvw"
},
{
"Title": "Regulation of Glycolysis in Liver Cells Part II ",
"Video ID": "WaCFnrvN2D8"
},
{
"Title": "Glucose Transporters ",
"Video ID": "i9S5_KZa_Is"
},
{
"Title": "Effect of Exercise and Cancer on Glycolysis ",
"Video ID": "xji7TfN5Wbw"
},
{
"Title": "Introduction to Gluconeogenesis ",
"Video ID": "VTLtHbO_L8Q"
},
{
"Title": "Introduction to Gluconeogenesis Part II ",
"Video ID": "yGXkDhmza64"
},
{
"Title": "Gluconeogenesis Steps 1-2",
"Video ID": "SLAlv9XSgqg"
},
{
"Title": "Gluconeogenesis Steps 3-10",
"Video ID": "51g4sAihHEk"
},
{
"Title": "Gluconeogenesis Steps 3-10 Part II ",
"Video ID": "AzCnD-0C3Bs"
},
{
"Title": "Overview of Gluconeogenesis ",
"Video ID": "9p45oK0nECw"
},
{
"Title": "Reciprocal Regulation of Gluconeogenesis and Glycolysis ",
"Video ID": "ardjd4h2Seo"
},
{
"Title": "Reciprocal Regulation of Gluconeogenesis and Glycolysis ",
"Video ID": "UorOXoKlMZM"
},
{
"Title": "Regulation of Glucose in Blood ",
"Video ID": "KYyMI0gyLYk"
},
{
"Title": "Regulation of Glucose in Blood Part II ",
"Video ID": "mTZumNWTAKA"
},
{
"Title": "Overview of Lactate Formation and Recycling ",
"Video ID": "sJO78WVzR1g"
},
{
"Title": "Introduction to Citric Acid Cycle ",
"Video ID": "Ge_uJ3iRDCE"
},
{
"Title": "Pyruvate Decarboxylation ",
"Video ID": "RsG3bD39Jqk"
},
{
"Title": "Step 1 of Citric Acid Cycle ",
"Video ID": "5XibaVKKQwo"
},
{
"Title": "Step 1 of Citric Acid Cycle (Part II) ",
"Video ID": "6c_0qbq2B4Q"
},
{
"Title": "Step 2-4 of Citric Acid Cycle ",
"Video ID": "qgR-2_SDnKU"
},
{
"Title": "Steps 5-8 of Citric Acid Cycle ",
"Video ID": "AJkBo2RlA3A"
},
{
"Title": "Overview of Citric Acid Cycle ",
"Video ID": "fOY03Wl8VG4"
},
{
"Title": "Regulation of Pyruvate Decarboxylation ",
"Video ID": "jZg8JHiLaBA"
},
{
"Title": "Regulation of Citric Acid Cycle ",
"Video ID": "M5_KZ4qpc00"
},
{
"Title": "Replenishing Oxaloacetate in Citric Acid Cycle ",
"Video ID": "WlUPaImRZts"
},
{
"Title": "Introduction to Oxidative Phosphorylation ",
"Video ID": "kI9rD9bO6wU"
},
{
"Title": "Introduction to Electron Transport Chain ",
"Video ID": "COMD8yHJtLI"
},
{
"Title": "Complex I and II of Electron Transport Chain ",
"Video ID": "ay9WIAkoa1Y"
},
{
"Title": "Q-Cycle and Complex III of Electron Transport Chain ",
"Video ID": "rOv-X7VFbp0"
},
{
"Title": "Complex IV of Electron Transport Chain ",
"Video ID": "E0YGToDEKeE"
},
{
"Title": "Reactive Oxygen Species and ETC ",
"Video ID": "zrwhSkeZceg"
},
{
"Title": "Structure of ATP Synthase",
"Video ID": "kio0RTl2FSM"
},
{
"Title": "Mechanism of ATP Synthase ",
"Video ID": "IHCzJjm0b1M"
},
{
"Title": "Proton Movement in ATP Synthase ",
"Video ID": "Q7TESAewi5c"
},
{
"Title": "Glycerol 3-Phosphate Shuttle ",
"Video ID": "sglxi7I21-M"
},
{
"Title": "Malate Aspartate Shuttle ",
"Video ID": "nEj8b-sg4ps"
},
{
"Title": "ATP-ADP Translocase",
"Video ID": "bWATYDuUnLE"
},
{
"Title": "ATP Yield of Aerobic Cell Respiration ",
"Video ID": "i0oYOcXsIBE"
},
{
"Title": "Introduction to Pentose Phosphate Pathway",
"Video ID": "nkTDi2WIm4w"
},
{
"Title": "Oxidative Phase of Pentose Phosphate Pathway ",
"Video ID": "nMWmmJLEI9I"
},
{
"Title": "Nonoxidative Phase of Pentose Phosphate Pathway ",
"Video ID": "dWwXvo2vpBc"
},
{
"Title": "Mechanism of Transaldolase ",
"Video ID": "Ei84u509zrA"
},
{
"Title": "Mechanism of Transketolase ",
"Video ID": "Q2w_gRwmQM8"
},
{
"Title": "Interplay of Glycolysis and Pentose Phosphate Pathway ",
"Video ID": "asgGTwYkS9Q"
},
{
"Title": "Introduction to Glycogen ",
"Video ID": "kei2AmB3sfw"
},
{
"Title": "Glycogen Breakdown ",
"Video ID": "Y1nSZA-A7f8"
},
{
"Title": "Regulating Glycogen Breakdown in Muscle ",
"Video ID": "W11XV-_tI04"
},
{
"Title": "Regulating Glycogen Breakdown in Liver ",
"Video ID": "wHRYT86Efr0"
},
{
"Title": "Activation of Phosphorylase Kinase ",
"Video ID": "BI86QnvROYM"
},
{
"Title": "Glucagon Signal Pathway ",
"Video ID": "DcIEEiGLtVU"
},
{
"Title": "Termination of Glycogen Breakdown ",
"Video ID": "QM2W_KPlbX0"
},
{
"Title": "UDP-Glucose and Glycogen Elongation ",
"Video ID": "2ezIyIt6Wyo"
},
{
"Title": "Branching of Glycogen",
"Video ID": "hejzJ03kZ9E"
},
{
"Title": "Overview of Gluconeogenesis ",
"Video ID": "3FHKw2aS_Z0"
},
{
"Title": "Glycogen Synthase Regulation ",
"Video ID": "3jqxLodarME"
},
{
"Title": "Reciprocal Regulation of Glycogen Metabolism",
"Video ID": "pYrbLjgqdTY"
},
{
"Title": "Insulin and Glucose Regulation of Glycogenesis ",
"Video ID": "t12pXyMg7NQ"
},
{
"Title": "Introduction to Fatty Acid Metabolism",
"Video ID": "0M7PH3Mro5Y"
},
{
"Title": "Triglycerides ",
"Video ID": "TVzJqpzoqDM"
},
{
"Title": "Mobilization of Triglycerides in Adipose Cells ",
"Video ID": "yFqyVA_I2N0"
},
{
"Title": "Activation of Fatty Acids ",
"Video ID": "3lr2uxBb_iw"
},
{
"Title": "Oxidation of Fatty Acids ",
"Video ID": "gQYCCiGe9bo"
},
{
"Title": "ATP yield in Fatty acid oxidation",
"Video ID": "w6V9RFs9NGk"
},
{
"Title": "Oxidation of Unsaturated fatty acids ",
"Video ID": "oE0KQnQf3Q4"
},
{
"Title": "Oxidation of Odd chain fatty acids ",
"Video ID": "dhW6b7XjlZs"
},
{
"Title": "Peroxisomal oxidation of fatty acids ",
"Video ID": "_P2P7R_pcH4"
},
{
"Title": "Ketogenesis ",
"Video ID": "dbno1Aa-E_4"
},
{
"Title": "Diabetic Ketoacidosis ",
"Video ID": "LwLWo6kUst4"
},
{
"Title": "Introduction to Fatty Acid Synthesis ",
"Video ID": "t4D5_du3Of8"
},
{
"Title": "Initiation of Fatty Acid Synthesis",
"Video ID": "6W5dntsodvo"
},
{
"Title": "Fatty Acid Synthesis ",
"Video ID": "4VNKyf34xmI"
},
{
"Title": "Fatty Acid Synthesis Part II ",
"Video ID": "pa4rHm2eOlM"
},
{
"Title": "Introduction to Amino Acid Metabolism ",
"Video ID": "p8YWfhQPuoE"
},
{
"Title": "Ubiquitination of Proteins ",
"Video ID": "ao5DJ4q2DsA"
},
{
"Title": "Proteasome Complex",
"Video ID": "T2oYG_yxKS0"
},
{
"Title": "Deamination of Amino Acids ",
"Video ID": "c_-lwMgBsDE"
},
{
"Title": "Glucose-alanine cycle ",
"Video ID": "V9CSKTFyaYw"
},
{
"Title": "Urea cycle ",
"Video ID": "VtDtG58ETLQ"
},
{
"Title": "Defects in Urea cycle and hyperammonemia ",
"Video ID": "y7ZPAc_pS0I"
},
{
"Title": "Introduction to glucogenic and ketogenic amino acids ",
"Video ID": "p7Ss0yGf84U"
},
{
"Title": "Metabolism of amino acids to pyruvate ",
"Video ID": "TV1gzWHov8Y"
},
{
"Title": "Metabolism of amino acids to ketoglutarate ",
"Video ID": "02gUohKpZnE"
},
{
"Title": "Metabolism of Methionine",
"Video ID": "rehxEfZHkU0"
},
{
"Title": "Metabolism of phenylalanine and tyrosine",
"Video ID": "sOUVczoOCIo"
},
{
"Title": "Alcaptonuria ",
"Video ID": "9Sssjfr5XNQ"
},
{
"Title": "Alcaptonuria Part 2",
"Video ID": "n7Uec8Jtr4E"
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
},
{
"Title": "",
"Video ID": ""
}
] |