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 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240
|
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2024 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
SPDX-License-Identifier: Unicode-3.0
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
Derived short names and annotations, using GenerateDerivedAnnotations.java. See warnings in /annotations/ file.
-->
<ldml>
<identity>
<version number="$Revision$"/>
<language type="am"/>
</identity>
<annotations>
<annotation cp="đđ»">ááá” | á°áá | áŁá áŁá | á°áááá„ á„á
| á»á | á á«á | á„á
| á„á
ááááá | ášááł áááá”-1-2</annotation>
<annotation cp="đđ»" type="tts">á°áááá„ á„á
: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááášáá áá á«á ášááł ááá | ááá” | á°áá | áŁá áŁá | á°áááá„ á„á
| á»á | á á«á | á„á
| á„á
ááááá</annotation>
<annotation cp="đđŒ" type="tts">á°áááá„ á„á
: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">ááá” | á°áá | áŁá áŁá | á°áááá„ á„á
| á»á | á á«á | á„á
| á„á
ááááá | ášááł áááá”-4</annotation>
<annotation cp="đđœ" type="tts">á°áááá„ á„á
: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">ááá” | á°áá | áŁá áŁá | á°áááá„ á„á
| á»á | á á«á | á„á
| á„á
ááááá | ášááł áááá”-5</annotation>
<annotation cp="đđŸ" type="tts">á°áááá„ á„á
: ášááł áááá”-5</annotation>
<annotation cp="đđż">ááá” | á°áá | áŁá áŁá | á°áááá„ á„á
| á»á | á á«á | á„á
| á„á
ááááá | ášááł áááá”-6</annotation>
<annotation cp="đđż" type="tts">á°áááá„ á„á
: ášááł áááá”-6</annotation>
<annotation cp="đ€đ»">á áá áᣠ| áá° áá | áá° áá ášá°áášá á„á
| ášááł áááá”-1-2 | ášá°ááł á„á
| ášá°áášá</annotation>
<annotation cp="đ€đ»" type="tts">áá° áá ášá°áášá á„á
: ášááł áááá”-1-2</annotation>
<annotation cp="đ€đŒ">ááášáá áá á«á ášááł ááá | á áá áᣠ| áá° áá | áá° áá ášá°áášá á„á
| ášá°ááł á„á
| ášá°áášá</annotation>
<annotation cp="đ€đŒ" type="tts">áá° áá ášá°áášá á„á
: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€đœ">á áá áᣠ| áá° áá | áá° áá ášá°áášá á„á
| ášááł áááá”-4 | ášá°ááł á„á
| ášá°áášá</annotation>
<annotation cp="đ€đœ" type="tts">áá° áá ášá°áášá á„á
: ášááł áááá”-4</annotation>
<annotation cp="đ€đŸ">á áá áᣠ| áá° áá | áá° áá ášá°áášá á„á
| ášááł áááá”-5 | ášá°ááł á„á
| ášá°áášá</annotation>
<annotation cp="đ€đŸ" type="tts">áá° áá ášá°áášá á„á
: ášááł áááá”-5</annotation>
<annotation cp="đ€đż">á áá áᣠ| áá° áá | áá° áá ášá°áášá á„á
| ášááł áááá”-6 | ášá°ááł á„á
| ášá°áášá</annotation>
<annotation cp="đ€đż" type="tts">áá° áá ášá°áášá á„á
: ášááł áááá”-6</annotation>
<annotation cp="đđ»">5 | áá°áááł áá° áá ášá°áášá ášá„á
áŁá¶áœ | ááááá” | á°áá | áá | á áá”á” | á á«á | á„á
| ášááł áááá”-1-2 | áŁá”</annotation>
<annotation cp="đđ»" type="tts">áá°áááł áá° áá ášá°áášá ášá„á
áŁá¶áœ: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">5 | áá°áááł áá° áá ášá°áášá ášá„á
áŁá¶áœ | ááášáá áá á«á ášááł ááá | ááááá” | á°áá | áá | á áá”á” | á á«á | á„á
| áŁá”</annotation>
<annotation cp="đđŒ" type="tts">áá°áááł áá° áá ášá°áášá ášá„á
áŁá¶áœ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">5 | áá°áááł áá° áá ášá°áášá ášá„á
áŁá¶áœ | ááááá” | á°áá | áá | á áá”á” | á á«á | á„á
| ášááł áááá”-4 | áŁá”</annotation>
<annotation cp="đđœ" type="tts">áá°áááł áá° áá ášá°áášá ášá„á
áŁá¶áœ: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">5 | áá°áááł áá° áá ášá°áášá ášá„á
áŁá¶áœ | ááááá” | á°áá | áá | á áá”á” | á á«á | á„á
| ášááł áááá”-5 | áŁá”</annotation>
<annotation cp="đđŸ" type="tts">áá°áááł áá° áá ášá°áášá ášá„á
áŁá¶áœ: ášááł áááá”-5</annotation>
<annotation cp="đđż">5 | áá°áááł áá° áá ášá°áášá ášá„á
áŁá¶áœ | ááááá” | á°áá | áá | á áá”á” | á á«á | á„á
| ášááł áááá”-6 | áŁá”</annotation>
<annotation cp="đđż" type="tts">áá°áááł áá° áá ášá°áášá ášá„á
áŁá¶áœ: ášááł áááá”-6</annotation>
<annotation cp="âđ»">á°áá | áá | á á«á | á„á
| á„á
áááŁá” | áá° áá ášá°á°ášá á„á
| ášááł áááá”-1-2</annotation>
<annotation cp="âđ»" type="tts">áá° áá ášá°á°ášá á„á
: ášááł áááá”-1-2</annotation>
<annotation cp="âđŒ">ááášáá áá á«á ášááł ááá | á°áá | áá | á á«á | á„á
| á„á
áááŁá” | áá° áá ášá°á°ášá á„á
</annotation>
<annotation cp="âđŒ" type="tts">áá° áá ášá°á°ášá á„á
: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="âđœ">á°áá | áá | á á«á | á„á
| á„á
áááŁá” | áá° áá ášá°á°ášá á„á
| ášááł áááá”-4</annotation>
<annotation cp="âđœ" type="tts">áá° áá ášá°á°ášá á„á
: ášááł áááá”-4</annotation>
<annotation cp="âđŸ">á°áá | áá | á á«á | á„á
| á„á
áááŁá” | áá° áá ášá°á°ášá á„á
| ášááł áááá”-5</annotation>
<annotation cp="âđŸ" type="tts">áá° áá ášá°á°ášá á„á
: ášááł áááá”-5</annotation>
<annotation cp="âđż">á°áá | áá | á á«á | á„á
| á„á
áááŁá” | áá° áá ášá°á°ášá á„á
| ášááł áááá”-6</annotation>
<annotation cp="âđż" type="tts">áá° áá ášá°á°ášá á„á
: ášááł áááá”-6</annotation>
<annotation cp="đđ»">á©áá«á | á©áá«á á°áááł | á á«á | á„á
| ášááł áááá”-1-2 | áŁá”</annotation>
<annotation cp="đđ»" type="tts">á©áá«á á°áááł: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááášáá áá á«á ášááł ááá | á©áá«á | á©áá«á á°áááł | á á«á | á„á
| áŁá”</annotation>
<annotation cp="đđŒ" type="tts">á©áá«á á°áááł: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">á©áá«á | á©áá«á á°áááł | á á«á | á„á
| ášááł áááá”-4 | áŁá”</annotation>
<annotation cp="đđœ" type="tts">á©áá«á á°áááł: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">á©áá«á | á©áá«á á°áááł | á á«á | á„á
| ášááł áááá”-5 | áŁá”</annotation>
<annotation cp="đđŸ" type="tts">á©áá«á á°áááł: ášááł áááá”-5</annotation>
<annotation cp="đđż">á©áá«á | á©áá«á á°áááł | á á«á | á„á
| ášááł áááá”-6 | áŁá”</annotation>
<annotation cp="đđż" type="tts">á©áá«á á°áááł: ášááł áááá”-6</annotation>
<annotation cp="đ«±đ»">áášáŁá á„ | áá | á„á
| áá° áá | áá° áá áá”ášá” | áá° áá ášááš | áá° áá ášááš á„á
| ášááł áááá”-1-2 | á«á | áŁá¶áœ</annotation>
<annotation cp="đ«±đ»" type="tts">áá° áá ášááš á„á
: ášááł áááá”-1-2</annotation>
<annotation cp="đ«±đŒ">ááášáá áá á«á ášááł ááá | áášáŁá á„ | áá | á„á
| áá° áá | áá° áá áá”ášá” | áá° áá ášááš | áá° áá ášááš á„á
| á«á | áŁá¶áœ</annotation>
<annotation cp="đ«±đŒ" type="tts">áá° áá ášááš á„á
: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ«±đœ">áášáŁá á„ | áá | á„á
| áá° áá | áá° áá áá”ášá” | áá° áá ášááš | áá° áá ášááš á„á
| ášááł áááá”-4 | á«á | áŁá¶áœ</annotation>
<annotation cp="đ«±đœ" type="tts">áá° áá ášááš á„á
: ášááł áááá”-4</annotation>
<annotation cp="đ«±đŸ">áášáŁá á„ | áá | á„á
| áá° áá | áá° áá áá”ášá” | áá° áá ášááš | áá° áá ášááš á„á
| ášááł áááá”-5 | á«á | áŁá¶áœ</annotation>
<annotation cp="đ«±đŸ" type="tts">áá° áá ášááš á„á
: ášááł áááá”-5</annotation>
<annotation cp="đ«±đż">áášáŁá á„ | áá | á„á
| áá° áá | áá° áá áá”ášá” | áá° áá ášááš | áá° áá ášááš á„á
| ášááł áááá”-6 | á«á | áŁá¶áœ</annotation>
<annotation cp="đ«±đż" type="tts">áá° áá ášááš á„á
: ášááł áááá”-6</annotation>
<annotation cp="đ«±đ»âđ«ČđŒ">ááášáá áá á«á ášááł ááá | áášáŁá á„ | á”áááá” | á”á„á°áŁ | á„á
| ášááł áááá”-1-2</annotation>
<annotation cp="đ«±đ»âđ«ČđŒ" type="tts">á„á
áášáŁá á„: ášááł áááá”-1-2 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ«±đ»âđ«Čđœ">áášáŁá á„ | á”áááá” | á”á„á°áŁ | á„á
| ášááł áááá”-1-2 | ášááł áááá”-4</annotation>
<annotation cp="đ«±đ»âđ«Čđœ" type="tts">á„á
áášáŁá á„: ášááł áááá”-1-2 á„á ášááł áááá”-4</annotation>
<annotation cp="đ«±đ»âđ«ČđŸ">áášáŁá á„ | á”áááá” | á”á„á°áŁ | á„á
| ášááł áááá”-1-2 | ášááł áááá”-5</annotation>
<annotation cp="đ«±đ»âđ«ČđŸ" type="tts">á„á
áášáŁá á„: ášááł áááá”-1-2 á„á ášááł áááá”-5</annotation>
<annotation cp="đ«±đ»âđ«Čđż">áášáŁá á„ | á”áááá” | á”á„á°áŁ | á„á
| ášááł áááá”-1-2 | ášááł áááá”-6</annotation>
<annotation cp="đ«±đ»âđ«Čđż" type="tts">á„á
áášáŁá á„: ášááł áááá”-1-2 á„á ášááł áááá”-6</annotation>
<annotation cp="đ«±đŒâđ«Čđ»">ááášáá áá á«á ášááł ááá | áášáŁá á„ | á”áááá” | á”á„á°áŁ | á„á
| ášááł áááá”-1-2</annotation>
<annotation cp="đ«±đŒâđ«Čđ»" type="tts">á„á
áášáŁá á„: ááášáá áá á«á ášááł ááá á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ«±đŒâđ«Čđœ">ááášáá áá á«á ášááł ááá | áášáŁá á„ | á”áááá” | á”á„á°áŁ | á„á
| ášááł áááá”-4</annotation>
<annotation cp="đ«±đŒâđ«Čđœ" type="tts">á„á
áášáŁá á„: ááášáá áá á«á ášááł ááá á„á ášááł áááá”-4</annotation>
<annotation cp="đ«±đŒâđ«ČđŸ">ááášáá áá á«á ášááł ááá | áášáŁá á„ | á”áááá” | á”á„á°áŁ | á„á
| ášááł áááá”-5</annotation>
<annotation cp="đ«±đŒâđ«ČđŸ" type="tts">á„á
áášáŁá á„: ááášáá áá á«á ášááł ááá á„á ášááł áááá”-5</annotation>
<annotation cp="đ«±đŒâđ«Čđż">ááášáá áá á«á ášááł ááá | áášáŁá á„ | á”áááá” | á”á„á°áŁ | á„á
| ášááł áááá”-6</annotation>
<annotation cp="đ«±đŒâđ«Čđż" type="tts">á„á
áášáŁá á„: ááášáá áá á«á ášááł ááá á„á ášááł áááá”-6</annotation>
<annotation cp="đ«±đœâđ«Čđ»">áášáŁá á„ | á”áááá” | á”á„á°áŁ | á„á
| ášááł áááá”-1-2 | ášááł áááá”-4</annotation>
<annotation cp="đ«±đœâđ«Čđ»" type="tts">á„á
áášáŁá á„: ášááł áááá”-4 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ«±đœâđ«ČđŒ">ááášáá áá á«á ášááł ááá | áášáŁá á„ | á”áááá” | á”á„á°áŁ | á„á
| ášááł áááá”-4</annotation>
<annotation cp="đ«±đœâđ«ČđŒ" type="tts">á„á
áášáŁá á„: ášááł áááá”-4 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ«±đœâđ«ČđŸ">áášáŁá á„ | á”áááá” | á”á„á°áŁ | á„á
| ášááł áááá”-4 | ášááł áááá”-5</annotation>
<annotation cp="đ«±đœâđ«ČđŸ" type="tts">á„á
áášáŁá á„: ášááł áááá”-4 á„á ášááł áááá”-5</annotation>
<annotation cp="đ«±đœâđ«Čđż">áášáŁá á„ | á”áááá” | á”á„á°áŁ | á„á
| ášááł áááá”-4 | ášááł áááá”-6</annotation>
<annotation cp="đ«±đœâđ«Čđż" type="tts">á„á
áášáŁá á„: ášááł áááá”-4 á„á ášááł áááá”-6</annotation>
<annotation cp="đ«±đŸâđ«Čđ»">áášáŁá á„ | á”áááá” | á”á„á°áŁ | á„á
| ášááł áááá”-1-2 | ášááł áááá”-5</annotation>
<annotation cp="đ«±đŸâđ«Čđ»" type="tts">á„á
áášáŁá á„: ášááł áááá”-5 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ«±đŸâđ«ČđŒ">ááášáá áá á«á ášááł ááá | áášáŁá á„ | á”áááá” | á”á„á°áŁ | á„á
| ášááł áááá”-5</annotation>
<annotation cp="đ«±đŸâđ«ČđŒ" type="tts">á„á
áášáŁá á„: ášááł áááá”-5 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ«±đŸâđ«Čđœ">áášáŁá á„ | á”áááá” | á”á„á°áŁ | á„á
| ášááł áááá”-4 | ášááł áááá”-5</annotation>
<annotation cp="đ«±đŸâđ«Čđœ" type="tts">á„á
áášáŁá á„: ášááł áááá”-5 á„á ášááł áááá”-4</annotation>
<annotation cp="đ«±đŸâđ«Čđż">áášáŁá á„ | á”áááá” | á”á„á°áŁ | á„á
| ášááł áááá”-5 | ášááł áááá”-6</annotation>
<annotation cp="đ«±đŸâđ«Čđż" type="tts">á„á
áášáŁá á„: ášááł áááá”-5 á„á ášááł áááá”-6</annotation>
<annotation cp="đ«±đżâđ«Čđ»">áášáŁá á„ | á”áááá” | á”á„á°áŁ | á„á
| ášááł áááá”-1-2 | ášááł áááá”-6</annotation>
<annotation cp="đ«±đżâđ«Čđ»" type="tts">á„á
áášáŁá á„: ášááł áááá”-6 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ«±đżâđ«ČđŒ">ááášáá áá á«á ášááł ááá | áášáŁá á„ | á”áááá” | á”á„á°áŁ | á„á
| ášááł áááá”-6</annotation>
<annotation cp="đ«±đżâđ«ČđŒ" type="tts">á„á
áášáŁá á„: ášááł áááá”-6 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ«±đżâđ«Čđœ">áášáŁá á„ | á”áááá” | á”á„á°áŁ | á„á
| ášááł áááá”-4 | ášááł áááá”-6</annotation>
<annotation cp="đ«±đżâđ«Čđœ" type="tts">á„á
áášáŁá á„: ášááł áááá”-6 á„á ášááł áááá”-4</annotation>
<annotation cp="đ«±đżâđ«ČđŸ">áášáŁá á„ | á”áááá” | á”á„á°áŁ | á„á
| ášááł áááá”-5 | ášááł áááá”-6</annotation>
<annotation cp="đ«±đżâđ«ČđŸ" type="tts">á„á
áášáŁá á„: ášááł áááá”-6 á„á ášááł áááá”-5</annotation>
<annotation cp="đ«Čđ»">áášáŁá á„ | á„á
| áá° áá« | áá° áá« áá”ášá” | áá° áá« ášááš | áá° áá« ášááš á„á
| ášááł áááá”-1-2 | á«á | áá« | áá« ášááš | áŁá¶áœ</annotation>
<annotation cp="đ«Čđ»" type="tts">áá° áá« ášááš á„á
: ášááł áááá”-1-2</annotation>
<annotation cp="đ«ČđŒ">ááášáá áá á«á ášááł ááá | áášáŁá á„ | á„á
| áá° áá« | áá° áá« áá”ášá” | áá° áá« ášááš | áá° áá« ášááš á„á
| á«á | áá« | áá« ášááš | áŁá¶áœ</annotation>
<annotation cp="đ«ČđŒ" type="tts">áá° áá« ášááš á„á
: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ«Čđœ">áášáŁá á„ | á„á
| áá° áá« | áá° áá« áá”ášá” | áá° áá« ášááš | áá° áá« ášááš á„á
| ášááł áááá”-4 | á«á | áá« | áá« ášááš | áŁá¶áœ</annotation>
<annotation cp="đ«Čđœ" type="tts">áá° áá« ášááš á„á
: ášááł áááá”-4</annotation>
<annotation cp="đ«ČđŸ">áášáŁá á„ | á„á
| áá° áá« | áá° áá« áá”ášá” | áá° áá« ášááš | áá° áá« ášááš á„á
| ášááł áááá”-5 | á«á | áá« | áá« ášááš | áŁá¶áœ</annotation>
<annotation cp="đ«ČđŸ" type="tts">áá° áá« ášááš á„á
: ášááł áááá”-5</annotation>
<annotation cp="đ«Čđż">áášáŁá á„ | á„á
| áá° áá« | áá° áá« áá”ášá” | áá° áá« ášááš | áá° áá« ášááš á„á
| ášááł áááá”-6 | á«á | áá« | áá« ášááš | áŁá¶áœ</annotation>
<annotation cp="đ«Čđż" type="tts">áá° áá« ášááš á„á
: ášááł áááá”-6</annotation>
<annotation cp="đ«łđ»">ááá°á
| ááłá áá°áłáœ á„á
| ááŁá | áá°áá á” | ááŁášá | áááłá” | á ááł | á„á
| ášááł áááá”-1-2 | áŁá”</annotation>
<annotation cp="đ«łđ»" type="tts">ááłá áá°áłáœ á„á
: ášááł áááá”-1-2</annotation>
<annotation cp="đ«łđŒ">ááášáá áá á«á ášááł ááá | ááá°á
| ááłá áá°áłáœ á„á
| ááŁá | áá°áá á” | ááŁášá | áááłá” | á ááł | á„á
| áŁá”</annotation>
<annotation cp="đ«łđŒ" type="tts">ááłá áá°áłáœ á„á
: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ«łđœ">ááá°á
| ááłá áá°áłáœ á„á
| ááŁá | áá°áá á” | ááŁášá | áááłá” | á ááł | á„á
| ášááł áááá”-4 | áŁá”</annotation>
<annotation cp="đ«łđœ" type="tts">ááłá áá°áłáœ á„á
: ášááł áááá”-4</annotation>
<annotation cp="đ«łđŸ">ááá°á
| ááłá áá°áłáœ á„á
| ááŁá | áá°áá á” | ááŁášá | áááłá” | á ááł | á„á
| ášááł áááá”-5 | áŁá”</annotation>
<annotation cp="đ«łđŸ" type="tts">ááłá áá°áłáœ á„á
: ášááł áááá”-5</annotation>
<annotation cp="đ«łđż">ááá°á
| ááłá áá°áłáœ á„á
| ááŁá | áá°áá á” | ááŁášá | áááłá” | á ááł | á„á
| ášááł áááá”-6 | áŁá”</annotation>
<annotation cp="đ«łđż" type="tts">ááłá áá°áłáœ á„á
: ášááł áááá”-6</annotation>
<annotation cp="đ«Žđ»">ááá | áá«á | ááłá | ááłá áá°áá á„á
| áá”ášáłá” | áá
ášá„ | áá ášáłáłá” | á | á ááá
á | á„á
| á„á
á ááááá” | ášááł áááá”-1-2</annotation>
<annotation cp="đ«Žđ»" type="tts">ááłá áá°áá á„á
: ášááł áááá”-1-2</annotation>
<annotation cp="đ«ŽđŒ">ááá | ááášáá áá á«á ášááł ááá | áá«á | ááłá | ááłá áá°áá á„á
| áá”ášáłá” | áá
ášá„ | áá ášáłáłá” | á | á ááá
á | á„á
| á„á
á ááááá”</annotation>
<annotation cp="đ«ŽđŒ" type="tts">ááłá áá°áá á„á
: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ«Žđœ">ááá | áá«á | ááłá | ááłá áá°áá á„á
| áá”ášáłá” | áá
ášá„ | áá ášáłáłá” | á | á ááá
á | á„á
| á„á
á ááááá” | ášááł áááá”-4</annotation>
<annotation cp="đ«Žđœ" type="tts">ááłá áá°áá á„á
: ášááł áááá”-4</annotation>
<annotation cp="đ«ŽđŸ">ááá | áá«á | ááłá | ááłá áá°áá á„á
| áá”ášáłá” | áá
ášá„ | áá ášáłáłá” | á | á ááá
á | á„á
| á„á
á ááááá” | ášááł áááá”-5</annotation>
<annotation cp="đ«ŽđŸ" type="tts">ááłá áá°áá á„á
: ášááł áááá”-5</annotation>
<annotation cp="đ«Žđż">ááá | áá«á | ááłá | ááłá áá°áá á„á
| áá”ášáłá” | áá
ášá„ | áá ášáłáłá” | á | á ááá
á | á„á
| á„á
á ááááá” | ášááł áááá”-6</annotation>
<annotation cp="đ«Žđż" type="tts">ááłá áá°áá á„á
: ášááł áááá”-6</annotation>
<annotation cp="đ«·đ»">áášáášá | ááá” | áá | á áááá á | á áááá á | á áá | á„ááą | á„á
| áá°áá« | áá°áá« ášááá á„á
| ášááł áááá”-1-2 | ááŁáá” | áá | á á„á
</annotation>
<annotation cp="đ«·đ»" type="tts">áá°áá« ášááá á„á
: ášááł áááá”-1-2</annotation>
<annotation cp="đ«·đŒ">ááášáá áá á«á ášááł ááá | áášáášá | ááá” | áá | á áááá á | á áááá á | á áá | á„ááą | á„á
| áá°áá« | áá°áá« ášááá á„á
| ááŁáá” | áá | á á„á
</annotation>
<annotation cp="đ«·đŒ" type="tts">áá°áá« ášááá á„á
: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ«·đœ">áášáášá | ááá” | áá | á áááá á | á áááá á | á áá | á„ááą | á„á
| áá°áá« | áá°áá« ášááá á„á
| ášááł áááá”-4 | ááŁáá” | áá | á á„á
</annotation>
<annotation cp="đ«·đœ" type="tts">áá°áá« ášááá á„á
: ášááł áááá”-4</annotation>
<annotation cp="đ«·đŸ">áášáášá | ááá” | áá | á áááá á | á áááá á | á áá | á„ááą | á„á
| áá°áá« | áá°áá« ášááá á„á
| ášááł áááá”-5 | ááŁáá” | áá | á á„á
</annotation>
<annotation cp="đ«·đŸ" type="tts">áá°áá« ášááá á„á
: ášááł áááá”-5</annotation>
<annotation cp="đ«·đż">áášáášá | ááá” | áá | á áááá á | á áááá á | á áá | á„ááą | á„á
| áá°áá« | áá°áá« ášááá á„á
| ášááł áááá”-6 | ááŁáá” | áá | á á„á
</annotation>
<annotation cp="đ«·đż" type="tts">áá°áá« ášááá á„á
: ášááł áááá”-6</annotation>
<annotation cp="đ«žđ»">áá ááł á áá | áááá | áááá” | ááá” | áá | á áááá á | á áá | á„ááą | á„á
| áá°áá | áá°áá ášááá á„á
| ášááł áááá”-1-2 | ááŁáá” | áá | á á„á
</annotation>
<annotation cp="đ«žđ»" type="tts">áá°áá ášááá á„á
: ášááł áááá”-1-2</annotation>
<annotation cp="đ«žđŒ">áá ááł á áá | ááášáá áá á«á ášááł ááá | áááá | áááá” | ááá” | áá | á áááá á | á áá | á„ááą | á„á
| áá°áá | áá°áá ášááá á„á
| ááŁáá” | áá | á á„á
</annotation>
<annotation cp="đ«žđŒ" type="tts">áá°áá ášááá á„á
: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ«žđœ">áá ááł á áá | áááá | áááá” | ááá” | áá | á áááá á | á áá | á„ááą | á„á
| áá°áá | áá°áá ášááá á„á
| ášááł áááá”-4 | ááŁáá” | áá | á á„á
</annotation>
<annotation cp="đ«žđœ" type="tts">áá°áá ášááá á„á
: ášááł áááá”-4</annotation>
<annotation cp="đ«žđŸ">áá ááł á áá | áááá | áááá” | ááá” | áá | á áááá á | á áá | á„ááą | á„á
| áá°áá | áá°áá ášááá á„á
| ášááł áááá”-5 | ááŁáá” | áá | á á„á
</annotation>
<annotation cp="đ«žđŸ" type="tts">áá°áá ášááá á„á
: ášááł áááá”-5</annotation>
<annotation cp="đ«žđż">áá ááł á áá | áááá | áááá” | ááá” | áá | á áááá á | á áá | á„ááą | á„á
| áá°áá | áá°áá ášááá á„á
| ášááł áááá”-6 | ááŁáá” | áá | á á„á
</annotation>
<annotation cp="đ«žđż" type="tts">áá°áá ášááá á„á
: ášááł áááá”-6</annotation>
<annotation cp="đđ»">ááá„ | á á”ááá | á áȘá | á á«á | á á ááášá„ | á„áș | á„áș áááá” á„á
| á„á
| ášááł áááá”-1-2 | áŁá¶áœ</annotation>
<annotation cp="đđ»" type="tts">á„áș áááá” á„á
: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááášáá áá á«á ášááł ááá | ááá„ | á á”ááá | á áȘá | á á«á | á á ááášá„ | á„áș | á„áș áááá” á„á
| á„á
| áŁá¶áœ</annotation>
<annotation cp="đđŒ" type="tts">á„áș áááá” á„á
: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">ááá„ | á á”ááá | á áȘá | á á«á | á á ááášá„ | á„áș | á„áș áááá” á„á
| á„á
| ášááł áááá”-4 | áŁá¶áœ</annotation>
<annotation cp="đđœ" type="tts">á„áș áááá” á„á
: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">ááá„ | á á”ááá | á áȘá | á á«á | á á ááášá„ | á„áș | á„áș áááá” á„á
| á„á
| ášááł áááá”-5 | áŁá¶áœ</annotation>
<annotation cp="đđŸ" type="tts">á„áș áááá” á„á
: ášááł áááá”-5</annotation>
<annotation cp="đđż">ááá„ | á á”ááá | á áȘá | á á«á | á á ááášá„ | á„áș | á„áș áááá” á„á
| á„á
| ášááł áááá”-6 | áŁá¶áœ</annotation>
<annotation cp="đđż" type="tts">á„áș áááá” á„á
: ášááł áááá”-6</annotation>
<annotation cp="đ€đ»">áá | á ááł | áĄá
| á„á
| áá á á | áá á á | áá á á | áá á á | ášááá ᥠáŁá¶áœ | ášááł áááá”-1-2 | á«á | áŁá¶áœ</annotation>
<annotation cp="đ€đ»" type="tts">ášááá ᥠáŁá¶áœ: ášááł áááá”-1-2</annotation>
<annotation cp="đ€đŒ">ááášáá áá á«á ášááł ááá | áá | á ááł | áĄá
| á„á
| áá á á | áá á á | áá á á | áá á á | ášááá ᥠáŁá¶áœ | á«á | áŁá¶áœ</annotation>
<annotation cp="đ€đŒ" type="tts">ášááá ᥠáŁá¶áœ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€đœ">áá | á ááł | áĄá
| á„á
| áá á á | áá á á | áá á á | áá á á | ášááá ᥠáŁá¶áœ | ášááł áááá”-4 | á«á | áŁá¶áœ</annotation>
<annotation cp="đ€đœ" type="tts">ášááá ᥠáŁá¶áœ: ášááł áááá”-4</annotation>
<annotation cp="đ€đŸ">áá | á ááł | áĄá
| á„á
| áá á á | áá á á | áá á á | áá á á | ášááá ᥠáŁá¶áœ | ášááł áááá”-5 | á«á | áŁá¶áœ</annotation>
<annotation cp="đ€đŸ" type="tts">ášááá ᥠáŁá¶áœ: ášááł áááá”-5</annotation>
<annotation cp="đ€đż">áá | á ááł | áĄá
| á„á
| áá á á | áá á á | áá á á | áá á á | ášááá ᥠáŁá¶áœ | ášááł áááá”-6 | á«á | áŁá¶áœ</annotation>
<annotation cp="đ€đż" type="tts">ášááá ᥠáŁá¶áœ: ášááł áááá”-6</annotation>
<annotation cp="đ€đ»">á”áᜠ| á”áᜠáá á | á„áá°á± ááá | á„á
áááá á„ | ášááł áááá”-1-2 | áŁá¶áœ | á„áá”</annotation>
<annotation cp="đ€đ»" type="tts">á„á
áááá á„: ášááł áááá”-1-2</annotation>
<annotation cp="đ€đŒ">ááášáá áá á«á ášááł ááá | á”áᜠ| á”áᜠáá á | á„áá°á± ááá | á„á
áááá á„ | áŁá¶áœ | á„áá”</annotation>
<annotation cp="đ€đŒ" type="tts">á„á
áááá á„: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€đœ">á”áᜠ| á”áᜠáá á | á„áá°á± ááá | á„á
áááá á„ | ášááł áááá”-4 | áŁá¶áœ | á„áá”</annotation>
<annotation cp="đ€đœ" type="tts">á„á
áááá á„: ášááł áááá”-4</annotation>
<annotation cp="đ€đŸ">á”áᜠ| á”áᜠáá á | á„áá°á± ááá | á„á
áááá á„ | ášááł áááá”-5 | áŁá¶áœ | á„áá”</annotation>
<annotation cp="đ€đŸ" type="tts">á„á
áááá á„: ášááł áááá”-5</annotation>
<annotation cp="đ€đż">á”áᜠ| á”áᜠáá á | á„áá°á± ááá | á„á
áááá á„ | ášááł áááá”-6 | áŁá¶áœ | á„áá”</annotation>
<annotation cp="đ€đż" type="tts">á„á
áááá á„: ášááł áááá”-6</annotation>
<annotation cp="âđ»">áȘ | á á«á | á„á
| ášááł áááá”-1-2 | ášá”á á á”á«ááá” áááá” á„á
| á”á | áŁá”</annotation>
<annotation cp="âđ»" type="tts">ášá”á á á”á«ááá” áááá” á„á
: ášááł áááá”-1-2</annotation>
<annotation cp="âđŒ">ááášáá áá á«á ášááł ááá | áȘ | á á«á | á„á
| ášá”á á á”á«ááá” áááá” á„á
| á”á | áŁá”</annotation>
<annotation cp="âđŒ" type="tts">ášá”á á á”á«ááá” áááá” á„á
: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="âđœ">áȘ | á á«á | á„á
| ášááł áááá”-4 | ášá”á á á”á«ááá” áááá” á„á
| á”á | áŁá”</annotation>
<annotation cp="âđœ" type="tts">ášá”á á á”á«ááá” áááá” á„á
: ášááł áááá”-4</annotation>
<annotation cp="âđŸ">áȘ | á á«á | á„á
| ášááł áááá”-5 | ášá”á á á”á«ááá” áááá” á„á
| á”á | áŁá”</annotation>
<annotation cp="âđŸ" type="tts">ášá”á á á”á«ááá” áááá” á„á
: ášááł áááá”-5</annotation>
<annotation cp="âđż">áȘ | á á«á | á„á
| ášááł áááá”-6 | ášá”á á á”á«ááá” áááá” á„á
| á”á | áŁá”</annotation>
<annotation cp="âđż" type="tts">ášá”á á á”á«ááá” áááá” á„á
: ášááł áááá”-6</annotation>
<annotation cp="đ€đ»">ááŁáá | ááá” | á„á”á | á„á
| ášááł áááá”-1-2 | áŁá” | ážáá”</annotation>
<annotation cp="đ€đ»" type="tts">áŁá” ááŁáá: ášááł áááá”-1-2</annotation>
<annotation cp="đ€đŒ">ááášáá áá á«á ášááł ááá | ááŁáá | ááá” | á„á”á | á„á
| áŁá” | ážáá”</annotation>
<annotation cp="đ€đŒ" type="tts">áŁá” ááŁáá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€đœ">ááŁáá | ááá” | á„á”á | á„á
| ášááł áááá”-4 | áŁá” | ážáá”</annotation>
<annotation cp="đ€đœ" type="tts">áŁá” ááŁáá: ášááł áááá”-4</annotation>
<annotation cp="đ€đŸ">ááŁáá | ááá” | á„á”á | á„á
| ášááł áááá”-5 | áŁá” | ážáá”</annotation>
<annotation cp="đ€đŸ" type="tts">áŁá” ááŁáá: ášááł áááá”-5</annotation>
<annotation cp="đ€đż">ááŁáá | ááá” | á„á”á | á„á
| ášááł áááá”-6 | áŁá” | ážáá”</annotation>
<annotation cp="đ€đż" type="tts">áŁá” ááŁáá: ášááł áááá”-6</annotation>
<annotation cp="đ«°đ»"><3 | áá„ | áááŁá | á áá« á„á á áá áŁá” ášá°á áá©á á” á„á
| á„á
| ááČá«á | áá” | ášááł áááá”-1-2 | áááá„ | áŁá” | áá
á</annotation>
<annotation cp="đ«°đ»" type="tts">á áá« á„á á áá áŁá” ášá°á áá©á á” á„á
: ášááł áááá”-1-2</annotation>
<annotation cp="đ«°đŒ"><3 | áá„ | ááášáá áá á«á ášááł ááá | áááŁá | á áá« á„á á áá áŁá” ášá°á áá©á á” á„á
| á„á
| ááČá«á | áá” | áááá„ | áŁá” | áá
á</annotation>
<annotation cp="đ«°đŒ" type="tts">á áá« á„á á áá áŁá” ášá°á áá©á á” á„á
: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ«°đœ"><3 | áá„ | áááŁá | á áá« á„á á áá áŁá” ášá°á áá©á á” á„á
| á„á
| ááČá«á | áá” | ášááł áááá”-4 | áááá„ | áŁá” | áá
á</annotation>
<annotation cp="đ«°đœ" type="tts">á áá« á„á á áá áŁá” ášá°á áá©á á” á„á
: ášááł áááá”-4</annotation>
<annotation cp="đ«°đŸ"><3 | áá„ | áááŁá | á áá« á„á á áá áŁá” ášá°á áá©á á” á„á
| á„á
| ááČá«á | áá” | ášááł áááá”-5 | áááá„ | áŁá” | áá
á</annotation>
<annotation cp="đ«°đŸ" type="tts">á áá« á„á á áá áŁá” ášá°á áá©á á” á„á
: ášááł áááá”-5</annotation>
<annotation cp="đ«°đż"><3 | áá„ | áááŁá | á áá« á„á á áá áŁá” ášá°á áá©á á” á„á
| á„á
| ááČá«á | áá” | ášááł áááá”-6 | áááá„ | áŁá” | áá
á</annotation>
<annotation cp="đ«°đż" type="tts">á áá« á„á á áá áŁá” ášá°á áá©á á” á„á
: ášááł áááá”-6</annotation>
<annotation cp="đ€đ»">ááá°á”á ášáá«áłá ášá„á
áááá” | áááá”á
á áá”áááá | á¶á”á” áŁá¶áœ | á„áá”ááá | á„áá”á»áá | á„á
| ášááł áááá”-1-2 | áááœá
| áááœáœ</annotation>
<annotation cp="đ€đ»" type="tts">áááá”á
á áá”áááá: ášááł áááá”-1-2</annotation>
<annotation cp="đ€đŒ">ááášáá áá á«á ášááł ááá | ááá°á”á ášáá«áłá ášá„á
áááá” | áááá”á
á áá”áááá | á¶á”á” áŁá¶áœ | á„áá”ááá | á„áá”á»áá | á„á
| áááœá
| áááœáœ</annotation>
<annotation cp="đ€đŒ" type="tts">áááá”á
á áá”áááá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€đœ">ááá°á”á ášáá«áłá ášá„á
áááá” | áááá”á
á áá”áááá | á¶á”á” áŁá¶áœ | á„áá”ááá | á„áá”á»áá | á„á
| ášááł áááá”-4 | áááœá
| áááœáœ</annotation>
<annotation cp="đ€đœ" type="tts">áááá”á
á áá”áááá: ášááł áááá”-4</annotation>
<annotation cp="đ€đŸ">ááá°á”á ášáá«áłá ášá„á
áááá” | áááá”á
á áá”áááá | á¶á”á” áŁá¶áœ | á„áá”ááá | á„áá”á»áá | á„á
| ášááł áááá”-5 | áááœá
| áááœáœ</annotation>
<annotation cp="đ€đŸ" type="tts">áááá”á
á áá”áááá: ášááł áááá”-5</annotation>
<annotation cp="đ€đż">ááá°á”á ášáá«áłá ášá„á
áááá” | áááá”á
á áá”áááá | á¶á”á” áŁá¶áœ | á„áá”ááá | á„áá”á»áá | á„á
| ášááł áááá”-6 | áááœá
| áááœáœ</annotation>
<annotation cp="đ€đż" type="tts">áááá”á
á áá”áááá: ášááł áááá”-6</annotation>
<annotation cp="đ€đ»">ááá¶áœ | á á«á | á„á
| á„á
ᣠááá¶áœáŁ áŁá”ᣠášááá¶áœ áááá”ᣠááážá” | ášááá¶áœ áááá” | ášááł áááá”-1-2 | áŁá”</annotation>
<annotation cp="đ€đ»" type="tts">ášááá¶áœ áááá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ€đŒ">ááášáá áá á«á ášááł ááá | ááá¶áœ | á á«á | á„á
| á„á
ᣠááá¶áœáŁ áŁá”ᣠášááá¶áœ áááá”ᣠááážá” | ášááá¶áœ áááá” | áŁá”</annotation>
<annotation cp="đ€đŒ" type="tts">ášááá¶áœ áááá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€đœ">ááá¶áœ | á á«á | á„á
| á„á
ᣠááá¶áœáŁ áŁá”ᣠášááá¶áœ áááá”ᣠááážá” | ášááá¶áœ áááá” | ášááł áááá”-4 | áŁá”</annotation>
<annotation cp="đ€đœ" type="tts">ášááá¶áœ áááá”: ášááł áááá”-4</annotation>
<annotation cp="đ€đŸ">ááá¶áœ | á á«á | á„á
| á„á
ᣠááá¶áœáŁ áŁá”ᣠášááá¶áœ áááá”ᣠááážá” | ášááá¶áœ áááá” | ášááł áááá”-5 | áŁá”</annotation>
<annotation cp="đ€đŸ" type="tts">ášááá¶áœ áááá”: ášááł áááá”-5</annotation>
<annotation cp="đ€đż">ááá¶áœ | á á«á | á„á
| á„á
ᣠááá¶áœáŁ áŁá”ᣠášááá¶áœ áááá”ᣠááážá” | ášááá¶áœ áááá” | ášááł áááá”-6 | áŁá”</annotation>
<annotation cp="đ€đż" type="tts">ášááá¶áœ áááá”: ášááł áááá”-6</annotation>
<annotation cp="đ€đ»">á áȘá | á„á
| ášááł áááá”-1-2 | áááœá
| áááœáœ | á°áá | á°áááá | á°áááá ášá„á
áááá” | á°áá | áášá</annotation>
<annotation cp="đ€đ»" type="tts">á°áááá ášá„á
áááá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ€đŒ">ááášáá áá á«á ášááł ááá | á áȘá | á„á
| áááœá
| áááœáœ | á°áá | á°áááá | á°áááá ášá„á
áááá” | á°áá | áášá</annotation>
<annotation cp="đ€đŒ" type="tts">á°áááá ášá„á
áááá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€đœ">á áȘá | á„á
| ášááł áááá”-4 | áááœá
| áááœáœ | á°áá | á°áááá | á°áááá ášá„á
áááá” | á°áá | áášá</annotation>
<annotation cp="đ€đœ" type="tts">á°áááá ášá„á
áááá”: ášááł áááá”-4</annotation>
<annotation cp="đ€đŸ">á áȘá | á„á
| ášááł áááá”-5 | áááœá
| áááœáœ | á°áá | á°áááá | á°áááá ášá„á
áááá” | á°áá | áášá</annotation>
<annotation cp="đ€đŸ" type="tts">á°áááá ášá„á
áááá”: ášááł áááá”-5</annotation>
<annotation cp="đ€đż">á áȘá | á„á
| ášááł áááá”-6 | áááœá
| áááœáœ | á°áá | á°áááá | á°áááá ášá„á
áááá” | á°áá | áášá</annotation>
<annotation cp="đ€đż" type="tts">á°áááá ášá„á
áááá”: ášááł áááá”-6</annotation>
<annotation cp="đđ»">áᣠáŁá” | áá áá | áá ááá | áá„á„ | á ááá«áœ áŁá” | á„á
| áá° áá áááá á„ | ášááł áááá”-1-2 | ášáá« á áá áᣠá„á
ášá°áá°áš á ááá«áœ áŁá” | á« | áá
| áŁá”</annotation>
<annotation cp="đđ»" type="tts">ášáá« á áá áᣠá„á
ášá°áá°áš á ááá«áœ áŁá”: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">áᣠáŁá” | ááášáá áá á«á ášááł ááá | áá áá | áá ááá | áá„á„ | á ááá«áœ áŁá” | á„á
| áá° áá áááá á„ | ášáá« á áá áᣠá„á
ášá°áá°áš á ááá«áœ áŁá” | á« | áá
| áŁá”</annotation>
<annotation cp="đđŒ" type="tts">ášáá« á áá áᣠá„á
ášá°áá°áš á ááá«áœ áŁá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">áᣠáŁá” | áá áá | áá ááá | áá„á„ | á ááá«áœ áŁá” | á„á
| áá° áá áááá á„ | ášááł áááá”-4 | ášáá« á áá áᣠá„á
ášá°áá°áš á ááá«áœ áŁá” | á« | áá
| áŁá”</annotation>
<annotation cp="đđœ" type="tts">ášáá« á áá áᣠá„á
ášá°áá°áš á ááá«áœ áŁá”: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">áᣠáŁá” | áá áá | áá ááá | áá„á„ | á ááá«áœ áŁá” | á„á
| áá° áá áááá á„ | ášááł áááá”-5 | ášáá« á áá áᣠá„á
ášá°áá°áš á ááá«áœ áŁá” | á« | áá
| áŁá”</annotation>
<annotation cp="đđŸ" type="tts">ášáá« á áá áᣠá„á
ášá°áá°áš á ááá«áœ áŁá”: ášááł áááá”-5</annotation>
<annotation cp="đđż">áᣠáŁá” | áá áá | áá ááá | áá„á„ | á ááá«áœ áŁá” | á„á
| áá° áá áááá á„ | ášááł áááá”-6 | ášáá« á áá áᣠá„á
ášá°áá°áš á ááá«áœ áŁá” | á« | áá
| áŁá”</annotation>
<annotation cp="đđż" type="tts">ášáá« á áá áᣠá„á
ášá°áá°áš á ááá«áœ áŁá”: ášááł áááá”-6</annotation>
<annotation cp="đđ»">áá„á„ | á áá° | á„á
| áá° áá áááá á„ | ášáá á áá áᣠá„á
ášá°áá°áš á ááá«áœ áŁá” | ášááł áááá”-1-2 | á« | áá
| áŁá” | á„áá | á„ááá</annotation>
<annotation cp="đđ»" type="tts">ášáá á áá áᣠá„á
ášá°áá°áš á ááá«áœ áŁá”: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááášáá áá á«á ášááł ááá | áá„á„ | á áá° | á„á
| áá° áá áááá á„ | ášáá á áá áᣠá„á
ášá°áá°áš á ááá«áœ áŁá” | á« | áá
| áŁá” | á„áá | á„ááá</annotation>
<annotation cp="đđŒ" type="tts">ášáá á áá áᣠá„á
ášá°áá°áš á ááá«áœ áŁá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">áá„á„ | á áá° | á„á
| áá° áá áááá á„ | ášáá á áá áᣠá„á
ášá°áá°áš á ááá«áœ áŁá” | ášááł áááá”-4 | á« | áá
| áŁá” | á„áá | á„ááá</annotation>
<annotation cp="đđœ" type="tts">ášáá á áá áᣠá„á
ášá°áá°áš á ááá«áœ áŁá”: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">áá„á„ | á áá° | á„á
| áá° áá áááá á„ | ášáá á áá áᣠá„á
ášá°áá°áš á ááá«áœ áŁá” | ášááł áááá”-5 | á« | áá
| áŁá” | á„áá | á„ááá</annotation>
<annotation cp="đđŸ" type="tts">ášáá á áá áᣠá„á
ášá°áá°áš á ááá«áœ áŁá”: ášááł áááá”-5</annotation>
<annotation cp="đđż">áá„á„ | á áá° | á„á
| áá° áá áááá á„ | ášáá á áá áᣠá„á
ášá°áá°áš á ááá«áœ áŁá” | ášááł áááá”-6 | á« | áá
| áŁá” | á„áá | á„ááá</annotation>
<annotation cp="đđż" type="tts">ášáá á áá áᣠá„á
ášá°áá°áš á ááá«áœ áŁá”: ášááł áááá”-6</annotation>
<annotation cp="đđ»">áá | áá áá | á á áá áᣠá á©á áá° áá ášá°áá°áš á ááá«áœ áŁá” | áá„á„ | á áá áᣠ| á„á
| áá° áá | áá° áá ášá°áá°áš á áá áᣠá á©á á ááá«áœ áŁá” | áá° áá áááá á„ | ášááł áááá”-1-2</annotation>
<annotation cp="đđ»" type="tts">áá° áá ášá°áá°áš á áá áᣠá á©á á ááá«áœ áŁá”: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">áá | ááášáá áá á«á ášááł ááá | áá áá | á á áá áᣠá á©á áá° áá ášá°áá°áš á ááá«áœ áŁá” | áá„á„ | á áá áᣠ| á„á
| áá° áá | áá° áá ášá°áá°áš á áá áᣠá á©á á ááá«áœ áŁá” | áá° áá áááá á„</annotation>
<annotation cp="đđŒ" type="tts">áá° áá ášá°áá°áš á áá áᣠá á©á á ááá«áœ áŁá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">áá | áá áá | á á áá áᣠá á©á áá° áá ášá°áá°áš á ááá«áœ áŁá” | áá„á„ | á áá áᣠ| á„á
| áá° áá | áá° áá ášá°áá°áš á áá áᣠá á©á á ááá«áœ áŁá” | áá° áá áááá á„ | ášááł áááá”-4</annotation>
<annotation cp="đđœ" type="tts">áá° áá ášá°áá°áš á áá áᣠá á©á á ááá«áœ áŁá”: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">áá | áá áá | á á áá áᣠá á©á áá° áá ášá°áá°áš á ááá«áœ áŁá” | áá„á„ | á áá áᣠ| á„á
| áá° áá | áá° áá ášá°áá°áš á áá áᣠá á©á á ááá«áœ áŁá” | áá° áá áááá á„ | ášááł áááá”-5</annotation>
<annotation cp="đđŸ" type="tts">áá° áá ášá°áá°áš á áá áᣠá á©á á ááá«áœ áŁá”: ášááł áááá”-5</annotation>
<annotation cp="đđż">áá | áá áá | á á áá áᣠá á©á áá° áá ášá°áá°áš á ááá«áœ áŁá” | áá„á„ | á áá áᣠ| á„á
| áá° áá | áá° áá ášá°áá°áš á áá áᣠá á©á á ááá«áœ áŁá” | áá° áá áááá á„ | ášááł áááá”-6</annotation>
<annotation cp="đđż" type="tts">áá° áá ášá°áá°áš á áá áᣠá á©á á ááá«áœ áŁá”: ášááł áááá”-6</annotation>
<annotation cp="đđ»">á á«á | á„á
| ášááá áŁá” | ášááł áááá”-1-2 | áŁá”</annotation>
<annotation cp="đđ»" type="tts">ášááá áŁá”: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááášáá áá á«á ášááł ááá | á á«á | á„á
| ášááá áŁá” | áŁá”</annotation>
<annotation cp="đđŒ" type="tts">ášááá áŁá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">á á«á | á„á
| ášááá áŁá” | ášááł áááá”-4 | áŁá”</annotation>
<annotation cp="đđœ" type="tts">ášááá áŁá”: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">á á«á | á„á
| ášááá áŁá” | ášááł áááá”-5 | áŁá”</annotation>
<annotation cp="đđŸ" type="tts">ášááá áŁá”: ášááł áááá”-5</annotation>
<annotation cp="đđż">á á«á | á„á
| ášááá áŁá” | ášááł áááá”-6 | áŁá”</annotation>
<annotation cp="đđż" type="tts">ášááá áŁá”: ášááł áááá”-6</annotation>
<annotation cp="đđ»">áášá á áá | áá áá | áłáœ | áá„á„ | á áá áᣠ| á„á
| áá° áłáœ | áá° áłáœ ášáá«áááá” | áá° áłáœ ášá°áá°áš á áá áᣠá á©á á ááá«áœ áŁá” | áá° áá áááá á„ | ášááł áááá”-1-2 | áŁá”</annotation>
<annotation cp="đđ»" type="tts">áá° áłáœ ášá°áá°áš á áá áᣠá á©á á ááá«áœ áŁá”: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááášáá áá á«á ášááł ááá | áášá á áá | áá áá | áłáœ | áá„á„ | á áá áᣠ| á„á
| áá° áłáœ | áá° áłáœ ášáá«áááá” | áá° áłáœ ášá°áá°áš á áá áᣠá á©á á ááá«áœ áŁá” | áá° áá áááá á„ | áŁá”</annotation>
<annotation cp="đđŒ" type="tts">áá° áłáœ ášá°áá°áš á áá áᣠá á©á á ááá«áœ áŁá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">áášá á áá | áá áá | áłáœ | áá„á„ | á áá áᣠ| á„á
| áá° áłáœ | áá° áłáœ ášáá«áááá” | áá° áłáœ ášá°áá°áš á áá áᣠá á©á á ááá«áœ áŁá” | áá° áá áááá á„ | ášááł áááá”-4 | áŁá”</annotation>
<annotation cp="đđœ" type="tts">áá° áłáœ ášá°áá°áš á áá áᣠá á©á á ááá«áœ áŁá”: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">áášá á áá | áá áá | áłáœ | áá„á„ | á áá áᣠ| á„á
| áá° áłáœ | áá° áłáœ ášáá«áááá” | áá° áłáœ ášá°áá°áš á áá áᣠá á©á á ááá«áœ áŁá” | áá° áá áááá á„ | ášááł áááá”-5 | áŁá”</annotation>
<annotation cp="đđŸ" type="tts">áá° áłáœ ášá°áá°áš á áá áᣠá á©á á ááá«áœ áŁá”: ášááł áááá”-5</annotation>
<annotation cp="đđż">áášá á áá | áá áá | áłáœ | áá„á„ | á áá áᣠ| á„á
| áá° áłáœ | áá° áłáœ ášáá«áááá” | áá° áłáœ ášá°áá°áš á áá áᣠá á©á á ááá«áœ áŁá” | áá° áá áááá á„ | ášááł áááá”-6 | áŁá”</annotation>
<annotation cp="đđż" type="tts">áá° áłáœ ášá°áá°áš á áá áᣠá á©á á ááá«áœ áŁá”: ášááł áááá”-6</annotation>
<annotation cp="âđ»">áá | áá„á„ | á áá” | á„á
| á„á
áááŁá” | áá° áá ášá°áá°áš á ááá«áœ áŁá” | ášááł áááá”-1-2 | áŁá”</annotation>
<annotation cp="âđ»" type="tts">áá° áá ášá°áá°áš á ááá«áœ áŁá”: ášááł áááá”-1-2</annotation>
<annotation cp="âđŒ">áá | ááášáá áá á«á ášááł ááá | áá„á„ | á áá” | á„á
| á„á
áááŁá” | áá° áá ášá°áá°áš á ááá«áœ áŁá” | áŁá”</annotation>
<annotation cp="âđŒ" type="tts">áá° áá ášá°áá°áš á ááá«áœ áŁá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="âđœ">áá | áá„á„ | á áá” | á„á
| á„á
áááŁá” | áá° áá ášá°áá°áš á ááá«áœ áŁá” | ášááł áááá”-4 | áŁá”</annotation>
<annotation cp="âđœ" type="tts">áá° áá ášá°áá°áš á ááá«áœ áŁá”: ášááł áááá”-4</annotation>
<annotation cp="âđŸ">áá | áá„á„ | á áá” | á„á
| á„á
áááŁá” | áá° áá ášá°áá°áš á ááá«áœ áŁá” | ášááł áááá”-5 | áŁá”</annotation>
<annotation cp="âđŸ" type="tts">áá° áá ášá°áá°áš á ááá«áœ áŁá”: ášááł áááá”-5</annotation>
<annotation cp="âđż">áá | áá„á„ | á áá” | á„á
| á„á
áááŁá” | áá° áá ášá°áá°áš á ááá«áœ áŁá” | ášááł áááá”-6 | áŁá”</annotation>
<annotation cp="âđż" type="tts">áá° áá ášá°áá°áš á ááá«áœ áŁá”: ášááł áááá”-6</annotation>
<annotation cp="đ«”đ»">áá áá | á áá° | á ááș | á„á
| áá° á°ááá«áč á áŁá” áá áá | ášááł áááá”-1-2 | áŁá” | áá</annotation>
<annotation cp="đ«”đ»" type="tts">áá° á°ááá«áč á áŁá” áá áá: ášááł áááá”-1-2</annotation>
<annotation cp="đ«”đŒ">ááášáá áá á«á ášááł ááá | áá áá | á áá° | á ááș | á„á
| áá° á°ááá«áč á áŁá” áá áá | áŁá” | áá</annotation>
<annotation cp="đ«”đŒ" type="tts">áá° á°ááá«áč á áŁá” áá áá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ«”đœ">áá áá | á áá° | á ááș | á„á
| áá° á°ááá«áč á áŁá” áá áá | ášááł áááá”-4 | áŁá” | áá</annotation>
<annotation cp="đ«”đœ" type="tts">áá° á°ááá«áč á áŁá” áá áá: ášááł áááá”-4</annotation>
<annotation cp="đ«”đŸ">áá áá | á áá° | á ááș | á„á
| áá° á°ááá«áč á áŁá” áá áá | ášááł áááá”-5 | áŁá” | áá</annotation>
<annotation cp="đ«”đŸ" type="tts">áá° á°ááá«áč á áŁá” áá áá: ášááł áááá”-5</annotation>
<annotation cp="đ«”đż">áá áá | á áá° | á ááș | á„á
| áá° á°ááá«áč á áŁá” áá áá | ášááł áááá”-6 | áŁá” | áá</annotation>
<annotation cp="đ«”đż" type="tts">áá° á°ááá«áč á áŁá” áá áá: ášááł áááá”-6</annotation>
<annotation cp="đđ»">áá | áá”ááá” | áá ášáłáłá” | á„á«áź | á áȘá áá | á áá« áŁá” | á áá« áŁá” áá° áá | á„áș | á„á
| ášááł áááá”-1-2 | áá”</annotation>
<annotation cp="đđ»" type="tts">á áá« áŁá” áá° áá: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">áá | ááášáá áá á«á ášááł ááá | áá”ááá” | áá ášáłáłá” | á„á«áź | á áȘá áá | á áá« áŁá” | á áá« áŁá” áá° áá | á„áș | á„á
| áá”</annotation>
<annotation cp="đđŒ" type="tts">á áá« áŁá” áá° áá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">áá | áá”ááá” | áá ášáłáłá” | á„á«áź | á áȘá áá | á áá« áŁá” | á áá« áŁá” áá° áá | á„áș | á„á
| ášááł áááá”-4 | áá”</annotation>
<annotation cp="đđœ" type="tts">á áá« áŁá” áá° áá: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">áá | áá”ááá” | áá ášáłáłá” | á„á«áź | á áȘá áá | á áá« áŁá” | á áá« áŁá” áá° áá | á„áș | á„á
| ášááł áááá”-5 | áá”</annotation>
<annotation cp="đđŸ" type="tts">á áá« áŁá” áá° áá: ášááł áááá”-5</annotation>
<annotation cp="đđż">áá | áá”ááá” | áá ášáłáłá” | á„á«áź | á áȘá áá | á áá« áŁá” | á áá« áŁá” áá° áá | á„áș | á„á
| ášááł áááá”-6 | áá”</annotation>
<annotation cp="đđż" type="tts">á áá« áŁá” áá° áá: ášááł áááá”-6</annotation>
<annotation cp="đđ»">áááá°á” | áłáœ | á áá« áŁá” | á áá« áŁá” áá° áłáœ | á„á
| áá”áá” | áá
áá
| ášááł áááá”-1-2 | á„áá» | áá”</annotation>
<annotation cp="đđ»" type="tts">á áá« áŁá” áá° áłáœ: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">áááá°á” | ááášáá áá á«á ášááł ááá | áłáœ | á áá« áŁá” | á áá« áŁá” áá° áłáœ | á„á
| áá”áá” | áá
áá
| á„áá» | áá”</annotation>
<annotation cp="đđŒ" type="tts">á áá« áŁá” áá° áłáœ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">áááá°á” | áłáœ | á áá« áŁá” | á áá« áŁá” áá° áłáœ | á„á
| áá”áá” | áá
áá
| ášááł áááá”-4 | á„áá» | áá”</annotation>
<annotation cp="đđœ" type="tts">á áá« áŁá” áá° áłáœ: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">áááá°á” | áłáœ | á áá« áŁá” | á áá« áŁá” áá° áłáœ | á„á
| áá”áá” | áá
áá
| ášááł áááá”-5 | á„áá» | áá”</annotation>
<annotation cp="đđŸ" type="tts">á áá« áŁá” áá° áłáœ: ášááł áááá”-5</annotation>
<annotation cp="đđż">áááá°á” | áłáœ | á áá« áŁá” | á áá« áŁá” áá° áłáœ | á„á
| áá”áá” | áá
áá
| ášááł áááá”-6 | á„áá» | áá”</annotation>
<annotation cp="đđż" type="tts">á áá« áŁá” áá° áłáœ: ášááł áááá”-6</annotation>
<annotation cp="âđ»">áĄáą | á„á
| áá° áá ášá°á«á áĄáą | ášááł áááá”-1-2 | ášá°ášá á | áĄá«</annotation>
<annotation cp="âđ»" type="tts">áá° áá ášá°á«á áĄáą: ášááł áááá”-1-2</annotation>
<annotation cp="âđŒ">ááášáá áá á«á ášááł ááá | áĄáą | á„á
| áá° áá ášá°á«á áĄáą | ášá°ášá á | áĄá«</annotation>
<annotation cp="âđŒ" type="tts">áá° áá ášá°á«á áĄáą: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="âđœ">áĄáą | á„á
| áá° áá ášá°á«á áĄáą | ášááł áááá”-4 | ášá°ášá á | áĄá«</annotation>
<annotation cp="âđœ" type="tts">áá° áá ášá°á«á áĄáą: ášááł áááá”-4</annotation>
<annotation cp="âđŸ">áĄáą | á„á
| áá° áá ášá°á«á áĄáą | ášááł áááá”-5 | ášá°ášá á | áĄá«</annotation>
<annotation cp="âđŸ" type="tts">áá° áá ášá°á«á áĄáą: ášááł áááá”-5</annotation>
<annotation cp="âđż">áĄáą | á„á
| áá° áá ášá°á«á áĄáą | ášááł áááá”-6 | ášá°ášá á | áĄá«</annotation>
<annotation cp="âđż" type="tts">áá° áá ášá°á«á áĄáą: ášááł áááá”-6</annotation>
<annotation cp="đđ»">á°áááł | áĄáą | á„á
| ášááł áááá”-1-2 | ášá°á°áááš áĄá« | ášá°ášá á | áĄá«</annotation>
<annotation cp="đđ»" type="tts">ášá°á°áááš áĄá«: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááášáá áá á«á ášááł ááá | á°áááł | áĄáą | á„á
| ášá°á°áááš áĄá« | ášá°ášá á | áĄá«</annotation>
<annotation cp="đđŒ" type="tts">ášá°á°áááš áĄá«: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">á°áááł | áĄáą | á„á
| ášááł áááá”-4 | ášá°á°áááš áĄá« | ášá°ášá á | áĄá«</annotation>
<annotation cp="đđœ" type="tts">ášá°á°áááš áĄá«: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">á°áááł | áĄáą | á„á
| ášááł áááá”-5 | ášá°á°áááš áĄá« | ášá°ášá á | áĄá«</annotation>
<annotation cp="đđŸ" type="tts">ášá°á°áááš áĄá«: ášááł áááá”-5</annotation>
<annotation cp="đđż">á°áááł | áĄáą | á„á
| ášááł áááá”-6 | ášá°á°áááš áĄá« | ášá°ášá á | áĄá«</annotation>
<annotation cp="đđż" type="tts">ášá°á°áááš áĄá«: ášááł áááá”-6</annotation>
<annotation cp="đ€đ»">áĄáą | áá° áá« | áá° áá« ášááš áĄáą | ášááł áááá”-1-2 | áĄá«</annotation>
<annotation cp="đ€đ»" type="tts">áá° áá« ášááš áĄáą: ášááł áááá”-1-2</annotation>
<annotation cp="đ€đŒ">ááášáá áá á«á ášááł ááá | áĄáą | áá° áá« | áá° áá« ášááš áĄáą | áĄá«</annotation>
<annotation cp="đ€đŒ" type="tts">áá° áá« ášááš áĄáą: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€đœ">áĄáą | áá° áá« | áá° áá« ášááš áĄáą | ášááł áááá”-4 | áĄá«</annotation>
<annotation cp="đ€đœ" type="tts">áá° áá« ášááš áĄáą: ášááł áááá”-4</annotation>
<annotation cp="đ€đŸ">áĄáą | áá° áá« | áá° áá« ášááš áĄáą | ášááł áááá”-5 | áĄá«</annotation>
<annotation cp="đ€đŸ" type="tts">áá° áá« ášááš áĄáą: ášááł áááá”-5</annotation>
<annotation cp="đ€đż">áĄáą | áá° áá« | áá° áá« ášááš áĄáą | ášááł áááá”-6 | áĄá«</annotation>
<annotation cp="đ€đż" type="tts">áá° áá« ášááš áĄáą: ášááł áááá”-6</annotation>
<annotation cp="đ€đ»">á°áááł | á”áááá” | áĄáą | áá° áá | áá° áá ášááš áĄáą | ášááł áááá”-1-2 | áĄá« | áá„á„</annotation>
<annotation cp="đ€đ»" type="tts">áá° áá ášááš áĄáą: ášááł áááá”-1-2</annotation>
<annotation cp="đ€đŒ">ááášáá áá á«á ášááł ááá | á°áááł | á”áááá” | áĄáą | áá° áá | áá° áá ášááš áĄáą | áĄá« | áá„á„</annotation>
<annotation cp="đ€đŒ" type="tts">áá° áá ášááš áĄáą: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€đœ">á°áááł | á”áááá” | áĄáą | áá° áá | áá° áá ášááš áĄáą | ášááł áááá”-4 | áĄá« | áá„á„</annotation>
<annotation cp="đ€đœ" type="tts">áá° áá ášááš áĄáą: ášááł áááá”-4</annotation>
<annotation cp="đ€đŸ">á°áááł | á”áááá” | áĄáą | áá° áá | áá° áá ášááš áĄáą | ášááł áááá”-5 | áĄá« | áá„á„</annotation>
<annotation cp="đ€đŸ" type="tts">áá° áá ášááš áĄáą: ášááł áááá”-5</annotation>
<annotation cp="đ€đż">á°áááł | á”áááá” | áĄáą | áá° áá | áá° áá ášááš áĄáą | ášááł áááá”-6 | áĄá« | áá„á„</annotation>
<annotation cp="đ€đż" type="tts">áá° áá ášááš áĄáą: ášááł áááá”-6</annotation>
<annotation cp="đđ»">áášá„ášá„ | á á«á | á ášá„á«áą á„áᜠ| á„á
| ášááł áááá”-1-2 | áá„ášáŁ</annotation>
<annotation cp="đđ»" type="tts">á ášá„á«áą á„ááœ: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááášáá áá á«á ášááł ááá | áášá„ášá„ | á á«á | á ášá„á«áą á„áᜠ| á„á
| áá„ášáŁ</annotation>
<annotation cp="đđŒ" type="tts">á ášá„á«áą á„ááœ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">áášá„ášá„ | á á«á | á ášá„á«áą á„áᜠ| á„á
| ášááł áááá”-4 | áá„ášáŁ</annotation>
<annotation cp="đđœ" type="tts">á ášá„á«áą á„ááœ: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">áášá„ášá„ | á á«á | á ášá„á«áą á„áᜠ| á„á
| ášááł áááá”-5 | áá„ášáŁ</annotation>
<annotation cp="đđŸ" type="tts">á ášá„á«áą á„ááœ: ášááł áááá”-5</annotation>
<annotation cp="đđż">áášá„ášá„ | á á«á | á ášá„á«áą á„áᜠ| á„á
| ášááł áááá”-6 | áá„ášáŁ</annotation>
<annotation cp="đđż" type="tts">á ášá„á«áą á„ááœ: ášááł áááá”-6</annotation>
<annotation cp="đđ»">áá”áá | á„á
| á„ááčá á á á„á á«ááł á°á | ášá á«á°ášá | áá„áš á áá | ášááł áááá”-1-2 | ášá„á
áááá”</annotation>
<annotation cp="đđ»" type="tts">á„ááčá á á á„á á«ááł á°á: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááášáá áá á«á ášááł ááá | áá”áá | á„á
| á„ááčá á á á„á á«ááł á°á | ášá á«á°ášá | áá„áš á áá | ášá„á
áááá”</annotation>
<annotation cp="đđŒ" type="tts">á„ááčá á á á„á á«ááł á°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">áá”áá | á„á
| á„ááčá á á á„á á«ááł á°á | ášá á«á°ášá | áá„áš á áá | ášááł áááá”-4 | ášá„á
áááá”</annotation>
<annotation cp="đđœ" type="tts">á„ááčá á á á„á á«ááł á°á: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">áá”áá | á„á
| á„ááčá á á á„á á«ááł á°á | ášá á«á°ášá | áá„áš á áá | ášááł áááá”-5 | ášá„á
áááá”</annotation>
<annotation cp="đđŸ" type="tts">á„ááčá á á á„á á«ááł á°á: ášááł áááá”-5</annotation>
<annotation cp="đđż">áá”áá | á„á
| á„ááčá á á á„á á«ááł á°á | ášá á«á°ášá | áá„áš á áá | ášááł áááá”-6 | ášá„á
áááá”</annotation>
<annotation cp="đđż" type="tts">á„ááčá á á á„á á«ááł á°á: ášááł áááá”-6</annotation>
<annotation cp="đ«¶đ»"><3 | áá„ | á„áá”ááá | á„áá”á»áá | á„á
| á„áᜠ| ášáá„ á
áá
ášá°á© á„áᜠ| ášááł áááá”-1-2 | áá
á</annotation>
<annotation cp="đ«¶đ»" type="tts">ášáá„ á
áá
ášá°á© á„ááœ: ášááł áááá”-1-2</annotation>
<annotation cp="đ«¶đŒ"><3 | áá„ | ááášáá áá á«á ášááł ááá | á„áá”ááá | á„áá”á»áá | á„á
| á„áᜠ| ášáá„ á
áá
ášá°á© á„áᜠ| áá
á</annotation>
<annotation cp="đ«¶đŒ" type="tts">ášáá„ á
áá
ášá°á© á„ááœ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ«¶đœ"><3 | áá„ | á„áá”ááá | á„áá”á»áá | á„á
| á„áᜠ| ášáá„ á
áá
ášá°á© á„áᜠ| ášááł áááá”-4 | áá
á</annotation>
<annotation cp="đ«¶đœ" type="tts">ášáá„ á
áá
ášá°á© á„ááœ: ášááł áááá”-4</annotation>
<annotation cp="đ«¶đŸ"><3 | áá„ | á„áá”ááá | á„áá”á»áá | á„á
| á„áᜠ| ášáá„ á
áá
ášá°á© á„áᜠ| ášááł áááá”-5 | áá
á</annotation>
<annotation cp="đ«¶đŸ" type="tts">ášáá„ á
áá
ášá°á© á„ááœ: ášááł áááá”-5</annotation>
<annotation cp="đ«¶đż"><3 | áá„ | á„áá”ááá | á„áá”á»áá | á„á
| á„áᜠ| ášáá„ á
áá
ášá°á© á„áᜠ| ášááł áááá”-6 | áá
á</annotation>
<annotation cp="đ«¶đż" type="tts">ášáá„ á
áá
ášá°á© á„ááœ: ášááł áááá”-6</annotation>
<annotation cp="đđ»">ááč áá | á ááá
á | á á«á | á„á
| ááá” | ášááł áááá”-1-2 | ášá°ášáá± ááá” á„ááœ</annotation>
<annotation cp="đđ»" type="tts">ášá°ášáá± ááá” á„ááœ: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááášáá áá á«á ášááł ááá | ááč áá | á ááá
á | á á«á | á„á
| ááá” | ášá°ášáá± ááá” á„ááœ</annotation>
<annotation cp="đđŒ" type="tts">ášá°ášáá± ááá” á„ááœ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">ááč áá | á ááá
á | á á«á | á„á
| ááá” | ášááł áááá”-4 | ášá°ášáá± ááá” á„ááœ</annotation>
<annotation cp="đđœ" type="tts">ášá°ášáá± ááá” á„ááœ: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">ááč áá | á ááá
á | á á«á | á„á
| ááá” | ášááł áááá”-5 | ášá°ášáá± ááá” á„ááœ</annotation>
<annotation cp="đđŸ" type="tts">ášá°ášáá± ááá” á„ááœ: ášááł áááá”-5</annotation>
<annotation cp="đđż">ááč áá | á ááá
á | á á«á | á„á
| ááá” | ášááł áááá”-6 | ášá°ášáá± ááá” á„ááœ</annotation>
<annotation cp="đđż" type="tts">ášá°ášáá± ááá” á„ááœ: ášááł áááá”-6</annotation>
<annotation cp="đ€Čđ»">áážáá” ášá°ááá á„áᜠ| ááłá á áá” áá áá°áá | ááá” | ášááł áááá”-1-2 | á±á | ážáá© | ážáá”</annotation>
<annotation cp="đ€Čđ»" type="tts">ááłá á áá” áá áá°áá: ášááł áááá”-1-2</annotation>
<annotation cp="đ€ČđŒ">áážáá” ášá°ááá á„áᜠ| ááášáá áá á«á ášááł ááá | ááłá á áá” áá áá°áá | ááá” | á±á | ážáá© | ážáá”</annotation>
<annotation cp="đ€ČđŒ" type="tts">ááłá á áá” áá áá°áá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€Čđœ">áážáá” ášá°ááá á„áᜠ| ááłá á áá” áá áá°áá | ááá” | ášááł áááá”-4 | á±á | ážáá© | ážáá”</annotation>
<annotation cp="đ€Čđœ" type="tts">ááłá á áá” áá áá°áá: ášááł áááá”-4</annotation>
<annotation cp="đ€ČđŸ">áážáá” ášá°ááá á„áᜠ| ááłá á áá” áá áá°áá | ááá” | ášááł áááá”-5 | á±á | ážáá© | ážáá”</annotation>
<annotation cp="đ€ČđŸ" type="tts">ááłá á áá” áá áá°áá: ášááł áááá”-5</annotation>
<annotation cp="đ€Čđż">áážáá” ášá°ááá á„áᜠ| ááłá á áá” áá áá°áá | ááá” | ášááł áááá”-6 | á±á | ážáá© | ážáá”</annotation>
<annotation cp="đ€Čđż" type="tts">ááłá á áá” áá áá°áá: ášááł áááá”-6</annotation>
<annotation cp="đ€đ»">áášáŁá á„ | á”áááá” | á”á„á°áŁ | á„á
| ášááł áááá”-1-2</annotation>
<annotation cp="đ€đ»" type="tts">á„á
áášáŁá á„: ášááł áááá”-1-2</annotation>
<annotation cp="đ€đŒ">ááášáá áá á«á ášááł ááá | áášáŁá á„ | á”áááá” | á”á„á°áŁ | á„á
</annotation>
<annotation cp="đ€đŒ" type="tts">á„á
áášáŁá á„: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€đœ">áášáŁá á„ | á”áááá” | á”á„á°áŁ | á„á
| ášááł áááá”-4</annotation>
<annotation cp="đ€đœ" type="tts">á„á
áášáŁá á„: ášááł áááá”-4</annotation>
<annotation cp="đ€đŸ">áášáŁá á„ | á”áááá” | á”á„á°áŁ | á„á
| ášááł áááá”-5</annotation>
<annotation cp="đ€đŸ" type="tts">á„á
áášáŁá á„: ášááł áááá”-5</annotation>
<annotation cp="đ€đż">áášáŁá á„ | á”áááá” | á”á„á°áŁ | á„á
| ášááł áááá”-6</annotation>
<annotation cp="đ€đż" type="tts">á„á
áášáŁá á„: ášááł áááá”-6</annotation>
<annotation cp="đđ»">ááłáá ááášá” | áá ášá
| áážáá | áá”áá | á”áááá” | á„á
| ášááł áááá”-1-2 | ášá°áŁááš | ášá„á
ááłááčá á«áŁá á á°á</annotation>
<annotation cp="đđ»" type="tts">ášá„á
ááłááčá á«áŁá á á°á: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááášáá áá á«á ášááł ááá | ááłáá ááášá” | áá ášá
| áážáá | áá”áá | á”áááá” | á„á
| ášá°áŁááš | ášá„á
ááłááčá á«áŁá á á°á</annotation>
<annotation cp="đđŒ" type="tts">ášá„á
ááłááčá á«áŁá á á°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">ááłáá ááášá” | áá ášá
| áážáá | áá”áá | á”áááá” | á„á
| ášááł áááá”-4 | ášá°áŁááš | ášá„á
ááłááčá á«áŁá á á°á</annotation>
<annotation cp="đđœ" type="tts">ášá„á
ááłááčá á«áŁá á á°á: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">ááłáá ááášá” | áá ášá
| áážáá | áá”áá | á”áááá” | á„á
| ášááł áááá”-5 | ášá°áŁááš | ášá„á
ááłááčá á«áŁá á á°á</annotation>
<annotation cp="đđŸ" type="tts">ášá„á
ááłááčá á«áŁá á á°á: ášááł áááá”-5</annotation>
<annotation cp="đđż">ááłáá ááášá” | áá ášá
| áážáá | áá”áá | á”áááá” | á„á
| ášááł áááá”-6 | ášá°áŁááš | ášá„á
ááłááčá á«áŁá á á°á</annotation>
<annotation cp="đđż" type="tts">ášá„á
ááłááčá á«áŁá á á°á: ášááł áááá”-6</annotation>
<annotation cp="âđ»">áá»á | á á«á | á„ášá»á á«á á„á
| á„á
| ášááł áááá”-1-2 | áœáá</annotation>
<annotation cp="âđ»" type="tts">á„ášá»á á«á á„á
: ášááł áááá”-1-2</annotation>
<annotation cp="âđŒ">ááášáá áá á«á ášááł ááá | áá»á | á á«á | á„ášá»á á«á á„á
| á„á
| áœáá</annotation>
<annotation cp="âđŒ" type="tts">á„ášá»á á«á á„á
: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="âđœ">áá»á | á á«á | á„ášá»á á«á á„á
| á„á
| ášááł áááá”-4 | áœáá</annotation>
<annotation cp="âđœ" type="tts">á„ášá»á á«á á„á
: ášááł áááá”-4</annotation>
<annotation cp="âđŸ">áá»á | á á«á | á„ášá»á á«á á„á
| á„á
| ášááł áááá”-5 | áœáá</annotation>
<annotation cp="âđŸ" type="tts">á„ášá»á á«á á„á
: ášááł áááá”-5</annotation>
<annotation cp="âđż">áá»á | á á«á | á„ášá»á á«á á„á
| á„á
| ášááł áááá”-6 | áœáá</annotation>
<annotation cp="âđż" type="tts">á„ášá»á á«á á„á
: ášááł áááá”-6</annotation>
<annotation cp="đ
đ»">á„ááá„á«á€ | áźá”ááČáá” | ášááł áááá”-1-2 | ášáŁá” áá á” á„á á | ášá„áá ááá | á„áá</annotation>
<annotation cp="đ
đ»" type="tts">ášá„áá ááá: ášááł áááá”-1-2</annotation>
<annotation cp="đ
đŒ">ááášáá áá á«á ášááł ááá | á„ááá„á«á€ | áźá”ááČáá” | ášáŁá” áá á” á„á á | ášá„áá ááá | á„áá</annotation>
<annotation cp="đ
đŒ" type="tts">ášá„áá ááá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ
đœ">á„ááá„á«á€ | áźá”ááČáá” | ášááł áááá”-4 | ášáŁá” áá á” á„á á | ášá„áá ááá | á„áá</annotation>
<annotation cp="đ
đœ" type="tts">ášá„áá ááá: ášááł áááá”-4</annotation>
<annotation cp="đ
đŸ">á„ááá„á«á€ | áźá”ááČáá” | ášááł áááá”-5 | ášáŁá” áá á” á„á á | ášá„áá ááá | á„áá</annotation>
<annotation cp="đ
đŸ" type="tts">ášá„áá ááá: ášááł áááá”-5</annotation>
<annotation cp="đ
đż">á„ááá„á«á€ | áźá”ááČáá” | ášááł áááá”-6 | ášáŁá” áá á” á„á á | ášá„áá ááá | á„áá</annotation>
<annotation cp="đ
đż" type="tts">ášá„áá ááá: ášááł áááá”-6</annotation>
<annotation cp="đ€łđ»">á°áá | á”áá | á„á«á” áá¶ áááłá” | á«áá« | ášááł áááá”-1-2</annotation>
<annotation cp="đ€łđ»" type="tts">á„á«á” áá¶ áááłá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ€łđŒ">ááášáá áá á«á ášááł ááá | á°áá | á”áá | á„á«á” áá¶ áááłá” | á«áá«</annotation>
<annotation cp="đ€łđŒ" type="tts">á„á«á” áá¶ áááłá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€łđœ">á°áá | á”áá | á„á«á” áá¶ áááłá” | á«áá« | ášááł áááá”-4</annotation>
<annotation cp="đ€łđœ" type="tts">á„á«á” áá¶ áááłá”: ášááł áááá”-4</annotation>
<annotation cp="đ€łđŸ">á°áá | á”áá | á„á«á” áá¶ áááłá” | á«áá« | ášááł áááá”-5</annotation>
<annotation cp="đ€łđŸ" type="tts">á„á«á” áá¶ áááłá”: ášááł áááá”-5</annotation>
<annotation cp="đ€łđż">á°áá | á”áá | á„á«á” áá¶ áááłá” | á«áá« | ášááł áááá”-6</annotation>
<annotation cp="đ€łđż" type="tts">á„á«á” áá¶ áááłá”: ášááł áááá”-6</annotation>
<annotation cp="đȘđ»">áážáá | áłá„á ášá°áá áš ášá„á
áĄáá» | áááá | ááá | á á”áá | á á«á | ášááł áááá”-1-2 | ášá„á
áĄáá» | ááá á” | áĄáá»</annotation>
<annotation cp="đȘđ»" type="tts">áłá„á ášá°áá áš ášá„á
áĄáá»: ášááł áááá”-1-2</annotation>
<annotation cp="đȘđŒ">ááášáá áá á«á ášááł ááá | áážáá | áłá„á ášá°áá áš ášá„á
áĄáá» | áááá | ááá | á á”áá | á á«á | ášá„á
áĄáá» | ááá á” | áĄáá»</annotation>
<annotation cp="đȘđŒ" type="tts">áłá„á ášá°áá áš ášá„á
áĄáá»: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đȘđœ">áážáá | áłá„á ášá°áá áš ášá„á
áĄáá» | áááá | ááá | á á”áá | á á«á | ášááł áááá”-4 | ášá„á
áĄáá» | ááá á” | áĄáá»</annotation>
<annotation cp="đȘđœ" type="tts">áłá„á ášá°áá áš ášá„á
áĄáá»: ášááł áááá”-4</annotation>
<annotation cp="đȘđŸ">áážáá | áłá„á ášá°áá áš ášá„á
áĄáá» | áááá | ááá | á á”áá | á á«á | ášááł áááá”-5 | ášá„á
áĄáá» | ááá á” | áĄáá»</annotation>
<annotation cp="đȘđŸ" type="tts">áłá„á ášá°áá áš ášá„á
áĄáá»: ášááł áááá”-5</annotation>
<annotation cp="đȘđż">áážáá | áłá„á ášá°áá áš ášá„á
áĄáá» | áááá | ááá | á á”áá | á á«á | ášááł áááá”-6 | ášá„á
áĄáá» | ááá á” | áĄáá»</annotation>
<annotation cp="đȘđż" type="tts">áłá„á ášá°áá áš ášá„á
áĄáá»: ášááł áááá”-6</annotation>
<annotation cp="đŠ”đ»">áááłá” | á á«áá” | á„áá | ášááł áááá”-1-2 | ášáłá á á„áá | ááá á”</annotation>
<annotation cp="đŠ”đ»" type="tts">á„áá: ášááł áááá”-1-2</annotation>
<annotation cp="đŠ”đŒ">ááášáá áá á«á ášááł ááá | áááłá” | á á«áá” | á„áá | ášáłá á á„áá | ááá á”</annotation>
<annotation cp="đŠ”đŒ" type="tts">á„áá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đŠ”đœ">áááłá” | á á«áá” | á„áá | ášááł áááá”-4 | ášáłá á á„áá | ááá á”</annotation>
<annotation cp="đŠ”đœ" type="tts">á„áá: ášááł áááá”-4</annotation>
<annotation cp="đŠ”đŸ">áááłá” | á á«áá” | á„áá | ášááł áááá”-5 | ášáłá á á„áá | ááá á”</annotation>
<annotation cp="đŠ”đŸ" type="tts">á„áá: ášááł áááá”-5</annotation>
<annotation cp="đŠ”đż">áááłá” | á á«áá” | á„áá | ášááł áááá”-6 | ášáłá á á„áá | ááá á”</annotation>
<annotation cp="đŠ”đż" type="tts">á„áá: ášááł áááá”-6</annotation>
<annotation cp="đжđ»">áááłá” | áááá„ | ááááááá” | á„áá | á„áá ášáłáœáá ááá | ášááł áááá”-1-2 | ášá„áá ášáłáœáá ááá</annotation>
<annotation cp="đжđ»" type="tts">á„áá ášáłáœáá ááá: ášááł áááá”-1-2</annotation>
<annotation cp="đжđŒ">ááášáá áá á«á ášááł ááá | áááłá” | áááá„ | ááááááá” | á„áá | á„áá ášáłáœáá ááá | ášá„áá ášáłáœáá ááá</annotation>
<annotation cp="đжđŒ" type="tts">á„áá ášáłáœáá ááá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đжđœ">áááłá” | áááá„ | ááááááá” | á„áá | á„áá ášáłáœáá ááá | ášááł áááá”-4 | ášá„áá ášáłáœáá ááá</annotation>
<annotation cp="đжđœ" type="tts">á„áá ášáłáœáá ááá: ášááł áááá”-4</annotation>
<annotation cp="đжđŸ">áááłá” | áááá„ | ááááááá” | á„áá | á„áá ášáłáœáá ááá | ášááł áááá”-5 | ášá„áá ášáłáœáá ááá</annotation>
<annotation cp="đжđŸ" type="tts">á„áá ášáłáœáá ááá: ášááł áááá”-5</annotation>
<annotation cp="đжđż">áááłá” | áááá„ | ááááááá” | á„áá | á„áá ášáłáœáá ááá | ášááł áááá”-6 | ášá„áá ášáłáœáá ááá</annotation>
<annotation cp="đжđż" type="tts">á„áá ášáłáœáá ááá: ášááł áááá”-6</annotation>
<annotation cp="đđ»">ááłáá„ | á á«á | ášááł áááá”-1-2 | ááź</annotation>
<annotation cp="đđ»" type="tts">ááź: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááášáá áá á«á ášááł ááá | ááłáá„ | á á«á | ááź</annotation>
<annotation cp="đđŒ" type="tts">ááź: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">ááłáá„ | á á«á | ášááł áááá”-4 | ááź</annotation>
<annotation cp="đđœ" type="tts">ááź: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">ááłáá„ | á á«á | ášááł áááá”-5 | ááź</annotation>
<annotation cp="đđŸ" type="tts">ááź: ášááł áááá”-5</annotation>
<annotation cp="đđż">ááłáá„ | á á«á | ášááł áááá”-6 | ááź</annotation>
<annotation cp="đđż" type="tts">ááź: ášááł áááá”-6</annotation>
<annotation cp="đŠ»đ»">áá”áá” áážáá | á°á°ášáœáá” | á°á°á«áœ | ášáá”áá” áœáá | ášááł áááá”-1-2 | ááź | ááź áá”áá” ášáá«áł ááłáȘá« áá</annotation>
<annotation cp="đŠ»đ»" type="tts">ááź áá”áá” ášáá«áł ááłáȘá« áá: ášááł áááá”-1-2</annotation>
<annotation cp="đŠ»đŒ">ááášáá áá á«á ášááł ááá | áá”áá” áážáá | á°á°ášáœáá” | á°á°á«áœ | ášáá”áá” áœáá | ááź | ááź áá”áá” ášáá«áł ááłáȘá« áá</annotation>
<annotation cp="đŠ»đŒ" type="tts">ááź áá”áá” ášáá«áł ááłáȘá« áá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đŠ»đœ">áá”áá” áážáá | á°á°ášáœáá” | á°á°á«áœ | ášáá”áá” áœáá | ášááł áááá”-4 | ááź | ááź áá”áá” ášáá«áł ááłáȘá« áá</annotation>
<annotation cp="đŠ»đœ" type="tts">ááź áá”áá” ášáá«áł ááłáȘá« áá: ášááł áááá”-4</annotation>
<annotation cp="đŠ»đŸ">áá”áá” áážáá | á°á°ášáœáá” | á°á°á«áœ | ášáá”áá” áœáá | ášááł áááá”-5 | ááź | ááź áá”áá” ášáá«áł ááłáȘá« áá</annotation>
<annotation cp="đŠ»đŸ" type="tts">ááź áá”áá” ášáá«áł ááłáȘá« áá: ášááł áááá”-5</annotation>
<annotation cp="đŠ»đż">áá”áá” áážáá | á°á°ášáœáá” | á°á°á«áœ | ášáá”áá” áœáá | ášááł áááá”-6 | ááź | ááź áá”áá” ášáá«áł ááłáȘá« áá</annotation>
<annotation cp="đŠ»đż" type="tts">ááź áá”áá” ášáá«áł ááłáȘá« áá: ášááł áááá”-6</annotation>
<annotation cp="đđ»">ááœá°á” | áœáł | á á«á | á ááá« | ášááł áááá”-1-2</annotation>
<annotation cp="đđ»" type="tts">á ááá«: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááášáá áá á«á ášááł ááá | ááœá°á” | áœáł | á á«á | á ááá«</annotation>
<annotation cp="đđŒ" type="tts">á ááá«: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">ááœá°á” | áœáł | á á«á | á ááá« | ášááł áááá”-4</annotation>
<annotation cp="đđœ" type="tts">á ááá«: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">ááœá°á” | áœáł | á á«á | á ááá« | ášááł áááá”-5</annotation>
<annotation cp="đđŸ" type="tts">á ááá«: ášááł áááá”-5</annotation>
<annotation cp="đđż">ááœá°á” | áœáł | á á«á | á ááá« | ášááł áááá”-6</annotation>
<annotation cp="đđż" type="tts">á ááá«: ášááł áááá”-6</annotation>
<annotation cp="đ¶đ»">ááᜠ| áá»áá” | áá»á | ášááł áááá”-1-2 | ášá
á</annotation>
<annotation cp="đ¶đ»" type="tts">áá»á: ášááł áááá”-1-2</annotation>
<annotation cp="đ¶đŒ">ááᜠ| áá»áá” | áá»á | ááášáá áá á«á ášááł ááá | ášá
á</annotation>
<annotation cp="đ¶đŒ" type="tts">áá»á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ¶đœ">ááᜠ| áá»áá” | áá»á | ášááł áááá”-4 | ášá
á</annotation>
<annotation cp="đ¶đœ" type="tts">áá»á: ášááł áááá”-4</annotation>
<annotation cp="đ¶đŸ">ááᜠ| áá»áá” | áá»á | ášááł áááá”-5 | ášá
á</annotation>
<annotation cp="đ¶đŸ" type="tts">áá»á: ášááł áááá”-5</annotation>
<annotation cp="đ¶đż">ááᜠ| áá»áá” | áá»á | ášááł áááá”-6 | ášá
á</annotation>
<annotation cp="đ¶đż" type="tts">áá»á: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»">á
áá | áá
| ááŁá” | ášáá”á
ášá
áá áá” | ášááł áááá”-1-2 | áŸáł ášáááá</annotation>
<annotation cp="đ§đ»" type="tts">áá
: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒ">á
áá | áá
| ááášáá áá á«á ášááł ááá | ááŁá” | ášáá”á
ášá
áá áá” | áŸáł ášáááá</annotation>
<annotation cp="đ§đŒ" type="tts">áá
: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœ">á
áá | áá
| ááŁá” | ášáá”á
ášá
áá áá” | ášááł áááá”-4 | áŸáł ášáááá</annotation>
<annotation cp="đ§đœ" type="tts">áá
: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸ">á
áá | áá
| ááŁá” | ášáá”á
ášá
áá áá” | ášááł áááá”-5 | áŸáł ášáááá</annotation>
<annotation cp="đ§đŸ" type="tts">áá
: ášááł áááá”-5</annotation>
<annotation cp="đ§đż">á
áá | áá
| ááŁá” | ášáá”á
ášá
áá áá” | ášááł áááá”-6 | áŸáł ášáááá</annotation>
<annotation cp="đ§đż" type="tts">áá
: ášááł áááá”-6</annotation>
<annotation cp="đŠđ»">á°áŁáá”/ááá” áá
| á”áᜠáá
| ááá” áá
| ááŁá” | ášááł áááá”-1-2</annotation>
<annotation cp="đŠđ»" type="tts">ááá” áá
: ášááł áááá”-1-2</annotation>
<annotation cp="đŠđŒ">ááášáá áá á«á ášááł ááá | á°áŁáá”/ááá” áá
| á”áᜠáá
| ááá” áá
| ááŁá”</annotation>
<annotation cp="đŠđŒ" type="tts">ááá” áá
: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đŠđœ">á°áŁáá”/ááá” áá
| á”áᜠáá
| ááá” áá
| ááŁá” | ášááł áááá”-4</annotation>
<annotation cp="đŠđœ" type="tts">ááá” áá
: ášááł áááá”-4</annotation>
<annotation cp="đŠđŸ">á°áŁáá”/ááá” áá
| á”áᜠáá
| ááá” áá
| ááŁá” | ášááł áááá”-5</annotation>
<annotation cp="đŠđŸ" type="tts">ááá” áá
: ášááł áááá”-5</annotation>
<annotation cp="đŠđż">á°áŁáá”/ááá” áá
| á”áᜠáá
| ááá” áá
| ááŁá” | ášááł áááá”-6</annotation>
<annotation cp="đŠđż" type="tts">ááá” áá
: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»">áááášá” | áŽá” | áŽá” áá
| áȘáá | á°ááȘ | áźášáł | ááŁá” | áá”á«á | ášááł áááá”-1-2 | á”ááá</annotation>
<annotation cp="đ§đ»" type="tts">áááášá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒ">áááášá” | ááášáá áá á«á ášááł ááá | áŽá” | áŽá” áá
| áȘáá | á°ááȘ | áźášáł | ááŁá” | áá”á«á | á”ááá</annotation>
<annotation cp="đ§đŒ" type="tts">áááášá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœ">áááášá” | áŽá” | áŽá” áá
| áȘáá | á°ááȘ | áźášáł | ááŁá” | áá”á«á | ášááł áááá”-4 | á”ááá</annotation>
<annotation cp="đ§đœ" type="tts">áááášá”: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸ">áááášá” | áŽá” | áŽá” áá
| áȘáá | á°ááȘ | áźášáł | ááŁá” | áá”á«á | ášááł áááá”-5 | á”ááá</annotation>
<annotation cp="đ§đŸ" type="tts">áááášá”: ášááł áááá”-5</annotation>
<annotation cp="đ§đż">áááášá” | áŽá” | áŽá” áá
| áȘáá | á°ááȘ | áźášáł | ááŁá” | áá”á«á | ášááł áááá”-6 | á”ááá</annotation>
<annotation cp="đ§đż" type="tts">áááášá”: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»">ášááł áááá”-1-2 | ášááááł áá” | ááááł | áŸáł ášáááá</annotation>
<annotation cp="đ§đ»" type="tts">ááááł: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒ">ááášáá áá á«á ášááł ááá | ášááááł áá” | ááááł | áŸáł ášáááá</annotation>
<annotation cp="đ§đŒ" type="tts">ááááł: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœ">ášááł áááá”-4 | ášááááł áá” | ááááł | áŸáł ášáááá</annotation>
<annotation cp="đ§đœ" type="tts">ááááł: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸ">ášááł áááá”-5 | ášááááł áá” | ááááł | áŸáł ášáááá</annotation>
<annotation cp="đ§đŸ" type="tts">ááááł: ášááł áááá”-5</annotation>
<annotation cp="đ§đż">ášááł áááá”-6 | ášááááł áá” | ááááł | áŸáł ášáááá</annotation>
<annotation cp="đ§đż" type="tts">ááááł: ášááł áááá”-6</annotation>
<annotation cp="đ±đ»">áá« | áá« ážáá á«áá á°á | áááá ááá | áááá ááá á«áá á°á | ášá°á áá | ášááł áááá”-1-2 | ááááł/áá« ážáá á«áá | ážáá | áá”</annotation>
<annotation cp="đ±đ»" type="tts">ááááł/áá« ážáá á«áá: ášááł áááá”-1-2</annotation>
<annotation cp="đ±đŒ">áá« | áá« ážáá á«áá á°á | ááášáá áá á«á ášááł ááá | áááá ááá | áááá ááá á«áá á°á | ášá°á áá | ááááł/áá« ážáá á«áá | ážáá | áá”</annotation>
<annotation cp="đ±đŒ" type="tts">ááááł/áá« ážáá á«áá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ±đœ">áá« | áá« ážáá á«áá á°á | áááá ááá | áááá ááá á«áá á°á | ášá°á áá | ášááł áááá”-4 | ááááł/áá« ážáá á«áá | ážáá | áá”</annotation>
<annotation cp="đ±đœ" type="tts">ááááł/áá« ážáá á«áá: ášááł áááá”-4</annotation>
<annotation cp="đ±đŸ">áá« | áá« ážáá á«áá á°á | áááá ááá | áááá ááá á«áá á°á | ášá°á áá | ášááł áááá”-5 | ááááł/áá« ážáá á«áá | ážáá | áá”</annotation>
<annotation cp="đ±đŸ" type="tts">ááááł/áá« ážáá á«áá: ášááł áááá”-5</annotation>
<annotation cp="đ±đż">áá« | áá« ážáá á«áá á°á | áááá ááá | áááá ááá á«áá á°á | ášá°á áá | ášááł áááá”-6 | ááááł/áá« ážáá á«áá | ážáá | áá”</annotation>
<annotation cp="đ±đż" type="tts">ááááł/áá« ážáá á«áá: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»ââ€âđâđ§đŒ">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | ášááł áááá”-1-2 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đ»ââ€âđâđ§đŒ" type="tts">ááłá: ááááłáŁ ááááłáŁ ášááł áááá”-1-2 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đ»ââ€âđâđ§đœ">ááłá | ááłáłá | ášááł áááá”-1-2 | ášááł áááá”-4 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đ»ââ€âđâđ§đœ" type="tts">ááłá: ááááłáŁ ááááłáŁ ášááł áááá”-1-2 á„á ášááł áááá”-4</annotation>
<annotation cp="đ§đ»ââ€âđâđ§đŸ">ááłá | ááłáłá | ášááł áááá”-1-2 | ášááł áááá”-5 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đ»ââ€âđâđ§đŸ" type="tts">ááłá: ááááłáŁ ááááłáŁ ášááł áááá”-1-2 á„á ášááł áááá”-5</annotation>
<annotation cp="đ§đ»ââ€âđâđ§đż">ááłá | ááłáłá | ášááł áááá”-1-2 | ášááł áááá”-6 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đ»ââ€âđâđ§đż" type="tts">ááłá: ááááłáŁ ááááłáŁ ášááł áááá”-1-2 á„á ášááł áááá”-6</annotation>
<annotation cp="đ§đŒââ€âđâđ§đ»">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | ášááł áááá”-1-2 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đŒââ€âđâđ§đ»" type="tts">ááłá: ááááłáŁ ááááłáŁ ááášáá áá á«á ášááł ááá á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒââ€âđâđ§đœ">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | ášááł áááá”-4 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đŒââ€âđâđ§đœ" type="tts">ááłá: ááááłáŁ ááááłáŁ ááášáá áá á«á ášááł ááá á„á ášááł áááá”-4</annotation>
<annotation cp="đ§đŒââ€âđâđ§đŸ">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | ášááł áááá”-5 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đŒââ€âđâđ§đŸ" type="tts">ááłá: ááááłáŁ ááááłáŁ ááášáá áá á«á ášááł ááá á„á ášááł áááá”-5</annotation>
<annotation cp="đ§đŒââ€âđâđ§đż">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | ášááł áááá”-6 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đŒââ€âđâđ§đż" type="tts">ááłá: ááááłáŁ ááááłáŁ ááášáá áá á«á ášááł ááá á„á ášááł áááá”-6</annotation>
<annotation cp="đ§đœââ€âđâđ§đ»">ááłá | ááłáłá | ášááł áááá”-1-2 | ášááł áááá”-4 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đœââ€âđâđ§đ»" type="tts">ááłá: ááááłáŁ ááááłáŁ ášááł áááá”-4 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ§đœââ€âđâđ§đŒ">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | ášááł áááá”-4 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đœââ€âđâđ§đŒ" type="tts">ááłá: ááááłáŁ ááááłáŁ ášááł áááá”-4 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœââ€âđâđ§đŸ">ááłá | ááłáłá | ášááł áááá”-4 | ášááł áááá”-5 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đœââ€âđâđ§đŸ" type="tts">ááłá: ááááłáŁ ááááłáŁ ášááł áááá”-4 á„á ášááł áááá”-5</annotation>
<annotation cp="đ§đœââ€âđâđ§đż">ááłá | ááłáłá | ášááł áááá”-4 | ášááł áááá”-6 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đœââ€âđâđ§đż" type="tts">ááłá: ááááłáŁ ááááłáŁ ášááł áááá”-4 á„á ášááł áááá”-6</annotation>
<annotation cp="đ§đŸââ€âđâđ§đ»">ááłá | ááłáłá | ášááł áááá”-1-2 | ášááł áááá”-5 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đŸââ€âđâđ§đ»" type="tts">ááłá: ááááłáŁ ááááłáŁ ášááł áááá”-5 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŸââ€âđâđ§đŒ">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | ášááł áááá”-5 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đŸââ€âđâđ§đŒ" type="tts">ááłá: ááááłáŁ ááááłáŁ ášááł áááá”-5 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đŸââ€âđâđ§đœ">ááłá | ááłáłá | ášááł áááá”-4 | ášááł áááá”-5 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đŸââ€âđâđ§đœ" type="tts">ááłá: ááááłáŁ ááááłáŁ ášááł áááá”-5 á„á ášááł áááá”-4</annotation>
<annotation cp="đ§đŸââ€âđâđ§đż">ááłá | ááłáłá | ášááł áááá”-5 | ášááł áááá”-6 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đŸââ€âđâđ§đż" type="tts">ááłá: ááááłáŁ ááááłáŁ ášááł áááá”-5 á„á ášááł áááá”-6</annotation>
<annotation cp="đ§đżââ€âđâđ§đ»">ááłá | ááłáłá | ášááł áááá”-1-2 | ášááł áááá”-6 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đżââ€âđâđ§đ»" type="tts">ááłá: ááááłáŁ ááááłáŁ ášááł áááá”-6 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ§đżââ€âđâđ§đŒ">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | ášááł áááá”-6 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đżââ€âđâđ§đŒ" type="tts">ááłá: ááááłáŁ ááááłáŁ ášááł áááá”-6 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đżââ€âđâđ§đœ">ááłá | ááłáłá | ášááł áááá”-4 | ášááł áááá”-6 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đżââ€âđâđ§đœ" type="tts">ááłá: ááááłáŁ ááááłáŁ ášááł áááá”-6 á„á ášááł áááá”-4</annotation>
<annotation cp="đ§đżââ€âđâđ§đŸ">ááłá | ááłáłá | ášááł áááá”-5 | ášááł áááá”-6 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đżââ€âđâđ§đŸ" type="tts">ááłá: ááááłáŁ ááááłáŁ ášááł áááá”-6 á„á ášááł áááá”-5</annotation>
<annotation cp="đ§đ»ââ€âđ§đŒ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | ášááł áááá”-1-2 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đ»ââ€âđ§đŒ" type="tts">áá„ á áááážá á«á á„áá¶áœ: ááááłáŁ ááááłáŁ ášááł áááá”-1-2 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đ»ââ€âđ§đœ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ášááł áááá”-1-2 | ášááł áááá”-4 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đ»ââ€âđ§đœ" type="tts">áá„ á áááážá á«á á„áá¶áœ: ááááłáŁ ááááłáŁ ášááł áááá”-1-2 á„á ášááł áááá”-4</annotation>
<annotation cp="đ§đ»ââ€âđ§đŸ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ášááł áááá”-1-2 | ášááł áááá”-5 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đ»ââ€âđ§đŸ" type="tts">áá„ á áááážá á«á á„áá¶áœ: ááááłáŁ ááááłáŁ ášááł áááá”-1-2 á„á ášááł áááá”-5</annotation>
<annotation cp="đ§đ»ââ€âđ§đż">áá„ | áá„ á áááážá á«á á„áá¶áœ | ášááł áááá”-1-2 | ášááł áááá”-6 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đ»ââ€âđ§đż" type="tts">áá„ á áááážá á«á á„áá¶áœ: ááááłáŁ ááááłáŁ ášááł áááá”-1-2 á„á ášááł áááá”-6</annotation>
<annotation cp="đ§đŒââ€âđ§đ»">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | ášááł áááá”-1-2 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đŒââ€âđ§đ»" type="tts">áá„ á áááážá á«á á„áá¶áœ: ááááłáŁ ááááłáŁ ááášáá áá á«á ášááł ááá á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒââ€âđ§đœ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | ášááł áááá”-4 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đŒââ€âđ§đœ" type="tts">áá„ á áááážá á«á á„áá¶áœ: ááááłáŁ ááááłáŁ ááášáá áá á«á ášááł ááá á„á ášááł áááá”-4</annotation>
<annotation cp="đ§đŒââ€âđ§đŸ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | ášááł áááá”-5 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đŒââ€âđ§đŸ" type="tts">áá„ á áááážá á«á á„áá¶áœ: ááááłáŁ ááááłáŁ ááášáá áá á«á ášááł ááá á„á ášááł áááá”-5</annotation>
<annotation cp="đ§đŒââ€âđ§đż">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | ášááł áááá”-6 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đŒââ€âđ§đż" type="tts">áá„ á áááážá á«á á„áá¶áœ: ááááłáŁ ááááłáŁ ááášáá áá á«á ášááł ááá á„á ášááł áááá”-6</annotation>
<annotation cp="đ§đœââ€âđ§đ»">áá„ | áá„ á áááážá á«á á„áá¶áœ | ášááł áááá”-1-2 | ášááł áááá”-4 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đœââ€âđ§đ»" type="tts">áá„ á áááážá á«á á„áá¶áœ: ááááłáŁ ááááłáŁ ášááł áááá”-4 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ§đœââ€âđ§đŒ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | ášááł áááá”-4 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đœââ€âđ§đŒ" type="tts">áá„ á áááážá á«á á„áá¶áœ: ááááłáŁ ááááłáŁ ášááł áááá”-4 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœââ€âđ§đŸ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ášááł áááá”-4 | ášááł áááá”-5 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đœââ€âđ§đŸ" type="tts">áá„ á áááážá á«á á„áá¶áœ: ááááłáŁ ááááłáŁ ášááł áááá”-4 á„á ášááł áááá”-5</annotation>
<annotation cp="đ§đœââ€âđ§đż">áá„ | áá„ á áááážá á«á á„áá¶áœ | ášááł áááá”-4 | ášááł áááá”-6 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đœââ€âđ§đż" type="tts">áá„ á áááážá á«á á„áá¶áœ: ááááłáŁ ááááłáŁ ášááł áááá”-4 á„á ášááł áááá”-6</annotation>
<annotation cp="đ§đŸââ€âđ§đ»">áá„ | áá„ á áááážá á«á á„áá¶áœ | ášááł áááá”-1-2 | ášááł áááá”-5 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đŸââ€âđ§đ»" type="tts">áá„ á áááážá á«á á„áá¶áœ: ááááłáŁ ááááłáŁ ášááł áááá”-5 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŸââ€âđ§đŒ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | ášááł áááá”-5 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đŸââ€âđ§đŒ" type="tts">áá„ á áááážá á«á á„áá¶áœ: ááááłáŁ ááááłáŁ ášááł áááá”-5 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đŸââ€âđ§đœ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ášááł áááá”-4 | ášááł áááá”-5 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đŸââ€âđ§đœ" type="tts">áá„ á áááážá á«á á„áá¶áœ: ááááłáŁ ááááłáŁ ášááł áááá”-5 á„á ášááł áááá”-4</annotation>
<annotation cp="đ§đŸââ€âđ§đż">áá„ | áá„ á áááážá á«á á„áá¶áœ | ášááł áááá”-5 | ášááł áááá”-6 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đŸââ€âđ§đż" type="tts">áá„ á áááážá á«á á„áá¶áœ: ááááłáŁ ááááłáŁ ášááł áááá”-5 á„á ášááł áááá”-6</annotation>
<annotation cp="đ§đżââ€âđ§đ»">áá„ | áá„ á áááážá á«á á„áá¶áœ | ášááł áááá”-1-2 | ášááł áááá”-6 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đżââ€âđ§đ»" type="tts">áá„ á áááážá á«á á„áá¶áœ: ááááłáŁ ááááłáŁ ášááł áááá”-6 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ§đżââ€âđ§đŒ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | ášááł áááá”-6 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đżââ€âđ§đŒ" type="tts">áá„ á áááážá á«á á„áá¶áœ: ááááłáŁ ááááłáŁ ášááł áááá”-6 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đżââ€âđ§đœ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ášááł áááá”-4 | ášááł áááá”-6 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đżââ€âđ§đœ" type="tts">áá„ á áááážá á«á á„áá¶áœ: ááááłáŁ ááááłáŁ ášááł áááá”-6 á„á ášááł áááá”-4</annotation>
<annotation cp="đ§đżââ€âđ§đŸ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ášááł áááá”-5 | ášááł áááá”-6 | ááááł | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ§đżââ€âđ§đŸ" type="tts">áá„ á áááážá á«á á„áá¶áœ: ááááłáŁ ááááłáŁ ášááł áááá”-6 á„á ášááł áááá”-5</annotation>
<annotation cp="đ§âđа">áá ážáá | ášááááł áá” | ááááł | áŸáł ášáááá</annotation>
<annotation cp="đ§âđа" type="tts">ááááł: áá ážáá</annotation>
<annotation cp="đ§đ»âđа">áá ážáá | ášááł áááá”-1-2 | ášááááł áá” | ááááł | áŸáł ášáááá</annotation>
<annotation cp="đ§đ»âđа" type="tts">ááááł: ášááł áááá”-1-2 á„á áá ážáá</annotation>
<annotation cp="đ§đŒâđа">ááášáá áá á«á ášááł ááá | áá ážáá | ášááááł áá” | ááááł | áŸáł ášáááá</annotation>
<annotation cp="đ§đŒâđа" type="tts">ááááł: ááášáá áá á«á ášááł ááá á„á áá ážáá</annotation>
<annotation cp="đ§đœâđа">áá ážáá | ášááł áááá”-4 | ášááááł áá” | ááááł | áŸáł ášáááá</annotation>
<annotation cp="đ§đœâđа" type="tts">ááááł: ášááł áááá”-4 á„á áá ážáá</annotation>
<annotation cp="đ§đŸâđа">áá ážáá | ášááł áááá”-5 | ášááááł áá” | ááááł | áŸáł ášáááá</annotation>
<annotation cp="đ§đŸâđа" type="tts">ááááł: ášááł áááá”-5 á„á áá ážáá</annotation>
<annotation cp="đ§đżâđа">áá ážáá | ášááł áááá”-6 | ášááááł áá” | ááááł | áŸáł ášáááá</annotation>
<annotation cp="đ§đżâđа" type="tts">ááááł: ášááł áááá”-6 á„á áá ážáá</annotation>
<annotation cp="đ§âđб">ášá°á ááá ážáá | ášááááł áá” | ááááł | áŸáł ášáááá</annotation>
<annotation cp="đ§âđб" type="tts">ááááł: ášá°á ááá ážáá</annotation>
<annotation cp="đ§đ»âđб">ášááł áááá”-1-2 | ášá°á ááá ážáá | ášááááł áá” | ááááł | áŸáł ášáááá</annotation>
<annotation cp="đ§đ»âđб" type="tts">ááááł: ášááł áááá”-1-2 á„á ášá°á ááá ážáá</annotation>
<annotation cp="đ§đŒâđб">ááášáá áá á«á ášááł ááá | ášá°á ááá ážáá | ášááááł áá” | ááááł | áŸáł ášáááá</annotation>
<annotation cp="đ§đŒâđб" type="tts">ááááł: ááášáá áá á«á ášááł ááá á„á ášá°á ááá ážáá</annotation>
<annotation cp="đ§đœâđб">ášááł áááá”-4 | ášá°á ááá ážáá | ášááááł áá” | ááááł | áŸáł ášáááá</annotation>
<annotation cp="đ§đœâđб" type="tts">ááááł: ášááł áááá”-4 á„á ášá°á ááá ážáá</annotation>
<annotation cp="đ§đŸâđб">ášááł áááá”-5 | ášá°á ááá ážáá | ášááááł áá” | ááááł | áŸáł ášáááá</annotation>
<annotation cp="đ§đŸâđб" type="tts">ááááł: ášááł áááá”-5 á„á ášá°á ááá ážáá</annotation>
<annotation cp="đ§đżâđб">ášááł áááá”-6 | ášá°á ááá ážáá | ášááááł áá” | ááááł | áŸáł ášáááá</annotation>
<annotation cp="đ§đżâđб" type="tts">ááááł: ášááł áááá”-6 á„á ášá°á ááá ážáá</annotation>
<annotation cp="đ§âđŠł">áá ážáá | ášááááł áá” | ááááł | áŸáł ášáááá</annotation>
<annotation cp="đ§âđŠł" type="tts">ááááł: áá ážáá</annotation>
<annotation cp="đ§đ»âđŠł">áá ážáá | ášááł áááá”-1-2 | ášááááł áá” | ááááł | áŸáł ášáááá</annotation>
<annotation cp="đ§đ»âđŠł" type="tts">ááááł: ášááł áááá”-1-2 á„á áá ážáá</annotation>
<annotation cp="đ§đŒâđŠł">ááášáá áá á«á ášááł ááá | áá ážáá | ášááááł áá” | ááááł | áŸáł ášáááá</annotation>
<annotation cp="đ§đŒâđŠł" type="tts">ááááł: ááášáá áá á«á ášááł ááá á„á áá ážáá</annotation>
<annotation cp="đ§đœâđŠł">áá ážáá | ášááł áááá”-4 | ášááááł áá” | ááááł | áŸáł ášáááá</annotation>
<annotation cp="đ§đœâđŠł" type="tts">ááááł: ášááł áááá”-4 á„á áá ážáá</annotation>
<annotation cp="đ§đŸâđŠł">áá ážáá | ášááł áááá”-5 | ášááááł áá” | ááááł | áŸáł ášáááá</annotation>
<annotation cp="đ§đŸâđŠł" type="tts">ááááł: ášááł áááá”-5 á„á áá ážáá</annotation>
<annotation cp="đ§đżâđŠł">áá ážáá | ášááł áááá”-6 | ášááááł áá” | ááááł | áŸáł ášáááá</annotation>
<annotation cp="đ§đżâđŠł" type="tts">ááááł: ášááł áááá”-6 á„á áá ážáá</annotation>
<annotation cp="đ§âđŠČ">ááᣠ| ášááááł áá” | ááááł | áŸáł ášáááá</annotation>
<annotation cp="đ§âđŠČ" type="tts">ááááł: áááŁ</annotation>
<annotation cp="đ§đ»âđŠČ">ááᣠ| ášááł áááá”-1-2 | ášááááł áá” | ááááł | áŸáł ášáááá</annotation>
<annotation cp="đ§đ»âđŠČ" type="tts">ááááł: ášááł áááá”-1-2 á„á áááŁ</annotation>
<annotation cp="đ§đŒâđŠČ">ááášáá áá á«á ášááł ááá | ááᣠ| ášááááł áá” | ááááł | áŸáł ášáááá</annotation>
<annotation cp="đ§đŒâđŠČ" type="tts">ááááł: ááášáá áá á«á ášááł ááá á„á áááŁ</annotation>
<annotation cp="đ§đœâđŠČ">ááᣠ| ášááł áááá”-4 | ášááááł áá” | ááááł | áŸáł ášáááá</annotation>
<annotation cp="đ§đœâđŠČ" type="tts">ááááł: ášááł áááá”-4 á„á áááŁ</annotation>
<annotation cp="đ§đŸâđŠČ">ááᣠ| ášááł áááá”-5 | ášááááł áá” | ááááł | áŸáł ášáááá</annotation>
<annotation cp="đ§đŸâđŠČ" type="tts">ááááł: ášááł áááá”-5 á„á áááŁ</annotation>
<annotation cp="đ§đżâđŠČ">ááᣠ| ášááł áááá”-6 | ášááááł áá” | ááááł | áŸáł ášáááá</annotation>
<annotation cp="đ§đżâđŠČ" type="tts">ááááł: ášááł áááá”-6 á„á áááŁ</annotation>
<annotation cp="đšđ»">á°á | ááá” | ášááł áááá”-1-2</annotation>
<annotation cp="đšđ»" type="tts">á°á: ášááł áááá”-1-2</annotation>
<annotation cp="đšđŒ">ááášáá áá á«á ášááł ááá | á°á | ááá”</annotation>
<annotation cp="đšđŒ" type="tts">á°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđœ">á°á | ááá” | ášááł áááá”-4</annotation>
<annotation cp="đšđœ" type="tts">á°á: ášááł áááá”-4</annotation>
<annotation cp="đšđŸ">á°á | ááá” | ášááł áááá”-5</annotation>
<annotation cp="đšđŸ" type="tts">á°á: ášááł áááá”-5</annotation>
<annotation cp="đšđż">á°á | ááá” | ášááł áááá”-6</annotation>
<annotation cp="đšđż" type="tts">á°á: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»">ášááł áááá”-1-2 | ášáá” áá ážáá | áșáá | áșáá á°á | áșá</annotation>
<annotation cp="đ§đ»" type="tts">áșáá á°á: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒ">ááášáá áá á«á ášááł ááá | ášáá” áá ážáá | áșáá | áșáá á°á | áșá</annotation>
<annotation cp="đ§đŒ" type="tts">áșáá á°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœ">ášááł áááá”-4 | ášáá” áá ážáá | áșáá | áșáá á°á | áșá</annotation>
<annotation cp="đ§đœ" type="tts">áșáá á°á: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸ">ášááł áááá”-5 | ášáá” áá ážáá | áșáá | áșáá á°á | áșá</annotation>
<annotation cp="đ§đŸ" type="tts">áșáá á°á: ášááł áááá”-5</annotation>
<annotation cp="đ§đż">ášááł áááá”-6 | ášáá” áá ážáá | áșáá | áșáá á°á | áșá</annotation>
<annotation cp="đ§đż" type="tts">áșáá á°á: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»ââ">á°á: áșá | ášááł áááá”-1-2 | áșá</annotation>
<annotation cp="đ§đ»ââ" type="tts">á°á: ášááł áááá”-1-2 á„á áșá</annotation>
<annotation cp="đ§đŒââ">ááášáá áá á«á ášááł ááá | á°á: áșá | áșá</annotation>
<annotation cp="đ§đŒââ" type="tts">á°á: ááášáá áá á«á ášááł ááá á„á áșá</annotation>
<annotation cp="đ§đœââ">á°á: áșá | ášááł áááá”-4 | áșá</annotation>
<annotation cp="đ§đœââ" type="tts">á°á: ášááł áááá”-4 á„á áșá</annotation>
<annotation cp="đ§đŸââ">á°á: áșá | ášááł áááá”-5 | áșá</annotation>
<annotation cp="đ§đŸââ" type="tts">á°á: ášááł áááá”-5 á„á áșá</annotation>
<annotation cp="đ§đżââ">á°á: áșá | ášááł áááá”-6 | áșá</annotation>
<annotation cp="đ§đżââ" type="tts">á°á: ášááł áááá”-6 á„á áșá</annotation>
<annotation cp="đ±đ»ââ">á°á | áááá | áááá ážáá á«áá ááá” | ááá” | ášááł áááá”-1-2</annotation>
<annotation cp="đ±đ»ââ" type="tts">áááá ážáá á«áá ááá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ±đŒââ">ááášáá áá á«á ášááł ááá | á°á | áááá | áááá ážáá á«áá ááá” | ááá”</annotation>
<annotation cp="đ±đŒââ" type="tts">áááá ážáá á«áá ááá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ±đœââ">á°á | áááá | áááá ážáá á«áá ááá” | ááá” | ášááł áááá”-4</annotation>
<annotation cp="đ±đœââ" type="tts">áááá ážáá á«áá ááá”: ášááł áááá”-4</annotation>
<annotation cp="đ±đŸââ">á°á | áááá | áááá ážáá á«áá ááá” | ááá” | ášááł áááá”-5</annotation>
<annotation cp="đ±đŸââ" type="tts">áááá ážáá á«áá ááá”: ášááł áááá”-5</annotation>
<annotation cp="đ±đżââ">á°á | áááá | áááá ážáá á«áá ááá” | ááá” | ášááł áááá”-6</annotation>
<annotation cp="đ±đżââ" type="tts">áááá ážáá á«áá ááá”: ášááł áááá”-6</annotation>
<annotation cp="đšđ»ââ€âđâđšđ»">ááłá | ááłáłá | á°á | ášááł áááá”-1-2 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđ»ââ€âđâđšđ»" type="tts">ááłá: á°áᣠá°á á„á ášááł áááá”-1-2</annotation>
<annotation cp="đšđ»ââ€âđâđšđŒ">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | á°á | ášááł áááá”-1-2 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđ»ââ€âđâđšđŒ" type="tts">ááłá: á°áᣠá°áᣠášááł áááá”-1-2 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđ»ââ€âđâđšđœ">ááłá | ááłáłá | á°á | ášááł áááá”-1-2 | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđ»ââ€âđâđšđœ" type="tts">ááłá: á°áᣠá°áᣠášááł áááá”-1-2 á„á ášááł áááá”-4</annotation>
<annotation cp="đšđ»ââ€âđâđšđŸ">ááłá | ááłáłá | á°á | ášááł áááá”-1-2 | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđ»ââ€âđâđšđŸ" type="tts">ááłá: á°áᣠá°áᣠášááł áááá”-1-2 á„á ášááł áááá”-5</annotation>
<annotation cp="đšđ»ââ€âđâđšđż">ááłá | ááłáłá | á°á | ášááł áááá”-1-2 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđ»ââ€âđâđšđż" type="tts">ááłá: á°áᣠá°áᣠášááł áááá”-1-2 á„á ášááł áááá”-6</annotation>
<annotation cp="đšđŒââ€âđâđšđ»">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | á°á | ášááł áááá”-1-2 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđŒââ€âđâđšđ»" type="tts">ááłá: á°áᣠá°áᣠááášáá áá á«á ášááł ááá á„á ášááł áááá”-1-2</annotation>
<annotation cp="đšđŒââ€âđâđšđŒ">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | á°á | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđŒââ€âđâđšđŒ" type="tts">ááłá: á°áᣠá°á á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđŒââ€âđâđšđœ">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | á°á | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđŒââ€âđâđšđœ" type="tts">ááłá: á°áᣠá°áᣠááášáá áá á«á ášááł ááá á„á ášááł áááá”-4</annotation>
<annotation cp="đšđŒââ€âđâđšđŸ">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | á°á | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđŒââ€âđâđšđŸ" type="tts">ááłá: á°áᣠá°áᣠááášáá áá á«á ášááł ááá á„á ášááł áááá”-5</annotation>
<annotation cp="đšđŒââ€âđâđšđż">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | á°á | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđŒââ€âđâđšđż" type="tts">ááłá: á°áᣠá°áᣠááášáá áá á«á ášááł ááá á„á ášááł áááá”-6</annotation>
<annotation cp="đšđœââ€âđâđšđ»">ááłá | ááłáłá | á°á | ášááł áááá”-1-2 | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđœââ€âđâđšđ»" type="tts">ááłá: á°áᣠá°áᣠášááł áááá”-4 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đšđœââ€âđâđšđŒ">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | á°á | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđœââ€âđâđšđŒ" type="tts">ááłá: á°áᣠá°áᣠášááł áááá”-4 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđœââ€âđâđšđœ">ááłá | ááłáłá | á°á | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđœââ€âđâđšđœ" type="tts">ááłá: á°áᣠá°á á„á ášááł áááá”-4</annotation>
<annotation cp="đšđœââ€âđâđšđŸ">ááłá | ááłáłá | á°á | ášááł áááá”-4 | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđœââ€âđâđšđŸ" type="tts">ááłá: á°áᣠá°áᣠášááł áááá”-4 á„á ášááł áááá”-5</annotation>
<annotation cp="đšđœââ€âđâđšđż">ááłá | ááłáłá | á°á | ášááł áááá”-4 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđœââ€âđâđšđż" type="tts">ááłá: á°áᣠá°áᣠášááł áááá”-4 á„á ášááł áááá”-6</annotation>
<annotation cp="đšđŸââ€âđâđšđ»">ááłá | ááłáłá | á°á | ášááł áááá”-1-2 | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđŸââ€âđâđšđ»" type="tts">ááłá: á°áᣠá°áᣠášááł áááá”-5 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đšđŸââ€âđâđšđŒ">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | á°á | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđŸââ€âđâđšđŒ" type="tts">ááłá: á°áᣠá°áᣠášááł áááá”-5 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđŸââ€âđâđšđœ">ááłá | ááłáłá | á°á | ášááł áááá”-4 | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđŸââ€âđâđšđœ" type="tts">ááłá: á°áᣠá°áᣠášááł áááá”-5 á„á ášááł áááá”-4</annotation>
<annotation cp="đšđŸââ€âđâđšđŸ">ááłá | ááłáłá | á°á | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđŸââ€âđâđšđŸ" type="tts">ááłá: á°áᣠá°á á„á ášááł áááá”-5</annotation>
<annotation cp="đšđŸââ€âđâđšđż">ááłá | ááłáłá | á°á | ášááł áááá”-5 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđŸââ€âđâđšđż" type="tts">ááłá: á°áᣠá°áᣠášááł áááá”-5 á„á ášááł áááá”-6</annotation>
<annotation cp="đšđżââ€âđâđšđ»">ááłá | ááłáłá | á°á | ášááł áááá”-1-2 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđżââ€âđâđšđ»" type="tts">ááłá: á°áᣠá°áᣠášááł áááá”-6 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đšđżââ€âđâđšđŒ">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | á°á | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđżââ€âđâđšđŒ" type="tts">ááłá: á°áᣠá°áᣠášááł áááá”-6 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđżââ€âđâđšđœ">ááłá | ááłáłá | á°á | ášááł áááá”-4 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđżââ€âđâđšđœ" type="tts">ááłá: á°áᣠá°áᣠášááł áááá”-6 á„á ášááł áááá”-4</annotation>
<annotation cp="đšđżââ€âđâđšđŸ">ááłá | ááłáłá | á°á | ášááł áááá”-5 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđżââ€âđâđšđŸ" type="tts">ááłá: á°áᣠá°áᣠášááł áááá”-6 á„á ášááł áááá”-5</annotation>
<annotation cp="đšđżââ€âđâđšđż">ááłá | ááłáłá | á°á | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđżââ€âđâđšđż" type="tts">ááłá: á°áᣠá°á á„á ášááł áááá”-6</annotation>
<annotation cp="đšđ»ââ€âđšđ»">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | ášááł áááá”-1-2 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđ»ââ€âđšđ»" type="tts">áá„ á áááážá á«á á„áá¶áœ: á°áᣠá°á á„á ášááł áááá”-1-2</annotation>
<annotation cp="đšđ»ââ€âđšđŒ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | á°á | ášááł áááá”-1-2 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđ»ââ€âđšđŒ" type="tts">áá„ á áááážá á«á á„áá¶áœ: á°áᣠá°áᣠášááł áááá”-1-2 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđ»ââ€âđšđœ">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | ášááł áááá”-1-2 | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđ»ââ€âđšđœ" type="tts">áá„ á áááážá á«á á„áá¶áœ: á°áᣠá°áᣠášááł áááá”-1-2 á„á ášááł áááá”-4</annotation>
<annotation cp="đšđ»ââ€âđšđŸ">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | ášááł áááá”-1-2 | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđ»ââ€âđšđŸ" type="tts">áá„ á áááážá á«á á„áá¶áœ: á°áᣠá°áᣠášááł áááá”-1-2 á„á ášááł áááá”-5</annotation>
<annotation cp="đšđ»ââ€âđšđż">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | ášááł áááá”-1-2 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđ»ââ€âđšđż" type="tts">áá„ á áááážá á«á á„áá¶áœ: á°áᣠá°áᣠášááł áááá”-1-2 á„á ášááł áááá”-6</annotation>
<annotation cp="đšđŒââ€âđšđ»">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | á°á | ášááł áááá”-1-2 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđŒââ€âđšđ»" type="tts">áá„ á áááážá á«á á„áá¶áœ: á°áᣠá°áᣠááášáá áá á«á ášááł ááá á„á ášááł áááá”-1-2</annotation>
<annotation cp="đšđŒââ€âđšđŒ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | á°á | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđŒââ€âđšđŒ" type="tts">áá„ á áááážá á«á á„áá¶áœ: á°áᣠá°á á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđŒââ€âđšđœ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | á°á | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđŒââ€âđšđœ" type="tts">áá„ á áááážá á«á á„áá¶áœ: á°áᣠá°áᣠááášáá áá á«á ášááł ááá á„á ášááł áááá”-4</annotation>
<annotation cp="đšđŒââ€âđšđŸ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | á°á | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđŒââ€âđšđŸ" type="tts">áá„ á áááážá á«á á„áá¶áœ: á°áᣠá°áᣠááášáá áá á«á ášááł ááá á„á ášááł áááá”-5</annotation>
<annotation cp="đšđŒââ€âđšđż">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | á°á | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđŒââ€âđšđż" type="tts">áá„ á áááážá á«á á„áá¶áœ: á°áᣠá°áᣠááášáá áá á«á ášááł ááá á„á ášááł áááá”-6</annotation>
<annotation cp="đšđœââ€âđšđ»">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | ášááł áááá”-1-2 | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđœââ€âđšđ»" type="tts">áá„ á áááážá á«á á„áá¶áœ: á°áᣠá°áᣠášááł áááá”-4 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đšđœââ€âđšđŒ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | á°á | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđœââ€âđšđŒ" type="tts">áá„ á áááážá á«á á„áá¶áœ: á°áᣠá°áᣠášááł áááá”-4 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđœââ€âđšđœ">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđœââ€âđšđœ" type="tts">áá„ á áááážá á«á á„áá¶áœ: á°áᣠá°á á„á ášááł áááá”-4</annotation>
<annotation cp="đšđœââ€âđšđŸ">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | ášááł áááá”-4 | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđœââ€âđšđŸ" type="tts">áá„ á áááážá á«á á„áá¶áœ: á°áᣠá°áᣠášááł áááá”-4 á„á ášááł áááá”-5</annotation>
<annotation cp="đšđœââ€âđšđż">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | ášááł áááá”-4 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđœââ€âđšđż" type="tts">áá„ á áááážá á«á á„áá¶áœ: á°áᣠá°áᣠášááł áááá”-4 á„á ášááł áááá”-6</annotation>
<annotation cp="đšđŸââ€âđšđ»">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | ášááł áááá”-1-2 | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđŸââ€âđšđ»" type="tts">áá„ á áááážá á«á á„áá¶áœ: á°áᣠá°áᣠášááł áááá”-5 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đšđŸââ€âđšđŒ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | á°á | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđŸââ€âđšđŒ" type="tts">áá„ á áááážá á«á á„áá¶áœ: á°áᣠá°áᣠášááł áááá”-5 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđŸââ€âđšđœ">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | ášááł áááá”-4 | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđŸââ€âđšđœ" type="tts">áá„ á áááážá á«á á„áá¶áœ: á°áᣠá°áᣠášááł áááá”-5 á„á ášááł áááá”-4</annotation>
<annotation cp="đšđŸââ€âđšđŸ">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđŸââ€âđšđŸ" type="tts">áá„ á áááážá á«á á„áá¶áœ: á°áᣠá°á á„á ášááł áááá”-5</annotation>
<annotation cp="đšđŸââ€âđšđż">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | ášááł áááá”-5 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđŸââ€âđšđż" type="tts">áá„ á áááážá á«á á„áá¶áœ: á°áᣠá°áᣠášááł áááá”-5 á„á ášááł áááá”-6</annotation>
<annotation cp="đšđżââ€âđšđ»">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | ášááł áááá”-1-2 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđżââ€âđšđ»" type="tts">áá„ á áááážá á«á á„áá¶áœ: á°áᣠá°áᣠášááł áááá”-6 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đšđżââ€âđšđŒ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | á°á | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđżââ€âđšđŒ" type="tts">áá„ á áááážá á«á á„áá¶áœ: á°áᣠá°áᣠášááł áááá”-6 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđżââ€âđšđœ">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | ášááł áááá”-4 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđżââ€âđšđœ" type="tts">áá„ á áááážá á«á á„áá¶áœ: á°áᣠá°áᣠášááł áááá”-6 á„á ášááł áááá”-4</annotation>
<annotation cp="đšđżââ€âđšđŸ">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | ášááł áááá”-5 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđżââ€âđšđŸ" type="tts">áá„ á áááážá á«á á„áá¶áœ: á°áᣠá°áᣠášááł áááá”-6 á„á ášááł áááá”-5</annotation>
<annotation cp="đšđżââ€âđšđż">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšđżââ€âđšđż" type="tts">áá„ á áááážá á«á á„áá¶áœ: á°áᣠá°á á„á ášááł áááá”-6</annotation>
<annotation cp="đšâđа">á°á | áá ážáá | ááá”</annotation>
<annotation cp="đšâđа" type="tts">á°á: áá ážáá</annotation>
<annotation cp="đšđ»âđа">á°á | áá ážáá | ááá” | ášááł áááá”-1-2</annotation>
<annotation cp="đšđ»âđа" type="tts">á°á: ášááł áááá”-1-2 á„á áá ážáá</annotation>
<annotation cp="đšđŒâđа">ááášáá áá á«á ášááł ááá | á°á | áá ážáá | ááá”</annotation>
<annotation cp="đšđŒâđа" type="tts">á°á: ááášáá áá á«á ášááł ááá á„á áá ážáá</annotation>
<annotation cp="đšđœâđа">á°á | áá ážáá | ááá” | ášááł áááá”-4</annotation>
<annotation cp="đšđœâđа" type="tts">á°á: ášááł áááá”-4 á„á áá ážáá</annotation>
<annotation cp="đšđŸâđа">á°á | áá ážáá | ááá” | ášááł áááá”-5</annotation>
<annotation cp="đšđŸâđа" type="tts">á°á: ášááł áááá”-5 á„á áá ážáá</annotation>
<annotation cp="đšđżâđа">á°á | áá ážáá | ááá” | ášááł áááá”-6</annotation>
<annotation cp="đšđżâđа" type="tts">á°á: ášááł áááá”-6 á„á áá ážáá</annotation>
<annotation cp="đšâđб">á°á | ááá” | ášá°á ááá ážáá</annotation>
<annotation cp="đšâđб" type="tts">á°á: ášá°á ááá ážáá</annotation>
<annotation cp="đšđ»âđб">á°á | ááá” | ášááł áááá”-1-2 | ášá°á ááá ážáá</annotation>
<annotation cp="đšđ»âđб" type="tts">á°á: ášááł áááá”-1-2 á„á ášá°á ááá ážáá</annotation>
<annotation cp="đšđŒâđб">ááášáá áá á«á ášááł ááá | á°á | ááá” | ášá°á ááá ážáá</annotation>
<annotation cp="đšđŒâđб" type="tts">á°á: ááášáá áá á«á ášááł ááá á„á ášá°á ááá ážáá</annotation>
<annotation cp="đšđœâđб">á°á | ááá” | ášááł áááá”-4 | ášá°á ááá ážáá</annotation>
<annotation cp="đšđœâđб" type="tts">á°á: ášááł áááá”-4 á„á ášá°á ááá ážáá</annotation>
<annotation cp="đšđŸâđб">á°á | ááá” | ášááł áááá”-5 | ášá°á ááá ážáá</annotation>
<annotation cp="đšđŸâđб" type="tts">á°á: ášááł áááá”-5 á„á ášá°á ááá ážáá</annotation>
<annotation cp="đšđżâđб">á°á | ááá” | ášááł áááá”-6 | ášá°á ááá ážáá</annotation>
<annotation cp="đšđżâđб" type="tts">á°á: ášááł áááá”-6 á„á ášá°á ááá ážáá</annotation>
<annotation cp="đšâđŠł">á°á | áá ážáá | ááá”</annotation>
<annotation cp="đšâđŠł" type="tts">á°á: áá ážáá</annotation>
<annotation cp="đšđ»âđŠł">á°á | áá ážáá | ááá” | ášááł áááá”-1-2</annotation>
<annotation cp="đšđ»âđŠł" type="tts">á°á: ášááł áááá”-1-2 á„á áá ážáá</annotation>
<annotation cp="đšđŒâđŠł">ááášáá áá á«á ášááł ááá | á°á | áá ážáá | ááá”</annotation>
<annotation cp="đšđŒâđŠł" type="tts">á°á: ááášáá áá á«á ášááł ááá á„á áá ážáá</annotation>
<annotation cp="đšđœâđŠł">á°á | áá ážáá | ááá” | ášááł áááá”-4</annotation>
<annotation cp="đšđœâđŠł" type="tts">á°á: ášááł áááá”-4 á„á áá ážáá</annotation>
<annotation cp="đšđŸâđŠł">á°á | áá ážáá | ááá” | ášááł áááá”-5</annotation>
<annotation cp="đšđŸâđŠł" type="tts">á°á: ášááł áááá”-5 á„á áá ážáá</annotation>
<annotation cp="đšđżâđŠł">á°á | áá ážáá | ááá” | ášááł áááá”-6</annotation>
<annotation cp="đšđżâđŠł" type="tts">á°á: ášááł áááá”-6 á„á áá ážáá</annotation>
<annotation cp="đšâđŠČ">ááᣠ| á°á | ááá”</annotation>
<annotation cp="đšâđŠČ" type="tts">á°á: áááŁ</annotation>
<annotation cp="đšđ»âđŠČ">ááᣠ| á°á | ááá” | ášááł áááá”-1-2</annotation>
<annotation cp="đšđ»âđŠČ" type="tts">á°á: ášááł áááá”-1-2 á„á áááŁ</annotation>
<annotation cp="đšđŒâđŠČ">ááášáá áá á«á ášááł ááá | ááᣠ| á°á | ááá”</annotation>
<annotation cp="đšđŒâđŠČ" type="tts">á°á: ááášáá áá á«á ášááł ááá á„á áááŁ</annotation>
<annotation cp="đšđœâđŠČ">ááᣠ| á°á | ááá” | ášááł áááá”-4</annotation>
<annotation cp="đšđœâđŠČ" type="tts">á°á: ášááł áááá”-4 á„á áááŁ</annotation>
<annotation cp="đšđŸâđŠČ">ááᣠ| á°á | ááá” | ášááł áááá”-5</annotation>
<annotation cp="đšđŸâđŠČ" type="tts">á°á: ášááł áááá”-5 á„á áááŁ</annotation>
<annotation cp="đšđżâđŠČ">ááᣠ| á°á | ááá” | ášááł áááá”-6</annotation>
<annotation cp="đšđżâđŠČ" type="tts">á°á: ášááł áááá”-6 á„á áááŁ</annotation>
<annotation cp="đ©đ»">áŽá” | á„áá€á” | á„áá”á” | áááá ážáá | ášááł áááá”-1-2</annotation>
<annotation cp="đ©đ»" type="tts">áŽá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŒ">ááášáá áá á«á ášááł ááá | áŽá” | á„áá€á” | á„áá”á” | áááá ážáá</annotation>
<annotation cp="đ©đŒ" type="tts">áŽá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đœ">áŽá” | á„áá€á” | á„áá”á” | áááá ážáá | ášááł áááá”-4</annotation>
<annotation cp="đ©đœ" type="tts">áŽá”: ášááł áááá”-4</annotation>
<annotation cp="đ©đŸ">áŽá” | á„áá€á” | á„áá”á” | áááá ážáá | ášááł áááá”-5</annotation>
<annotation cp="đ©đŸ" type="tts">áŽá”: ášááł áááá”-5</annotation>
<annotation cp="đ©đż">áŽá” | á„áá€á” | á„áá”á” | áááá ážáá | ášááł áááá”-6</annotation>
<annotation cp="đ©đż" type="tts">áŽá”: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»ââ">áŽá”: áșá | ášááł áááá”-1-2 | áșá</annotation>
<annotation cp="đ§đ»ââ" type="tts">áŽá”: ášááł áááá”-1-2 á„á áșá</annotation>
<annotation cp="đ§đŒââ">ááášáá áá á«á ášááł ááá | áŽá”: áșá | áșá</annotation>
<annotation cp="đ§đŒââ" type="tts">áŽá”: ááášáá áá á«á ášááł ááá á„á áșá</annotation>
<annotation cp="đ§đœââ">áŽá”: áșá | ášááł áááá”-4 | áșá</annotation>
<annotation cp="đ§đœââ" type="tts">áŽá”: ášááł áááá”-4 á„á áșá</annotation>
<annotation cp="đ§đŸââ">áŽá”: áșá | ášááł áááá”-5 | áșá</annotation>
<annotation cp="đ§đŸââ" type="tts">áŽá”: ášááł áááá”-5 á„á áșá</annotation>
<annotation cp="đ§đżââ">áŽá”: áșá | ášááł áááá”-6 | áșá</annotation>
<annotation cp="đ§đżââ" type="tts">áŽá”: ášááł áááá”-6 á„á áșá</annotation>
<annotation cp="đ±đ»ââ">á°á | áŽá” | áááá | áááá ážáá á«áá” áŽá” | ášááł áááá”-1-2</annotation>
<annotation cp="đ±đ»ââ" type="tts">áááá ážáá á«áá” áŽá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ±đŒââ">ááášáá áá á«á ášááł ááá | á°á | áŽá” | áááá | áááá ážáá á«áá” áŽá”</annotation>
<annotation cp="đ±đŒââ" type="tts">áááá ážáá á«áá” áŽá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ±đœââ">á°á | áŽá” | áááá | áááá ážáá á«áá” áŽá” | ášááł áááá”-4</annotation>
<annotation cp="đ±đœââ" type="tts">áááá ážáá á«áá” áŽá”: ášááł áááá”-4</annotation>
<annotation cp="đ±đŸââ">á°á | áŽá” | áááá | áááá ážáá á«áá” áŽá” | ášááł áááá”-5</annotation>
<annotation cp="đ±đŸââ" type="tts">áááá ážáá á«áá” áŽá”: ášááł áááá”-5</annotation>
<annotation cp="đ±đżââ">á°á | áŽá” | áááá | áááá ážáá á«áá” áŽá” | ášááł áááá”-6</annotation>
<annotation cp="đ±đżââ" type="tts">áááá ážáá á«áá” áŽá”: ášááł áááá”-6</annotation>
<annotation cp="đ©đ»ââ€âđâđšđ»">ááłá | ááłáłá | á°á | áŽá” | ášááł áááá”-1-2 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đ»ââ€âđâđšđ»" type="tts">ááłá: áŽá”ᣠá°á á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ©đ»ââ€âđâđšđŒ">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | á°á | áŽá” | ášááł áááá”-1-2 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đ»ââ€âđâđšđŒ" type="tts">ááłá: áŽá”ᣠá°áᣠášááł áááá”-1-2 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đ»ââ€âđâđšđœ">ááłá | ááłáłá | á°á | áŽá” | ášááł áááá”-1-2 | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đ»ââ€âđâđšđœ" type="tts">ááłá: áŽá”ᣠá°áᣠášááł áááá”-1-2 á„á ášááł áááá”-4</annotation>
<annotation cp="đ©đ»ââ€âđâđšđŸ">ááłá | ááłáłá | á°á | áŽá” | ášááł áááá”-1-2 | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đ»ââ€âđâđšđŸ" type="tts">ááłá: áŽá”ᣠá°áᣠášááł áááá”-1-2 á„á ášááł áááá”-5</annotation>
<annotation cp="đ©đ»ââ€âđâđšđż">ááłá | ááłáłá | á°á | áŽá” | ášááł áááá”-1-2 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đ»ââ€âđâđšđż" type="tts">ááłá: áŽá”ᣠá°áᣠášááł áááá”-1-2 á„á ášááł áááá”-6</annotation>
<annotation cp="đ©đŒââ€âđâđšđ»">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | á°á | áŽá” | ášááł áááá”-1-2 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŒââ€âđâđšđ»" type="tts">ááłá: áŽá”ᣠá°áᣠááášáá áá á«á ášááł ááá á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŒââ€âđâđšđŒ">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | á°á | áŽá” | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŒââ€âđâđšđŒ" type="tts">ááłá: áŽá”ᣠá°á á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đŒââ€âđâđšđœ">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | á°á | áŽá” | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŒââ€âđâđšđœ" type="tts">ááłá: áŽá”ᣠá°áᣠááášáá áá á«á ášááł ááá á„á ášááł áááá”-4</annotation>
<annotation cp="đ©đŒââ€âđâđšđŸ">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | á°á | áŽá” | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŒââ€âđâđšđŸ" type="tts">ááłá: áŽá”ᣠá°áᣠááášáá áá á«á ášááł ááá á„á ášááł áááá”-5</annotation>
<annotation cp="đ©đŒââ€âđâđšđż">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | á°á | áŽá” | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŒââ€âđâđšđż" type="tts">ááłá: áŽá”ᣠá°áᣠááášáá áá á«á ášááł ááá á„á ášááł áááá”-6</annotation>
<annotation cp="đ©đœââ€âđâđšđ»">ááłá | ááłáłá | á°á | áŽá” | ášááł áááá”-1-2 | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đœââ€âđâđšđ»" type="tts">ááłá: áŽá”ᣠá°áᣠášááł áááá”-4 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ©đœââ€âđâđšđŒ">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | á°á | áŽá” | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đœââ€âđâđšđŒ" type="tts">ááłá: áŽá”ᣠá°áᣠášááł áááá”-4 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đœââ€âđâđšđœ">ááłá | ááłáłá | á°á | áŽá” | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đœââ€âđâđšđœ" type="tts">ááłá: áŽá”ᣠá°á á„á ášááł áááá”-4</annotation>
<annotation cp="đ©đœââ€âđâđšđŸ">ááłá | ááłáłá | á°á | áŽá” | ášááł áááá”-4 | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đœââ€âđâđšđŸ" type="tts">ááłá: áŽá”ᣠá°áᣠášááł áááá”-4 á„á ášááł áááá”-5</annotation>
<annotation cp="đ©đœââ€âđâđšđż">ááłá | ááłáłá | á°á | áŽá” | ášááł áááá”-4 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đœââ€âđâđšđż" type="tts">ááłá: áŽá”ᣠá°áᣠášááł áááá”-4 á„á ášááł áááá”-6</annotation>
<annotation cp="đ©đŸââ€âđâđšđ»">ááłá | ááłáłá | á°á | áŽá” | ášááł áááá”-1-2 | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŸââ€âđâđšđ»" type="tts">ááłá: áŽá”ᣠá°áᣠášááł áááá”-5 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŸââ€âđâđšđŒ">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | á°á | áŽá” | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŸââ€âđâđšđŒ" type="tts">ááłá: áŽá”ᣠá°áᣠášááł áááá”-5 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đŸââ€âđâđšđœ">ááłá | ááłáłá | á°á | áŽá” | ášááł áááá”-4 | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŸââ€âđâđšđœ" type="tts">ááłá: áŽá”ᣠá°áᣠášááł áááá”-5 á„á ášááł áááá”-4</annotation>
<annotation cp="đ©đŸââ€âđâđšđŸ">ááłá | ááłáłá | á°á | áŽá” | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŸââ€âđâđšđŸ" type="tts">ááłá: áŽá”ᣠá°á á„á ášááł áááá”-5</annotation>
<annotation cp="đ©đŸââ€âđâđšđż">ááłá | ááłáłá | á°á | áŽá” | ášááł áááá”-5 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŸââ€âđâđšđż" type="tts">ááłá: áŽá”ᣠá°áᣠášááł áááá”-5 á„á ášááł áááá”-6</annotation>
<annotation cp="đ©đżââ€âđâđšđ»">ááłá | ááłáłá | á°á | áŽá” | ášááł áááá”-1-2 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đżââ€âđâđšđ»" type="tts">ááłá: áŽá”ᣠá°áᣠášááł áááá”-6 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ©đżââ€âđâđšđŒ">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | á°á | áŽá” | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đżââ€âđâđšđŒ" type="tts">ááłá: áŽá”ᣠá°áᣠášááł áááá”-6 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đżââ€âđâđšđœ">ááłá | ááłáłá | á°á | áŽá” | ášááł áááá”-4 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đżââ€âđâđšđœ" type="tts">ááłá: áŽá”ᣠá°áᣠášááł áááá”-6 á„á ášááł áááá”-4</annotation>
<annotation cp="đ©đżââ€âđâđšđŸ">ááłá | ááłáłá | á°á | áŽá” | ášááł áááá”-5 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đżââ€âđâđšđŸ" type="tts">ááłá: áŽá”ᣠá°áᣠášááł áááá”-6 á„á ášááł áááá”-5</annotation>
<annotation cp="đ©đżââ€âđâđšđż">ááłá | ááłáłá | á°á | áŽá” | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đżââ€âđâđšđż" type="tts">ááłá: áŽá”ᣠá°á á„á ášááł áááá”-6</annotation>
<annotation cp="đ©đ»ââ€âđâđ©đ»">ááłá | ááłáłá | áŽá” | ášááł áááá”-1-2 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đ»ââ€âđâđ©đ»" type="tts">ááłá: áŽá”ᣠáŽá” á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ©đ»ââ€âđâđ©đŒ">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | áŽá” | ášááł áááá”-1-2 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đ»ââ€âđâđ©đŒ" type="tts">ááłá: áŽá”ᣠáŽá”ᣠášááł áááá”-1-2 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đ»ââ€âđâđ©đœ">ááłá | ááłáłá | áŽá” | ášááł áááá”-1-2 | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đ»ââ€âđâđ©đœ" type="tts">ááłá: áŽá”ᣠáŽá”ᣠášááł áááá”-1-2 á„á ášááł áááá”-4</annotation>
<annotation cp="đ©đ»ââ€âđâđ©đŸ">ááłá | ááłáłá | áŽá” | ášááł áááá”-1-2 | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đ»ââ€âđâđ©đŸ" type="tts">ááłá: áŽá”ᣠáŽá”ᣠášááł áááá”-1-2 á„á ášááł áááá”-5</annotation>
<annotation cp="đ©đ»ââ€âđâđ©đż">ááłá | ááłáłá | áŽá” | ášááł áááá”-1-2 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đ»ââ€âđâđ©đż" type="tts">ááłá: áŽá”ᣠáŽá”ᣠášááł áááá”-1-2 á„á ášááł áááá”-6</annotation>
<annotation cp="đ©đŒââ€âđâđ©đ»">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | áŽá” | ášááł áááá”-1-2 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŒââ€âđâđ©đ»" type="tts">ááłá: áŽá”ᣠáŽá”ᣠááášáá áá á«á ášááł ááá á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŒââ€âđâđ©đŒ">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | áŽá” | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŒââ€âđâđ©đŒ" type="tts">ááłá: áŽá”ᣠáŽá” á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đŒââ€âđâđ©đœ">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | áŽá” | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŒââ€âđâđ©đœ" type="tts">ááłá: áŽá”ᣠáŽá”ᣠááášáá áá á«á ášááł ááá á„á ášááł áááá”-4</annotation>
<annotation cp="đ©đŒââ€âđâđ©đŸ">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | áŽá” | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŒââ€âđâđ©đŸ" type="tts">ááłá: áŽá”ᣠáŽá”ᣠááášáá áá á«á ášááł ááá á„á ášááł áááá”-5</annotation>
<annotation cp="đ©đŒââ€âđâđ©đż">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | áŽá” | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŒââ€âđâđ©đż" type="tts">ááłá: áŽá”ᣠáŽá”ᣠááášáá áá á«á ášááł ááá á„á ášááł áááá”-6</annotation>
<annotation cp="đ©đœââ€âđâđ©đ»">ááłá | ááłáłá | áŽá” | ášááł áááá”-1-2 | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đœââ€âđâđ©đ»" type="tts">ááłá: áŽá”ᣠáŽá”ᣠášááł áááá”-4 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ©đœââ€âđâđ©đŒ">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | áŽá” | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đœââ€âđâđ©đŒ" type="tts">ááłá: áŽá”ᣠáŽá”ᣠášááł áááá”-4 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đœââ€âđâđ©đœ">ááłá | ááłáłá | áŽá” | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đœââ€âđâđ©đœ" type="tts">ááłá: áŽá”ᣠáŽá” á„á ášááł áááá”-4</annotation>
<annotation cp="đ©đœââ€âđâđ©đŸ">ááłá | ááłáłá | áŽá” | ášááł áááá”-4 | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đœââ€âđâđ©đŸ" type="tts">ááłá: áŽá”ᣠáŽá”ᣠášááł áááá”-4 á„á ášááł áááá”-5</annotation>
<annotation cp="đ©đœââ€âđâđ©đż">ááłá | ááłáłá | áŽá” | ášááł áááá”-4 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đœââ€âđâđ©đż" type="tts">ááłá: áŽá”ᣠáŽá”ᣠášááł áááá”-4 á„á ášááł áááá”-6</annotation>
<annotation cp="đ©đŸââ€âđâđ©đ»">ááłá | ááłáłá | áŽá” | ášááł áááá”-1-2 | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŸââ€âđâđ©đ»" type="tts">ááłá: áŽá”ᣠáŽá”ᣠášááł áááá”-5 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŸââ€âđâđ©đŒ">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | áŽá” | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŸââ€âđâđ©đŒ" type="tts">ááłá: áŽá”ᣠáŽá”ᣠášááł áááá”-5 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đŸââ€âđâđ©đœ">ááłá | ááłáłá | áŽá” | ášááł áááá”-4 | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŸââ€âđâđ©đœ" type="tts">ááłá: áŽá”ᣠáŽá”ᣠášááł áááá”-5 á„á ášááł áááá”-4</annotation>
<annotation cp="đ©đŸââ€âđâđ©đŸ">ááłá | ááłáłá | áŽá” | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŸââ€âđâđ©đŸ" type="tts">ááłá: áŽá”ᣠáŽá” á„á ášááł áááá”-5</annotation>
<annotation cp="đ©đŸââ€âđâđ©đż">ááłá | ááłáłá | áŽá” | ášááł áááá”-5 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŸââ€âđâđ©đż" type="tts">ááłá: áŽá”ᣠáŽá”ᣠášááł áááá”-5 á„á ášááł áááá”-6</annotation>
<annotation cp="đ©đżââ€âđâđ©đ»">ááłá | ááłáłá | áŽá” | ášááł áááá”-1-2 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đżââ€âđâđ©đ»" type="tts">ááłá: áŽá”ᣠáŽá”ᣠášááł áááá”-6 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ©đżââ€âđâđ©đŒ">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | áŽá” | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đżââ€âđâđ©đŒ" type="tts">ááłá: áŽá”ᣠáŽá”ᣠášááł áááá”-6 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đżââ€âđâđ©đœ">ááłá | ááłáłá | áŽá” | ášááł áááá”-4 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đżââ€âđâđ©đœ" type="tts">ááłá: áŽá”ᣠáŽá”ᣠášááł áááá”-6 á„á ášááł áááá”-4</annotation>
<annotation cp="đ©đżââ€âđâđ©đŸ">ááłá | ááłáłá | áŽá” | ášááł áááá”-5 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đżââ€âđâđ©đŸ" type="tts">ááłá: áŽá”ᣠáŽá”ᣠášááł áááá”-6 á„á ášááł áááá”-5</annotation>
<annotation cp="đ©đżââ€âđâđ©đż">ááłá | ááłáłá | áŽá” | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đżââ€âđâđ©đż" type="tts">ááłá: áŽá”ᣠáŽá” á„á ášááł áááá”-6</annotation>
<annotation cp="đ©đ»ââ€âđšđ»">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | áŽá” | ášááł áááá”-1-2 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đ»ââ€âđšđ»" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠá°á á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ©đ»ââ€âđšđŒ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | á°á | áŽá” | ášááł áááá”-1-2 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đ»ââ€âđšđŒ" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠá°áᣠášááł áááá”-1-2 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đ»ââ€âđšđœ">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | áŽá” | ášááł áááá”-1-2 | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đ»ââ€âđšđœ" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠá°áᣠášááł áááá”-1-2 á„á ášááł áááá”-4</annotation>
<annotation cp="đ©đ»ââ€âđšđŸ">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | áŽá” | ášááł áááá”-1-2 | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đ»ââ€âđšđŸ" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠá°áᣠášááł áááá”-1-2 á„á ášááł áááá”-5</annotation>
<annotation cp="đ©đ»ââ€âđšđż">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | áŽá” | ášááł áááá”-1-2 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đ»ââ€âđšđż" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠá°áᣠášááł áááá”-1-2 á„á ášááł áááá”-6</annotation>
<annotation cp="đ©đŒââ€âđšđ»">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | á°á | áŽá” | ášááł áááá”-1-2 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŒââ€âđšđ»" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠá°áᣠááášáá áá á«á ášááł ááá á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŒââ€âđšđŒ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | á°á | áŽá” | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŒââ€âđšđŒ" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠá°á á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đŒââ€âđšđœ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | á°á | áŽá” | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŒââ€âđšđœ" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠá°áᣠááášáá áá á«á ášááł ááá á„á ášááł áááá”-4</annotation>
<annotation cp="đ©đŒââ€âđšđŸ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | á°á | áŽá” | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŒââ€âđšđŸ" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠá°áᣠááášáá áá á«á ášááł ááá á„á ášááł áááá”-5</annotation>
<annotation cp="đ©đŒââ€âđšđż">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | á°á | áŽá” | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŒââ€âđšđż" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠá°áᣠááášáá áá á«á ášááł ááá á„á ášááł áááá”-6</annotation>
<annotation cp="đ©đœââ€âđšđ»">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | áŽá” | ášááł áááá”-1-2 | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đœââ€âđšđ»" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠá°áᣠášááł áááá”-4 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ©đœââ€âđšđŒ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | á°á | áŽá” | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đœââ€âđšđŒ" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠá°áᣠášááł áááá”-4 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đœââ€âđšđœ">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | áŽá” | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đœââ€âđšđœ" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠá°á á„á ášááł áááá”-4</annotation>
<annotation cp="đ©đœââ€âđšđŸ">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | áŽá” | ášááł áááá”-4 | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đœââ€âđšđŸ" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠá°áᣠášááł áááá”-4 á„á ášááł áááá”-5</annotation>
<annotation cp="đ©đœââ€âđšđż">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | áŽá” | ášááł áááá”-4 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đœââ€âđšđż" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠá°áᣠášááł áááá”-4 á„á ášááł áááá”-6</annotation>
<annotation cp="đ©đŸââ€âđšđ»">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | áŽá” | ášááł áááá”-1-2 | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŸââ€âđšđ»" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠá°áᣠášááł áááá”-5 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŸââ€âđšđŒ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | á°á | áŽá” | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŸââ€âđšđŒ" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠá°áᣠášááł áááá”-5 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đŸââ€âđšđœ">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | áŽá” | ášááł áááá”-4 | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŸââ€âđšđœ" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠá°áᣠášááł áááá”-5 á„á ášááł áááá”-4</annotation>
<annotation cp="đ©đŸââ€âđšđŸ">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | áŽá” | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŸââ€âđšđŸ" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠá°á á„á ášááł áááá”-5</annotation>
<annotation cp="đ©đŸââ€âđšđż">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | áŽá” | ášááł áááá”-5 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŸââ€âđšđż" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠá°áᣠášááł áááá”-5 á„á ášááł áááá”-6</annotation>
<annotation cp="đ©đżââ€âđšđ»">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | áŽá” | ášááł áááá”-1-2 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đżââ€âđšđ»" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠá°áᣠášááł áááá”-6 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ©đżââ€âđšđŒ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | á°á | áŽá” | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đżââ€âđšđŒ" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠá°áᣠášááł áááá”-6 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đżââ€âđšđœ">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | áŽá” | ášááł áááá”-4 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đżââ€âđšđœ" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠá°áᣠášááł áááá”-6 á„á ášááł áááá”-4</annotation>
<annotation cp="đ©đżââ€âđšđŸ">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | áŽá” | ášááł áááá”-5 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đżââ€âđšđŸ" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠá°áᣠášááł áááá”-6 á„á ášááł áááá”-5</annotation>
<annotation cp="đ©đżââ€âđšđż">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | áŽá” | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đżââ€âđšđż" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠá°á á„á ášááł áááá”-6</annotation>
<annotation cp="đ©đ»ââ€âđ©đ»">áá„ | áá„ á áááážá á«á á„áá¶áœ | áŽá” | ášááł áááá”-1-2 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đ»ââ€âđ©đ»" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠáŽá” á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ©đ»ââ€âđ©đŒ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | áŽá” | ášááł áááá”-1-2 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đ»ââ€âđ©đŒ" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠáŽá”ᣠášááł áááá”-1-2 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đ»ââ€âđ©đœ">áá„ | áá„ á áááážá á«á á„áá¶áœ | áŽá” | ášááł áááá”-1-2 | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đ»ââ€âđ©đœ" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠáŽá”ᣠášááł áááá”-1-2 á„á ášááł áááá”-4</annotation>
<annotation cp="đ©đ»ââ€âđ©đŸ">áá„ | áá„ á áááážá á«á á„áá¶áœ | áŽá” | ášááł áááá”-1-2 | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đ»ââ€âđ©đŸ" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠáŽá”ᣠášááł áááá”-1-2 á„á ášááł áááá”-5</annotation>
<annotation cp="đ©đ»ââ€âđ©đż">áá„ | áá„ á áááážá á«á á„áá¶áœ | áŽá” | ášááł áááá”-1-2 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đ»ââ€âđ©đż" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠáŽá”ᣠášááł áááá”-1-2 á„á ášááł áááá”-6</annotation>
<annotation cp="đ©đŒââ€âđ©đ»">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | áŽá” | ášááł áááá”-1-2 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŒââ€âđ©đ»" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠáŽá”ᣠááášáá áá á«á ášááł ááá á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŒââ€âđ©đŒ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | áŽá” | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŒââ€âđ©đŒ" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠáŽá” á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đŒââ€âđ©đœ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | áŽá” | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŒââ€âđ©đœ" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠáŽá”ᣠááášáá áá á«á ášááł ááá á„á ášááł áááá”-4</annotation>
<annotation cp="đ©đŒââ€âđ©đŸ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | áŽá” | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŒââ€âđ©đŸ" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠáŽá”ᣠááášáá áá á«á ášááł ááá á„á ášááł áááá”-5</annotation>
<annotation cp="đ©đŒââ€âđ©đż">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | áŽá” | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŒââ€âđ©đż" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠáŽá”ᣠááášáá áá á«á ášááł ááá á„á ášááł áááá”-6</annotation>
<annotation cp="đ©đœââ€âđ©đ»">áá„ | áá„ á áááážá á«á á„áá¶áœ | áŽá” | ášááł áááá”-1-2 | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đœââ€âđ©đ»" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠáŽá”ᣠášááł áááá”-4 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ©đœââ€âđ©đŒ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | áŽá” | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đœââ€âđ©đŒ" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠáŽá”ᣠášááł áááá”-4 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đœââ€âđ©đœ">áá„ | áá„ á áááážá á«á á„áá¶áœ | áŽá” | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đœââ€âđ©đœ" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠáŽá” á„á ášááł áááá”-4</annotation>
<annotation cp="đ©đœââ€âđ©đŸ">áá„ | áá„ á áááážá á«á á„áá¶áœ | áŽá” | ášááł áááá”-4 | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đœââ€âđ©đŸ" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠáŽá”ᣠášááł áááá”-4 á„á ášááł áááá”-5</annotation>
<annotation cp="đ©đœââ€âđ©đż">áá„ | áá„ á áááážá á«á á„áá¶áœ | áŽá” | ášááł áááá”-4 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đœââ€âđ©đż" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠáŽá”ᣠášááł áááá”-4 á„á ášááł áááá”-6</annotation>
<annotation cp="đ©đŸââ€âđ©đ»">áá„ | áá„ á áááážá á«á á„áá¶áœ | áŽá” | ášááł áááá”-1-2 | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŸââ€âđ©đ»" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠáŽá”ᣠášááł áááá”-5 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŸââ€âđ©đŒ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | áŽá” | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŸââ€âđ©đŒ" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠáŽá”ᣠášááł áááá”-5 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đŸââ€âđ©đœ">áá„ | áá„ á áááážá á«á á„áá¶áœ | áŽá” | ášááł áááá”-4 | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŸââ€âđ©đœ" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠáŽá”ᣠášááł áááá”-5 á„á ášááł áááá”-4</annotation>
<annotation cp="đ©đŸââ€âđ©đŸ">áá„ | áá„ á áááážá á«á á„áá¶áœ | áŽá” | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŸââ€âđ©đŸ" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠáŽá” á„á ášááł áááá”-5</annotation>
<annotation cp="đ©đŸââ€âđ©đż">áá„ | áá„ á áááážá á«á á„áá¶áœ | áŽá” | ášááł áááá”-5 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đŸââ€âđ©đż" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠáŽá”ᣠášááł áááá”-5 á„á ášááł áááá”-6</annotation>
<annotation cp="đ©đżââ€âđ©đ»">áá„ | áá„ á áááážá á«á á„áá¶áœ | áŽá” | ášááł áááá”-1-2 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đżââ€âđ©đ»" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠáŽá”ᣠášááł áááá”-6 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ©đżââ€âđ©đŒ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | áŽá” | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đżââ€âđ©đŒ" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠáŽá”ᣠášááł áááá”-6 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đżââ€âđ©đœ">áá„ | áá„ á áááážá á«á á„áá¶áœ | áŽá” | ášááł áááá”-4 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đżââ€âđ©đœ" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠáŽá”ᣠášááł áááá”-6 á„á ášááł áááá”-4</annotation>
<annotation cp="đ©đżââ€âđ©đŸ">áá„ | áá„ á áááážá á«á á„áá¶áœ | áŽá” | ášááł áááá”-5 | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đżââ€âđ©đŸ" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠáŽá”ᣠášááł áááá”-6 á„á ášááł áááá”-5</annotation>
<annotation cp="đ©đżââ€âđ©đż">áá„ | áá„ á áááážá á«á á„áá¶áœ | áŽá” | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©đżââ€âđ©đż" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá”ᣠáŽá” á„á ášááł áááá”-6</annotation>
<annotation cp="đ©âđа">áŽá” | áá ážáá | á„áá€á” | á„áá”á” | áááá ážáá</annotation>
<annotation cp="đ©âđа" type="tts">áŽá”: áá ážáá</annotation>
<annotation cp="đ©đ»âđа">áŽá” | áá ážáá | á„áá€á” | á„áá”á” | áááá ážáá | ášááł áááá”-1-2</annotation>
<annotation cp="đ©đ»âđа" type="tts">áŽá”: ášááł áááá”-1-2 á„á áá ážáá</annotation>
<annotation cp="đ©đŒâđа">ááášáá áá á«á ášááł ááá | áŽá” | áá ážáá | á„áá€á” | á„áá”á” | áááá ážáá</annotation>
<annotation cp="đ©đŒâđа" type="tts">áŽá”: ááášáá áá á«á ášááł ááá á„á áá ážáá</annotation>
<annotation cp="đ©đœâđа">áŽá” | áá ážáá | á„áá€á” | á„áá”á” | áááá ážáá | ášááł áááá”-4</annotation>
<annotation cp="đ©đœâđа" type="tts">áŽá”: ášááł áááá”-4 á„á áá ážáá</annotation>
<annotation cp="đ©đŸâđа">áŽá” | áá ážáá | á„áá€á” | á„áá”á” | áááá ážáá | ášááł áááá”-5</annotation>
<annotation cp="đ©đŸâđа" type="tts">áŽá”: ášááł áááá”-5 á„á áá ážáá</annotation>
<annotation cp="đ©đżâđа">áŽá” | áá ážáá | á„áá€á” | á„áá”á” | áááá ážáá | ášááł áááá”-6</annotation>
<annotation cp="đ©đżâđа" type="tts">áŽá”: ášááł áááá”-6 á„á áá ážáá</annotation>
<annotation cp="đ©âđб">áŽá” | á„áá€á” | á„áá”á” | áááá ážáá | ášá°á ááá ážáá</annotation>
<annotation cp="đ©âđб" type="tts">áŽá”: ášá°á ááá ážáá</annotation>
<annotation cp="đ©đ»âđб">áŽá” | á„áá€á” | á„áá”á” | áááá ážáá | ášááł áááá”-1-2 | ášá°á ááá ážáá</annotation>
<annotation cp="đ©đ»âđб" type="tts">áŽá”: ášááł áááá”-1-2 á„á ášá°á ááá ážáá</annotation>
<annotation cp="đ©đŒâđб">ááášáá áá á«á ášááł ááá | áŽá” | á„áá€á” | á„áá”á” | áááá ážáá | ášá°á ááá ážáá</annotation>
<annotation cp="đ©đŒâđб" type="tts">áŽá”: ááášáá áá á«á ášááł ááá á„á ášá°á ááá ážáá</annotation>
<annotation cp="đ©đœâđб">áŽá” | á„áá€á” | á„áá”á” | áááá ážáá | ášááł áááá”-4 | ášá°á ááá ážáá</annotation>
<annotation cp="đ©đœâđб" type="tts">áŽá”: ášááł áááá”-4 á„á ášá°á ááá ážáá</annotation>
<annotation cp="đ©đŸâđб">áŽá” | á„áá€á” | á„áá”á” | áááá ážáá | ášááł áááá”-5 | ášá°á ááá ážáá</annotation>
<annotation cp="đ©đŸâđб" type="tts">áŽá”: ášááł áááá”-5 á„á ášá°á ááá ážáá</annotation>
<annotation cp="đ©đżâđб">áŽá” | á„áá€á” | á„áá”á” | áááá ážáá | ášááł áááá”-6 | ášá°á ááá ážáá</annotation>
<annotation cp="đ©đżâđб" type="tts">áŽá”: ášááł áááá”-6 á„á ášá°á ááá ážáá</annotation>
<annotation cp="đ©âđŠł">áŽá” | áá ážáá | á„áá€á” | á„áá”á” | áááá ážáá</annotation>
<annotation cp="đ©âđŠł" type="tts">áŽá”: áá ážáá</annotation>
<annotation cp="đ©đ»âđŠł">áŽá” | áá ážáá | á„áá€á” | á„áá”á” | áááá ážáá | ášááł áááá”-1-2</annotation>
<annotation cp="đ©đ»âđŠł" type="tts">áŽá”: ášááł áááá”-1-2 á„á áá ážáá</annotation>
<annotation cp="đ©đŒâđŠł">ááášáá áá á«á ášááł ááá | áŽá” | áá ážáá | á„áá€á” | á„áá”á” | áááá ážáá</annotation>
<annotation cp="đ©đŒâđŠł" type="tts">áŽá”: ááášáá áá á«á ášááł ááá á„á áá ážáá</annotation>
<annotation cp="đ©đœâđŠł">áŽá” | áá ážáá | á„áá€á” | á„áá”á” | áááá ážáá | ášááł áááá”-4</annotation>
<annotation cp="đ©đœâđŠł" type="tts">áŽá”: ášááł áááá”-4 á„á áá ážáá</annotation>
<annotation cp="đ©đŸâđŠł">áŽá” | áá ážáá | á„áá€á” | á„áá”á” | áááá ážáá | ášááł áááá”-5</annotation>
<annotation cp="đ©đŸâđŠł" type="tts">áŽá”: ášááł áááá”-5 á„á áá ážáá</annotation>
<annotation cp="đ©đżâđŠł">áŽá” | áá ážáá | á„áá€á” | á„áá”á” | áááá ážáá | ášááł áááá”-6</annotation>
<annotation cp="đ©đżâđŠł" type="tts">áŽá”: ášááł áááá”-6 á„á áá ážáá</annotation>
<annotation cp="đ©âđŠČ">ááᣠ| áŽá” | á„áá€á” | á„áá”á” | áááá ážáá</annotation>
<annotation cp="đ©âđŠČ" type="tts">áŽá”: áááŁ</annotation>
<annotation cp="đ©đ»âđŠČ">ááᣠ| áŽá” | á„áá€á” | á„áá”á” | áááá ážáá | ášááł áááá”-1-2</annotation>
<annotation cp="đ©đ»âđŠČ" type="tts">áŽá”: ášááł áááá”-1-2 á„á áááŁ</annotation>
<annotation cp="đ©đŒâđŠČ">ááášáá áá á«á ášááł ááá | ááᣠ| áŽá” | á„áá€á” | á„áá”á” | áááá ážáá</annotation>
<annotation cp="đ©đŒâđŠČ" type="tts">áŽá”: ááášáá áá á«á ášááł ááá á„á áááŁ</annotation>
<annotation cp="đ©đœâđŠČ">ááᣠ| áŽá” | á„áá€á” | á„áá”á” | áááá ážáá | ášááł áááá”-4</annotation>
<annotation cp="đ©đœâđŠČ" type="tts">áŽá”: ášááł áááá”-4 á„á áááŁ</annotation>
<annotation cp="đ©đŸâđŠČ">ááᣠ| áŽá” | á„áá€á” | á„áá”á” | áááá ážáá | ášááł áááá”-5</annotation>
<annotation cp="đ©đŸâđŠČ" type="tts">áŽá”: ášááł áááá”-5 á„á áááŁ</annotation>
<annotation cp="đ©đżâđŠČ">ááᣠ| áŽá” | á„áá€á” | á„áá”á” | áááá ážáá | ášááł áááá”-6</annotation>
<annotation cp="đ©đżâđŠČ" type="tts">áŽá”: ášááł áááá”-6 á„á áááŁ</annotation>
<annotation cp="đ§đ»">á°á | áœááá | ášááł áááá”-1-2 | á«ášá ááááł | áŸáł-ášáááá</annotation>
<annotation cp="đ§đ»" type="tts">á«ášá ááááł: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒ">ááášáá áá á«á ášááł ááá | á°á | áœááá | á«ášá ááááł | áŸáł-ášáááá</annotation>
<annotation cp="đ§đŒ" type="tts">á«ášá ááááł: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœ">á°á | áœááá | ášááł áááá”-4 | á«ášá ááááł | áŸáł-ášáááá</annotation>
<annotation cp="đ§đœ" type="tts">á«ášá ááááł: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸ">á°á | áœááá | ášááł áááá”-5 | á«ášá ááááł | áŸáł-ášáááá</annotation>
<annotation cp="đ§đŸ" type="tts">á«ášá ááááł: ášááł áááá”-5</annotation>
<annotation cp="đ§đż">á°á | áœááá | ášááł áááá”-6 | á«ášá ááááł | áŸáł-ášáááá</annotation>
<annotation cp="đ§đż" type="tts">á«ášá ááááł: ášááł áááá”-6</annotation>
<annotation cp="đŽđ»">áááá„ | á«á° á á« | áœááá | á á”á°áá | á á«á” | ááá” | ášááł áááá”-1-2</annotation>
<annotation cp="đŽđ»" type="tts">áœááá: ášááł áááá”-1-2</annotation>
<annotation cp="đŽđŒ">ááášáá áá á«á ášááł ááá | áááá„ | á«á° á á« | áœááá | á á”á°áá | á á«á” | ááá”</annotation>
<annotation cp="đŽđŒ" type="tts">áœááá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đŽđœ">áááá„ | á«á° á á« | áœááá | á á”á°áá | á á«á” | ááá” | ášááł áááá”-4</annotation>
<annotation cp="đŽđœ" type="tts">áœááá: ášááł áááá”-4</annotation>
<annotation cp="đŽđŸ">áááá„ | á«á° á á« | áœááá | á á”á°áá | á á«á” | ááá” | ášááł áááá”-5</annotation>
<annotation cp="đŽđŸ" type="tts">áœááá: ášááł áááá”-5</annotation>
<annotation cp="đŽđż">áááá„ | á«á° á á« | áœááá | á á”á°áá | á á«á” | ááá” | ášááł áááá”-6</annotation>
<annotation cp="đŽđż" type="tts">áœááá: ášááł áááá”-6</annotation>
<annotation cp="đ”đ»">áŽá” | áœááá | á áźáá” | á á”á°áá | á á«á” | áááá ážáá | ášááł áááá”-1-2 | ášá°á ááž ášážáá ááá„</annotation>
<annotation cp="đ”đ»" type="tts">á áźáá” áŽá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ”đŒ">ááášáá áá á«á ášááł ááá | áŽá” | áœááá | á áźáá” | á á”á°áá | á á«á” | áááá ážáá | ášá°á ááž ášážáá ááá„</annotation>
<annotation cp="đ”đŒ" type="tts">á áźáá” áŽá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ”đœ">áŽá” | áœááá | á áźáá” | á á”á°áá | á á«á” | áááá ážáá | ášááł áááá”-4 | ášá°á ááž ášážáá ááá„</annotation>
<annotation cp="đ”đœ" type="tts">á áźáá” áŽá”: ášááł áááá”-4</annotation>
<annotation cp="đ”đŸ">áŽá” | áœááá | á áźáá” | á á”á°áá | á á«á” | áááá ážáá | ášááł áááá”-5 | ášá°á ááž ášážáá ááá„</annotation>
<annotation cp="đ”đŸ" type="tts">á áźáá” áŽá”: ášááł áááá”-5</annotation>
<annotation cp="đ”đż">áŽá” | áœááá | á áźáá” | á á”á°áá | á á«á” | áááá ážáá | ášááł áááá”-6 | ášá°á ááž ášážáá ááá„</annotation>
<annotation cp="đ”đż" type="tts">á áźáá” áŽá”: ášááł áááá”-6</annotation>
<annotation cp="đđ»">á°á”á ášáášá ᜠ| ášááł áááá”-1-2 | ášá°ášá ážáœ | ášá°á áłášáœ | ášá°áźáłá°áš | ášá°áźáłá°áš á°á | ášá°áźáłá°ášáœ áŽá” | ášá„á
áááá” | á«áźášáᜠáŽá”</annotation>
<annotation cp="đđ»" type="tts">ášá°áźáłá°áš á°á: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááášáá áá á«á ášááł ááá | á°á”á ášáášá ᜠ| ášá°ášá ážáœ | ášá°á áłášáœ | ášá°áźáłá°áš | ášá°áźáłá°áš á°á | ášá°áźáłá°ášáœ áŽá” | ášá„á
áááá” | á«áźášáᜠáŽá”</annotation>
<annotation cp="đđŒ" type="tts">ášá°áźáłá°áš á°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">á°á”á ášáášá ᜠ| ášááł áááá”-4 | ášá°ášá ážáœ | ášá°á áłášáœ | ášá°áźáłá°áš | ášá°áźáłá°áš á°á | ášá°áźáłá°ášáœ áŽá” | ášá„á
áááá” | á«áźášáᜠáŽá”</annotation>
<annotation cp="đđœ" type="tts">ášá°áźáłá°áš á°á: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">á°á”á ášáášá ᜠ| ášááł áááá”-5 | ášá°ášá ážáœ | ášá°á áłášáœ | ášá°áźáłá°áš | ášá°áźáłá°áš á°á | ášá°áźáłá°ášáœ áŽá” | ášá„á
áááá” | á«áźášáᜠáŽá”</annotation>
<annotation cp="đđŸ" type="tts">ášá°áźáłá°áš á°á: ášááł áááá”-5</annotation>
<annotation cp="đđż">á°á”á ášáášá ᜠ| ášááł áááá”-6 | ášá°ášá ážáœ | ášá°á áłášáœ | ášá°áźáłá°áš | ášá°áźáłá°áš á°á | ášá°áźáłá°ášáœ áŽá” | ášá„á
áááá” | á«áźášáᜠáŽá”</annotation>
<annotation cp="đđż" type="tts">ášá°áźáłá°áš á°á: ášááł áááá”-6</annotation>
<annotation cp="đđ»ââ">ááá” | ááá” á°áźáłá”áź | ášááł áááá”-1-2 | ášá°á áłáš | ášá°áźáłá°áš | ášá„á
áááá”</annotation>
<annotation cp="đđ»ââ" type="tts">ááá” á°áźáłá”áź: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒââ">ááášáá áá á«á ášááł ááá | ááá” | ááá” á°áźáłá”áź | ášá°á áłáš | ášá°áźáłá°áš | ášá„á
áááá”</annotation>
<annotation cp="đđŒââ" type="tts">ááá” á°áźáłá”áź: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœââ">ááá” | ááá” á°áźáłá”áź | ášááł áááá”-4 | ášá°á áłáš | ášá°áźáłá°áš | ášá„á
áááá”</annotation>
<annotation cp="đđœââ" type="tts">ááá” á°áźáłá”áź: ášááł áááá”-4</annotation>
<annotation cp="đđŸââ">ááá” | ááá” á°áźáłá”áź | ášááł áááá”-5 | ášá°á áłáš | ášá°áźáłá°áš | ášá„á
áááá”</annotation>
<annotation cp="đđŸââ" type="tts">ááá” á°áźáłá”áź: ášááł áááá”-5</annotation>
<annotation cp="đđżââ">ááá” | ááá” á°áźáłá”áź | ášááł áááá”-6 | ášá°á áłáš | ášá°áźáłá°áš | ášá„á
áááá”</annotation>
<annotation cp="đđżââ" type="tts">ááá” á°áźáłá”áź: ášááł áááá”-6</annotation>
<annotation cp="đđ»ââ">áŽá” á°áźáłá”á« | ááá” | ášááł áááá”-1-2 | ášá°áźáłá°áš | ášá„á
áááá”</annotation>
<annotation cp="đđ»ââ" type="tts">áŽá” á°áźáłá”á«: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒââ">ááášáá áá á«á ášááł ááá | áŽá” á°áźáłá”á« | ááá” | ášá°áźáłá°áš | ášá„á
áááá”</annotation>
<annotation cp="đđŒââ" type="tts">áŽá” á°áźáłá”á«: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœââ">áŽá” á°áźáłá”á« | ááá” | ášááł áááá”-4 | ášá°áźáłá°áš | ášá„á
áááá”</annotation>
<annotation cp="đđœââ" type="tts">áŽá” á°áźáłá”á«: ášááł áááá”-4</annotation>
<annotation cp="đđŸââ">áŽá” á°áźáłá”á« | ááá” | ášááł áááá”-5 | ášá°áźáłá°áš | ášá„á
áááá”</annotation>
<annotation cp="đđŸââ" type="tts">áŽá” á°áźáłá”á«: ášááł áááá”-5</annotation>
<annotation cp="đđżââ">áŽá” á°áźáłá”á« | ááá” | ášááł áááá”-6 | ášá°áźáłá°áš | ášá„á
áááá”</annotation>
<annotation cp="đđżââ" type="tts">áŽá” á°áźáłá”á«: ášááł áááá”-6</annotation>
<annotation cp="đđ»">áááłá á«ááŁáá á°á | áááŠá ááŁá | áá áłášá” | ááá«áá | ááá°á” | áá©ášá | áŽá” | ááá© á«ááŁáá” áŽá” | ááČá„ ášá áá” | ášááł áááá”-1-2 | ášá„á
áááá” | ášáá” áááá” | á«áá°áážá áá” | á«áá°áá»á” | á«ááŁáá áá” | áá”</annotation>
<annotation cp="đđ»" type="tts">áááłá á«ááŁáá á°á: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">áááłá á«ááŁáá á°á | áááŠá ááŁá | ááášáá áá á«á ášááł ááá | áá áłášá” | ááá«áá | ááá°á” | áá©ášá | áŽá” | ááá© á«ááŁáá” áŽá” | ááČá„ ášá áá” | ášá„á
áááá” | ášáá” áááá” | á«áá°áážá áá” | á«áá°áá»á” | á«ááŁáá áá” | áá”</annotation>
<annotation cp="đđŒ" type="tts">áááłá á«ááŁáá á°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">áááłá á«ááŁáá á°á | áááŠá ááŁá | áá áłášá” | ááá«áá | ááá°á” | áá©ášá | áŽá” | ááá© á«ááŁáá” áŽá” | ááČá„ ášá áá” | ášááł áááá”-4 | ášá„á
áááá” | ášáá” áááá” | á«áá°áážá áá” | á«áá°áá»á” | á«ááŁáá áá” | áá”</annotation>
<annotation cp="đđœ" type="tts">áááłá á«ááŁáá á°á: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">áááłá á«ááŁáá á°á | áááŠá ááŁá | áá áłášá” | ááá«áá | ááá°á” | áá©ášá | áŽá” | ááá© á«ááŁáá” áŽá” | ááČá„ ášá áá” | ášááł áááá”-5 | ášá„á
áááá” | ášáá” áááá” | á«áá°áážá áá” | á«áá°áá»á” | á«ááŁáá áá” | áá”</annotation>
<annotation cp="đđŸ" type="tts">áááłá á«ááŁáá á°á: ášááł áááá”-5</annotation>
<annotation cp="đđż">áááłá á«ááŁáá á°á | áááŠá ááŁá | áá áłášá” | ááá«áá | ááá°á” | áá©ášá | áŽá” | ááá© á«ááŁáá” áŽá” | ááČá„ ášá áá” | ášááł áááá”-6 | ášá„á
áááá” | ášáá” áááá” | á«áá°áážá áá” | á«áá°áá»á” | á«ááŁáá áá” | áá”</annotation>
<annotation cp="đđż" type="tts">áááłá á«ááŁáá á°á: ášááł áááá”-6</annotation>
<annotation cp="đđ»ââ">áááŠá©á ášáŁá ááá” | áááŠá ááŁá | ááááá | áá©ášá | ááá” | ášááł áááá”-1-2 | ášá„á
áááá”</annotation>
<annotation cp="đđ»ââ" type="tts">ááá” ááááá: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒââ">áááŠá©á ášáŁá ááá” | áááŠá ááŁá | ááášáá áá á«á ášááł ááá | ááááá | áá©ášá | ááá” | ášá„á
áááá”</annotation>
<annotation cp="đđŒââ" type="tts">ááá” ááááá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœââ">áááŠá©á ášáŁá ááá” | áááŠá ááŁá | ááááá | áá©ášá | ááá” | ášááł áááá”-4 | ášá„á
áááá”</annotation>
<annotation cp="đđœââ" type="tts">ááá” ááááá: ášááł áááá”-4</annotation>
<annotation cp="đđŸââ">áááŠá©á ášáŁá ááá” | áááŠá ááŁá | ááááá | áá©ášá | ááá” | ášááł áááá”-5 | ášá„á
áááá”</annotation>
<annotation cp="đđŸââ" type="tts">ááá” ááááá: ášááł áááá”-5</annotation>
<annotation cp="đđżââ">áááŠá©á ášáŁá ááá” | áááŠá ááŁá | ááááá | áá©ášá | ááá” | ášááł áááá”-6 | ášá„á
áááá”</annotation>
<annotation cp="đđżââ" type="tts">ááá” ááááá: ášááł áááá”-6</annotation>
<annotation cp="đđ»ââ">ááááá | áŽá” | ášááł áááá”-1-2 | ášá„á
áááá”</annotation>
<annotation cp="đđ»ââ" type="tts">áŽá” ááááá: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒââ">ááášáá áá á«á ášááł ááá | ááááá | áŽá” | ášá„á
áááá”</annotation>
<annotation cp="đđŒââ" type="tts">áŽá” ááááá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœââ">ááááá | áŽá” | ášááł áááá”-4 | ášá„á
áááá”</annotation>
<annotation cp="đđœââ" type="tts">áŽá” ááááá: ášááł áááá”-4</annotation>
<annotation cp="đđŸââ">ááááá | áŽá” | ášááł áááá”-5 | ášá„á
áááá”</annotation>
<annotation cp="đđŸââ" type="tts">áŽá” ááááá: ášááł áááá”-5</annotation>
<annotation cp="đđżââ">ááááá | áŽá” | ášááł áááá”-6 | ášá„á
áááá”</annotation>
<annotation cp="đđżââ" type="tts">áŽá” ááááá: ášááł áááá”-6</annotation>
<annotation cp="đ
đ»">á áłá”á á | á áłá”áąá | á áłá«á”á” | á á«áá ááá | á á | á á ášáá áááá” ášáá°á„ á°á | á áááá | á„á
| ášááá | áááá | ášááł áááá”-1-2 | ášá°ášáášá | ášá„á
áááá” | ášá„á
áááá” áá áááá | á«áá°ááá°</annotation>
<annotation cp="đ
đ»" type="tts">ášá„á
áááá” áá áááá: ášááł áááá”-1-2</annotation>
<annotation cp="đ
đŒ">ááášáá áá á«á ášááł ááá | á áłá”á á | á áłá”áąá | á áłá«á”á” | á á«áá ááá | á á | á á ášáá áááá” ášáá°á„ á°á | á áááá | á„á
| ášááá | áááá | ášá°ášáášá | ášá„á
áááá” | ášá„á
áááá” áá áááá | á«áá°ááá°</annotation>
<annotation cp="đ
đŒ" type="tts">ášá„á
áááá” áá áááá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ
đœ">á áłá”á á | á áłá”áąá | á áłá«á”á” | á á«áá ááá | á á | á á ášáá áááá” ášáá°á„ á°á | á áááá | á„á
| ášááá | áááá | ášááł áááá”-4 | ášá°ášáášá | ášá„á
áááá” | ášá„á
áááá” áá áááá | á«áá°ááá°</annotation>
<annotation cp="đ
đœ" type="tts">ášá„á
áááá” áá áááá: ášááł áááá”-4</annotation>
<annotation cp="đ
đŸ">á áłá”á á | á áłá”áąá | á áłá«á”á” | á á«áá ááá | á á | á á ášáá áááá” ášáá°á„ á°á | á áááá | á„á
| ášááá | áááá | ášááł áááá”-5 | ášá°ášáášá | ášá„á
áááá” | ášá„á
áááá” áá áááá | á«áá°ááá°</annotation>
<annotation cp="đ
đŸ" type="tts">ášá„á
áááá” áá áááá: ášááł áááá”-5</annotation>
<annotation cp="đ
đż">á áłá”á á | á áłá”áąá | á áłá«á”á” | á á«áá ááá | á á | á á ášáá áááá” ášáá°á„ á°á | á áááá | á„á
| ášááá | áááá | ášááł áááá”-6 | ášá°ášáášá | ášá„á
áááá” | ášá„á
áááá” áá áááá | á«áá°ááá°</annotation>
<annotation cp="đ
đż" type="tts">ášá„á
áááá” áá áááá: ášááł áááá”-6</annotation>
<annotation cp="đ
đ»ââ">á áááá | á áááá ášáá ášá„á
áááá” ášáá«áłá ááá” | á„á
| ááá” | ášááł áááá”-1-2 | ášá°ášáášá | ášá„á
áááá” | ášá„á
áááá” áá áááá ááá”</annotation>
<annotation cp="đ
đ»ââ" type="tts">ášá„á
áááá” áá áááá ááá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ
đŒââ">ááášáá áá á«á ášááł ááá | á áááá | á áááá ášáá ášá„á
áááá” ášáá«áłá ááá” | á„á
| ááá” | ášá°ášáášá | ášá„á
áááá” | ášá„á
áááá” áá áááá ááá”</annotation>
<annotation cp="đ
đŒââ" type="tts">ášá„á
áááá” áá áááá ááá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ
đœââ">á áááá | á áááá ášáá ášá„á
áááá” ášáá«áłá ááá” | á„á
| ááá” | ášááł áááá”-4 | ášá°ášáášá | ášá„á
áááá” | ášá„á
áááá” áá áááá ááá”</annotation>
<annotation cp="đ
đœââ" type="tts">ášá„á
áááá” áá áááá ááá”: ášááł áááá”-4</annotation>
<annotation cp="đ
đŸââ">á áááá | á áááá ášáá ášá„á
áááá” ášáá«áłá ááá” | á„á
| ááá” | ášááł áááá”-5 | ášá°ášáášá | ášá„á
áááá” | ášá„á
áááá” áá áááá ááá”</annotation>
<annotation cp="đ
đŸââ" type="tts">ášá„á
áááá” áá áááá ááá”: ášááł áááá”-5</annotation>
<annotation cp="đ
đżââ">á áááá | á áááá ášáá ášá„á
áááá” ášáá«áłá ááá” | á„á
| ááá” | ášááł áááá”-6 | ášá°ášáášá | ášá„á
áááá” | ášá„á
áááá” áá áááá ááá”</annotation>
<annotation cp="đ
đżââ" type="tts">ášá„á
áááá” áá áááá ááá”: ášááł áááá”-6</annotation>
<annotation cp="đ
đ»ââ">áŽá” | á„á
| áááá | ášááł áááá”-1-2 | ášá°ášáášá | ášá„á
áááá” | ášá„á
áááá” áá áááá áŽá”</annotation>
<annotation cp="đ
đ»ââ" type="tts">ášá„á
áááá” áá áááá áŽá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ
đŒââ">ááášáá áá á«á ášááł ááá | áŽá” | á„á
| áááá | ášá°ášáášá | ášá„á
áááá” | ášá„á
áááá” áá áááá áŽá”</annotation>
<annotation cp="đ
đŒââ" type="tts">ášá„á
áááá” áá áááá áŽá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ
đœââ">áŽá” | á„á
| áááá | ášááł áááá”-4 | ášá°ášáášá | ášá„á
áááá” | ášá„á
áááá” áá áááá áŽá”</annotation>
<annotation cp="đ
đœââ" type="tts">ášá„á
áááá” áá áááá áŽá”: ášááł áááá”-4</annotation>
<annotation cp="đ
đŸââ">áŽá” | á„á
| áááá | ášááł áááá”-5 | ášá°ášáášá | ášá„á
áááá” | ášá„á
áááá” áá áááá áŽá”</annotation>
<annotation cp="đ
đŸââ" type="tts">ášá„á
áááá” áá áááá áŽá”: ášááł áááá”-5</annotation>
<annotation cp="đ
đżââ">áŽá” | á„á
| áááá | ášááł áááá”-6 | ášá°ášáášá | ášá„á
áááá” | ášá„á
áááá” áá áááá áŽá”</annotation>
<annotation cp="đ
đżââ" type="tts">ášá„á
áááá” áá áááá áŽá”: ášááł áááá”-6</annotation>
<annotation cp="đđ»">á„áș | á„áș ášáá áááá” ášáá°á„ á°á | á„á
| አá ááᏠ| ášááł áááá”-1-2 | ášá á«á á„áá” á„áá
á”áᎠ| ášá„á
áááá” | ášá„á
áááá” áá„áș</annotation>
<annotation cp="đđ»" type="tts">ášá„á
áááá” áá„áș: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááášáá áá á«á ášááł ááá | á„áș | á„áș ášáá áááá” ášáá°á„ á°á | á„á
| አá ááᏠ| ášá á«á á„áá” á„áá
á”áᎠ| ášá„á
áááá” | ášá„á
áááá” áá„áș</annotation>
<annotation cp="đđŒ" type="tts">ášá„á
áááá” áá„áș: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">á„áș | á„áș ášáá áááá” ášáá°á„ á°á | á„á
| አá ááᏠ| ášááł áááá”-4 | ášá á«á á„áá” á„áá
á”áᎠ| ášá„á
áááá” | ášá„á
áááá” áá„áș</annotation>
<annotation cp="đđœ" type="tts">ášá„á
áááá” áá„áș: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">á„áș | á„áș ášáá áááá” ášáá°á„ á°á | á„á
| አá ááᏠ| ášááł áááá”-5 | ášá á«á á„áá” á„áá
á”áᎠ| ášá„á
áááá” | ášá„á
áááá” áá„áș</annotation>
<annotation cp="đđŸ" type="tts">ášá„á
áááá” áá„áș: ášááł áááá”-5</annotation>
<annotation cp="đđż">á„áș | á„áș ášáá áááá” ášáá°á„ á°á | á„á
| አá ááᏠ| ášááł áááá”-6 | ášá á«á á„áá” á„áá
á”áᎠ| ášá„á
áááá” | ášá„á
áááá” áá„áș</annotation>
<annotation cp="đđż" type="tts">ášá„á
áááá” áá„áș: ášááł áááá”-6</annotation>
<annotation cp="đđ»ââ">á„áș | á„á á áááá | á„áá
á”áᎠ| á„á
| ááá” | ááá” á á„á
áááá” á„áș á„á«á | ášááł áááá”-1-2 | ášá„á
áááá” | ášá„á
áááá” áá„áș ááá”</annotation>
<annotation cp="đđ»ââ" type="tts">ášá„á
áááá” áá„áș ááá”: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒââ">ááášáá áá á«á ášááł ááá | á„áș | á„á á áááá | á„áá
á”áᎠ| á„á
| ááá” | ááá” á á„á
áááá” á„áș á„á«á | ášá„á
áááá” | ášá„á
áááá” áá„áș ááá”</annotation>
<annotation cp="đđŒââ" type="tts">ášá„á
áááá” áá„áș ááá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœââ">á„áș | á„á á áááá | á„áá
á”áᎠ| á„á
| ááá” | ááá” á á„á
áááá” á„áș á„á«á | ášááł áááá”-4 | ášá„á
áááá” | ášá„á
áááá” áá„áș ááá”</annotation>
<annotation cp="đđœââ" type="tts">ášá„á
áááá” áá„áș ááá”: ášááł áááá”-4</annotation>
<annotation cp="đđŸââ">á„áș | á„á á áááá | á„áá
á”áᎠ| á„á
| ááá” | ááá” á á„á
áááá” á„áș á„á«á | ášááł áááá”-5 | ášá„á
áááá” | ášá„á
áááá” áá„áș ááá”</annotation>
<annotation cp="đđŸââ" type="tts">ášá„á
áááá” áá„áș ááá”: ášááł áááá”-5</annotation>
<annotation cp="đđżââ">á„áș | á„á á áááá | á„áá
á”áᎠ| á„á
| ááá” | ááá” á á„á
áááá” á„áș á„á«á | ášááł áááá”-6 | ášá„á
áááá” | ášá„á
áááá” áá„áș ááá”</annotation>
<annotation cp="đđżââ" type="tts">ášá„á
áááá” áá„áș ááá”: ášááł áááá”-6</annotation>
<annotation cp="đđ»ââ">áŽá” | á„áș | á„á
| ášááł áááá”-1-2 | ášá„á
áááá” | ášá„á
áááá” áá„áș áŽá”</annotation>
<annotation cp="đđ»ââ" type="tts">ášá„á
áááá” áá„áș áŽá”: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒââ">ááášáá áá á«á ášááł ááá | áŽá” | á„áș | á„á
| ášá„á
áááá” | ášá„á
áááá” áá„áș áŽá”</annotation>
<annotation cp="đđŒââ" type="tts">ášá„á
áááá” áá„áș áŽá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœââ">áŽá” | á„áș | á„á
| ášááł áááá”-4 | ášá„á
áááá” | ášá„á
áááá” áá„áș áŽá”</annotation>
<annotation cp="đđœââ" type="tts">ášá„á
áááá” áá„áș áŽá”: ášááł áááá”-4</annotation>
<annotation cp="đđŸââ">áŽá” | á„áș | á„á
| ášááł áááá”-5 | ášá„á
áááá” | ášá„á
áááá” áá„áș áŽá”</annotation>
<annotation cp="đđŸââ" type="tts">ášá„á
áááá” áá„áș áŽá”: ášááł áááá”-5</annotation>
<annotation cp="đđżââ">áŽá” | á„áș | á„á
| ášááł áááá”-6 | ášá„á
áááá” | ášá„á
áááá” áá„áș áŽá”</annotation>
<annotation cp="đđżââ" type="tts">ášá„á
áááá” áá„áș áŽá”: ášááł áááá”-6</annotation>
<annotation cp="đđ»">ááá” | áášá | áášá á°áȘ | áášá á°áȘ ááá°á„ | áŽá” | áčáá” | á„áá | á„á
| á„áá | áᏠ| ášááł áááá”-1-2 | ážááá ááá”áá” | áá</annotation>
<annotation cp="đđ»" type="tts">áášá á°áȘ ááá°á„: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááá” | ááášáá áá á«á ášááł ááá | áášá | áášá á°áȘ | áášá á°áȘ ááá°á„ | áŽá” | áčáá” | á„áá | á„á
| á„áá | áᏠ| ážááá ááá”áá” | áá</annotation>
<annotation cp="đđŒ" type="tts">áášá á°áȘ ááá°á„: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">ááá” | áášá | áášá á°áȘ | áášá á°áȘ ááá°á„ | áŽá” | áčáá” | á„áá | á„á
| á„áá | áᏠ| ášááł áááá”-4 | ážááá ááá”áá” | áá</annotation>
<annotation cp="đđœ" type="tts">áášá á°áȘ ááá°á„: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">ááá” | áášá | áášá á°áȘ | áášá á°áȘ ááá°á„ | áŽá” | áčáá” | á„áá | á„á
| á„áá | áᏠ| ášááł áááá”-5 | ážááá ááá”áá” | áá</annotation>
<annotation cp="đđŸ" type="tts">áášá á°áȘ ááá°á„: ášááł áááá”-5</annotation>
<annotation cp="đđż">ááá” | áášá | áášá á°áȘ | áášá á°áȘ ááá°á„ | áŽá” | áčáá” | á„áá | á„á
| á„áá | áᏠ| ášááł áááá”-6 | ážááá ááá”áá” | áá</annotation>
<annotation cp="đđż" type="tts">áášá á°áȘ ááá°á„: ášááł áááá”-6</annotation>
<annotation cp="đđ»ââ">ááá” | áášá | áášá á°áȘ | áááŁá” | ááá ááá áá | áŽá” | á”áá
| áœá ááá” | á áœáášá | á áœáá | á„ááłáł | á„áá ášáá«áááá ááá” | á„á
| á„áá | ááá” áášá á°áȘ | ášááł áááá”-1-2 | áČá« | á áá ááá áá”á á” | ážááá áááá„ | ážááá ááááá | áááá” ááłášá”</annotation>
<annotation cp="đđ»ââ" type="tts">ááá” áášá á°áȘ: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒââ">ááá” | ááášáá áá á«á ášááł ááá | áášá | áášá á°áȘ | áááŁá” | ááá ááá áá | áŽá” | á”áá
| áœá ááá” | á áœáášá | á áœáá | á„ááłáł | á„áá ášáá«áááá ááá” | á„á
| á„áá | ááá” áášá á°áȘ | áČá« | á áá ááá áá”á á” | ážááá áááá„ | ážááá ááááá | áááá” ááłášá”</annotation>
<annotation cp="đđŒââ" type="tts">ááá” áášá á°áȘ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœââ">ááá” | áášá | áášá á°áȘ | áááŁá” | ááá ááá áá | áŽá” | á”áá
| áœá ááá” | á áœáášá | á áœáá | á„ááłáł | á„áá ášáá«áááá ááá” | á„á
| á„áá | ááá” áášá á°áȘ | ášááł áááá”-4 | áČá« | á áá ááá áá”á á” | ážááá áááá„ | ážááá ááááá | áááá” ááłášá”</annotation>
<annotation cp="đđœââ" type="tts">ááá” áášá á°áȘ: ášááł áááá”-4</annotation>
<annotation cp="đđŸââ">ááá” | áášá | áášá á°áȘ | áááŁá” | ááá ááá áá | áŽá” | á”áá
| áœá ááá” | á áœáášá | á áœáá | á„ááłáł | á„áá ášáá«áááá ááá” | á„á
| á„áá | ááá” áášá á°áȘ | ášááł áááá”-5 | áČá« | á áá ááá áá”á á” | ážááá áááá„ | ážááá ááááá | áááá” ááłášá”</annotation>
<annotation cp="đđŸââ" type="tts">ááá” áášá á°áȘ: ášááł áááá”-5</annotation>
<annotation cp="đđżââ">ááá” | áášá | áášá á°áȘ | áááŁá” | ááá ááá áá | áŽá” | á”áá
| áœá ááá” | á áœáášá | á áœáá | á„ááłáł | á„áá ášáá«áááá ááá” | á„á
| á„áá | ááá” áášá á°áȘ | ášááł áááá”-6 | áČá« | á áá ááá áá”á á” | ážááá áááá„ | ážááá ááááá | áááá” ááłášá”</annotation>
<annotation cp="đđżââ" type="tts">ááá” áášá á°áȘ: ášááł áááá”-6</annotation>
<annotation cp="đđ»ââ">áášá á°áȘ | áŽá” | áŽá” áášá á°áȘ | á„á
| á„áá | ášááł áááá”-1-2</annotation>
<annotation cp="đđ»ââ" type="tts">áŽá” áášá á°áȘ: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒââ">ááášáá áá á«á ášááł ááá | áášá á°áȘ | áŽá” | áŽá” áášá á°áȘ | á„á
| á„áá</annotation>
<annotation cp="đđŒââ" type="tts">áŽá” áášá á°áȘ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœââ">áášá á°áȘ | áŽá” | áŽá” áášá á°áȘ | á„á
| á„áá | ášááł áááá”-4</annotation>
<annotation cp="đđœââ" type="tts">áŽá” áášá á°áȘ: ášááł áááá”-4</annotation>
<annotation cp="đđŸââ">áášá á°áȘ | áŽá” | áŽá” áášá á°áȘ | á„á
| á„áá | ášááł áááá”-5</annotation>
<annotation cp="đđŸââ" type="tts">áŽá” áášá á°áȘ: ášááł áááá”-5</annotation>
<annotation cp="đđżââ">áášá á°áȘ | áŽá” | áŽá” áášá á°áȘ | á„á
| á„áá | ášááł áááá”-6</annotation>
<annotation cp="đđżââ" type="tts">áŽá” áášá á°áȘ: ášááł áááá”-6</annotation>
<annotation cp="đđ»">á”áá„á” | á»á | á„á ááá á„áœááá | á„áá áášáĄá | á„áá
| á„áá
á | á„á
| á„áá á«ááŁáœ áŽá” | ášá á«á°ášá | ášááł áááá”-1-2 | ášá„á
áááá” | á°á” á«áá á„áá ášáá«áᣠá°á | á°á”á°á</annotation>
<annotation cp="đđ»" type="tts">á°á” á«áá á„áá ášáá«áᣠá°á: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááášáá áá á«á ášááł ááá | á”áá„á” | á»á | á„á ááá á„áœááá | á„áá áášáĄá | á„áá
| á„áá
á | á„á
| á„áá á«ááŁáœ áŽá” | ášá á«á°ášá | ášá„á
áááá” | á°á” á«áá á„áá ášáá«áᣠá°á | á°á”á°á</annotation>
<annotation cp="đđŒ" type="tts">á°á” á«áá á„áá ášáá«áᣠá°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">á”áá„á” | á»á | á„á ááá á„áœááá | á„áá áášáĄá | á„áá
| á„áá
á | á„á
| á„áá á«ááŁáœ áŽá” | ášá á«á°ášá | ášááł áááá”-4 | ášá„á
áááá” | á°á” á«áá á„áá ášáá«áᣠá°á | á°á”á°á</annotation>
<annotation cp="đđœ" type="tts">á°á” á«áá á„áá ášáá«áᣠá°á: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">á”áá„á” | á»á | á„á ááá á„áœááá | á„áá áášáĄá | á„áá
| á„áá
á | á„á
| á„áá á«ááŁáœ áŽá” | ášá á«á°ášá | ášááł áááá”-5 | ášá„á
áááá” | á°á” á«áá á„áá ášáá«áᣠá°á | á°á”á°á</annotation>
<annotation cp="đđŸ" type="tts">á°á” á«áá á„áá ášáá«áᣠá°á: ášááł áááá”-5</annotation>
<annotation cp="đđż">á”áá„á” | á»á | á„á ááá á„áœááá | á„áá áášáĄá | á„áá
| á„áá
á | á„á
| á„áá á«ááŁáœ áŽá” | ášá á«á°ášá | ášááł áááá”-6 | ášá„á
áááá” | á°á” á«áá á„áá ášáá«áᣠá°á | á°á”á°á</annotation>
<annotation cp="đđż" type="tts">á°á” á«áá á„áá ášáá«áᣠá°á: ášááł áááá”-6</annotation>
<annotation cp="đđ»ââ">á„á | á„á á áááá | á„áá á«áᣠá°á | á„áá á«áᣠááá” | á„á
| á„áᜠ| ášá á«á°ášá | ááá” | ášááł áááá”-1-2 | ášá°ááł á„á
| ášá„á
áááá” | ášááá” á„á
áááŁá” | á„á«á</annotation>
<annotation cp="đđ»ââ" type="tts">ášááá” á„á
áááŁá”: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒââ">ááášáá áá á«á ášááł ááá | á„á | á„á á áááá | á„áá á«áᣠá°á | á„áá á«áᣠááá” | á„á
| á„áᜠ| ášá á«á°ášá | ááá” | ášá°ááł á„á
| ášá„á
áááá” | ášááá” á„á
áááŁá” | á„á«á</annotation>
<annotation cp="đđŒââ" type="tts">ášááá” á„á
áááŁá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœââ">á„á | á„á á áááá | á„áá á«áᣠá°á | á„áá á«áᣠááá” | á„á
| á„áᜠ| ášá á«á°ášá | ááá” | ášááł áááá”-4 | ášá°ááł á„á
| ášá„á
áááá” | ášááá” á„á
áááŁá” | á„á«á</annotation>
<annotation cp="đđœââ" type="tts">ášááá” á„á
áááŁá”: ášááł áááá”-4</annotation>
<annotation cp="đđŸââ">á„á | á„á á áááá | á„áá á«áᣠá°á | á„áá á«áᣠááá” | á„á
| á„áᜠ| ášá á«á°ášá | ááá” | ášááł áááá”-5 | ášá°ááł á„á
| ášá„á
áááá” | ášááá” á„á
áááŁá” | á„á«á</annotation>
<annotation cp="đđŸââ" type="tts">ášááá” á„á
áááŁá”: ášááł áááá”-5</annotation>
<annotation cp="đđżââ">á„á | á„á á áááá | á„áá á«áᣠá°á | á„áá á«áᣠááá” | á„á
| á„áᜠ| ášá á«á°ášá | ááá” | ášááł áááá”-6 | ášá°ááł á„á
| ášá„á
áááá” | ášááá” á„á
áááŁá” | á„á«á</annotation>
<annotation cp="đđżââ" type="tts">ášááá” á„á
áááŁá”: ášááł áááá”-6</annotation>
<annotation cp="đđ»ââ">áŽá” | á„á
| ášá á«á°ášá | ášáŽá” á„á
áááŁá” | ášááł áááá”-1-2 | ášá„á
áááá”</annotation>
<annotation cp="đđ»ââ" type="tts">ášáŽá” á„á
áááŁá”: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒââ">ááášáá áá á«á ášááł ááá | áŽá” | á„á
| ášá á«á°ášá | ášáŽá” á„á
áááŁá” | ášá„á
áááá”</annotation>
<annotation cp="đđŒââ" type="tts">ášáŽá” á„á
áááŁá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœââ">áŽá” | á„á
| ášá á«á°ášá | ášáŽá” á„á
áááŁá” | ášááł áááá”-4 | ášá„á
áááá”</annotation>
<annotation cp="đđœââ" type="tts">ášáŽá” á„á
áááŁá”: ášááł áááá”-4</annotation>
<annotation cp="đđŸââ">áŽá” | á„á
| ášá á«á°ášá | ášáŽá” á„á
áááŁá” | ášááł áááá”-5 | ášá„á
áááá”</annotation>
<annotation cp="đđŸââ" type="tts">ášáŽá” á„á
áááŁá”: ášááł áááá”-5</annotation>
<annotation cp="đđżââ">áŽá” | á„á
| ášá á«á°ášá | ášáŽá” á„á
áááŁá” | ášááł áááá”-6 | ášá„á
áááá”</annotation>
<annotation cp="đđżââ" type="tts">ášáŽá” á„á
áááŁá”: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»">áá”áá” | áá”áá” ášá°áłáá á°á | ááłáá„ | ááč | á°á°á«áœ | á°á°á«áœáá” | áá° ááźá ášá áá á°á | ášááł áááá”-1-2 | á°áááź | ááź</annotation>
<annotation cp="đ§đ»" type="tts">áá”áá” ášá°áłáá á°á: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒ">ááášáá áá á«á ášááł ááá | áá”áá” | áá”áá” ášá°áłáá á°á | ááłáá„ | ááč | á°á°á«áœ | á°á°á«áœáá” | áá° ááźá ášá áá á°á | á°áááź | ááź</annotation>
<annotation cp="đ§đŒ" type="tts">áá”áá” ášá°áłáá á°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœ">áá”áá” | áá”áá” ášá°áłáá á°á | ááłáá„ | ááč | á°á°á«áœ | á°á°á«áœáá” | áá° ááźá ášá áá á°á | ášááł áááá”-4 | á°áááź | ááź</annotation>
<annotation cp="đ§đœ" type="tts">áá”áá” ášá°áłáá á°á: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸ">áá”áá” | áá”áá” ášá°áłáá á°á | ááłáá„ | ááč | á°á°á«áœ | á°á°á«áœáá” | áá° ááźá ášá áá á°á | ášááł áááá”-5 | á°áááź | ááź</annotation>
<annotation cp="đ§đŸ" type="tts">áá”áá” ášá°áłáá á°á: ášááł áááá”-5</annotation>
<annotation cp="đ§đż">áá”áá” | áá”áá” ášá°áłáá á°á | ááłáá„ | ááč | á°á°á«áœ | á°á°á«áœáá” | áá° ááźá ášá áá á°á | ášááł áááá”-6 | á°áááź | ááź</annotation>
<annotation cp="đ§đż" type="tts">áá”áá” ášá°áłáá á°á: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»ââ">ááá” | ášááł áááá”-1-2 | á°áááź | á°áááź á°á</annotation>
<annotation cp="đ§đ»ââ" type="tts">á°áááź á°á: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒââ">ááášáá áá á«á ášááł ááá | ááá” | á°áááź | á°áááź á°á</annotation>
<annotation cp="đ§đŒââ" type="tts">á°áááź á°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœââ">ááá” | ášááł áááá”-4 | á°áááź | á°áááź á°á</annotation>
<annotation cp="đ§đœââ" type="tts">á°áááź á°á: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸââ">ááá” | ášááł áááá”-5 | á°áááź | á°áááź á°á</annotation>
<annotation cp="đ§đŸââ" type="tts">á°áááź á°á: ášááł áááá”-5</annotation>
<annotation cp="đ§đżââ">ááá” | ášááł áááá”-6 | á°áááź | á°áááź á°á</annotation>
<annotation cp="đ§đżââ" type="tts">á°áááź á°á: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»ââ">áŽá” | ášááł áááá”-1-2 | á°áááź</annotation>
<annotation cp="đ§đ»ââ" type="tts">á°áááź áŽá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒââ">ááášáá áá á«á ášááł ááá | áŽá” | á°áááź</annotation>
<annotation cp="đ§đŒââ" type="tts">á°áááź áŽá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœââ">áŽá” | ášááł áááá”-4 | á°áááź</annotation>
<annotation cp="đ§đœââ" type="tts">á°áááź áŽá”: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸââ">áŽá” | ášááł áááá”-5 | á°áááź</annotation>
<annotation cp="đ§đŸââ" type="tts">á°áááź áŽá”: ášááł áááá”-5</annotation>
<annotation cp="đ§đżââ">áŽá” | ášááł áááá”-6 | á°áááź</annotation>
<annotation cp="đ§đżââ" type="tts">á°áááź áŽá”: ášááł áááá”-6</annotation>
<annotation cp="đđ»">ááá | ááá°á„ | ááłáá | áááá á” | á°áá”አ| ášááᥠááá á” á„á á°áááł ášáá°á„ á°á | ášáá«ááá„á” á°á | ášááł áááá”-1-2 | ášá„á
áááá” | áá
á ááá” | áá
ááł | ážážá”</annotation>
<annotation cp="đđ»" type="tts">ášááᥠááá á” á„á á°áááł ášáá°á„ á°á: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááá | ááášáá áá á«á ášááł ááá | ááá°á„ | ááłáá | áááá á” | á°áá”አ| ášááᥠááá á” á„á á°áááł ášáá°á„ á°á | ášáá«ááá„á” á°á | ášá„á
áááá” | áá
á ááá” | áá
ááł | ážážá”</annotation>
<annotation cp="đđŒ" type="tts">ášááᥠááá á” á„á á°áááł ášáá°á„ á°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">ááá | ááá°á„ | ááłáá | áááá á” | á°áá”አ| ášááᥠááá á” á„á á°áááł ášáá°á„ á°á | ášáá«ááá„á” á°á | ášááł áááá”-4 | ášá„á
áááá” | áá
á ááá” | áá
ááł | ážážá”</annotation>
<annotation cp="đđœ" type="tts">ášááᥠááá á” á„á á°áááł ášáá°á„ á°á: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">ááá | ááá°á„ | ááłáá | áááá á” | á°áá”አ| ášááᥠááá á” á„á á°áááł ášáá°á„ á°á | ášáá«ááá„á” á°á | ášááł áááá”-5 | ášá„á
áááá” | áá
á ááá” | áá
ááł | ážážá”</annotation>
<annotation cp="đđŸ" type="tts">ášááᥠááá á” á„á á°áááł ášáá°á„ á°á: ášááł áááá”-5</annotation>
<annotation cp="đđż">ááá | ááá°á„ | ááłáá | áááá á” | á°áá”አ| ášááᥠááá á” á„á á°áááł ášáá°á„ á°á | ášáá«ááá„á” á°á | ášááł áááá”-6 | ášá„á
áááá” | áá
á ááá” | áá
ááł | ážážá”</annotation>
<annotation cp="đđż" type="tts">ášááᥠááá á” á„á á°áááł ášáá°á„ á°á: ášááł áááá”-6</annotation>
<annotation cp="đđ»ââ">áááá á” | ááá” | ášááł áááá”-1-2 | ášá„á
áááá” | áá
ááł</annotation>
<annotation cp="đđ»ââ" type="tts">ááá” áááá á”: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒââ">ááášáá áá á«á ášááł ááá | áááá á” | ááá” | ášá„á
áááá” | áá
ááł</annotation>
<annotation cp="đđŒââ" type="tts">ááá” áááá á”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœââ">áááá á” | ááá” | ášááł áááá”-4 | ášá„á
áááá” | áá
ááł</annotation>
<annotation cp="đđœââ" type="tts">ááá” áááá á”: ášááł áááá”-4</annotation>
<annotation cp="đđŸââ">áááá á” | ááá” | ášááł áááá”-5 | ášá„á
áááá” | áá
ááł</annotation>
<annotation cp="đđŸââ" type="tts">ááá” áááá á”: ášááł áááá”-5</annotation>
<annotation cp="đđżââ">áááá á” | ááá” | ášááł áááá”-6 | ášá„á
áááá” | áá
ááł</annotation>
<annotation cp="đđżââ" type="tts">ááá” áááá á”: ášááł áááá”-6</annotation>
<annotation cp="đđ»ââ">ááá°á„ | áááá á” | áŽá” | á°áá”አ| ášááł áááá”-1-2 | ášá„á
áááá” | á«ááá á°áœ áŽá” | áá
ááł | áá
ááł áá ášá
</annotation>
<annotation cp="đđ»ââ" type="tts">áŽá” áááá á”: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒââ">ááášáá áá á«á ášááł ááá | ááá°á„ | áááá á” | áŽá” | á°áá”አ| ášá„á
áááá” | á«ááá á°áœ áŽá” | áá
ááł | áá
ááł áá ášá
</annotation>
<annotation cp="đđŒââ" type="tts">áŽá” áááá á”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœââ">ááá°á„ | áááá á” | áŽá” | á°áá”አ| ášááł áááá”-4 | ášá„á
áááá” | á«ááá á°áœ áŽá” | áá
ááł | áá
ááł áá ášá
</annotation>
<annotation cp="đđœââ" type="tts">áŽá” áááá á”: ášááł áááá”-4</annotation>
<annotation cp="đđŸââ">ááá°á„ | áááá á” | áŽá” | á°áá”አ| ášááł áááá”-5 | ášá„á
áááá” | á«ááá á°áœ áŽá” | áá
ááł | áá
ááł áá ášá
</annotation>
<annotation cp="đđŸââ" type="tts">áŽá” áááá á”: ášááł áááá”-5</annotation>
<annotation cp="đđżââ">ááá°á„ | áááá á” | áŽá” | á°áá”አ| ášááł áááá”-6 | ášá„á
áááá” | á«ááá á°áœ áŽá” | áá
ááł | áá
ááł áá ášá
</annotation>
<annotation cp="đđżââ" type="tts">áŽá” áááá á”: ášááł áááá”-6</annotation>
<annotation cp="đ€Šđ»">áá°áá
| ááłá | ááá | á°á | á áááá | á áááá | á„á«á”á ááááá
| á„áá°áá á áááá | á„á
| አá ááᏠ| ášááł áááá”-1-2 | á”ááဠ| áá”á á ááłá áážáá</annotation>
<annotation cp="đ€Šđ»" type="tts">ááá: ášááł áááá”-1-2</annotation>
<annotation cp="đ€ŠđŒ">ááášáá áá á«á ášááł ááá | áá°áá
| ááłá | ááá | á°á | á áááá | á áááá | á„á«á”á ááááá
| á„áá°áá á áááá | á„á
| አá ááᏠ| á”ááဠ| áá”á á ááłá áážáá</annotation>
<annotation cp="đ€ŠđŒ" type="tts">ááá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€Šđœ">áá°áá
| ááłá | ááá | á°á | á áááá | á áááá | á„á«á”á ááááá
| á„áá°áá á áááá | á„á
| አá ááᏠ| ášááł áááá”-4 | á”ááဠ| áá”á á ááłá áážáá</annotation>
<annotation cp="đ€Šđœ" type="tts">ááá: ášááł áááá”-4</annotation>
<annotation cp="đ€ŠđŸ">áá°áá
| ááłá | ááá | á°á | á áááá | á áááá | á„á«á”á ááááá
| á„áá°áá á áááá | á„á
| አá ááᏠ| ášááł áááá”-5 | á”ááဠ| áá”á á ááłá áážáá</annotation>
<annotation cp="đ€ŠđŸ" type="tts">ááá: ášááł áááá”-5</annotation>
<annotation cp="đ€Šđż">áá°áá
| ááłá | ááá | á°á | á áááá | á áááá | á„á«á”á ááááá
| á„áá°áá á áááá | á„á
| አá ááᏠ| ášááł áááá”-6 | á”ááဠ| áá”á á ááłá áážáá</annotation>
<annotation cp="đ€Šđż" type="tts">ááá: ášááł áááá”-6</annotation>
<annotation cp="đ€Šđ»ââ">áá°áá
| ááłá | á ááčá á áááá | á„á”áá” | á áááá | á ááᏠ| á„áá°áá á áááá | አá ááᏠ| ááá” áá” áá
áá” | ášááł áááá”-1-2 | á”ááဠ| ááá
áá”á ááááá | áá” áá
áá” | áá”á á ááłá áážáá</annotation>
<annotation cp="đ€Šđ»ââ" type="tts">ááá” áá” áá
áá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ€ŠđŒââ">ááášáá áá á«á ášááł ááá | áá°áá
| ááłá | á ááčá á áááá | á„á”áá” | á áááá | á ááᏠ| á„áá°áá á áááá | አá ááᏠ| ááá” áá” áá
áá” | á”ááဠ| ááá
áá”á ááááá | áá” áá
áá” | áá”á á ááłá áážáá</annotation>
<annotation cp="đ€ŠđŒââ" type="tts">ááá” áá” áá
áá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€Šđœââ">áá°áá
| ááłá | á ááčá á áááá | á„á”áá” | á áááá | á ááᏠ| á„áá°áá á áááá | አá ááᏠ| ááá” áá” áá
áá” | ášááł áááá”-4 | á”ááဠ| ááá
áá”á ááááá | áá” áá
áá” | áá”á á ááłá áážáá</annotation>
<annotation cp="đ€Šđœââ" type="tts">ááá” áá” áá
áá”: ášááł áááá”-4</annotation>
<annotation cp="đ€ŠđŸââ">áá°áá
| ááłá | á ááčá á áááá | á„á”áá” | á áááá | á ááᏠ| á„áá°áá á áááá | አá ááᏠ| ááá” áá” áá
áá” | ášááł áááá”-5 | á”ááဠ| ááá
áá”á ááááá | áá” áá
áá” | áá”á á ááłá áážáá</annotation>
<annotation cp="đ€ŠđŸââ" type="tts">ááá” áá” áá
áá”: ášááł áááá”-5</annotation>
<annotation cp="đ€Šđżââ">áá°áá
| ááłá | á ááčá á áááá | á„á”áá” | á áááá | á ááᏠ| á„áá°áá á áááá | አá ááᏠ| ááá” áá” áá
áá” | ášááł áááá”-6 | á”ááဠ| ááá
áá”á ááááá | áá” áá
áá” | áá”á á ááłá áážáá</annotation>
<annotation cp="đ€Šđżââ" type="tts">ááá” áá” áá
áá”: ášááł áááá”-6</annotation>
<annotation cp="đ€Šđ»ââ">áá°áá
| áá°ááá„ | ááłá | áŽá” | áŽá” áá” áá
áá” | á ááčá á áááá | á„á”áá” | á áááá | á ááᏠ| á„áá°áá | ášááł áááá”-1-2 | ááá
áá”á ááááá | áá”á á ááłá áážáá</annotation>
<annotation cp="đ€Šđ»ââ" type="tts">áŽá” áá” áá
áá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ€ŠđŒââ">ááášáá áá á«á ášááł ááá | áá°áá
| áá°ááá„ | ááłá | áŽá” | áŽá” áá” áá
áá” | á ááčá á áááá | á„á”áá” | á áááá | á ááᏠ| á„áá°áá | ááá
áá”á ááááá | áá”á á ááłá áážáá</annotation>
<annotation cp="đ€ŠđŒââ" type="tts">áŽá” áá” áá
áá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€Šđœââ">áá°áá
| áá°ááá„ | ááłá | áŽá” | áŽá” áá” áá
áá” | á ááčá á áááá | á„á”áá” | á áááá | á ááᏠ| á„áá°áá | ášááł áááá”-4 | ááá
áá”á ááááá | áá”á á ááłá áážáá</annotation>
<annotation cp="đ€Šđœââ" type="tts">áŽá” áá” áá
áá”: ášááł áááá”-4</annotation>
<annotation cp="đ€ŠđŸââ">áá°áá
| áá°ááá„ | ááłá | áŽá” | áŽá” áá” áá
áá” | á ááčá á áááá | á„á”áá” | á áááá | á ááᏠ| á„áá°áá | ášááł áááá”-5 | ááá
áá”á ááááá | áá”á á ááłá áážáá</annotation>
<annotation cp="đ€ŠđŸââ" type="tts">áŽá” áá” áá
áá”: ášááł áááá”-5</annotation>
<annotation cp="đ€Šđżââ">áá°áá
| áá°ááá„ | ááłá | áŽá” | áŽá” áá” áá
áá” | á ááčá á áááá | á„á”áá” | á áááá | á ááᏠ| á„áá°áá | ášááł áááá”-6 | ááá
áá”á ááááá | áá”á á ááłá áážáá</annotation>
<annotation cp="đ€Šđżââ" type="tts">áŽá” áá” áá
áá”: ášááł áááá”-6</annotation>
<annotation cp="đ€·đ»">áá©áá” | áá á«á á | ááááŁá” | ááá ááá | áá áá°á | á áááá
| á ááá
á | á á«ááŁáá | á áááášá°áá | á„á á„áá | á„ááá | ášááł áááá”-1-2</annotation>
<annotation cp="đ€·đ»" type="tts">áá áá°á: ášááł áááá”-1-2</annotation>
<annotation cp="đ€·đŒ">áá©áá” | ááášáá áá á«á ášááł ááá | áá á«á á | ááááŁá” | ááá ááá | áá áá°á | á áááá
| á ááá
á | á á«ááŁáá | á áááášá°áá | á„á á„áá | á„ááá</annotation>
<annotation cp="đ€·đŒ" type="tts">áá áá°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€·đœ">áá©áá” | áá á«á á | ááááŁá” | ááá ááá | áá áá°á | á áááá
| á ááá
á | á á«ááŁáá | á áááášá°áá | á„á á„áá | á„ááá | ášááł áááá”-4</annotation>
<annotation cp="đ€·đœ" type="tts">áá áá°á: ášááł áááá”-4</annotation>
<annotation cp="đ€·đŸ">áá©áá” | áá á«á á | ááááŁá” | ááá ááá | áá áá°á | á áááá
| á ááá
á | á á«ááŁáá | á áááášá°áá | á„á á„áá | á„ááá | ášááł áááá”-5</annotation>
<annotation cp="đ€·đŸ" type="tts">áá áá°á: ášááł áááá”-5</annotation>
<annotation cp="đ€·đż">áá©áá” | áá á«á á | ááááŁá” | ááá ááá | áá áá°á | á áááá
| á ááá
á | á á«ááŁáá | á áááášá°áá | á„á á„áá | á„ááá | ášááł áááá”-6</annotation>
<annotation cp="đ€·đż" type="tts">áá áá°á: ášááł áááá”-6</annotation>
<annotation cp="đ€·đ»ââ">áá©áá” | ááá áá ááá | áážááá
| áá á«á á | áá áá°á | á áááá
| á ááá
á | á áááášá°áá | á„á á ááá
á | ááá” | ášááł áááá”-1-2 | á«ááŁáá | á”áááá | ááŽááœáá” | á„ááŁáŹ</annotation>
<annotation cp="đ€·đ»ââ" type="tts">ááá” á áááá
: ášááł áááá”-1-2</annotation>
<annotation cp="đ€·đŒââ">áá©áá” | ááá áá ááá | ááášáá áá á«á ášááł ááá | áážááá
| áá á«á á | áá áá°á | á áááá
| á ááá
á | á áááášá°áá | á„á á ááá
á | ááá” | á«ááŁáá | á”áááá | ááŽááœáá” | á„ááŁáŹ</annotation>
<annotation cp="đ€·đŒââ" type="tts">ááá” á áááá
: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€·đœââ">áá©áá” | ááá áá ááá | áážááá
| áá á«á á | áá áá°á | á áááá
| á ááá
á | á áááášá°áá | á„á á ááá
á | ááá” | ášááł áááá”-4 | á«ááŁáá | á”áááá | ááŽááœáá” | á„ááŁáŹ</annotation>
<annotation cp="đ€·đœââ" type="tts">ááá” á áááá
: ášááł áááá”-4</annotation>
<annotation cp="đ€·đŸââ">áá©áá” | ááá áá ááá | áážááá
| áá á«á á | áá áá°á | á áááá
| á ááá
á | á áááášá°áá | á„á á ááá
á | ááá” | ášááł áááá”-5 | á«ááŁáá | á”áááá | ááŽááœáá” | á„ááŁáŹ</annotation>
<annotation cp="đ€·đŸââ" type="tts">ááá” á áááá
: ášááł áááá”-5</annotation>
<annotation cp="đ€·đżââ">áá©áá” | ááá áá ááá | áážááá
| áá á«á á | áá áá°á | á áááá
| á ááá
á | á áááášá°áá | á„á á ááá
á | ááá” | ášááł áááá”-6 | á«ááŁáá | á”áááá | ááŽááœáá” | á„ááŁáŹ</annotation>
<annotation cp="đ€·đżââ" type="tts">ááá” á áááá
: ášááł áááá”-6</annotation>
<annotation cp="đ€·đ»ââ">áá©áá” | ááá áá ááá | áážááá
| áá á«á á | áŽá” | áá áá°á | á áááá
| á ááá
á | á á«ááŁáá | á áááášá°áá | á„á á ááá
á | ášááł áááá”-1-2 | ááŽááœáá” | áá” ášááá | á„ááŁáŹ</annotation>
<annotation cp="đ€·đ»ââ" type="tts">áŽá” á áááá
: ášááł áááá”-1-2</annotation>
<annotation cp="đ€·đŒââ">áá©áá” | ááá áá ááá | ááášáá áá á«á ášááł ááá | áážááá
| áá á«á á | áŽá” | áá áá°á | á áááá
| á ááá
á | á á«ááŁáá | á áááášá°áá | á„á á ááá
á | ááŽááœáá” | áá” ášááá | á„ááŁáŹ</annotation>
<annotation cp="đ€·đŒââ" type="tts">áŽá” á áááá
: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€·đœââ">áá©áá” | ááá áá ááá | áážááá
| áá á«á á | áŽá” | áá áá°á | á áááá
| á ááá
á | á á«ááŁáá | á áááášá°áá | á„á á ááá
á | ášááł áááá”-4 | ááŽááœáá” | áá” ášááá | á„ááŁáŹ</annotation>
<annotation cp="đ€·đœââ" type="tts">áŽá” á áááá
: ášááł áááá”-4</annotation>
<annotation cp="đ€·đŸââ">áá©áá” | ááá áá ááá | áážááá
| áá á«á á | áŽá” | áá áá°á | á áááá
| á ááá
á | á á«ááŁáá | á áááášá°áá | á„á á ááá
á | ášááł áááá”-5 | ááŽááœáá” | áá” ášááá | á„ááŁáŹ</annotation>
<annotation cp="đ€·đŸââ" type="tts">áŽá” á áááá
: ášááł áááá”-5</annotation>
<annotation cp="đ€·đżââ">áá©áá” | ááá áá ááá | áážááá
| áá á«á á | áŽá” | áá áá°á | á áááá
| á ááá
á | á á«ááŁáá | á áááášá°áá | á„á á ááá
á | ášááł áááá”-6 | ááŽááœáá” | áá” ášááá | á„ááŁáŹ</annotation>
<annotation cp="đ€·đżââ" type="tts">áŽá” á áááá
: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»ââ">ášááł áááá”-1-2 | ášá€á á°á«á°á</annotation>
<annotation cp="đ§đ»ââ" type="tts">ášá€á á°á«á°á: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒââ">ááášáá áá á«á ášááł ááá | ášá€á á°á«á°á</annotation>
<annotation cp="đ§đŒââ" type="tts">ášá€á á°á«á°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœââ">ášááł áááá”-4 | ášá€á á°á«á°á</annotation>
<annotation cp="đ§đœââ" type="tts">ášá€á á°á«á°á: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸââ">ášááł áááá”-5 | ášá€á á°á«á°á</annotation>
<annotation cp="đ§đŸââ" type="tts">ášá€á á°á«á°á: ášááł áááá”-5</annotation>
<annotation cp="đ§đżââ">ášááł áááá”-6 | ášá€á á°á«á°á</annotation>
<annotation cp="đ§đżââ" type="tts">ášá€á á°á«á°á: ášááł áááá”-6</annotation>
<annotation cp="đšđ»ââ">ááȘá | á°áŁáá” | áŽá«áá”á” | ááá” | ááá” | ášááł áááá”-1-2 | ášá€á á„ááá„á«á€</annotation>
<annotation cp="đšđ»ââ" type="tts">ááá” ááá”: ášááł áááá”-1-2</annotation>
<annotation cp="đšđŒââ">ááȘá | ááášáá áá á«á ášááł ááá | á°áŁáá” | áŽá«áá”á” | ááá” | ááá” | ášá€á á„ááá„á«á€</annotation>
<annotation cp="đšđŒââ" type="tts">ááá” ááá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđœââ">ááȘá | á°áŁáá” | áŽá«áá”á” | ááá” | ááá” | ášááł áááá”-4 | ášá€á á„ááá„á«á€</annotation>
<annotation cp="đšđœââ" type="tts">ááá” ááá”: ášááł áááá”-4</annotation>
<annotation cp="đšđŸââ">ááȘá | á°áŁáá” | áŽá«áá”á” | ááá” | ááá” | ášááł áááá”-5 | ášá€á á„ááá„á«á€</annotation>
<annotation cp="đšđŸââ" type="tts">ááá” ááá”: ášááł áááá”-5</annotation>
<annotation cp="đšđżââ">ááȘá | á°áŁáá” | áŽá«áá”á” | ááá” | ááá” | ášááł áááá”-6 | ášá€á á„ááá„á«á€</annotation>
<annotation cp="đšđżââ" type="tts">ááá” ááá”: ášááł áááá”-6</annotation>
<annotation cp="đ©đ»ââ">ááȘá | áŽá” | áŽá«áá”á” | ááá” | áȘá | ášááł áááá”-1-2 | ášá€á á„ááá„á«á€</annotation>
<annotation cp="đ©đ»ââ" type="tts">áŽá” ááá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŒââ">ááȘá | ááášáá áá á«á ášááł ááá | áŽá” | áŽá«áá”á” | ááá” | áȘá | ášá€á á„ááá„á«á€</annotation>
<annotation cp="đ©đŒââ" type="tts">áŽá” ááá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đœââ">ááȘá | áŽá” | áŽá«áá”á” | ááá” | áȘá | ášááł áááá”-4 | ášá€á á„ááá„á«á€</annotation>
<annotation cp="đ©đœââ" type="tts">áŽá” ááá”: ášááł áááá”-4</annotation>
<annotation cp="đ©đŸââ">ááȘá | áŽá” | áŽá«áá”á” | ááá” | áȘá | ášááł áááá”-5 | ášá€á á„ááá„á«á€</annotation>
<annotation cp="đ©đŸââ" type="tts">áŽá” ááá”: ášááł áááá”-5</annotation>
<annotation cp="đ©đżââ">ááȘá | áŽá” | áŽá«áá”á” | ááá” | áȘá | ášááł áááá”-6 | ášá€á á„ááá„á«á€</annotation>
<annotation cp="đ©đżââ" type="tts">áŽá” ááá”: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»âđ">á°ááȘ | ášááł áááá”-1-2</annotation>
<annotation cp="đ§đ»âđ" type="tts">á°ááȘ: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒâđ">ááášáá áá á«á ášááł ááá | á°ááȘ</annotation>
<annotation cp="đ§đŒâđ" type="tts">á°ááȘ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœâđ">á°ááȘ | ášááł áááá”-4</annotation>
<annotation cp="đ§đœâđ" type="tts">á°ááȘ: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸâđ">á°ááȘ | ášááł áááá”-5</annotation>
<annotation cp="đ§đŸâđ" type="tts">á°ááȘ: ášááł áááá”-5</annotation>
<annotation cp="đ§đżâđ">á°ááȘ | ášááł áááá”-6</annotation>
<annotation cp="đ§đżâđ" type="tts">á°ááȘ: ášááł áááá”-6</annotation>
<annotation cp="đšđ»âđ">á°áá«á | á°ááȘ | á°áŁáá” | ááá” | ášááł áááá”-1-2 | ášá°ááš</annotation>
<annotation cp="đšđ»âđ" type="tts">ááá” á°áá«á: ášááł áááá”-1-2</annotation>
<annotation cp="đšđŒâđ">ááášáá áá á«á ášááł ááá | á°áá«á | á°ááȘ | á°áŁáá” | ááá” | ášá°ááš</annotation>
<annotation cp="đšđŒâđ" type="tts">ááá” á°áá«á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđœâđ">á°áá«á | á°ááȘ | á°áŁáá” | ááá” | ášááł áááá”-4 | ášá°ááš</annotation>
<annotation cp="đšđœâđ" type="tts">ááá” á°áá«á: ášááł áááá”-4</annotation>
<annotation cp="đšđŸâđ">á°áá«á | á°ááȘ | á°áŁáá” | ááá” | ášááł áááá”-5 | ášá°ááš</annotation>
<annotation cp="đšđŸâđ" type="tts">ááá” á°áá«á: ášááł áááá”-5</annotation>
<annotation cp="đšđżâđ">á°áá«á | á°ááȘ | á°áŁáá” | ááá” | ášááł áááá”-6 | ášá°ááš</annotation>
<annotation cp="đšđżâđ" type="tts">ááá” á°áá«á: ášááł áááá”-6</annotation>
<annotation cp="đ©đ»âđ">áŽá” | á°áá«á | á°ááȘ | á„áá”á” | ášááł áááá”-1-2 | ášá°áášáœ</annotation>
<annotation cp="đ©đ»âđ" type="tts">áŽá” á°áá«á: ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŒâđ">ááášáá áá á«á ášááł ááá | áŽá” | á°áá«á | á°ááȘ | á„áá”á” | ášá°áášáœ</annotation>
<annotation cp="đ©đŒâđ" type="tts">áŽá” á°áá«á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đœâđ">áŽá” | á°áá«á | á°ááȘ | á„áá”á” | ášááł áááá”-4 | ášá°áášáœ</annotation>
<annotation cp="đ©đœâđ" type="tts">áŽá” á°áá«á: ášááł áááá”-4</annotation>
<annotation cp="đ©đŸâđ">áŽá” | á°áá«á | á°ááȘ | á„áá”á” | ášááł áááá”-5 | ášá°áášáœ</annotation>
<annotation cp="đ©đŸâđ" type="tts">áŽá” á°áá«á: ášááł áááá”-5</annotation>
<annotation cp="đ©đżâđ">áŽá” | á°áá«á | á°ááȘ | á„áá”á” | ášááł áááá”-6 | ášá°áášáœ</annotation>
<annotation cp="đ©đżâđ" type="tts">áŽá” á°áá«á: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»âđ«">á á”á°ááȘ | ášááł áááá”-1-2</annotation>
<annotation cp="đ§đ»âđ«" type="tts">á á”á°ááȘ: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒâđ«">ááášáá áá á«á ášááł ááá | á á”á°ááȘ</annotation>
<annotation cp="đ§đŒâđ«" type="tts">á á”á°ááȘ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœâđ«">á á”á°ááȘ | ášááł áááá”-4</annotation>
<annotation cp="đ§đœâđ«" type="tts">á á”á°ááȘ: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸâđ«">á á”á°ááȘ | ášááł áááá”-5</annotation>
<annotation cp="đ§đŸâđ«" type="tts">á á”á°ááȘ: ášááł áááá”-5</annotation>
<annotation cp="đ§đżâđ«">á á”á°ááȘ | ášááł áááá”-6</annotation>
<annotation cp="đ§đżâđ«" type="tts">á á”á°ááȘ: ášááł áááá”-6</annotation>
<annotation cp="đšđ»âđ«">á°áŁáá” | á á”á°ááȘ | ááá” | ášááł áááá”-1-2 | ááźáá°á</annotation>
<annotation cp="đšđ»âđ«" type="tts">ááá” á á”á°ááȘ: ášááł áááá”-1-2</annotation>
<annotation cp="đšđŒâđ«">ááášáá áá á«á ášááł ááá | á°áŁáá” | á á”á°ááȘ | ááá” | ááźáá°á</annotation>
<annotation cp="đšđŒâđ«" type="tts">ááá” á á”á°ááȘ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđœâđ«">á°áŁáá” | á á”á°ááȘ | ááá” | ášááł áááá”-4 | ááźáá°á</annotation>
<annotation cp="đšđœâđ«" type="tts">ááá” á á”á°ááȘ: ášááł áááá”-4</annotation>
<annotation cp="đšđŸâđ«">á°áŁáá” | á á”á°ááȘ | ááá” | ášááł áááá”-5 | ááźáá°á</annotation>
<annotation cp="đšđŸâđ«" type="tts">ááá” á á”á°ááȘ: ášááł áááá”-5</annotation>
<annotation cp="đšđżâđ«">á°áŁáá” | á á”á°ááȘ | ááá” | ášááł áááá”-6 | ááźáá°á</annotation>
<annotation cp="đšđżâđ«" type="tts">ááá” á á”á°ááȘ: ášááł áááá”-6</annotation>
<annotation cp="đ©đ»âđ«">áŽá” | á á”á°ááȘ | ášááł áááá”-1-2 | ááźáá°á</annotation>
<annotation cp="đ©đ»âđ«" type="tts">áŽá” á á”á°ááȘ: ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŒâđ«">ááášáá áá á«á ášááł ááá | áŽá” | á á”á°ááȘ | ááźáá°á</annotation>
<annotation cp="đ©đŒâđ«" type="tts">áŽá” á á”á°ááȘ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đœâđ«">áŽá” | á á”á°ááȘ | ášááł áááá”-4 | ááźáá°á</annotation>
<annotation cp="đ©đœâđ«" type="tts">áŽá” á á”á°ááȘ: ášááł áááá”-4</annotation>
<annotation cp="đ©đŸâđ«">áŽá” | á á”á°ááȘ | ášááł áááá”-5 | ááźáá°á</annotation>
<annotation cp="đ©đŸâđ«" type="tts">áŽá” á á”á°ááȘ: ášááł áááá”-5</annotation>
<annotation cp="đ©đżâđ«">áŽá” | á á”á°ááȘ | ášááł áááá”-6 | ááźáá°á</annotation>
<annotation cp="đ©đżâđ«" type="tts">áŽá” á á”á°ááȘ: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»ââ">ášááł áááá”-1-2 | áłá</annotation>
<annotation cp="đ§đ»ââ" type="tts">áłá: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒââ">ááášáá áá á«á ášááł ááá | áłá</annotation>
<annotation cp="đ§đŒââ" type="tts">áłá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœââ">ášááł áááá”-4 | áłá</annotation>
<annotation cp="đ§đœââ" type="tts">áłá: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸââ">ášááł áááá”-5 | áłá</annotation>
<annotation cp="đ§đŸââ" type="tts">áłá: ášááł áááá”-5</annotation>
<annotation cp="đ§đżââ">ášááł áááá”-6 | áłá</annotation>
<annotation cp="đ§đżââ" type="tts">áłá: ášááł áááá”-6</annotation>
<annotation cp="đšđ»ââ">ááá | á°áŁáá” | ááá” | ášááł áááá”-1-2 | áłá | áá”á
</annotation>
<annotation cp="đšđ»ââ" type="tts">ááá” áłá: ášááł áááá”-1-2</annotation>
<annotation cp="đšđŒââ">ááášáá áá á«á ášááł ááá | ááá | á°áŁáá” | ááá” | áłá | áá”á
</annotation>
<annotation cp="đšđŒââ" type="tts">ááá” áłá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđœââ">ááá | á°áŁáá” | ááá” | ášááł áááá”-4 | áłá | áá”á
</annotation>
<annotation cp="đšđœââ" type="tts">ááá” áłá: ášááł áááá”-4</annotation>
<annotation cp="đšđŸââ">ááá | á°áŁáá” | ááá” | ášááł áááá”-5 | áłá | áá”á
</annotation>
<annotation cp="đšđŸââ" type="tts">ááá” áłá: ášááł áááá”-5</annotation>
<annotation cp="đšđżââ">ááá | á°áŁáá” | ááá” | ášááł áááá”-6 | áłá | áá”á
</annotation>
<annotation cp="đšđżââ" type="tts">ááá” áłá: ášááł áááá”-6</annotation>
<annotation cp="đ©đ»ââ">ááá | áŽá” | á„áá”á” | ášááł áááá”-1-2 | áłá | áá”á
</annotation>
<annotation cp="đ©đ»ââ" type="tts">áŽá” áłá: ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŒââ">ááášáá áá á«á ášááł ááá | ááá | áŽá” | á„áá”á” | áłá | áá”á
</annotation>
<annotation cp="đ©đŒââ" type="tts">áŽá” áłá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đœââ">ááá | áŽá” | á„áá”á” | ášááł áááá”-4 | áłá | áá”á
</annotation>
<annotation cp="đ©đœââ" type="tts">áŽá” áłá: ášááł áááá”-4</annotation>
<annotation cp="đ©đŸââ">ááá | áŽá” | á„áá”á” | ášááł áááá”-5 | áłá | áá”á
</annotation>
<annotation cp="đ©đŸââ" type="tts">áŽá” áłá: ášááł áááá”-5</annotation>
<annotation cp="đ©đżââ">ááá | áŽá” | á„áá”á” | ášááł áááá”-6 | áłá | áá”á
</annotation>
<annotation cp="đ©đżââ" type="tts">áŽá” áłá: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»âđŸ">ášááł áááá”-1-2 | áá áŹ</annotation>
<annotation cp="đ§đ»âđŸ" type="tts">áá áŹ: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒâđŸ">ááášáá áá á«á ášááł ááá | áá áŹ</annotation>
<annotation cp="đ§đŒâđŸ" type="tts">áá áŹ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœâđŸ">ášááł áááá”-4 | áá áŹ</annotation>
<annotation cp="đ§đœâđŸ" type="tts">áá áŹ: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸâđŸ">ášááł áááá”-5 | áá áŹ</annotation>
<annotation cp="đ§đŸâđŸ" type="tts">áá áŹ: ášááł áááá”-5</annotation>
<annotation cp="đ§đżâđŸ">ášááł áááá”-6 | áá áŹ</annotation>
<annotation cp="đ§đżâđŸ" type="tts">áá áŹ: ášááł áááá”-6</annotation>
<annotation cp="đšđ»âđŸ">á°á | á°áá | ááá” | ášááł áááá”-1-2 | áá áŹ</annotation>
<annotation cp="đšđ»âđŸ" type="tts">ááá” áá áŹ: ášááł áááá”-1-2</annotation>
<annotation cp="đšđŒâđŸ">ááášáá áá á«á ášááł ááá | á°á | á°áá | ááá” | áá áŹ</annotation>
<annotation cp="đšđŒâđŸ" type="tts">ááá” áá áŹ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđœâđŸ">á°á | á°áá | ááá” | ášááł áááá”-4 | áá áŹ</annotation>
<annotation cp="đšđœâđŸ" type="tts">ááá” áá áŹ: ášááł áááá”-4</annotation>
<annotation cp="đšđŸâđŸ">á°á | á°áá | ááá” | ášááł áááá”-5 | áá áŹ</annotation>
<annotation cp="đšđŸâđŸ" type="tts">ááá” áá áŹ: ášááł áááá”-5</annotation>
<annotation cp="đšđżâđŸ">á°á | á°áá | ááá” | ášááł áááá”-6 | áá áŹ</annotation>
<annotation cp="đšđżâđŸ" type="tts">ááá” áá áŹ: ášááł áááá”-6</annotation>
<annotation cp="đ©đ»âđŸ">á°á | áŽá” | á°áá | ášááł áááá”-1-2 | áá áŹ</annotation>
<annotation cp="đ©đ»âđŸ" type="tts">áŽá” áá áŹ: ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŒâđŸ">ááášáá áá á«á ášááł ááá | á°á | áŽá” | á°áá | áá áŹ</annotation>
<annotation cp="đ©đŒâđŸ" type="tts">áŽá” áá áŹ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đœâđŸ">á°á | áŽá” | á°áá | ášááł áááá”-4 | áá áŹ</annotation>
<annotation cp="đ©đœâđŸ" type="tts">áŽá” áá áŹ: ášááł áááá”-4</annotation>
<annotation cp="đ©đŸâđŸ">á°á | áŽá” | á°áá | ášááł áááá”-5 | áá áŹ</annotation>
<annotation cp="đ©đŸâđŸ" type="tts">áŽá” áá áŹ: ášááł áááá”-5</annotation>
<annotation cp="đ©đżâđŸ">á°á | áŽá” | á°áá | ášááł áááá”-6 | áá áŹ</annotation>
<annotation cp="đ©đżâđŸ" type="tts">áŽá” áá áŹ: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»âđł">áá„á°á | ášááł áááá”-1-2</annotation>
<annotation cp="đ§đ»âđł" type="tts">áá„á°á: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒâđł">ááášáá áá á«á ášááł ááá | áá„á°á</annotation>
<annotation cp="đ§đŒâđł" type="tts">áá„á°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœâđł">áá„á°á | ášááł áááá”-4</annotation>
<annotation cp="đ§đœâđł" type="tts">áá„á°á: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸâđł">áá„á°á | ášááł áááá”-5</annotation>
<annotation cp="đ§đŸâđł" type="tts">áá„á°á: ášááł áááá”-5</annotation>
<annotation cp="đ§đżâđł">áá„á°á | ášááł áááá”-6</annotation>
<annotation cp="đ§đżâđł" type="tts">áá„á°á: ášááł áááá”-6</annotation>
<annotation cp="đšđ»âđł">áá„á°á | ááá„ ááá
á” | á°á | áŒá | á á„áłá | ááá” | ášááł áááá”-1-2</annotation>
<annotation cp="đšđ»âđł" type="tts">ááá” á á„áłá: ášááł áááá”-1-2</annotation>
<annotation cp="đšđŒâđł">ááášáá áá á«á ášááł ááá | áá„á°á | ááá„ ááá
á” | á°á | áŒá | á á„áłá | ááá”</annotation>
<annotation cp="đšđŒâđł" type="tts">ááá” á á„áłá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđœâđł">áá„á°á | ááá„ ááá
á” | á°á | áŒá | á á„áłá | ááá” | ášááł áááá”-4</annotation>
<annotation cp="đšđœâđł" type="tts">ááá” á á„áłá: ášááł áááá”-4</annotation>
<annotation cp="đšđŸâđł">áá„á°á | ááá„ ááá
á” | á°á | áŒá | á á„áłá | ááá” | ášááł áááá”-5</annotation>
<annotation cp="đšđŸâđł" type="tts">ááá” á á„áłá: ášááł áááá”-5</annotation>
<annotation cp="đšđżâđł">áá„á°á | ááá„ ááá
á” | á°á | áŒá | á á„áłá | ááá” | ášááł áááá”-6</annotation>
<annotation cp="đšđżâđł" type="tts">ááá” á á„áłá: ášááł áááá”-6</annotation>
<annotation cp="đ©đ»âđł">áá„á°á | áŽá” | áŒá | á á„áłá | ášááł áááá”-1-2</annotation>
<annotation cp="đ©đ»âđł" type="tts">áŽá” á á„áłá: ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŒâđł">ááášáá áá á«á ášááł ááá | áá„á°á | áŽá” | áŒá | á á„áłá</annotation>
<annotation cp="đ©đŒâđł" type="tts">áŽá” á á„áłá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đœâđł">áá„á°á | áŽá” | áŒá | á á„áłá | ášááł áááá”-4</annotation>
<annotation cp="đ©đœâđł" type="tts">áŽá” á á„áłá: ášááł áááá”-4</annotation>
<annotation cp="đ©đŸâđł">áá„á°á | áŽá” | áŒá | á á„áłá | ášááł áááá”-5</annotation>
<annotation cp="đ©đŸâđł" type="tts">áŽá” á á„áłá: ášááł áááá”-5</annotation>
<annotation cp="đ©đżâđł">áá„á°á | áŽá” | áŒá | á á„áłá | ášááł áááá”-6</annotation>
<annotation cp="đ©đżâđł" type="tts">áŽá” á á„áłá: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»âđ§">áá«áá | ášááł áááá”-1-2</annotation>
<annotation cp="đ§đ»âđ§" type="tts">áá«áá: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒâđ§">ááášáá áá á«á ášááł ááá | áá«áá</annotation>
<annotation cp="đ§đŒâđ§" type="tts">áá«áá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœâđ§">áá«áá | ášááł áááá”-4</annotation>
<annotation cp="đ§đœâđ§" type="tts">áá«áá: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸâđ§">áá«áá | ášááł áááá”-5</annotation>
<annotation cp="đ§đŸâđ§" type="tts">áá«áá: ášááł áááá”-5</annotation>
<annotation cp="đ§đżâđ§">áá«áá | ášááł áááá”-6</annotation>
<annotation cp="đ§đżâđ§" type="tts">áá«áá: ášááł áááá”-6</annotation>
<annotation cp="đšđ»âđ§">áá«áá | áá«áá | á°á | ááá” | ášááł áááá”-1-2 | ášá§áá§ á°á«á°á | ášá€ááá”áȘá á°á«á°á</annotation>
<annotation cp="đšđ»âđ§" type="tts">ááá” áá«áá: ášááł áááá”-1-2</annotation>
<annotation cp="đšđŒâđ§">ááášáá áá á«á ášááł ááá | áá«áá | áá«áá | á°á | ááá” | ášá§áá§ á°á«á°á | ášá€ááá”áȘá á°á«á°á</annotation>
<annotation cp="đšđŒâđ§" type="tts">ááá” áá«áá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđœâđ§">áá«áá | áá«áá | á°á | ááá” | ášááł áááá”-4 | ášá§áá§ á°á«á°á | ášá€ááá”áȘá á°á«á°á</annotation>
<annotation cp="đšđœâđ§" type="tts">ááá” áá«áá: ášááł áááá”-4</annotation>
<annotation cp="đšđŸâđ§">áá«áá | áá«áá | á°á | ááá” | ášááł áááá”-5 | ášá§áá§ á°á«á°á | ášá€ááá”áȘá á°á«á°á</annotation>
<annotation cp="đšđŸâđ§" type="tts">ááá” áá«áá: ášááł áááá”-5</annotation>
<annotation cp="đšđżâđ§">áá«áá | áá«áá | á°á | ááá” | ášááł áááá”-6 | ášá§áá§ á°á«á°á | ášá€ááá”áȘá á°á«á°á</annotation>
<annotation cp="đšđżâđ§" type="tts">ááá” áá«áá: ášááł áááá”-6</annotation>
<annotation cp="đ©đ»âđ§">áá«áá | á°á | áŽá” | ášááł áááá”-1-2 | ášá§áá§ á°á«á°á | ášá€ááá”áȘá á°á«á°á</annotation>
<annotation cp="đ©đ»âđ§" type="tts">áŽá” áá«áá: ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŒâđ§">ááášáá áá á«á ášááł ááá | áá«áá | á°á | áŽá” | ášá§áá§ á°á«á°á | ášá€ááá”áȘá á°á«á°á</annotation>
<annotation cp="đ©đŒâđ§" type="tts">áŽá” áá«áá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đœâđ§">áá«áá | á°á | áŽá” | ášááł áááá”-4 | ášá§áá§ á°á«á°á | ášá€ááá”áȘá á°á«á°á</annotation>
<annotation cp="đ©đœâđ§" type="tts">áŽá” áá«áá: ášááł áááá”-4</annotation>
<annotation cp="đ©đŸâđ§">áá«áá | á°á | áŽá” | ášááł áááá”-5 | ášá§áá§ á°á«á°á | ášá€ááá”áȘá á°á«á°á</annotation>
<annotation cp="đ©đŸâđ§" type="tts">áŽá” áá«áá: ášááł áááá”-5</annotation>
<annotation cp="đ©đżâđ§">áá«áá | á°á | áŽá” | ášááł áááá”-6 | ášá§áá§ á°á«á°á | ášá€ááá”áȘá á°á«á°á</annotation>
<annotation cp="đ©đżâđ§" type="tts">áŽá” áá«áá: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»âđ">ášááł áááá”-1-2 | ášáá„áȘá« á°á«á°á</annotation>
<annotation cp="đ§đ»âđ" type="tts">ášáá„áȘá« á°á«á°á: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒâđ">ááášáá áá á«á ášááł ááá | ášáá„áȘá« á°á«á°á</annotation>
<annotation cp="đ§đŒâđ" type="tts">ášáá„áȘá« á°á«á°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœâđ">ášááł áááá”-4 | ášáá„áȘá« á°á«á°á</annotation>
<annotation cp="đ§đœâđ" type="tts">ášáá„áȘá« á°á«á°á: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸâđ">ášááł áááá”-5 | ášáá„áȘá« á°á«á°á</annotation>
<annotation cp="đ§đŸâđ" type="tts">ášáá„áȘá« á°á«á°á: ášááł áááá”-5</annotation>
<annotation cp="đ§đżâđ">ášááł áááá”-6 | ášáá„áȘá« á°á«á°á</annotation>
<annotation cp="đ§đżâđ" type="tts">ášáá„áȘá« á°á«á°á: ášááł áááá”-6</annotation>
<annotation cp="đšđ»âđ">áááŁá áá« | á°á«á°á | áąáá±á”á”áȘ | ááá” | ááá” ášáá„áȘá« á°á«á°á | ášááł áááá”-1-2 | áá„áȘá«</annotation>
<annotation cp="đšđ»âđ" type="tts">ááá” ášáá„áȘá« á°á«á°á: ášááł áááá”-1-2</annotation>
<annotation cp="đšđŒâđ">ááášáá áá á«á ášááł ááá | áááŁá áá« | á°á«á°á | áąáá±á”á”áȘ | ááá” | ááá” ášáá„áȘá« á°á«á°á | áá„áȘá«</annotation>
<annotation cp="đšđŒâđ" type="tts">ááá” ášáá„áȘá« á°á«á°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđœâđ">áááŁá áá« | á°á«á°á | áąáá±á”á”áȘ | ááá” | ááá” ášáá„áȘá« á°á«á°á | ášááł áááá”-4 | áá„áȘá«</annotation>
<annotation cp="đšđœâđ" type="tts">ááá” ášáá„áȘá« á°á«á°á: ášááł áááá”-4</annotation>
<annotation cp="đšđŸâđ">áááŁá áá« | á°á«á°á | áąáá±á”á”áȘ | ááá” | ááá” ášáá„áȘá« á°á«á°á | ášááł áááá”-5 | áá„áȘá«</annotation>
<annotation cp="đšđŸâđ" type="tts">ááá” ášáá„áȘá« á°á«á°á: ášááł áááá”-5</annotation>
<annotation cp="đšđżâđ">áááŁá áá« | á°á«á°á | áąáá±á”á”áȘ | ááá” | ááá” ášáá„áȘá« á°á«á°á | ášááł áááá”-6 | áá„áȘá«</annotation>
<annotation cp="đšđżâđ" type="tts">ááá” ášáá„áȘá« á°á«á°á: ášááł áááá”-6</annotation>
<annotation cp="đ©đ»âđ">áááŁá áá« | á°á«á°á | áŽá” ášáá„áȘá« á°á«á°á | áąáá±á”á”áȘ | ášááł áááá”-1-2 | áá„áȘá«</annotation>
<annotation cp="đ©đ»âđ" type="tts">áŽá” ášáá„áȘá« á°á«á°á: ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŒâđ">ááášáá áá á«á ášááł ááá | áááŁá áá« | á°á«á°á | áŽá” ášáá„áȘá« á°á«á°á | áąáá±á”á”áȘ | áá„áȘá«</annotation>
<annotation cp="đ©đŒâđ" type="tts">áŽá” ášáá„áȘá« á°á«á°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đœâđ">áááŁá áá« | á°á«á°á | áŽá” ášáá„áȘá« á°á«á°á | áąáá±á”á”áȘ | ášááł áááá”-4 | áá„áȘá«</annotation>
<annotation cp="đ©đœâđ" type="tts">áŽá” ášáá„áȘá« á°á«á°á: ášááł áááá”-4</annotation>
<annotation cp="đ©đŸâđ">áááŁá áá« | á°á«á°á | áŽá” ášáá„áȘá« á°á«á°á | áąáá±á”á”áȘ | ášááł áááá”-5 | áá„áȘá«</annotation>
<annotation cp="đ©đŸâđ" type="tts">áŽá” ášáá„áȘá« á°á«á°á: ášááł áááá”-5</annotation>
<annotation cp="đ©đżâđ">áááŁá áá« | á°á«á°á | áŽá” ášáá„áȘá« á°á«á°á | áąáá±á”á”áȘ | ášááł áááá”-6 | áá„áȘá«</annotation>
<annotation cp="đ©đżâđ" type="tts">áŽá” ášáá„áȘá« á°á«á°á: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»âđŒ">ášááł áááá”-1-2 | ášá€áź á°á«á°á</annotation>
<annotation cp="đ§đ»âđŒ" type="tts">ášá€áź á°á«á°á: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒâđŒ">ááášáá áá á«á ášááł ááá | ášá€áź á°á«á°á</annotation>
<annotation cp="đ§đŒâđŒ" type="tts">ášá€áź á°á«á°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœâđŒ">ášááł áááá”-4 | ášá€áź á°á«á°á</annotation>
<annotation cp="đ§đœâđŒ" type="tts">ášá€áź á°á«á°á: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸâđŒ">ášááł áááá”-5 | ášá€áź á°á«á°á</annotation>
<annotation cp="đ§đŸâđŒ" type="tts">ášá€áź á°á«á°á: ášááł áááá”-5</annotation>
<annotation cp="đ§đżâđŒ">ášááł áááá”-6 | ášá€áź á°á«á°á</annotation>
<annotation cp="đ§đżâđŒ" type="tts">ášá€áź á°á«á°á: ášááł áááá”-6</annotation>
<annotation cp="đšđ»âđŒ">ááááČá” | ážáá ášášáŁá” | á á°áá„ ášáá á° | ááá” | á á”á°áłáłáȘ | ááá” | ááá” ášáąáź á°á«á°á | ášááł áááá”-1-2</annotation>
<annotation cp="đšđ»âđŒ" type="tts">ááá” ášáąáź á°á«á°á: ášááł áááá”-1-2</annotation>
<annotation cp="đšđŒâđŒ">ááášáá áá á«á ášááł ááá | ááááČá” | ážáá ášášáŁá” | á á°áá„ ášáá á° | ááá” | á á”á°áłáłáȘ | ááá” | ááá” ášáąáź á°á«á°á</annotation>
<annotation cp="đšđŒâđŒ" type="tts">ááá” ášáąáź á°á«á°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđœâđŒ">ááááČá” | ážáá ášášáŁá” | á á°áá„ ášáá á° | ááá” | á á”á°áłáłáȘ | ááá” | ááá” ášáąáź á°á«á°á | ášááł áááá”-4</annotation>
<annotation cp="đšđœâđŒ" type="tts">ááá” ášáąáź á°á«á°á: ášááł áááá”-4</annotation>
<annotation cp="đšđŸâđŒ">ááááČá” | ážáá ášášáŁá” | á á°áá„ ášáá á° | ááá” | á á”á°áłáłáȘ | ááá” | ááá” ášáąáź á°á«á°á | ášááł áááá”-5</annotation>
<annotation cp="đšđŸâđŒ" type="tts">ááá” ášáąáź á°á«á°á: ášááł áááá”-5</annotation>
<annotation cp="đšđżâđŒ">ááááČá” | ážáá ášášáŁá” | á á°áá„ ášáá á° | ááá” | á á”á°áłáłáȘ | ááá” | ááá” ášáąáź á°á«á°á | ášááł áááá”-6</annotation>
<annotation cp="đšđżâđŒ" type="tts">ááá” ášáąáź á°á«á°á: ášááł áááá”-6</annotation>
<annotation cp="đ©đ»âđŒ">ááááČá” | áŽá” | áŽá” ášáąáź á°á«á°á | ááá” | á á”á°áłáłáȘ | ášááł áááá”-1-2</annotation>
<annotation cp="đ©đ»âđŒ" type="tts">áŽá” ášáąáź á°á«á°á: ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŒâđŒ">ááášáá áá á«á ášááł ááá | ááááČá” | áŽá” | áŽá” ášáąáź á°á«á°á | ááá” | á á”á°áłáłáȘ</annotation>
<annotation cp="đ©đŒâđŒ" type="tts">áŽá” ášáąáź á°á«á°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đœâđŒ">ááááČá” | áŽá” | áŽá” ášáąáź á°á«á°á | ááá” | á á”á°áłáłáȘ | ášááł áááá”-4</annotation>
<annotation cp="đ©đœâđŒ" type="tts">áŽá” ášáąáź á°á«á°á: ášááł áááá”-4</annotation>
<annotation cp="đ©đŸâđŒ">ááááČá” | áŽá” | áŽá” ášáąáź á°á«á°á | ááá” | á á”á°áłáłáȘ | ášááł áááá”-5</annotation>
<annotation cp="đ©đŸâđŒ" type="tts">áŽá” ášáąáź á°á«á°á: ášááł áááá”-5</annotation>
<annotation cp="đ©đżâđŒ">ááááČá” | áŽá” | áŽá” ášáąáź á°á«á°á | ááá” | á á”á°áłáłáȘ | ášááł áááá”-6</annotation>
<annotation cp="đ©đżâđŒ" type="tts">áŽá” ášáąáź á°á«á°á: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»âđŹ">áłáááČá”á” | ášááł áááá”-1-2</annotation>
<annotation cp="đ§đ»âđŹ" type="tts">áłáááČá”á”: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒâđŹ">ááášáá áá á«á ášááł ááá | áłáááČá”á”</annotation>
<annotation cp="đ§đŒâđŹ" type="tts">áłáááČá”á”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœâđŹ">áłáááČá”á” | ášááł áááá”-4</annotation>
<annotation cp="đ§đœâđŹ" type="tts">áłáááČá”á”: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸâđŹ">áłáááČá”á” | ášááł áááá”-5</annotation>
<annotation cp="đ§đŸâđŹ" type="tts">áłáááČá”á”: ášááł áááá”-5</annotation>
<annotation cp="đ§đżâđŹ">áłáááČá”á” | ášááł áááá”-6</annotation>
<annotation cp="đ§đżâđŹ" type="tts">áłáááČá”á”: ášááł áááá”-6</annotation>
<annotation cp="đšđ»âđŹ">áłáááČá”á” | áŁáźááá”á” | áąáááá | áŹáá”á” | ááá” | ášááł áááá”-1-2</annotation>
<annotation cp="đšđ»âđŹ" type="tts">ááá” áłáááČá”á”: ášááł áááá”-1-2</annotation>
<annotation cp="đšđŒâđŹ">ááášáá áá á«á ášááł ááá | áłáááČá”á” | áŁáźááá”á” | áąáááá | áŹáá”á” | ááá”</annotation>
<annotation cp="đšđŒâđŹ" type="tts">ááá” áłáááČá”á”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđœâđŹ">áłáááČá”á” | áŁáźááá”á” | áąáááá | áŹáá”á” | ááá” | ášááł áááá”-4</annotation>
<annotation cp="đšđœâđŹ" type="tts">ááá” áłáááČá”á”: ášááł áááá”-4</annotation>
<annotation cp="đšđŸâđŹ">áłáááČá”á” | áŁáźááá”á” | áąáááá | áŹáá”á” | ááá” | ášááł áááá”-5</annotation>
<annotation cp="đšđŸâđŹ" type="tts">ááá” áłáááČá”á”: ášááł áááá”-5</annotation>
<annotation cp="đšđżâđŹ">áłáááČá”á” | áŁáźááá”á” | áąáááá | áŹáá”á” | ááá” | ášááł áááá”-6</annotation>
<annotation cp="đšđżâđŹ" type="tts">ááá” áłáááČá”á”: ášááł áááá”-6</annotation>
<annotation cp="đ©đ»âđŹ">áłáááČá”á” | áŽá” | áŁáźááá”á” | áąáááá | áŹáá”á” | ášááł áááá”-1-2</annotation>
<annotation cp="đ©đ»âđŹ" type="tts">áŽá” áłáááČá”á”: ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŒâđŹ">ááášáá áá á«á ášááł ááá | áłáááČá”á” | áŽá” | áŁáźááá”á” | áąáááá | áŹáá”á”</annotation>
<annotation cp="đ©đŒâđŹ" type="tts">áŽá” áłáááČá”á”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đœâđŹ">áłáááČá”á” | áŽá” | áŁáźááá”á” | áąáááá | áŹáá”á” | ášááł áááá”-4</annotation>
<annotation cp="đ©đœâđŹ" type="tts">áŽá” áłáááČá”á”: ášááł áááá”-4</annotation>
<annotation cp="đ©đŸâđŹ">áłáááČá”á” | áŽá” | áŁáźááá”á” | áąáááá | áŹáá”á” | ášááł áááá”-5</annotation>
<annotation cp="đ©đŸâđŹ" type="tts">áŽá” áłáááČá”á”: ášááł áááá”-5</annotation>
<annotation cp="đ©đżâđŹ">áłáááČá”á” | áŽá” | áŁáźááá”á” | áąáááá | áŹáá”á” | ášááł áááá”-6</annotation>
<annotation cp="đ©đżâđŹ" type="tts">áŽá” áłáááČá”á”: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»âđ»">áŽááááá”á” | ášááł áááá”-1-2</annotation>
<annotation cp="đ§đ»âđ»" type="tts">áŽááááá”á”: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒâđ»">ááášáá áá á«á ášááł ááá | áŽááááá”á”</annotation>
<annotation cp="đ§đŒâđ»" type="tts">áŽááááá”á”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœâđ»">áŽááááá”á” | ášááł áááá”-4</annotation>
<annotation cp="đ§đœâđ»" type="tts">áŽááááá”á”: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸâđ»">áŽááááá”á” | ášááł áááá”-5</annotation>
<annotation cp="đ§đŸâđ»" type="tts">áŽááááá”á”: ášááł áááá”-5</annotation>
<annotation cp="đ§đżâđ»">áŽááááá”á” | ášááł áááá”-6</annotation>
<annotation cp="đ§đżâđ»" type="tts">áŽááááá”á”: ášááł áááá”-6</annotation>
<annotation cp="đšđ»âđ»">á¶áá”áá | á¶áá”áá á áá | áŽáááá á áá | ááá” | ááá” áŽáááá á áá | ášááł áááá”-1-2 | ááŁáȘ | ááźáá«áá</annotation>
<annotation cp="đšđ»âđ»" type="tts">ááá” áŽáááá á áá: ášááł áááá”-1-2</annotation>
<annotation cp="đšđŒâđ»">ááášáá áá á«á ášááł ááá | á¶áá”áá | á¶áá”áá á áá | áŽáááá á áá | ááá” | ááá” áŽáááá á áá | ááŁáȘ | ááźáá«áá</annotation>
<annotation cp="đšđŒâđ»" type="tts">ááá” áŽáááá á áá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđœâđ»">á¶áá”áá | á¶áá”áá á áá | áŽáááá á áá | ááá” | ááá” áŽáááá á áá | ášááł áááá”-4 | ááŁáȘ | ááźáá«áá</annotation>
<annotation cp="đšđœâđ»" type="tts">ááá” áŽáááá á áá: ášááł áááá”-4</annotation>
<annotation cp="đšđŸâđ»">á¶áá”áá | á¶áá”áá á áá | áŽáááá á áá | ááá” | ááá” áŽáááá á áá | ášááł áááá”-5 | ááŁáȘ | ááźáá«áá</annotation>
<annotation cp="đšđŸâđ»" type="tts">ááá” áŽáááá á áá: ášááł áááá”-5</annotation>
<annotation cp="đšđżâđ»">á¶áá”áá | á¶áá”áá á áá | áŽáááá á áá | ááá” | ááá” áŽáááá á áá | ášááł áááá”-6 | ááŁáȘ | ááźáá«áá</annotation>
<annotation cp="đšđżâđ»" type="tts">ááá” áŽáááá á áá: ášááł áááá”-6</annotation>
<annotation cp="đ©đ»âđ»">áŽá” | áŽá” áŽáááá á áá | áŽá” ááźáá«áá | á¶áá”áá | áŽáááá á áá | ášááł áááá”-1-2 | ááŁáȘ</annotation>
<annotation cp="đ©đ»âđ»" type="tts">áŽá” áŽáááá á áá: ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŒâđ»">ááášáá áá á«á ášááł ááá | áŽá” | áŽá” áŽáááá á áá | áŽá” ááźáá«áá | á¶áá”áá | áŽáááá á áá | ááŁáȘ</annotation>
<annotation cp="đ©đŒâđ»" type="tts">áŽá” áŽáááá á áá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đœâđ»">áŽá” | áŽá” áŽáááá á áá | áŽá” ááźáá«áá | á¶áá”áá | áŽáááá á áá | ášááł áááá”-4 | ááŁáȘ</annotation>
<annotation cp="đ©đœâđ»" type="tts">áŽá” áŽáááá á áá: ášááł áááá”-4</annotation>
<annotation cp="đ©đŸâđ»">áŽá” | áŽá” áŽáááá á áá | áŽá” ááźáá«áá | á¶áá”áá | áŽáááá á áá | ášááł áááá”-5 | ááŁáȘ</annotation>
<annotation cp="đ©đŸâđ»" type="tts">áŽá” áŽáááá á áá: ášááł áááá”-5</annotation>
<annotation cp="đ©đżâđ»">áŽá” | áŽá” áŽáááá á áá | áŽá” ááźáá«áá | á¶áá”áá | áŽáááá á áá | ášááł áááá”-6 | ááŁáȘ</annotation>
<annotation cp="đ©đżâđ»" type="tts">áŽá” áŽáááá á áá: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»âđ€">ááá | ášááł áááá”-1-2</annotation>
<annotation cp="đ§đ»âđ€" type="tts">ááá: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒâđ€">ááášáá áá á«á ášááł ááá | ááá</annotation>
<annotation cp="đ§đŒâđ€" type="tts">ááá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœâđ€">ááá | ášááł áááá”-4</annotation>
<annotation cp="đ§đœâđ€" type="tts">ááá: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸâđ€">ááá | ášááł áááá”-5</annotation>
<annotation cp="đ§đŸâđ€" type="tts">ááá: ášááł áááá”-5</annotation>
<annotation cp="đ§đżâđ€">ááá | ášááł áááá”-6</annotation>
<annotation cp="đ§đżâđ€" type="tts">ááá: ášááł áááá”-6</annotation>
<annotation cp="đšđ»âđ€">á°ááá | á ááá | áźášá„ | ááá” | ááá | ášááł áááá”-1-2</annotation>
<annotation cp="đšđ»âđ€" type="tts">ááá” ááá: ášááł áááá”-1-2</annotation>
<annotation cp="đšđŒâđ€">ááášáá áá á«á ášááł ááá | á°ááá | á ááá | áźášá„ | ááá” | ááá</annotation>
<annotation cp="đšđŒâđ€" type="tts">ááá” ááá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđœâđ€">á°ááá | á ááá | áźášá„ | ááá” | ááá | ášááł áááá”-4</annotation>
<annotation cp="đšđœâđ€" type="tts">ááá” ááá: ášááł áááá”-4</annotation>
<annotation cp="đšđŸâđ€">á°ááá | á ááá | áźášá„ | ááá” | ááá | ášááł áááá”-5</annotation>
<annotation cp="đšđŸâđ€" type="tts">ááá” ááá: ášááł áááá”-5</annotation>
<annotation cp="đšđżâđ€">á°ááá | á ááá | áźášá„ | ááá” | ááá | ášááł áááá”-6</annotation>
<annotation cp="đšđżâđ€" type="tts">ááá” ááá: ášááł áááá”-6</annotation>
<annotation cp="đ©đ»âđ€">áŽá” | á°ááá | á ááá | áźášá„ | ááá | ášááł áááá”-1-2</annotation>
<annotation cp="đ©đ»âđ€" type="tts">áŽá” ááá: ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŒâđ€">ááášáá áá á«á ášááł ááá | áŽá” | á°ááá | á ááá | áźášá„ | ááá</annotation>
<annotation cp="đ©đŒâđ€" type="tts">áŽá” ááá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đœâđ€">áŽá” | á°ááá | á ááá | áźášá„ | ááá | ášááł áááá”-4</annotation>
<annotation cp="đ©đœâđ€" type="tts">áŽá” ááá: ášááł áááá”-4</annotation>
<annotation cp="đ©đŸâđ€">áŽá” | á°ááá | á ááá | áźášá„ | ááá | ášááł áááá”-5</annotation>
<annotation cp="đ©đŸâđ€" type="tts">áŽá” ááá: ášááł áááá”-5</annotation>
<annotation cp="đ©đżâđ€">áŽá” | á°ááá | á ááá | áźášá„ | ááá | ášááł áááá”-6</annotation>
<annotation cp="đ©đżâđ€" type="tts">áŽá” ááá: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»âđš">á ááČá”á” | ášááł áááá”-1-2</annotation>
<annotation cp="đ§đ»âđš" type="tts">á ááČá”á”: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒâđš">ááášáá áá á«á ášááł ááá | á ááČá”á”</annotation>
<annotation cp="đ§đŒâđš" type="tts">á ááČá”á”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœâđš">á ááČá”á” | ášááł áááá”-4</annotation>
<annotation cp="đ§đœâđš" type="tts">á ááČá”á”: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸâđš">á ááČá”á” | ášááł áááá”-5</annotation>
<annotation cp="đ§đŸâđš" type="tts">á ááČá”á”: ášááł áááá”-5</annotation>
<annotation cp="đ§đżâđš">á ááČá”á” | ášááł áááá”-6</annotation>
<annotation cp="đ§đżâđš" type="tts">á ááČá”á”: ášááł áááá”-6</annotation>
<annotation cp="đšđ»âđš">á áá | á°á | ááá” | ášá„áá á
á„ á„á« | ášááł áááá”-1-2</annotation>
<annotation cp="đšđ»âđš" type="tts">ááá” á áá: ášááł áááá”-1-2</annotation>
<annotation cp="đšđŒâđš">ááášáá áá á«á ášááł ááá | á áá | á°á | ááá” | ášá„áá á
á„ á„á«</annotation>
<annotation cp="đšđŒâđš" type="tts">ááá” á áá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđœâđš">á áá | á°á | ááá” | ášá„áá á
á„ á„á« | ášááł áááá”-4</annotation>
<annotation cp="đšđœâđš" type="tts">ááá” á áá: ášááł áááá”-4</annotation>
<annotation cp="đšđŸâđš">á áá | á°á | ááá” | ášá„áá á
á„ á„á« | ášááł áááá”-5</annotation>
<annotation cp="đšđŸâđš" type="tts">ááá” á áá: ášááł áááá”-5</annotation>
<annotation cp="đšđżâđš">á áá | á°á | ááá” | ášá„áá á
á„ á„á« | ášááł áááá”-6</annotation>
<annotation cp="đšđżâđš" type="tts">ááá” á áá: ášááł áááá”-6</annotation>
<annotation cp="đ©đ»âđš">á áá | á°á | áŽá” | ášá„áá á
á„ á„á« | ášááł áááá”-1-2</annotation>
<annotation cp="đ©đ»âđš" type="tts">áŽá” á áá: ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŒâđš">ááášáá áá á«á ášááł ááá | á áá | á°á | áŽá” | ášá„áá á
á„ á„á«</annotation>
<annotation cp="đ©đŒâđš" type="tts">áŽá” á áá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đœâđš">á áá | á°á | áŽá” | ášá„áá á
á„ á„á« | ášááł áááá”-4</annotation>
<annotation cp="đ©đœâđš" type="tts">áŽá” á áá: ášááł áááá”-4</annotation>
<annotation cp="đ©đŸâđš">á áá | á°á | áŽá” | ášá„áá á
á„ á„á« | ášááł áááá”-5</annotation>
<annotation cp="đ©đŸâđš" type="tts">áŽá” á áá: ášááł áááá”-5</annotation>
<annotation cp="đ©đżâđš">á áá | á°á | áŽá” | ášá„áá á
á„ á„á« | ášááł áááá”-6</annotation>
<annotation cp="đ©đżâđš" type="tts">áŽá” á áá: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»ââ">ášááł áááá”-1-2 | áááá”</annotation>
<annotation cp="đ§đ»ââ" type="tts">áááá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒââ">ááášáá áá á«á ášááł ááá | áááá”</annotation>
<annotation cp="đ§đŒââ" type="tts">áááá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœââ">ášááł áááá”-4 | áááá”</annotation>
<annotation cp="đ§đœââ" type="tts">áááá”: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸââ">ášááł áááá”-5 | áááá”</annotation>
<annotation cp="đ§đŸââ" type="tts">áááá”: ášááł áááá”-5</annotation>
<annotation cp="đ§đżââ">ášááł áááá”-6 | áááá”</annotation>
<annotation cp="đ§đżââ" type="tts">áááá”: ášááł áááá”-6</annotation>
<annotation cp="đšđ»ââ">á°á | á ááźááá | á ááźááá á á„á«áȘ | ááá” | ááá” á ááźááá á á„á«áȘ | ášááł áááá”-1-2</annotation>
<annotation cp="đšđ»ââ" type="tts">ááá” á ááźááá á á„á«áȘ: ášááł áááá”-1-2</annotation>
<annotation cp="đšđŒââ">ááášáá áá á«á ášááł ááá | á°á | á ááźááá | á ááźááá á á„á«áȘ | ááá” | ááá” á ááźááá á á„á«áȘ</annotation>
<annotation cp="đšđŒââ" type="tts">ááá” á ááźááá á á„á«áȘ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđœââ">á°á | á ááźááá | á ááźááá á á„á«áȘ | ááá” | ááá” á ááźááá á á„á«áȘ | ášááł áááá”-4</annotation>
<annotation cp="đšđœââ" type="tts">ááá” á ááźááá á á„á«áȘ: ášááł áááá”-4</annotation>
<annotation cp="đšđŸââ">á°á | á ááźááá | á ááźááá á á„á«áȘ | ááá” | ááá” á ááźááá á á„á«áȘ | ášááł áááá”-5</annotation>
<annotation cp="đšđŸââ" type="tts">ááá” á ááźááá á á„á«áȘ: ášááł áááá”-5</annotation>
<annotation cp="đšđżââ">á°á | á ááźááá | á ááźááá á á„á«áȘ | ááá” | ááá” á ááźááá á á„á«áȘ | ášááł áááá”-6</annotation>
<annotation cp="đšđżââ" type="tts">ááá” á ááźááá á á„á«áȘ: ášááł áááá”-6</annotation>
<annotation cp="đ©đ»ââ">á°á | áŽá” | áŽá” á ááźááá á á„á«áȘ | á ááźááá | á ááźááá á á„á«áȘ | ášááł áááá”-1-2</annotation>
<annotation cp="đ©đ»ââ" type="tts">áŽá” á ááźááá á á„á«áȘ: ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŒââ">ááášáá áá á«á ášááł ááá | á°á | áŽá” | áŽá” á ááźááá á á„á«áȘ | á ááźááá | á ááźááá á á„á«áȘ</annotation>
<annotation cp="đ©đŒââ" type="tts">áŽá” á ááźááá á á„á«áȘ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đœââ">á°á | áŽá” | áŽá” á ááźááá á á„á«áȘ | á ááźááá | á ááźááá á á„á«áȘ | ášááł áááá”-4</annotation>
<annotation cp="đ©đœââ" type="tts">áŽá” á ááźááá á á„á«áȘ: ášááł áááá”-4</annotation>
<annotation cp="đ©đŸââ">á°á | áŽá” | áŽá” á ááźááá á á„á«áȘ | á ááźááá | á ááźááá á á„á«áȘ | ášááł áááá”-5</annotation>
<annotation cp="đ©đŸââ" type="tts">áŽá” á ááźááá á á„á«áȘ: ášááł áááá”-5</annotation>
<annotation cp="đ©đżââ">á°á | áŽá” | áŽá” á ááźááá á á„á«áȘ | á ááźááá | á ááźááá á á„á«áȘ | ášááł áááá”-6</annotation>
<annotation cp="đ©đżââ" type="tts">áŽá” á ááźááá á á„á«áȘ: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»âđ">ášááł áááá”-1-2 | ášá áá á°áá«ááȘ</annotation>
<annotation cp="đ§đ»âđ" type="tts">ášá áá á°áá«ááȘ: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒâđ">ááášáá áá á«á ášááł ááá | ášá áá á°áá«ááȘ</annotation>
<annotation cp="đ§đŒâđ" type="tts">ášá áá á°áá«ááȘ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœâđ">ášááł áááá”-4 | ášá áá á°áá«ááȘ</annotation>
<annotation cp="đ§đœâđ" type="tts">ášá áá á°áá«ááȘ: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸâđ">ášááł áááá”-5 | ášá áá á°áá«ááȘ</annotation>
<annotation cp="đ§đŸâđ" type="tts">ášá áá á°áá«ááȘ: ášááł áááá”-5</annotation>
<annotation cp="đ§đżâđ">ášááł áááá”-6 | ášá áá á°áá«ááȘ</annotation>
<annotation cp="đ§đżâđ" type="tts">ášá áá á°áá«ááȘ: ášááł áááá”-6</annotation>
<annotation cp="đšđ»âđ">á
á | áááźá«á©á | áźáŹá” | á°á | á á”á”áźáá” | ááá” | ááá” ášá
á á°áá«ááȘ | ášááł áááá”-1-2</annotation>
<annotation cp="đšđ»âđ" type="tts">ááá” ášá
á á°áá«ááȘ: ášááł áááá”-1-2</annotation>
<annotation cp="đšđŒâđ">á
á | ááášáá áá á«á ášááł ááá | áááźá«á©á | áźáŹá” | á°á | á á”á”áźáá” | ááá” | ááá” ášá
á á°áá«ááȘ</annotation>
<annotation cp="đšđŒâđ" type="tts">ááá” ášá
á á°áá«ááȘ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđœâđ">á
á | áááźá«á©á | áźáŹá” | á°á | á á”á”áźáá” | ááá” | ááá” ášá
á á°áá«ááȘ | ášááł áááá”-4</annotation>
<annotation cp="đšđœâđ" type="tts">ááá” ášá
á á°áá«ááȘ: ášááł áááá”-4</annotation>
<annotation cp="đšđŸâđ">á
á | áááźá«á©á | áźáŹá” | á°á | á á”á”áźáá” | ááá” | ááá” ášá
á á°áá«ááȘ | ášááł áááá”-5</annotation>
<annotation cp="đšđŸâđ" type="tts">ááá” ášá
á á°áá«ááȘ: ášááł áááá”-5</annotation>
<annotation cp="đšđżâđ">á
á | áááźá«á©á | áźáŹá” | á°á | á á”á”áźáá” | ááá” | ááá” ášá
á á°áá«ááȘ | ášááł áááá”-6</annotation>
<annotation cp="đšđżâđ" type="tts">ááá” ášá
á á°áá«ááȘ: ášááł áááá”-6</annotation>
<annotation cp="đ©đ»âđ">á
á | áááźá«á©á | áźáŹá” | áŽá” ášá
á á°áá«ááȘ | á á”á”áźáá” | ááá” | ášááł áááá”-1-2</annotation>
<annotation cp="đ©đ»âđ" type="tts">áŽá” ášá
á á°áá«ááȘ: ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŒâđ">á
á | ááášáá áá á«á ášááł ááá | áááźá«á©á | áźáŹá” | áŽá” ášá
á á°áá«ááȘ | á á”á”áźáá” | ááá”</annotation>
<annotation cp="đ©đŒâđ" type="tts">áŽá” ášá
á á°áá«ááȘ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đœâđ">á
á | áááźá«á©á | áźáŹá” | áŽá” ášá
á á°áá«ááȘ | á á”á”áźáá” | ááá” | ášááł áááá”-4</annotation>
<annotation cp="đ©đœâđ" type="tts">áŽá” ášá
á á°áá«ááȘ: ášááł áááá”-4</annotation>
<annotation cp="đ©đŸâđ">á
á | áááźá«á©á | áźáŹá” | áŽá” ášá
á á°áá«ááȘ | á á”á”áźáá” | ááá” | ášááł áááá”-5</annotation>
<annotation cp="đ©đŸâđ" type="tts">áŽá” ášá
á á°áá«ááȘ: ášááł áááá”-5</annotation>
<annotation cp="đ©đżâđ">á
á | áááźá«á©á | áźáŹá” | áŽá” ášá
á á°áá«ááȘ | á á”á”áźáá” | ááá” | ášááł áááá”-6</annotation>
<annotation cp="đ©đżâđ" type="tts">áŽá” ášá
á á°áá«ááȘ: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»âđ">ášááł áááá”-1-2 | ášá„áłá” á á°á á°ášáá«á</annotation>
<annotation cp="đ§đ»âđ" type="tts">ášá„áłá” á á°á á°ášáá«á: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒâđ">ááášáá áá á«á ášááł ááá | ášá„áłá” á á°á á°ášáá«á</annotation>
<annotation cp="đ§đŒâđ" type="tts">ášá„áłá” á á°á á°ášáá«á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœâđ">ášááł áááá”-4 | ášá„áłá” á á°á á°ášáá«á</annotation>
<annotation cp="đ§đœâđ" type="tts">ášá„áłá” á á°á á°ášáá«á: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸâđ">ášááł áááá”-5 | ášá„áłá” á á°á á°ášáá«á</annotation>
<annotation cp="đ§đŸâđ" type="tts">ášá„áłá” á á°á á°ášáá«á: ášááł áááá”-5</annotation>
<annotation cp="đ§đżâđ">ášááł áááá”-6 | ášá„áłá” á á°á á°ášáá«á</annotation>
<annotation cp="đ§đżâđ" type="tts">ášá„áłá” á á°á á°ášáá«á: ášááł áááá”-6</annotation>
<annotation cp="đšđ»âđ">á°á | ááá” | ááá” ášá„áłá” á á°á á°ášáá«á | ášááł áááá”-1-2 | ášá„áłá” á á°á ááȘá | ášá„áłá” á á°á á°ášáá«á</annotation>
<annotation cp="đšđ»âđ" type="tts">ááá” ášá„áłá” á á°á á°ášáá«á: ášááł áááá”-1-2</annotation>
<annotation cp="đšđŒâđ">ááášáá áá á«á ášááł ááá | á°á | ááá” | ááá” ášá„áłá” á á°á á°ášáá«á | ášá„áłá” á á°á ááȘá | ášá„áłá” á á°á á°ášáá«á</annotation>
<annotation cp="đšđŒâđ" type="tts">ááá” ášá„áłá” á á°á á°ášáá«á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđœâđ">á°á | ááá” | ááá” ášá„áłá” á á°á á°ášáá«á | ášááł áááá”-4 | ášá„áłá” á á°á ááȘá | ášá„áłá” á á°á á°ášáá«á</annotation>
<annotation cp="đšđœâđ" type="tts">ááá” ášá„áłá” á á°á á°ášáá«á: ášááł áááá”-4</annotation>
<annotation cp="đšđŸâđ">á°á | ááá” | ááá” ášá„áłá” á á°á á°ášáá«á | ášááł áááá”-5 | ášá„áłá” á á°á ááȘá | ášá„áłá” á á°á á°ášáá«á</annotation>
<annotation cp="đšđŸâđ" type="tts">ááá” ášá„áłá” á á°á á°ášáá«á: ášááł áááá”-5</annotation>
<annotation cp="đšđżâđ">á°á | ááá” | ááá” ášá„áłá” á á°á á°ášáá«á | ášááł áááá”-6 | ášá„áłá” á á°á ááȘá | ášá„áłá” á á°á á°ášáá«á</annotation>
<annotation cp="đšđżâđ" type="tts">ááá” ášá„áłá” á á°á á°ášáá«á: ášááł áááá”-6</annotation>
<annotation cp="đ©đ»âđ">áŽá” | áŽá” ášá„áłá” á á°á á°ášáá«á | ášááł áááá”-1-2 | ášá„áłá” á á°á ááȘá | ášá„áłá” á á°á á°ášáá«á</annotation>
<annotation cp="đ©đ»âđ" type="tts">áŽá” ášá„áłá” á á°á á°ášáá«á: ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŒâđ">ááášáá áá á«á ášááł ááá | áŽá” | áŽá” ášá„áłá” á á°á á°ášáá«á | ášá„áłá” á á°á ááȘá | ášá„áłá” á á°á á°ášáá«á</annotation>
<annotation cp="đ©đŒâđ" type="tts">áŽá” ášá„áłá” á á°á á°ášáá«á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đœâđ">áŽá” | áŽá” ášá„áłá” á á°á á°ášáá«á | ášááł áááá”-4 | ášá„áłá” á á°á ááȘá | ášá„áłá” á á°á á°ášáá«á</annotation>
<annotation cp="đ©đœâđ" type="tts">áŽá” ášá„áłá” á á°á á°ášáá«á: ášááł áááá”-4</annotation>
<annotation cp="đ©đŸâđ">áŽá” | áŽá” ášá„áłá” á á°á á°ášáá«á | ášááł áááá”-5 | ášá„áłá” á á°á ááȘá | ášá„áłá” á á°á á°ášáá«á</annotation>
<annotation cp="đ©đŸâđ" type="tts">áŽá” ášá„áłá” á á°á á°ášáá«á: ášááł áááá”-5</annotation>
<annotation cp="đ©đżâđ">áŽá” | áŽá” ášá„áłá” á á°á á°ášáá«á | ášááł áááá”-6 | ášá„áłá” á á°á ááȘá | ášá„áłá” á á°á á°ášáá«á</annotation>
<annotation cp="đ©đżâđ" type="tts">áŽá” ášá„áłá” á á°á á°ášáá«á: ášááł áááá”-6</annotation>
<annotation cp="đźđ»">áá | áá ááŁáá” | ááȘá á„ááČá«áá áá°ášá | áá«á | áá°á | á°á | á áœáá ášáá°á« ááá” | ášááł áááá”-1-2 | ášááá” ááźáá | ášááá” áčá | ááá”</annotation>
<annotation cp="đźđ»" type="tts">ááá”: ášááł áááá”-1-2</annotation>
<annotation cp="đźđŒ">áá | áá ááŁáá” | ááášáá áá á«á ášááł ááá | ááȘá á„ááČá«áá áá°ášá | áá«á | áá°á | á°á | á áœáá ášáá°á« ááá” | ášááá” ááźáá | ášááá” áčá | ááá”</annotation>
<annotation cp="đźđŒ" type="tts">ááá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đźđœ">áá | áá ááŁáá” | ááȘá á„ááČá«áá áá°ášá | áá«á | áá°á | á°á | á áœáá ášáá°á« ááá” | ášááł áááá”-4 | ášááá” ááźáá | ášááá” áčá | ááá”</annotation>
<annotation cp="đźđœ" type="tts">ááá”: ášááł áááá”-4</annotation>
<annotation cp="đźđŸ">áá | áá ááŁáá” | ááȘá á„ááČá«áá áá°ášá | áá«á | áá°á | á°á | á áœáá ášáá°á« ááá” | ášááł áááá”-5 | ášááá” ááźáá | ášááá” áčá | ááá”</annotation>
<annotation cp="đźđŸ" type="tts">ááá”: ášááł áááá”-5</annotation>
<annotation cp="đźđż">áá | áá ááŁáá” | ááȘá á„ááČá«áá áá°ášá | áá«á | áá°á | á°á | á áœáá ášáá°á« ááá” | ášááł áááá”-6 | ášááá” ááźáá | ášááá” áčá | ááá”</annotation>
<annotation cp="đźđż" type="tts">ááá”: ášááł áááá”-6</annotation>
<annotation cp="đźđ»ââ">á°á | ááá” | ááá” ášááá” áčá | ášááł áááá”-1-2 | ášááá” áčá | ááá”</annotation>
<annotation cp="đźđ»ââ" type="tts">ááá” ášááá” áčá: ášááł áááá”-1-2</annotation>
<annotation cp="đźđŒââ">ááášáá áá á«á ášááł ááá | á°á | ááá” | ááá” ášááá” áčá | ášááá” áčá | ááá”</annotation>
<annotation cp="đźđŒââ" type="tts">ááá” ášááá” áčá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đźđœââ">á°á | ááá” | ááá” ášááá” áčá | ášááł áááá”-4 | ášááá” áčá | ááá”</annotation>
<annotation cp="đźđœââ" type="tts">ááá” ášááá” áčá: ášááł áááá”-4</annotation>
<annotation cp="đźđŸââ">á°á | ááá” | ááá” ášááá” áčá | ášááł áááá”-5 | ášááá” áčá | ááá”</annotation>
<annotation cp="đźđŸââ" type="tts">ááá” ášááá” áčá: ášááł áááá”-5</annotation>
<annotation cp="đźđżââ">á°á | ááá” | ááá” ášááá” áčá | ášááł áááá”-6 | ášááá” áčá | ááá”</annotation>
<annotation cp="đźđżââ" type="tts">ááá” ášááá” áčá: ášááł áááá”-6</annotation>
<annotation cp="đźđ»ââ">áá | áá áá„áá” | ááȘá áá”áá | ááźáá | á°á | áŽá” | áŽá” ášááá” ááźáá | áŽá” ášááá” áčá | á áœáá ášáá°á« ááá” | ášááł áááá”-1-2 | ášááá” ááźáá | ášááá” áčá | ááá”</annotation>
<annotation cp="đźđ»ââ" type="tts">áŽá” ášááá” áčá: ášááł áááá”-1-2</annotation>
<annotation cp="đźđŒââ">áá | áá áá„áá” | ááášáá áá á«á ášááł ááá | ááȘá áá”áá | ááźáá | á°á | áŽá” | áŽá” ášááá” ááźáá | áŽá” ášááá” áčá | á áœáá ášáá°á« ááá” | ášááá” ááźáá | ášááá” áčá | ááá”</annotation>
<annotation cp="đźđŒââ" type="tts">áŽá” ášááá” áčá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đźđœââ">áá | áá áá„áá” | ááȘá áá”áá | ááźáá | á°á | áŽá” | áŽá” ášááá” ááźáá | áŽá” ášááá” áčá | á áœáá ášáá°á« ááá” | ášááł áááá”-4 | ášááá” ááźáá | ášááá” áčá | ááá”</annotation>
<annotation cp="đźđœââ" type="tts">áŽá” ášááá” áčá: ášááł áááá”-4</annotation>
<annotation cp="đźđŸââ">áá | áá áá„áá” | ááȘá áá”áá | ááźáá | á°á | áŽá” | áŽá” ášááá” ááźáá | áŽá” ášááá” áčá | á áœáá ášáá°á« ááá” | ášááł áááá”-5 | ášááá” ááźáá | ášááá” áčá | ááá”</annotation>
<annotation cp="đźđŸââ" type="tts">áŽá” ášááá” áčá: ášááł áááá”-5</annotation>
<annotation cp="đźđżââ">áá | áá áá„áá” | ááȘá áá”áá | ááźáá | á°á | áŽá” | áŽá” ášááá” ááźáá | áŽá” ášááá” áčá | á áœáá ášáá°á« ááá” | ášááł áááá”-6 | ášááá” ááźáá | ášááá” áčá | ááá”</annotation>
<annotation cp="đźđżââ" type="tts">áŽá” ášááá” áčá: ášááł áááá”-6</annotation>
<annotation cp="đ”đ»">ááááȘ | á°áá | á°á | á”áá
á°á | áá”á”á ááá” | ášááł áááá”-1-2 | ááá”</annotation>
<annotation cp="đ”đ»" type="tts">ááááȘ ááá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ”đŒ">ááášáá áá á«á ášááł ááá | ááááȘ | á°áá | á°á | á”áá
á°á | áá”á”á ááá” | ááá”</annotation>
<annotation cp="đ”đŒ" type="tts">ááááȘ ááá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ”đœ">ááááȘ | á°áá | á°á | á”áá
á°á | áá”á”á ááá” | ášááł áááá”-4 | ááá”</annotation>
<annotation cp="đ”đœ" type="tts">ááááȘ ááá”: ášááł áááá”-4</annotation>
<annotation cp="đ”đŸ">ááááȘ | á°áá | á°á | á”áá
á°á | áá”á”á ááá” | ášááł áááá”-5 | ááá”</annotation>
<annotation cp="đ”đŸ" type="tts">ááááȘ ááá”: ášááł áááá”-5</annotation>
<annotation cp="đ”đż">ááááȘ | á°áá | á°á | á”áá
á°á | áá”á”á ááá” | ášááł áááá”-6 | ááá”</annotation>
<annotation cp="đ”đż" type="tts">ááááȘ ááá”: ášááł áááá”-6</annotation>
<annotation cp="đ”đ»ââ">ááááȘ ááá” | á°áá | áá”á”á ááá” | ááá” | ááá” ááááȘ ááá” | ášááł áááá”-1-2</annotation>
<annotation cp="đ”đ»ââ" type="tts">ááá” ááááȘ ááá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ”đŒââ">ááášáá áá á«á ášááł ááá | ááááȘ ááá” | á°áá | áá”á”á ááá” | ááá” | ááá” ááááȘ ááá”</annotation>
<annotation cp="đ”đŒââ" type="tts">ááá” ááááȘ ááá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ”đœââ">ááááȘ ááá” | á°áá | áá”á”á ááá” | ááá” | ááá” ááááȘ ááá” | ášááł áááá”-4</annotation>
<annotation cp="đ”đœââ" type="tts">ááá” ááááȘ ááá”: ášááł áááá”-4</annotation>
<annotation cp="đ”đŸââ">ááááȘ ááá” | á°áá | áá”á”á ááá” | ááá” | ááá” ááááȘ ááá” | ášááł áááá”-5</annotation>
<annotation cp="đ”đŸââ" type="tts">ááá” ááááȘ ááá”: ášááł áááá”-5</annotation>
<annotation cp="đ”đżââ">ááááȘ ááá” | á°áá | áá”á”á ááá” | ááá” | ááá” ááááȘ ááá” | ášááł áááá”-6</annotation>
<annotation cp="đ”đżââ" type="tts">ááá” ááááȘ ááá”: ášááł áááá”-6</annotation>
<annotation cp="đ”đ»ââ">ááááȘ ááá” | á°áá | áŽá” | áŽá” ááááȘ ááá” | áá”á”á ááá” | ášááł áááá”-1-2 | ášáá”á”á ááá”</annotation>
<annotation cp="đ”đ»ââ" type="tts">áŽá” ááááȘ ááá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ”đŒââ">ááášáá áá á«á ášááł ááá | ááááȘ ááá” | á°áá | áŽá” | áŽá” ááááȘ ááá” | áá”á”á ááá” | ášáá”á”á ááá”</annotation>
<annotation cp="đ”đŒââ" type="tts">áŽá” ááááȘ ááá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ”đœââ">ááááȘ ááá” | á°áá | áŽá” | áŽá” ááááȘ ááá” | áá”á”á ááá” | ášááł áááá”-4 | ášáá”á”á ááá”</annotation>
<annotation cp="đ”đœââ" type="tts">áŽá” ááááȘ ááá”: ášááł áááá”-4</annotation>
<annotation cp="đ”đŸââ">ááááȘ ááá” | á°áá | áŽá” | áŽá” ááááȘ ááá” | áá”á”á ááá” | ášááł áááá”-5 | ášáá”á”á ááá”</annotation>
<annotation cp="đ”đŸââ" type="tts">áŽá” ááááȘ ááá”: ášááł áááá”-5</annotation>
<annotation cp="đ”đżââ">ááááȘ ááá” | á°áá | áŽá” | áŽá” ááááȘ ááá” | áá”á”á ááá” | ášááł áááá”-6 | ášáá”á”á ááá”</annotation>
<annotation cp="đ”đżââ" type="tts">áŽá” ááááȘ ááá”: ášááł áááá”-6</annotation>
<annotation cp="đđ»">ááá°á | áá„ | á€á°áááá”á” | áá„á áá„ | áá„ | ášááł áááá”-1-2 | á áŁá</annotation>
<annotation cp="đđ»" type="tts">á áŁá: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááá°á | ááášáá áá á«á ášááł ááá | áá„ | á€á°áááá”á” | áá„á áá„ | áá„ | á áŁá</annotation>
<annotation cp="đđŒ" type="tts">á áŁá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">ááá°á | áá„ | á€á°áááá”á” | áá„á áá„ | áá„ | ášááł áááá”-4 | á áŁá</annotation>
<annotation cp="đđœ" type="tts">á áŁá: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">ááá°á | áá„ | á€á°áááá”á” | áá„á áá„ | áá„ | ášááł áááá”-5 | á áŁá</annotation>
<annotation cp="đđŸ" type="tts">á áŁá: ášááł áááá”-5</annotation>
<annotation cp="đđż">ááá°á | áá„ | á€á°áááá”á” | áá„á áá„ | áá„ | ášááł áááá”-6 | á áŁá</annotation>
<annotation cp="đđż" type="tts">á áŁá: ášááł áááá”-6</annotation>
<annotation cp="đđ»ââ">á°á | ááá” | ášááł áááá”-1-2 | á áŁá</annotation>
<annotation cp="đđ»ââ" type="tts">ááá” á áŁá: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒââ">ááášáá áá á«á ášááł ááá | á°á | ááá” | á áŁá</annotation>
<annotation cp="đđŒââ" type="tts">ááá” á áŁá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœââ">á°á | ááá” | ášááł áááá”-4 | á áŁá</annotation>
<annotation cp="đđœââ" type="tts">ááá” á áŁá: ášááł áááá”-4</annotation>
<annotation cp="đđŸââ">á°á | ááá” | ášááł áááá”-5 | á áŁá</annotation>
<annotation cp="đđŸââ" type="tts">ááá” á áŁá: ášááł áááá”-5</annotation>
<annotation cp="đđżââ">á°á | ááá” | ášááł áááá”-6 | á áŁá</annotation>
<annotation cp="đđżââ" type="tts">ááá” á áŁá: ášááł áááá”-6</annotation>
<annotation cp="đđ»ââ">ááá°á | á°á | áŽá” | áá á | ášá«á” áá | ášá«á” áá á«á°ášáᜠáŽá” á áŁá | ášááł áááá”-1-2 | ášá áȘáááá á€á° áááá”á” | á áŁá</annotation>
<annotation cp="đđ»ââ" type="tts">áŽá” á áŁá: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒââ">ááá°á | ááášáá áá á«á ášááł ááá | á°á | áŽá” | áá á | ášá«á” áá | ášá«á” áá á«á°ášáᜠáŽá” á áŁá | ášá áȘáááá á€á° áááá”á” | á áŁá</annotation>
<annotation cp="đđŒââ" type="tts">áŽá” á áŁá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœââ">ááá°á | á°á | áŽá” | áá á | ášá«á” áá | ášá«á” áá á«á°ášáᜠáŽá” á áŁá | ášááł áááá”-4 | ášá áȘáááá á€á° áááá”á” | á áŁá</annotation>
<annotation cp="đđœââ" type="tts">áŽá” á áŁá: ášááł áááá”-4</annotation>
<annotation cp="đđŸââ">ááá°á | á°á | áŽá” | áá á | ášá«á” áá | ášá«á” áá á«á°ášáᜠáŽá” á áŁá | ášááł áááá”-5 | ášá áȘáááá á€á° áááá”á” | á áŁá</annotation>
<annotation cp="đđŸââ" type="tts">áŽá” á áŁá: ášááł áááá”-5</annotation>
<annotation cp="đđżââ">ááá°á | á°á | áŽá” | áá á | ášá«á” áá | ášá«á” áá á«á°ášáᜠáŽá” á áŁá | ášááł áááá”-6 | ášá áȘáááá á€á° áááá”á” | á áŁá</annotation>
<annotation cp="đđżââ" type="tts">áŽá” á áŁá: ášááł áááá”-6</annotation>
<annotation cp="đ„·đ»">áá”áąá | á°áá | á°á | á
á„á áá„á° ááłá | áœááłáᜠ| áá„á° ááłá | ááá | áá
áá¶áœ | ááłá°á | ááá« | ášááł áááá”-1-2 | áŠááá” | áá„</annotation>
<annotation cp="đ„·đ»" type="tts">ááá: ášááł áááá”-1-2</annotation>
<annotation cp="đ„·đŒ">ááášáá áá á«á ášááł ááá | áá”áąá | á°áá | á°á | á
á„á áá„á° ááłá | áœááłáᜠ| áá„á° ááłá | ááá | áá
áá¶áœ | ááłá°á | ááá« | áŠááá” | áá„</annotation>
<annotation cp="đ„·đŒ" type="tts">ááá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ„·đœ">áá”áąá | á°áá | á°á | á
á„á áá„á° ááłá | áœááłáᜠ| áá„á° ááłá | ááá | áá
áá¶áœ | ááłá°á | ááá« | ášááł áááá”-4 | áŠááá” | áá„</annotation>
<annotation cp="đ„·đœ" type="tts">ááá: ášááł áááá”-4</annotation>
<annotation cp="đ„·đŸ">áá”áąá | á°áá | á°á | á
á„á áá„á° ááłá | áœááłáᜠ| áá„á° ááłá | ááá | áá
áá¶áœ | ááłá°á | ááá« | ášááł áááá”-5 | áŠááá” | áá„</annotation>
<annotation cp="đ„·đŸ" type="tts">ááá: ášááł áááá”-5</annotation>
<annotation cp="đ„·đż">áá”áąá | á°áá | á°á | á
á„á áá„á° ááłá | áœááłáᜠ| áá„á° ááłá | ááá | áá
áá¶áœ | ááłá°á | ááá« | ášááł áááá”-6 | áŠááá” | áá„</annotation>
<annotation cp="đ„·đż" type="tts">ááá: ášááł áááá”-6</annotation>
<annotation cp="đ·đ»">ááááČá” | á á«á°á | á„áá° á áČá” áá°á | á„áá°áá ááᣠ| á«áŠ | áźáá« | ááá°á | ášááł áááá”-1-2 | ášáááŁáł á„á« á á«á°á | ááᣠ| áááŁáł | á áá</annotation>
<annotation cp="đ·đ»" type="tts">ášáááŁáł á„á« á á«á°á: ášááł áááá”-1-2</annotation>
<annotation cp="đ·đŒ">ááášáá áá á«á ášááł ááá | ááááČá” | á á«á°á | á„áá° á áČá” áá°á | á„áá°áá ááᣠ| á«áŠ | áźáá« | ááá°á | ášáááŁáł á„á« á á«á°á | ááᣠ| áááŁáł | á áá</annotation>
<annotation cp="đ·đŒ" type="tts">ášáááŁáł á„á« á á«á°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ·đœ">ááááČá” | á á«á°á | á„áá° á áČá” áá°á | á„áá°áá ááᣠ| á«áŠ | áźáá« | ááá°á | ášááł áááá”-4 | ášáááŁáł á„á« á á«á°á | ááᣠ| áááŁáł | á áá</annotation>
<annotation cp="đ·đœ" type="tts">ášáááŁáł á„á« á á«á°á: ášááł áááá”-4</annotation>
<annotation cp="đ·đŸ">ááááČá” | á á«á°á | á„áá° á áČá” áá°á | á„áá°áá ááᣠ| á«áŠ | áźáá« | ááá°á | ášááł áááá”-5 | ášáááŁáł á„á« á á«á°á | ááᣠ| áááŁáł | á áá</annotation>
<annotation cp="đ·đŸ" type="tts">ášáááŁáł á„á« á á«á°á: ášááł áááá”-5</annotation>
<annotation cp="đ·đż">ááááČá” | á á«á°á | á„áá° á áČá” áá°á | á„áá°áá ááᣠ| á«áŠ | áźáá« | ááá°á | ášááł áááá”-6 | ášáááŁáł á„á« á á«á°á | ááᣠ| áááŁáł | á áá</annotation>
<annotation cp="đ·đż" type="tts">ášáááŁáł á„á« á á«á°á: ášááł áááá”-6</annotation>
<annotation cp="đ·đ»ââ">á á«á°á | á°á | ááá” | ááá” ášáááŁáł á°á«á°á | ášááł áááá”-1-2 | áááŁáł</annotation>
<annotation cp="đ·đ»ââ" type="tts">ááá” ášáááŁáł á°á«á°á: ášááł áááá”-1-2</annotation>
<annotation cp="đ·đŒââ">ááášáá áá á«á ášááł ááá | á á«á°á | á°á | ááá” | ááá” ášáááŁáł á°á«á°á | áááŁáł</annotation>
<annotation cp="đ·đŒââ" type="tts">ááá” ášáááŁáł á°á«á°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ·đœââ">á á«á°á | á°á | ááá” | ááá” ášáááŁáł á°á«á°á | ášááł áááá”-4 | áááŁáł</annotation>
<annotation cp="đ·đœââ" type="tts">ááá” ášáááŁáł á°á«á°á: ášááł áááá”-4</annotation>
<annotation cp="đ·đŸââ">á á«á°á | á°á | ááá” | ááá” ášáááŁáł á°á«á°á | ášááł áááá”-5 | áááŁáł</annotation>
<annotation cp="đ·đŸââ" type="tts">ááá” ášáááŁáł á°á«á°á: ášááł áááá”-5</annotation>
<annotation cp="đ·đżââ">á á«á°á | á°á | ááá” | ááá” ášáááŁáł á°á«á°á | ášááł áááá”-6 | áááŁáł</annotation>
<annotation cp="đ·đżââ" type="tts">ááá” ášáááŁáł á°á«á°á: ášááł áááá”-6</annotation>
<annotation cp="đ·đ»ââ">á á«á°á | á„á« | áŽá” | áŽá” ášáááŁáł á°á«á°á | á”á« | áŁááᣠ| áźáá« | ááá” | ášááł áááá”-1-2 | ášá°á
ááá” áźáá« | áááŁáł | á áá«á« áźáá«</annotation>
<annotation cp="đ·đ»ââ" type="tts">áŽá” ášáááŁáł á°á«á°á: ášááł áááá”-1-2</annotation>
<annotation cp="đ·đŒââ">ááášáá áá á«á ášááł ááá | á á«á°á | á„á« | áŽá” | áŽá” ášáááŁáł á°á«á°á | á”á« | áŁááᣠ| áźáá« | ááá” | ášá°á
ááá” áźáá« | áááŁáł | á áá«á« áźáá«</annotation>
<annotation cp="đ·đŒââ" type="tts">áŽá” ášáááŁáł á°á«á°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ·đœââ">á á«á°á | á„á« | áŽá” | áŽá” ášáááŁáł á°á«á°á | á”á« | áŁááᣠ| áźáá« | ááá” | ášááł áááá”-4 | ášá°á
ááá” áźáá« | áááŁáł | á áá«á« áźáá«</annotation>
<annotation cp="đ·đœââ" type="tts">áŽá” ášáááŁáł á°á«á°á: ášááł áááá”-4</annotation>
<annotation cp="đ·đŸââ">á á«á°á | á„á« | áŽá” | áŽá” ášáááŁáł á°á«á°á | á”á« | áŁááᣠ| áźáá« | ááá” | ášááł áááá”-5 | ášá°á
ááá” áźáá« | áááŁáł | á áá«á« áźáá«</annotation>
<annotation cp="đ·đŸââ" type="tts">áŽá” ášáááŁáł á°á«á°á: ášááł áááá”-5</annotation>
<annotation cp="đ·đżââ">á á«á°á | á„á« | áŽá” | áŽá” ášáááŁáł á°á«á°á | á”á« | áŁááᣠ| áźáá« | ááá” | ášááł áááá”-6 | ášá°á
ááá” áźáá« | áááŁáł | á áá«á« áźáá«</annotation>
<annotation cp="đ·đżââ" type="tts">áŽá” ášáááŁáł á°á«á°á: ášááł áááá”-6</annotation>
<annotation cp="đ«
đ»">áááŁá | áááłá | áááłá á€á°á°á„ | ááá” | ááá„á” | á ááá | ááá” | ááá” á«á°ášá á°á | ášááł áááá”-1-2 | ášá°ášá áš</annotation>
<annotation cp="đ«
đ»" type="tts">ááá” á«á°ášá á°á: ášááł áááá”-1-2</annotation>
<annotation cp="đ«
đŒ">ááášáá áá á«á ášááł ááá | áááŁá | áááłá | áááłá á€á°á°á„ | ááá” | ááá„á” | á ááá | ááá” | ááá” á«á°ášá á°á | ášá°ášá áš</annotation>
<annotation cp="đ«
đŒ" type="tts">ááá” á«á°ášá á°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ«
đœ">áááŁá | áááłá | áááłá á€á°á°á„ | ááá” | ááá„á” | á ááá | ááá” | ááá” á«á°ášá á°á | ášááł áááá”-4 | ášá°ášá áš</annotation>
<annotation cp="đ«
đœ" type="tts">ááá” á«á°ášá á°á: ášááł áááá”-4</annotation>
<annotation cp="đ«
đŸ">áááŁá | áááłá | áááłá á€á°á°á„ | ááá” | ááá„á” | á ááá | ááá” | ááá” á«á°ášá á°á | ášááł áááá”-5 | ášá°ášá áš</annotation>
<annotation cp="đ«
đŸ" type="tts">ááá” á«á°ášá á°á: ášááł áááá”-5</annotation>
<annotation cp="đ«
đż">áááŁá | áááłá | áááłá á€á°á°á„ | ááá” | ááá„á” | á ááá | ááá” | ááá” á«á°ášá á°á | ášááł áááá”-6 | ášá°ášá áš</annotation>
<annotation cp="đ«
đż" type="tts">ááá” á«á°ášá á°á: ášááł áááá”-6</annotation>
<annotation cp="đ€Žđ»">ááá | ášááł áááá”-1-2</annotation>
<annotation cp="đ€Žđ»" type="tts">ááá: ášááł áááá”-1-2</annotation>
<annotation cp="đ€ŽđŒ">ááá | ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€ŽđŒ" type="tts">ááá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€Žđœ">ááá | ášááł áááá”-4</annotation>
<annotation cp="đ€Žđœ" type="tts">ááá: ášááł áááá”-4</annotation>
<annotation cp="đ€ŽđŸ">ááá | ášááł áááá”-5</annotation>
<annotation cp="đ€ŽđŸ" type="tts">ááá: ášááł áááá”-5</annotation>
<annotation cp="đ€Žđż">ááá | ášááł áááá”-6</annotation>
<annotation cp="đ€Žđż" type="tts">ááá: ášááł áááá”-6</annotation>
<annotation cp="đžđ»">áááá” | áááŁá | á°ášá” á°ášá” | ááá”á” | ášááł áááá”-1-2</annotation>
<annotation cp="đžđ»" type="tts">áááá”: ášááł áááá”-1-2</annotation>
<annotation cp="đžđŒ">áááá” | ááášáá áá á«á ášááł ááá | áááŁá | á°ášá” á°ášá” | ááá”á”</annotation>
<annotation cp="đžđŒ" type="tts">áááá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đžđœ">áááá” | áááŁá | á°ášá” á°ášá” | ááá”á” | ášááł áááá”-4</annotation>
<annotation cp="đžđœ" type="tts">áááá”: ášááł áááá”-4</annotation>
<annotation cp="đžđŸ">áááá” | áááŁá | á°ášá” á°ášá” | ááá”á” | ášááł áááá”-5</annotation>
<annotation cp="đžđŸ" type="tts">áááá”: ášááł áááá”-5</annotation>
<annotation cp="đžđż">áááá” | áááŁá | á°ášá” á°ášá” | ááá”á” | ášááł áááá”-6</annotation>
<annotation cp="đžđż" type="tts">áááá”: ášááł áááá”-6</annotation>
<annotation cp="đłđ»">ááá” | ášááł áááá”-1-2 | á„ááŁá | á„ááŁá á«á°ášá á°á</annotation>
<annotation cp="đłđ»" type="tts">á„ááŁá á«á°ášá á°á: ášááł áááá”-1-2</annotation>
<annotation cp="đłđŒ">ááášáá áá á«á ášááł ááá | ááá” | á„ááŁá | á„ááŁá á«á°ášá á°á</annotation>
<annotation cp="đłđŒ" type="tts">á„ááŁá á«á°ášá á°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đłđœ">ááá” | ášááł áááá”-4 | á„ááŁá | á„ááŁá á«á°ášá á°á</annotation>
<annotation cp="đłđœ" type="tts">á„ááŁá á«á°ášá á°á: ášááł áááá”-4</annotation>
<annotation cp="đłđŸ">ááá” | ášááł áááá”-5 | á„ááŁá | á„ááŁá á«á°ášá á°á</annotation>
<annotation cp="đłđŸ" type="tts">á„ááŁá á«á°ášá á°á: ášááł áááá”-5</annotation>
<annotation cp="đłđż">ááá” | ášááł áááá”-6 | á„ááŁá | á„ááŁá á«á°ášá á°á</annotation>
<annotation cp="đłđż" type="tts">á„ááŁá á«á°ášá á°á: ášááł áááá”-6</annotation>
<annotation cp="đłđ»ââ">á°á | ááá” | ášááł áááá”-1-2 | á„ááŁá | á„ááŁá á«á°ášá ááá”</annotation>
<annotation cp="đłđ»ââ" type="tts">á„ááŁá á«á°ášá ááá”: ášááł áááá”-1-2</annotation>
<annotation cp="đłđŒââ">ááášáá áá á«á ášááł ááá | á°á | ááá” | á„ááŁá | á„ááŁá á«á°ášá ááá”</annotation>
<annotation cp="đłđŒââ" type="tts">á„ááŁá á«á°ášá ááá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đłđœââ">á°á | ááá” | ášááł áááá”-4 | á„ááŁá | á„ááŁá á«á°ášá ááá”</annotation>
<annotation cp="đłđœââ" type="tts">á„ááŁá á«á°ášá ááá”: ášááł áááá”-4</annotation>
<annotation cp="đłđŸââ">á°á | ááá” | ášááł áááá”-5 | á„ááŁá | á„ááŁá á«á°ášá ááá”</annotation>
<annotation cp="đłđŸââ" type="tts">á„ááŁá á«á°ášá ááá”: ášááł áááá”-5</annotation>
<annotation cp="đłđżââ">á°á | ááá” | ášááł áááá”-6 | á„ááŁá | á„ááŁá á«á°ášá ááá”</annotation>
<annotation cp="đłđżââ" type="tts">á„ááŁá á«á°ášá ááá”: ášááł áááá”-6</annotation>
<annotation cp="đłđ»ââ">á°á | áŽá” | ášááł áááá”-1-2 | á„ááŁá | á„ááŁá á«á°ášáœ áŽá” | á„ááŁá á«á°ášáᜠáŽá”</annotation>
<annotation cp="đłđ»ââ" type="tts">á„ááŁá á«á°ášáœ áŽá”: ášááł áááá”-1-2</annotation>
<annotation cp="đłđŒââ">ááášáá áá á«á ášááł ááá | á°á | áŽá” | á„ááŁá | á„ááŁá á«á°ášáœ áŽá” | á„ááŁá á«á°ášáᜠáŽá”</annotation>
<annotation cp="đłđŒââ" type="tts">á„ááŁá á«á°ášáœ áŽá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đłđœââ">á°á | áŽá” | ášááł áááá”-4 | á„ááŁá | á„ááŁá á«á°ášáœ áŽá” | á„ááŁá á«á°ášáᜠáŽá”</annotation>
<annotation cp="đłđœââ" type="tts">á„ááŁá á«á°ášáœ áŽá”: ášááł áááá”-4</annotation>
<annotation cp="đłđŸââ">á°á | áŽá” | ášááł áááá”-5 | á„ááŁá | á„ááŁá á«á°ášáœ áŽá” | á„ááŁá á«á°ášáᜠáŽá”</annotation>
<annotation cp="đłđŸââ" type="tts">á„ááŁá á«á°ášáœ áŽá”: ášááł áááá”-5</annotation>
<annotation cp="đłđżââ">á°á | áŽá” | ášááł áááá”-6 | á„ááŁá | á„ááŁá á«á°ášáœ áŽá” | á„ááŁá á«á°ášáᜠáŽá”</annotation>
<annotation cp="đłđżââ" type="tts">á„ááŁá á«á°ášáœ áŽá”: ášááł áááá”-6</annotation>
<annotation cp="đČđ»">áźáá« | ááá” | ášááł áááá”-1-2 | ášá»áá áźáá« á«á°ášá á°á</annotation>
<annotation cp="đČđ»" type="tts">ášá»áá áźáá« á«á°ášá á°á: ášááł áááá”-1-2</annotation>
<annotation cp="đČđŒ">ááášáá áá á«á ášááł ááá | áźáá« | ááá” | ášá»áá áźáá« á«á°ášá á°á</annotation>
<annotation cp="đČđŒ" type="tts">ášá»áá áźáá« á«á°ášá á°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đČđœ">áźáá« | ááá” | ášááł áááá”-4 | ášá»áá áźáá« á«á°ášá á°á</annotation>
<annotation cp="đČđœ" type="tts">ášá»áá áźáá« á«á°ášá á°á: ášááł áááá”-4</annotation>
<annotation cp="đČđŸ">áźáá« | ááá” | ášááł áááá”-5 | ášá»áá áźáá« á«á°ášá á°á</annotation>
<annotation cp="đČđŸ" type="tts">ášá»áá áźáá« á«á°ášá á°á: ášááł áááá”-5</annotation>
<annotation cp="đČđż">áźáá« | ááá” | ášááł áááá”-6 | ášá»áá áźáá« á«á°ášá á°á</annotation>
<annotation cp="đČđż" type="tts">ášá»áá áźáá« á«á°ášá á°á: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»">ááá„ | áááČá | áŽá” á á”á«áá | áŁááłá | áČážá | ášá«á” áážáá | ášá«á” áážáá á«á°ášáᜠáŽá” | ášááł áááá”-1-2 | ášááá
áá” áá ášáá°ášá ááášá„</annotation>
<annotation cp="đ§đ»" type="tts">áŽá” á á”á«áá: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒ">ááá„ | ááášáá áá á«á ášááł ááá | áááČá | áŽá” á á”á«áá | áŁááłá | áČážá | ášá«á” áážáá | ášá«á” áážáá á«á°ášáᜠáŽá” | ášááá
áá” áá ášáá°ášá ááášá„</annotation>
<annotation cp="đ§đŒ" type="tts">áŽá” á á”á«áá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœ">ááá„ | áááČá | áŽá” á á”á«áá | áŁááłá | áČážá | ášá«á” áážáá | ášá«á” áážáá á«á°ášáᜠáŽá” | ášááł áááá”-4 | ášááá
áá” áá ášáá°ášá ááášá„</annotation>
<annotation cp="đ§đœ" type="tts">áŽá” á á”á«áá: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸ">ááá„ | áááČá | áŽá” á á”á«áá | áŁááłá | áČážá | ášá«á” áážáá | ášá«á” áážáá á«á°ášáᜠáŽá” | ášááł áááá”-5 | ášááá
áá” áá ášáá°ášá ááášá„</annotation>
<annotation cp="đ§đŸ" type="tts">áŽá” á á”á«áá: ášááł áááá”-5</annotation>
<annotation cp="đ§đż">ááá„ | áááČá | áŽá” á á”á«áá | áŁááłá | áČážá | ášá«á” áážáá | ášá«á” áážáá á«á°ášáᜠáŽá” | ášááł áááá”-6 | ášááá
áá” áá ášáá°ášá ááášá„</annotation>
<annotation cp="đ§đż" type="tts">áŽá” á á”á«áá: ášááł áááá”-6</annotation>
<annotation cp="đ€”đ»">ááœá« | á°á | á±á áá„á” ášáá á° á°á | á¶ááČá¶ | ášááł áááá”-1-2 | á°áá á á ááŁá á”</annotation>
<annotation cp="đ€”đ»" type="tts">á±á áá„á” ášáá á° á°á: ášááł áááá”-1-2</annotation>
<annotation cp="đ€”đŒ">ááášáá áá á«á ášááł ááá | ááœá« | á°á | á±á áá„á” ášáá á° á°á | á¶ááČá¶ | á°áá á á ááŁá á”</annotation>
<annotation cp="đ€”đŒ" type="tts">á±á áá„á” ášáá á° á°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€”đœ">ááœá« | á°á | á±á áá„á” ášáá á° á°á | á¶ááČá¶ | ášááł áááá”-4 | á°áá á á ááŁá á”</annotation>
<annotation cp="đ€”đœ" type="tts">á±á áá„á” ášáá á° á°á: ášááł áááá”-4</annotation>
<annotation cp="đ€”đŸ">ááœá« | á°á | á±á áá„á” ášáá á° á°á | á¶ááČá¶ | ášááł áááá”-5 | á°áá á á ááŁá á”</annotation>
<annotation cp="đ€”đŸ" type="tts">á±á áá„á” ášáá á° á°á: ášááł áááá”-5</annotation>
<annotation cp="đ€”đż">ááœá« | á°á | á±á áá„á” ášáá á° á°á | á¶ááČá¶ | ášááł áááá”-6 | á°áá á á ááŁá á”</annotation>
<annotation cp="đ€”đż" type="tts">á±á áá„á” ášáá á° á°á: ášááł áááá”-6</annotation>
<annotation cp="đ€”đ»ââ">á°á | á°á á á¶ááČá¶ | á¶ááČá¶ | ášááł áááá”-1-2</annotation>
<annotation cp="đ€”đ»ââ" type="tts">á°á á á¶ááČá¶: ášááł áááá”-1-2</annotation>
<annotation cp="đ€”đŒââ">ááášáá áá á«á ášááł ááá | á°á | á°á á á¶ááČá¶ | á¶ááČá¶</annotation>
<annotation cp="đ€”đŒââ" type="tts">á°á á á¶ááČá¶: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€”đœââ">á°á | á°á á á¶ááČá¶ | á¶ááČá¶ | ášááł áááá”-4</annotation>
<annotation cp="đ€”đœââ" type="tts">á°á á á¶ááČá¶: ášááł áááá”-4</annotation>
<annotation cp="đ€”đŸââ">á°á | á°á á á¶ááČá¶ | á¶ááČá¶ | ášááł áááá”-5</annotation>
<annotation cp="đ€”đŸââ" type="tts">á°á á á¶ááČá¶: ášááł áááá”-5</annotation>
<annotation cp="đ€”đżââ">á°á | á°á á á¶ááČá¶ | á¶ááČá¶ | ášááł áááá”-6</annotation>
<annotation cp="đ€”đżââ" type="tts">á°á á á¶ááČá¶: ášááł áááá”-6</annotation>
<annotation cp="đ€”đ»ââ">áŽá” | áŽá” á á¶ááČá¶ | á¶ááČá¶ | ášááł áááá”-1-2</annotation>
<annotation cp="đ€”đ»ââ" type="tts">áŽá” á á¶ááČá¶: ášááł áááá”-1-2</annotation>
<annotation cp="đ€”đŒââ">ááášáá áá á«á ášááł ááá | áŽá” | áŽá” á á¶ááČá¶ | á¶ááČá¶</annotation>
<annotation cp="đ€”đŒââ" type="tts">áŽá” á á¶ááČá¶: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€”đœââ">áŽá” | áŽá” á á¶ááČá¶ | á¶ááČá¶ | ášááł áááá”-4</annotation>
<annotation cp="đ€”đœââ" type="tts">áŽá” á á¶ááČá¶: ášááł áááá”-4</annotation>
<annotation cp="đ€”đŸââ">áŽá” | áŽá” á á¶ááČá¶ | á¶ááČá¶ | ášááł áááá”-5</annotation>
<annotation cp="đ€”đŸââ" type="tts">áŽá” á á¶ááČá¶: ášááł áááá”-5</annotation>
<annotation cp="đ€”đżââ">áŽá” | áŽá” á á¶ááČá¶ | á¶ááČá¶ | ášááł áááá”-6</annotation>
<annotation cp="đ€”đżââ" type="tts">áŽá” á á¶ááČá¶: ášááł áááá”-6</annotation>
<annotation cp="đ°đ»">ááœáȘá” | ááœá« | á°áá | áŹá | áŹá á«á°ášáᜠááœá« | ášááł áááá”-1-2</annotation>
<annotation cp="đ°đ»" type="tts">áŹá á«á°ášáᜠááœá«: ášááł áááá”-1-2</annotation>
<annotation cp="đ°đŒ">ááášáá áá á«á ášááł ááá | ááœáȘá” | ááœá« | á°áá | áŹá | áŹá á«á°ášáᜠááœá«</annotation>
<annotation cp="đ°đŒ" type="tts">áŹá á«á°ášáᜠááœá«: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ°đœ">ááœáȘá” | ááœá« | á°áá | áŹá | áŹá á«á°ášáᜠááœá« | ášááł áááá”-4</annotation>
<annotation cp="đ°đœ" type="tts">áŹá á«á°ášáᜠááœá«: ášááł áááá”-4</annotation>
<annotation cp="đ°đŸ">ááœáȘá” | ááœá« | á°áá | áŹá | áŹá á«á°ášáᜠááœá« | ášááł áááá”-5</annotation>
<annotation cp="đ°đŸ" type="tts">áŹá á«á°ášáᜠááœá«: ášááł áááá”-5</annotation>
<annotation cp="đ°đż">ááœáȘá” | ááœá« | á°áá | áŹá | áŹá á«á°ášáᜠááœá« | ášááł áááá”-6</annotation>
<annotation cp="đ°đż" type="tts">áŹá á«á°ášáᜠááœá«: ášááł áááá”-6</annotation>
<annotation cp="đ°đ»ââ">ááá” | ááá” á ááá á„ááá„ | ááá á„ááá„ | ášááł áááá”-1-2</annotation>
<annotation cp="đ°đ»ââ" type="tts">ááá” á ááá á„ááá„: ášááł áááá”-1-2</annotation>
<annotation cp="đ°đŒââ">ááášáá áá á«á ášááł ááá | ááá” | ááá” á ááá á„ááá„ | ááá á„ááá„</annotation>
<annotation cp="đ°đŒââ" type="tts">ááá” á ááá á„ááá„: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ°đœââ">ááá” | ááá” á ááá á„ááá„ | ááá á„ááá„ | ášááł áááá”-4</annotation>
<annotation cp="đ°đœââ" type="tts">ááá” á ááá á„ááá„: ášááł áááá”-4</annotation>
<annotation cp="đ°đŸââ">ááá” | ááá” á ááá á„ááá„ | ááá á„ááá„ | ášááł áááá”-5</annotation>
<annotation cp="đ°đŸââ" type="tts">ááá” á ááá á„ááá„: ášááł áááá”-5</annotation>
<annotation cp="đ°đżââ">ááá” | ááá” á ááá á„ááá„ | ááá á„ááá„ | ášááł áááá”-6</annotation>
<annotation cp="đ°đżââ" type="tts">ááá” á ááá á„ááá„: ášááł áááá”-6</annotation>
<annotation cp="đ°đ»ââ">áŽá” | áŽá” á ááá á„ááá„ | ááá á„ááá„ | ášááł áááá”-1-2</annotation>
<annotation cp="đ°đ»ââ" type="tts">áŽá” á ááá á„ááá„: ášááł áááá”-1-2</annotation>
<annotation cp="đ°đŒââ">ááášáá áá á«á ášááł ááá | áŽá” | áŽá” á ááá á„ááá„ | ááá á„ááá„</annotation>
<annotation cp="đ°đŒââ" type="tts">áŽá” á ááá á„ááá„: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ°đœââ">áŽá” | áŽá” á ááá á„ááá„ | ááá á„ááá„ | ášááł áááá”-4</annotation>
<annotation cp="đ°đœââ" type="tts">áŽá” á ááá á„ááá„: ášááł áááá”-4</annotation>
<annotation cp="đ°đŸââ">áŽá” | áŽá” á ááá á„ááá„ | ááá á„ááá„ | ášááł áááá”-5</annotation>
<annotation cp="đ°đŸââ" type="tts">áŽá” á ááá á„ááá„: ášááł áááá”-5</annotation>
<annotation cp="đ°đżââ">áŽá” | áŽá” á ááá á„ááá„ | ááá á„ááá„ | ášááł áááá”-6</annotation>
<annotation cp="đ°đżââ" type="tts">áŽá” á ááá á„ááá„: ášááł áááá”-6</annotation>
<annotation cp="đ€°đ»">áŽá” | á„ááá | ášááł áááá”-1-2</annotation>
<annotation cp="đ€°đ»" type="tts">á„ááá áŽá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ€°đŒ">ááášáá áá á«á ášááł ááá | áŽá” | á„ááá</annotation>
<annotation cp="đ€°đŒ" type="tts">á„ááá áŽá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€°đœ">áŽá” | á„ááá | ášááł áááá”-4</annotation>
<annotation cp="đ€°đœ" type="tts">á„ááá áŽá”: ášááł áááá”-4</annotation>
<annotation cp="đ€°đŸ">áŽá” | á„ááá | ášááł áááá”-5</annotation>
<annotation cp="đ€°đŸ" type="tts">á„ááá áŽá”: ášááł áááá”-5</annotation>
<annotation cp="đ€°đż">áŽá” | á„ááá | ášááł áááá”-6</annotation>
<annotation cp="đ€°đż" type="tts">á„ááá áŽá”: ášááł áááá”-6</annotation>
<annotation cp="đ«đ»">áá” | áá | ááá” | á„ááá | á„ááá ááá” | ášááł áááá”-1-2 | á«á á áá”</annotation>
<annotation cp="đ«đ»" type="tts">á„ááá ááá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ«đŒ">áá” | ááášáá áá á«á ášááł ááá | áá | ááá” | á„ááá | á„ááá ááá” | á«á á áá”</annotation>
<annotation cp="đ«đŒ" type="tts">á„ááá ááá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ«đœ">áá” | áá | ááá” | á„ááá | á„ááá ááá” | ášááł áááá”-4 | á«á á áá”</annotation>
<annotation cp="đ«đœ" type="tts">á„ááá ááá”: ášááł áááá”-4</annotation>
<annotation cp="đ«đŸ">áá” | áá | ááá” | á„ááá | á„ááá ááá” | ášááł áááá”-5 | á«á á áá”</annotation>
<annotation cp="đ«đŸ" type="tts">á„ááá ááá”: ášááł áááá”-5</annotation>
<annotation cp="đ«đż">áá” | áá | ááá” | á„ááá | á„ááá ááá” | ášááł áááá”-6 | á«á á áá”</annotation>
<annotation cp="đ«đż" type="tts">á„ááá ááá”: ášááł áááá”-6</annotation>
<annotation cp="đ«đ»">áá” | áá„áá„ | áá | á„ááá | á„ááá á°á | á„ááá áŽá” | ášáá á á áá áá„áá” | ášááł áááá”-1-2 | á«á á áá”</annotation>
<annotation cp="đ«đ»" type="tts">á„ááá á°á: ášááł áááá”-1-2</annotation>
<annotation cp="đ«đŒ">áá” | ááášáá áá á«á ášááł ááá | áá„áá„ | áá | á„ááá | á„ááá á°á | á„ááá áŽá” | ášáá á á áá áá„áá” | á«á á áá”</annotation>
<annotation cp="đ«đŒ" type="tts">á„ááá á°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ«đœ">áá” | áá„áá„ | áá | á„ááá | á„ááá á°á | á„ááá áŽá” | ášáá á á áá áá„áá” | ášááł áááá”-4 | á«á á áá”</annotation>
<annotation cp="đ«đœ" type="tts">á„ááá á°á: ášááł áááá”-4</annotation>
<annotation cp="đ«đŸ">áá” | áá„áá„ | áá | á„ááá | á„ááá á°á | á„ááá áŽá” | ášáá á á áá áá„áá” | ášááł áááá”-5 | á«á á áá”</annotation>
<annotation cp="đ«đŸ" type="tts">á„ááá á°á: ášááł áááá”-5</annotation>
<annotation cp="đ«đż">áá” | áá„áá„ | áá | á„ááá | á„ááá á°á | á„ááá áŽá” | ášáá á á áá áá„áá” | ášááł áááá”-6 | á«á á áá”</annotation>
<annotation cp="đ«đż" type="tts">á„ááá á°á: ášááł áááá”-6</annotation>
<annotation cp="đ€±đ»">á
áá | á
áá áá
á áĄá” áá„áŁá” | ášááł áááá”-1-2 | áĄá” | áĄá” áá„áŁá” | áĄá”-áá„áŁá”</annotation>
<annotation cp="đ€±đ»" type="tts">áĄá” áá„áŁá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ€±đŒ">á
áá | á
áá áá
á áĄá” áá„áŁá” | ááášáá áá á«á ášááł ááá | áĄá” | áĄá” áá„áŁá” | áĄá”-áá„áŁá”</annotation>
<annotation cp="đ€±đŒ" type="tts">áĄá” áá„áŁá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€±đœ">á
áá | á
áá áá
á áĄá” áá„áŁá” | ášááł áááá”-4 | áĄá” | áĄá” áá„áŁá” | áĄá”-áá„áŁá”</annotation>
<annotation cp="đ€±đœ" type="tts">áĄá” áá„áŁá”: ášááł áááá”-4</annotation>
<annotation cp="đ€±đŸ">á
áá | á
áá áá
á áĄá” áá„áŁá” | ášááł áááá”-5 | áĄá” | áĄá” áá„áŁá” | áĄá”-áá„áŁá”</annotation>
<annotation cp="đ€±đŸ" type="tts">áĄá” áá„áŁá”: ášááł áááá”-5</annotation>
<annotation cp="đ€±đż">á
áá | á
áá áá
á áĄá” áá„áŁá” | ášááł áááá”-6 | áĄá” | áĄá” áá„áŁá” | áĄá”-áá„áŁá”</annotation>
<annotation cp="đ€±đż" type="tts">áĄá” áá„áŁá”: ášááł áááá”-6</annotation>
<annotation cp="đ©đ»âđŒ">á
á»á | áááá„ | ááᣠ| áááá” | á°á | á°á á
á»á áČááá„ | áŽá” | áŽá” á
á»á á”á”ááá„ | ááá” | á á«á” | á„áá | á„áá” | ášááł áááá”-1-2 | áá
á</annotation>
<annotation cp="đ©đ»âđŒ" type="tts">áŽá” á
á»á á”á”ááá„: ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŒâđŒ">á
á»á | ááášáá áá á«á ášááł ááá | áááá„ | ááᣠ| áááá” | á°á | á°á á
á»á áČááá„ | áŽá” | áŽá” á
á»á á”á”ááá„ | ááá” | á á«á” | á„áá | á„áá” | áá
á</annotation>
<annotation cp="đ©đŒâđŒ" type="tts">áŽá” á
á»á á”á”ááá„: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đœâđŒ">á
á»á | áááá„ | ááᣠ| áááá” | á°á | á°á á
á»á áČááá„ | áŽá” | áŽá” á
á»á á”á”ááá„ | ááá” | á á«á” | á„áá | á„áá” | ášááł áááá”-4 | áá
á</annotation>
<annotation cp="đ©đœâđŒ" type="tts">áŽá” á
á»á á”á”ááá„: ášááł áááá”-4</annotation>
<annotation cp="đ©đŸâđŒ">á
á»á | áááá„ | ááᣠ| áááá” | á°á | á°á á
á»á áČááá„ | áŽá” | áŽá” á
á»á á”á”ááá„ | ááá” | á á«á” | á„áá | á„áá” | ášááł áááá”-5 | áá
á</annotation>
<annotation cp="đ©đŸâđŒ" type="tts">áŽá” á
á»á á”á”ááá„: ášááł áááá”-5</annotation>
<annotation cp="đ©đżâđŒ">á
á»á | áááá„ | ááᣠ| áááá” | á°á | á°á á
á»á áČááá„ | áŽá” | áŽá” á
á»á á”á”ááá„ | ááá” | á á«á” | á„áá | á„áá” | ášááł áááá”-6 | áá
á</annotation>
<annotation cp="đ©đżâđŒ" type="tts">áŽá” á
á»á á”á”ááá„: ášááł áááá”-6</annotation>
<annotation cp="đšđ»âđŒ">á
á»á | áááá„ | ááᣠ| áááá” | á°á | á°á á
á»á áČááá„ | á°á á
á»á áČá«á ᣠ| ááá” | á á«á” | á áŁá” | ááá” | ááá” á
á»á áČááá„ | ášááł áááá”-1-2 | áá
á</annotation>
<annotation cp="đšđ»âđŒ" type="tts">ááá” á
á»á áČááá„: ášááł áááá”-1-2</annotation>
<annotation cp="đšđŒâđŒ">á
á»á | ááášáá áá á«á ášááł ááá | áááá„ | ááᣠ| áááá” | á°á | á°á á
á»á áČááá„ | á°á á
á»á áČá«á ᣠ| ááá” | á á«á” | á áŁá” | ááá” | ááá” á
á»á áČááá„ | áá
á</annotation>
<annotation cp="đšđŒâđŒ" type="tts">ááá” á
á»á áČááá„: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđœâđŒ">á
á»á | áááá„ | ááᣠ| áááá” | á°á | á°á á
á»á áČááá„ | á°á á
á»á áČá«á ᣠ| ááá” | á á«á” | á áŁá” | ááá” | ááá” á
á»á áČááá„ | ášááł áááá”-4 | áá
á</annotation>
<annotation cp="đšđœâđŒ" type="tts">ááá” á
á»á áČááá„: ášááł áááá”-4</annotation>
<annotation cp="đšđŸâđŒ">á
á»á | áááá„ | ááᣠ| áááá” | á°á | á°á á
á»á áČááá„ | á°á á
á»á áČá«á ᣠ| ááá” | á á«á” | á áŁá” | ááá” | ááá” á
á»á áČááá„ | ášááł áááá”-5 | áá
á</annotation>
<annotation cp="đšđŸâđŒ" type="tts">ááá” á
á»á áČááá„: ášááł áááá”-5</annotation>
<annotation cp="đšđżâđŒ">á
á»á | áááá„ | ááᣠ| áááá” | á°á | á°á á
á»á áČááá„ | á°á á
á»á áČá«á ᣠ| ááá” | á á«á” | á áŁá” | ááá” | ááá” á
á»á áČááá„ | ášááł áááá”-6 | áá
á</annotation>
<annotation cp="đšđżâđŒ" type="tts">ááá” á
á»á áČááá„: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»âđŒ">á
á»á | áááá„ | ááᣠ| áááá” | á°á | á°á á
á»á áČááá„ | á°á á
á»á áČá«á ᣠ| áŽá” | ááá” | á á«á” | á áŁá” | á„áá” | ááá” | ášááł áááá”-1-2</annotation>
<annotation cp="đ§đ»âđŒ" type="tts">á°á á
á»á áČááá„: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒâđŒ">á
á»á | ááášáá áá á«á ášááł ááá | áááá„ | ááᣠ| áááá” | á°á | á°á á
á»á áČááá„ | á°á á
á»á áČá«á ᣠ| áŽá” | ááá” | á á«á” | á áŁá” | á„áá” | ááá”</annotation>
<annotation cp="đ§đŒâđŒ" type="tts">á°á á
á»á áČááá„: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœâđŒ">á
á»á | áááá„ | ááᣠ| áááá” | á°á | á°á á
á»á áČááá„ | á°á á
á»á áČá«á ᣠ| áŽá” | ááá” | á á«á” | á áŁá” | á„áá” | ááá” | ášááł áááá”-4</annotation>
<annotation cp="đ§đœâđŒ" type="tts">á°á á
á»á áČááá„: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸâđŒ">á
á»á | áááá„ | ááᣠ| áááá” | á°á | á°á á
á»á áČááá„ | á°á á
á»á áČá«á ᣠ| áŽá” | ááá” | á á«á” | á áŁá” | á„áá” | ááá” | ášááł áááá”-5</annotation>
<annotation cp="đ§đŸâđŒ" type="tts">á°á á
á»á áČááá„: ášááł áááá”-5</annotation>
<annotation cp="đ§đżâđŒ">á
á»á | áááá„ | ááᣠ| áááá” | á°á | á°á á
á»á áČááá„ | á°á á
á»á áČá«á ᣠ| áŽá” | ááá” | á á«á” | á áŁá” | á„áá” | ááá” | ášááł áááá”-6</annotation>
<annotation cp="đ§đżâđŒ" type="tts">á°á á
á»á áČááá„: ášááł áááá”-6</annotation>
<annotation cp="đŒđ»">áá»á áááá | ááá áááá | ááá | áááá | áááŁá | á°ášá” á°ášá” | áȘá©á„ | ášááł áááá”-1-2 | áá”</annotation>
<annotation cp="đŒđ»" type="tts">ááá áááá: ášááł áááá”-1-2</annotation>
<annotation cp="đŒđŒ">áá»á áááá | ááá áááá | ááá | ááášáá áá á«á ášááł ááá | áááá | áááŁá | á°ášá” á°ášá” | áȘá©á„ | áá”</annotation>
<annotation cp="đŒđŒ" type="tts">ááá áááá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đŒđœ">áá»á áááá | ááá áááá | ááá | áááá | áááŁá | á°ášá” á°ášá” | áȘá©á„ | ášááł áááá”-4 | áá”</annotation>
<annotation cp="đŒđœ" type="tts">ááá áááá: ášááł áááá”-4</annotation>
<annotation cp="đŒđŸ">áá»á áááá | ááá áááá | ááá | áááá | áááŁá | á°ášá” á°ášá” | áȘá©á„ | ášááł áááá”-5 | áá”</annotation>
<annotation cp="đŒđŸ" type="tts">ááá áááá: ášááł áááá”-5</annotation>
<annotation cp="đŒđż">áá»á áááá | ááá áááá | ááá | áááá | áááŁá | á°ášá” á°ášá” | áȘá©á„ | ášááł áááá”-6 | áá”</annotation>
<annotation cp="đŒđż" type="tts">ááá áááá: ášááł áááá”-6</annotation>
<annotation cp="đ
đ»">á áŁáŁ áá | á áŁá” | áá„áš á áá | ášááł áááá”-1-2 | ášáá á áŁá” | áá</annotation>
<annotation cp="đ
đ»" type="tts">á áŁáŁ áá: ášááł áááá”-1-2</annotation>
<annotation cp="đ
đŒ">ááášáá áá á«á ášááł ááá | á áŁáŁ áá | á áŁá” | áá„áš á áá | ášáá á áŁá” | áá</annotation>
<annotation cp="đ
đŒ" type="tts">á áŁáŁ áá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ
đœ">á áŁáŁ áá | á áŁá” | áá„áš á áá | ášááł áááá”-4 | ášáá á áŁá” | áá</annotation>
<annotation cp="đ
đœ" type="tts">á áŁáŁ áá: ášááł áááá”-4</annotation>
<annotation cp="đ
đŸ">á áŁáŁ áá | á áŁá” | áá„áš á áá | ášááł áááá”-5 | ášáá á áŁá” | áá</annotation>
<annotation cp="đ
đŸ" type="tts">á áŁáŁ áá: ášááł áááá”-5</annotation>
<annotation cp="đ
đż">á áŁáŁ áá | á áŁá” | áá„áš á áá | ášááł áááá”-6 | ášáá á áŁá” | áá</annotation>
<annotation cp="đ
đż" type="tts">á áŁáŁ áá: ášááł áááá”-6</annotation>
<annotation cp="đ€¶đ»">á„áá” | á/áź ášááá” | ášááł áááá”-1-2 | ášáá á„áá” | áá</annotation>
<annotation cp="đ€¶đ»" type="tts">ášáá á„áá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ€¶đŒ">ááášáá áá á«á ášááł ááá | á„áá” | á/áź ášááá” | ášáá á„áá” | áá</annotation>
<annotation cp="đ€¶đŒ" type="tts">ášáá á„áá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€¶đœ">á„áá” | á/áź ášááá” | ášááł áááá”-4 | ášáá á„áá” | áá</annotation>
<annotation cp="đ€¶đœ" type="tts">ášáá á„áá”: ášááł áááá”-4</annotation>
<annotation cp="đ€¶đŸ">á„áá” | á/áź ášááá” | ášááł áááá”-5 | ášáá á„áá” | áá</annotation>
<annotation cp="đ€¶đŸ" type="tts">ášáá á„áá”: ášááł áááá”-5</annotation>
<annotation cp="đ€¶đż">á„áá” | á/áź ášááá” | ášááł áááá”-6 | ášáá á„áá” | áá</annotation>
<annotation cp="đ€¶đż" type="tts">ášáá á„áá”: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»âđ">ááá” áááá” | á°á | áłááł áááá” | á áá | áááá” | áźáá« | ášááł áááá”-1-2 | ášáá á áŁá” | áá</annotation>
<annotation cp="đ§đ»âđ" type="tts">ááá” áááá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒâđ">ááášáá áá á«á ášááł ááá | ááá” áááá” | á°á | áłááł áááá” | á áá | áááá” | áźáá« | ášáá á áŁá” | áá</annotation>
<annotation cp="đ§đŒâđ" type="tts">ááá” áááá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœâđ">ááá” áááá” | á°á | áłááł áááá” | á áá | áááá” | áźáá« | ášááł áááá”-4 | ášáá á áŁá” | áá</annotation>
<annotation cp="đ§đœâđ" type="tts">ááá” áááá”: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸâđ">ááá” áááá” | á°á | áłááł áááá” | á áá | áááá” | áźáá« | ášááł áááá”-5 | ášáá á áŁá” | áá</annotation>
<annotation cp="đ§đŸâđ" type="tts">ááá” áááá”: ášááł áááá”-5</annotation>
<annotation cp="đ§đżâđ">ááá” áááá” | á°á | áłááł áááá” | á áá | áááá” | áźáá« | ášááł áááá”-6 | ášáá á áŁá” | áá</annotation>
<annotation cp="đ§đżâđ" type="tts">ááá” áááá”: ášááł áááá”-6</annotation>
<annotation cp="đŠžđ»">ááá áá«á | áá© ááá á«áá | ááá«á | á±áááá | áŁá”áá | ášááł áááá”-1-2 | ááá | ááá áŽá” | á„á©</annotation>
<annotation cp="đŠžđ»" type="tts">ááá: ášááł áááá”-1-2</annotation>
<annotation cp="đŠžđŒ">ááá áá«á | áá© ááá á«áá | ááášáá áá á«á ášááł ááá | ááá«á | á±áááá | áŁá”áá | ááá | ááá áŽá” | á„á©</annotation>
<annotation cp="đŠžđŒ" type="tts">ááá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đŠžđœ">ááá áá«á | áá© ááá á«áá | ááá«á | á±áááá | áŁá”áá | ášááł áááá”-4 | ááá | ááá áŽá” | á„á©</annotation>
<annotation cp="đŠžđœ" type="tts">ááá: ášááł áááá”-4</annotation>
<annotation cp="đŠžđŸ">ááá áá«á | áá© ááá á«áá | ááá«á | á±áááá | áŁá”áá | ášááł áááá”-5 | ááá | ááá áŽá” | á„á©</annotation>
<annotation cp="đŠžđŸ" type="tts">ááá: ášááł áááá”-5</annotation>
<annotation cp="đŠžđż">ááá áá«á | áá© ááá á«áá | ááá«á | á±áááá | áŁá”áá | ášááł áááá”-6 | ááá | ááá áŽá” | á„á©</annotation>
<annotation cp="đŠžđż" type="tts">ááá: ášááł áááá”-6</annotation>
<annotation cp="đŠžđ»ââ">ááá” | ášááł áááá”-1-2 | ášááá” ááá | ááá | á„á©</annotation>
<annotation cp="đŠžđ»ââ" type="tts">ášááá” ááá: ášááł áááá”-1-2</annotation>
<annotation cp="đŠžđŒââ">ááášáá áá á«á ášááł ááá | ááá” | ášááá” ááá | ááá | á„á©</annotation>
<annotation cp="đŠžđŒââ" type="tts">ášááá” ááá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đŠžđœââ">ááá” | ášááł áááá”-4 | ášááá” ááá | ááá | á„á©</annotation>
<annotation cp="đŠžđœââ" type="tts">ášááá” ááá: ášááł áááá”-4</annotation>
<annotation cp="đŠžđŸââ">ááá” | ášááł áááá”-5 | ášááá” ááá | ááá | á„á©</annotation>
<annotation cp="đŠžđŸââ" type="tts">ášááá” ááá: ášááł áááá”-5</annotation>
<annotation cp="đŠžđżââ">ááá” | ášááł áááá”-6 | ášááá” ááá | ááá | á„á©</annotation>
<annotation cp="đŠžđżââ" type="tts">ášááá” ááá: ášááł áááá”-6</annotation>
<annotation cp="đŠžđ»ââ">áŽá” | ášáŽá” ááá | ášááł áááá”-1-2 | ááá | á„á©</annotation>
<annotation cp="đŠžđ»ââ" type="tts">ášáŽá” ááá: ášááł áááá”-1-2</annotation>
<annotation cp="đŠžđŒââ">ááášáá áá á«á ášááł ááá | áŽá” | ášáŽá” ááá | ááá | á„á©</annotation>
<annotation cp="đŠžđŒââ" type="tts">ášáŽá” ááá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đŠžđœââ">áŽá” | ášáŽá” ááá | ášááł áááá”-4 | ááá | á„á©</annotation>
<annotation cp="đŠžđœââ" type="tts">ášáŽá” ááá: ášááł áááá”-4</annotation>
<annotation cp="đŠžđŸââ">áŽá” | ášáŽá” ááá | ášááł áááá”-5 | ááá | á„á©</annotation>
<annotation cp="đŠžđŸââ" type="tts">ášáŽá” ááá: ášááł áááá”-5</annotation>
<annotation cp="đŠžđżââ">áŽá” | ášáŽá” ááá | ášááł áááá”-6 | ááá | á„á©</annotation>
<annotation cp="đŠžđżââ" type="tts">ášáŽá” ááá: ášááł áááá”-6</annotation>
<annotation cp="đŠčđ»">áá«á | ááá áá«á | áá„á | á°á | á áŁá á°ááźáá | á°ááźáá | áá | ááááá | áááá | ášááł áááá”-1-2 | ášááá áá”á</annotation>
<annotation cp="đŠčđ»" type="tts">ášááá áá”á: ášááł áááá”-1-2</annotation>
<annotation cp="đŠčđŒ">áá«á | ááá áá«á | ááášáá áá á«á ášááł ááá | áá„á | á°á | á áŁá á°ááźáá | á°ááźáá | áá | ááááá | áááá | ášááá áá”á</annotation>
<annotation cp="đŠčđŒ" type="tts">ášááá áá”á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đŠčđœ">áá«á | ááá áá«á | áá„á | á°á | á áŁá á°ááźáá | á°ááźáá | áá | ááááá | áááá | ášááł áááá”-4 | ášááá áá”á</annotation>
<annotation cp="đŠčđœ" type="tts">ášááá áá”á: ášááł áááá”-4</annotation>
<annotation cp="đŠčđŸ">áá«á | ááá áá«á | áá„á | á°á | á áŁá á°ááźáá | á°ááźáá | áá | ááááá | áááá | ášááł áááá”-5 | ášááá áá”á</annotation>
<annotation cp="đŠčđŸ" type="tts">ášááá áá”á: ášááł áááá”-5</annotation>
<annotation cp="đŠčđż">áá«á | ááá áá«á | áá„á | á°á | á áŁá á°ááźáá | á°ááźáá | áá | ááááá | áááá | ášááł áááá”-6 | ášááá áá”á</annotation>
<annotation cp="đŠčđż" type="tts">ášááá áá”á: ášááł áááá”-6</annotation>
<annotation cp="đŠčđ»ââ">áá«á | á°á | á°ááźáá | áá | ááááá | ášááł áááá”-1-2 | ášááá” ááá áá”á</annotation>
<annotation cp="đŠčđ»ââ" type="tts">ášááá” ááá áá”á: ášááł áááá”-1-2</annotation>
<annotation cp="đŠčđŒââ">áá«á | ááášáá áá á«á ášááł ááá | á°á | á°ááźáá | áá | ááááá | ášááá” ááá áá”á</annotation>
<annotation cp="đŠčđŒââ" type="tts">ášááá” ááá áá”á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đŠčđœââ">áá«á | á°á | á°ááźáá | áá | ááááá | ášááł áááá”-4 | ášááá” ááá áá”á</annotation>
<annotation cp="đŠčđœââ" type="tts">ášááá” ááá áá”á: ášááł áááá”-4</annotation>
<annotation cp="đŠčđŸââ">áá«á | á°á | á°ááźáá | áá | ááááá | ášááł áááá”-5 | ášááá” ááá áá”á</annotation>
<annotation cp="đŠčđŸââ" type="tts">ášááá” ááá áá”á: ášááł áááá”-5</annotation>
<annotation cp="đŠčđżââ">áá«á | á°á | á°ááźáá | áá | ááááá | ášááł áááá”-6 | ášááá” ááá áá”á</annotation>
<annotation cp="đŠčđżââ" type="tts">ášááá” ááá áá”á: ášááł áááá”-6</annotation>
<annotation cp="đŠčđ»ââ">áá«á | á°ááźáá | áá | áááá | ášáŽá” ááá áá”á | ášááł áááá”-1-2</annotation>
<annotation cp="đŠčđ»ââ" type="tts">ášáŽá” ááá áá”á: ášááł áááá”-1-2</annotation>
<annotation cp="đŠčđŒââ">áá«á | ááášáá áá á«á ášááł ááá | á°ááźáá | áá | áááá | ášáŽá” ááá áá”á</annotation>
<annotation cp="đŠčđŒââ" type="tts">ášáŽá” ááá áá”á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đŠčđœââ">áá«á | á°ááźáá | áá | áááá | ášáŽá” ááá áá”á | ášááł áááá”-4</annotation>
<annotation cp="đŠčđœââ" type="tts">ášáŽá” ááá áá”á: ášááł áááá”-4</annotation>
<annotation cp="đŠčđŸââ">áá«á | á°ááźáá | áá | áááá | ášáŽá” ááá áá”á | ášááł áááá”-5</annotation>
<annotation cp="đŠčđŸââ" type="tts">ášáŽá” ááá áá”á: ášááł áááá”-5</annotation>
<annotation cp="đŠčđżââ">áá«á | á°ááźáá | áá | áááá | ášáŽá” ááá áá”á | ášááł áááá”-6</annotation>
<annotation cp="đŠčđżââ" type="tts">ášáŽá” ááá áá”á: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»">áááá” áá„á«á” | áá áá«áá” | áá”áá°á | á á”áá°á | á á”áá°á á°á | á á”áá” | ášááá ááá | ášááł áááá”-1-2 | á”ááá” | á ááá</annotation>
<annotation cp="đ§đ»" type="tts">á á”áá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒ">ááášáá áá á«á ášááł ááá | áááá” áá„á«á” | áá áá«áá” | áá”áá°á | á á”áá°á | á á”áá°á á°á | á á”áá” | ášááá ááá | á”ááá” | á ááá</annotation>
<annotation cp="đ§đŒ" type="tts">á á”áá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœ">áááá” áá„á«á” | áá áá«áá” | áá”áá°á | á á”áá°á | á á”áá°á á°á | á á”áá” | ášááá ááá | ášááł áááá”-4 | á”ááá” | á ááá</annotation>
<annotation cp="đ§đœ" type="tts">á á”áá”: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸ">áááá” áá„á«á” | áá áá«áá” | áá”áá°á | á á”áá°á | á á”áá°á á°á | á á”áá” | ášááá ááá | ášááł áááá”-5 | á”ááá” | á ááá</annotation>
<annotation cp="đ§đŸ" type="tts">á á”áá”: ášááł áááá”-5</annotation>
<annotation cp="đ§đż">áááá” áá„á«á” | áá áá«áá” | áá”áá°á | á á”áá°á | á á”áá°á á°á | á á”áá” | ášááá ááá | ášááł áááá”-6 | á”ááá” | á ááá</annotation>
<annotation cp="đ§đż" type="tts">á á”áá”: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»ââ">á á”áá°á ááá” | ášááł áááá”-1-2</annotation>
<annotation cp="đ§đ»ââ" type="tts">á á”áá°á ááá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒââ">ááášáá áá á«á ášááł ááá | á á”áá°á ááá”</annotation>
<annotation cp="đ§đŒââ" type="tts">á á”áá°á ááá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœââ">á á”áá°á ááá” | ášááł áááá”-4</annotation>
<annotation cp="đ§đœââ" type="tts">á á”áá°á ááá”: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸââ">á á”áá°á ááá” | ášááł áááá”-5</annotation>
<annotation cp="đ§đŸââ" type="tts">á á”áá°á ááá”: ášááł áááá”-5</annotation>
<annotation cp="đ§đżââ">á á”áá°á ááá” | ášááł áááá”-6</annotation>
<annotation cp="đ§đżââ" type="tts">á á”áá°á ááá”: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»ââ">á á”áá°á áŽá” | ášááł áááá”-1-2</annotation>
<annotation cp="đ§đ»ââ" type="tts">á á”áá°á áŽá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒââ">ááášáá áá á«á ášááł ááá | á á”áá°á áŽá”</annotation>
<annotation cp="đ§đŒââ" type="tts">á á”áá°á áŽá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœââ">á á”áá°á áŽá” | ášááł áááá”-4</annotation>
<annotation cp="đ§đœââ" type="tts">á á”áá°á áŽá”: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸââ">á á”áá°á áŽá” | ášááł áááá”-5</annotation>
<annotation cp="đ§đŸââ" type="tts">á á”áá°á áŽá”: ášááł áááá”-5</annotation>
<annotation cp="đ§đżââ">á á”áá°á áŽá” | ášááł áááá”-6</annotation>
<annotation cp="đ§đżââ" type="tts">á á”áá°á áŽá”: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»">á°ášá” | á á áłáȘá | áááᜠ| ášá°á ááȘ | ášááł áááá”-1-2 | ášáąáá ááá | á ááá | ááȘ | áááČ</annotation>
<annotation cp="đ§đ»" type="tts">á ááá: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒ">ááášáá áá á«á ášááł ááá | á°ášá” | á á áłáȘá | áááᜠ| ášá°á ááȘ | ášáąáá ááá | á ááá | ááȘ | áááČ</annotation>
<annotation cp="đ§đŒ" type="tts">á ááá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœ">á°ášá” | á á áłáȘá | áááᜠ| ášá°á ááȘ | ášááł áááá”-4 | ášáąáá ááá | á ááá | ááȘ | áááČ</annotation>
<annotation cp="đ§đœ" type="tts">á ááá: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸ">á°ášá” | á á áłáȘá | áááᜠ| ášá°á ááȘ | ášááł áááá”-5 | ášáąáá ááá | á ááá | ááȘ | áááČ</annotation>
<annotation cp="đ§đŸ" type="tts">á ááá: ášááł áááá”-5</annotation>
<annotation cp="đ§đż">á°ášá” | á á áłáȘá | áááᜠ| ášá°á ááȘ | ášááł áááá”-6 | ášáąáá ááá | á ááá | ááȘ | áááČ</annotation>
<annotation cp="đ§đż" type="tts">á ááá: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»ââ">ášááł áááá”-1-2 | á ááá ááá”</annotation>
<annotation cp="đ§đ»ââ" type="tts">á ááá ááá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒââ">ááášáá áá á«á ášááł ááá | á ááá ááá”</annotation>
<annotation cp="đ§đŒââ" type="tts">á ááá ááá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœââ">ášááł áááá”-4 | á ááá ááá”</annotation>
<annotation cp="đ§đœââ" type="tts">á ááá ááá”: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸââ">ášááł áááá”-5 | á ááá ááá”</annotation>
<annotation cp="đ§đŸââ" type="tts">á ááá ááá”: ášááł áááá”-5</annotation>
<annotation cp="đ§đżââ">ášááł áááá”-6 | á ááá ááá”</annotation>
<annotation cp="đ§đżââ" type="tts">á ááá ááá”: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»ââ">ášááł áááá”-1-2 | á ááá áŽá”</annotation>
<annotation cp="đ§đ»ââ" type="tts">á ááá áŽá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒââ">ááášáá áá á«á ášááł ááá | á ááá áŽá”</annotation>
<annotation cp="đ§đŒââ" type="tts">á ááá áŽá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœââ">ášááł áááá”-4 | á ááá áŽá”</annotation>
<annotation cp="đ§đœââ" type="tts">á ááá áŽá”: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸââ">ášááł áááá”-5 | á ááá áŽá”</annotation>
<annotation cp="đ§đŸââ" type="tts">á ááá áŽá”: ášááł áááá”-5</annotation>
<annotation cp="đ§đżââ">ášááł áááá”-6 | á ááá áŽá”</annotation>
<annotation cp="đ§đżââ" type="tts">á ááá áŽá”: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»">áááá | ááá á°áá„áź | á
áá | á«ááášá | á ááŁáłá” | á á”ááȘ | ášááł áááá”-1-2 | á«ááá° | á°á | á„áá” | á„áá” á«áá áá«á
| áá«á
</annotation>
<annotation cp="đ§đ»" type="tts">á„áá” á«áá áá«á
: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒ">áááá | ááá á°áá„áź | ááášáá áá á«á ášááł ááá | á
áá | á«ááášá | á ááŁáłá” | á á”ááȘ | á«ááá° | á°á | á„áá” | á„áá” á«áá áá«á
| áá«á
</annotation>
<annotation cp="đ§đŒ" type="tts">á„áá” á«áá áá«á
: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœ">áááá | ááá á°áá„áź | á
áá | á«ááášá | á ááŁáłá” | á á”ááȘ | ášááł áááá”-4 | á«ááá° | á°á | á„áá” | á„áá” á«áá áá«á
| áá«á
</annotation>
<annotation cp="đ§đœ" type="tts">á„áá” á«áá áá«á
: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸ">áááá | ááá á°áá„áź | á
áá | á«ááášá | á ááŁáłá” | á á”ááȘ | ášááł áááá”-5 | á«ááá° | á°á | á„áá” | á„áá” á«áá áá«á
| áá«á
</annotation>
<annotation cp="đ§đŸ" type="tts">á„áá” á«áá áá«á
: ášááł áááá”-5</annotation>
<annotation cp="đ§đż">áááá | ááá á°áá„áź | á
áá | á«ááášá | á ááŁáłá” | á á”ááȘ | ášááł áááá”-6 | á«ááá° | á°á | á„áá” | á„áá” á«áá áá«á
| áá«á
</annotation>
<annotation cp="đ§đż" type="tts">á„áá” á«áá áá«á
: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»ââ">ášááł áááá”-1-2 | á„áá” á«áá ááá” áá«á
</annotation>
<annotation cp="đ§đ»ââ" type="tts">á„áá” á«áá ááá” áá«á
: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒââ">ááášáá áá á«á ášááł ááá | á„áá” á«áá ááá” áá«á
</annotation>
<annotation cp="đ§đŒââ" type="tts">á„áá” á«áá ááá” áá«á
: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœââ">ášááł áááá”-4 | á„áá” á«áá ááá” áá«á
</annotation>
<annotation cp="đ§đœââ" type="tts">á„áá” á«áá ááá” áá«á
: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸââ">ášááł áááá”-5 | á„áá” á«áá ááá” áá«á
</annotation>
<annotation cp="đ§đŸââ" type="tts">á„áá” á«áá ááá” áá«á
: ášááł áááá”-5</annotation>
<annotation cp="đ§đżââ">ášááł áááá”-6 | á„áá” á«áá ááá” áá«á
</annotation>
<annotation cp="đ§đżââ" type="tts">á„áá” á«áá ááá” áá«á
: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»ââ">ášááł áááá”-1-2 | á„áá” á«áá” áŽá” áá«á
</annotation>
<annotation cp="đ§đ»ââ" type="tts">á„áá” á«áá” áŽá” áá«á
: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒââ">ááášáá áá á«á ášááł ááá | á„áá” á«áá” áŽá” áá«á
</annotation>
<annotation cp="đ§đŒââ" type="tts">á„áá” á«áá” áŽá” áá«á
: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœââ">ášááł áááá”-4 | á„áá” á«áá” áŽá” áá«á
</annotation>
<annotation cp="đ§đœââ" type="tts">á„áá” á«áá” áŽá” áá«á
: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸââ">ášááł áááá”-5 | á„áá” á«áá” áŽá” áá«á
</annotation>
<annotation cp="đ§đŸââ" type="tts">á„áá” á«áá” áŽá” áá«á
: ášááł áááá”-5</annotation>
<annotation cp="đ§đżââ">ášááł áááá”-6 | á„áá” á«áá” áŽá” áá«á
</annotation>
<annotation cp="đ§đżââ" type="tts">á„áá” á«áá” áŽá” áá«á
: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»">áááá” | áŁáá¶á”á” áŠá | á°ášá” á°ášá” | ášááł áááá”-1-2 | ááᜠá°á ááᜠááł | ááᜠáŽá” ááᜠááł | ááᜠááá” ááᜠááł | á„á©ááŁ</annotation>
<annotation cp="đ§đ»" type="tts">ááᜠá°á ááᜠááł: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒ">ááášáá áá á«á ášááł ááá | áááá” | áŁáá¶á”á” áŠá | á°ášá” á°ášá” | ááᜠá°á ááᜠááł | ááᜠáŽá” ááᜠááł | ááᜠááá” ááᜠááł | á„á©ááŁ</annotation>
<annotation cp="đ§đŒ" type="tts">ááᜠá°á ááᜠááł: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœ">áááá” | áŁáá¶á”á” áŠá | á°ášá” á°ášá” | ášááł áááá”-4 | ááᜠá°á ááᜠááł | ááᜠáŽá” ááᜠááł | ááᜠááá” ááᜠááł | á„á©ááŁ</annotation>
<annotation cp="đ§đœ" type="tts">ááᜠá°á ááᜠááł: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸ">áááá” | áŁáá¶á”á” áŠá | á°ášá” á°ášá” | ášááł áááá”-5 | ááᜠá°á ááᜠááł | ááᜠáŽá” ááᜠááł | ááᜠááá” ááᜠááł | á„á©ááŁ</annotation>
<annotation cp="đ§đŸ" type="tts">ááᜠá°á ááᜠááł: ášááł áááá”-5</annotation>
<annotation cp="đ§đż">áááá” | áŁáá¶á”á” áŠá | á°ášá” á°ášá” | ášááł áááá”-6 | ááᜠá°á ááᜠááł | ááᜠáŽá” ááᜠááł | ááᜠááá” ááᜠááł | á„á©ááŁ</annotation>
<annotation cp="đ§đż" type="tts">ááᜠá°á ááᜠááł: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»ââ">ááá” ááᜠá°á ááᜠááł | ášááł áááá”-1-2</annotation>
<annotation cp="đ§đ»ââ" type="tts">ááá” ááᜠá°á ááᜠááł: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒââ">ááášáá áá á«á ášááł ááá | ááá” ááᜠá°á ááᜠááł</annotation>
<annotation cp="đ§đŒââ" type="tts">ááá” ááᜠá°á ááᜠááł: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœââ">ááá” ááᜠá°á ááᜠááł | ášááł áááá”-4</annotation>
<annotation cp="đ§đœââ" type="tts">ááá” ááᜠá°á ááᜠááł: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸââ">ááá” ááᜠá°á ááᜠááł | ášááł áááá”-5</annotation>
<annotation cp="đ§đŸââ" type="tts">ááá” ááᜠá°á ááᜠááł: ášááł áááá”-5</annotation>
<annotation cp="đ§đżââ">ááá” ááᜠá°á ááᜠááł | ášááł áááá”-6</annotation>
<annotation cp="đ§đżââ" type="tts">ááá” ááᜠá°á ááᜠááł: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»ââ">áŽá” ááᜠá°á ááᜠááł | ášááł áááá”-1-2</annotation>
<annotation cp="đ§đ»ââ" type="tts">áŽá” ááᜠá°á ááᜠááł: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒââ">ááášáá áá á«á ášááł ááá | áŽá” ááᜠá°á ááᜠááł</annotation>
<annotation cp="đ§đŒââ" type="tts">áŽá” ááᜠá°á ááᜠááł: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœââ">áŽá” ááᜠá°á ááᜠááł | ášááł áááá”-4</annotation>
<annotation cp="đ§đœââ" type="tts">áŽá” ááᜠá°á ááᜠááł: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸââ">áŽá” ááᜠá°á ááᜠááł | ášááł áááá”-5</annotation>
<annotation cp="đ§đŸââ" type="tts">áŽá” ááᜠá°á ááᜠááł: ášááł áááá”-5</annotation>
<annotation cp="đ§đżââ">áŽá” ááᜠá°á ááᜠááł | ášááł áááá”-6</annotation>
<annotation cp="đ§đżââ" type="tts">áŽá” ááᜠá°á ááᜠááł: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»">áá”áąá«á | áá”ááłá | á ááłáȘá«á | á ááłáȘá | á€áá | á„ááąá” | á„ááąá¶áœ | ášááá ááá | ášááł áááá”-1-2 | á°á”áł</annotation>
<annotation cp="đ§đ»" type="tts">á€áá: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒ">ááášáá áá á«á ášááł ááá | áá”áąá«á | áá”ááłá | á ááłáȘá«á | á ááłáȘá | á€áá | á„ááąá” | á„ááąá¶áœ | ášááá ááá | á°á”áł</annotation>
<annotation cp="đ§đŒ" type="tts">á€áá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœ">áá”áąá«á | áá”ááłá | á ááłáȘá«á | á ááłáȘá | á€áá | á„ááąá” | á„ááąá¶áœ | ášááá ááá | ášááł áááá”-4 | á°á”áł</annotation>
<annotation cp="đ§đœ" type="tts">á€áá: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸ">áá”áąá«á | áá”ááłá | á ááłáȘá«á | á ááłáȘá | á€áá | á„ááąá” | á„ááąá¶áœ | ášááá ááá | ášááł áááá”-5 | á°á”áł</annotation>
<annotation cp="đ§đŸ" type="tts">á€áá: ášááł áááá”-5</annotation>
<annotation cp="đ§đż">áá”áąá«á | áá”ááłá | á ááłáȘá«á | á ááłáȘá | á€áá | á„ááąá” | á„ááąá¶áœ | ášááá ááá | ášááł áááá”-6 | á°á”áł</annotation>
<annotation cp="đ§đż" type="tts">á€áá: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»ââ">ááá” á€áá | ášááł áááá”-1-2</annotation>
<annotation cp="đ§đ»ââ" type="tts">ááá” á€áá: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒââ">ááášáá áá á«á ášááł ááá | ááá” á€áá</annotation>
<annotation cp="đ§đŒââ" type="tts">ááá” á€áá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœââ">ááá” á€áá | ášááł áááá”-4</annotation>
<annotation cp="đ§đœââ" type="tts">ááá” á€áá: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸââ">ááá” á€áá | ášááł áááá”-5</annotation>
<annotation cp="đ§đŸââ" type="tts">ááá” á€áá: ášááł áááá”-5</annotation>
<annotation cp="đ§đżââ">ááá” á€áá | ášááł áááá”-6</annotation>
<annotation cp="đ§đżââ" type="tts">ááá” á€áá: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»ââ">áŽá” á€áá | ášááł áááá”-1-2</annotation>
<annotation cp="đ§đ»ââ" type="tts">áŽá” á€áá: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒââ">ááášáá áá á«á ášááł ááá | áŽá” á€áá</annotation>
<annotation cp="đ§đŒââ" type="tts">áŽá” á€áá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœââ">áŽá” á€áá | ášááł áááá”-4</annotation>
<annotation cp="đ§đœââ" type="tts">áŽá” á€áá: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸââ">áŽá” á€áá | ášááł áááá”-5</annotation>
<annotation cp="đ§đŸââ" type="tts">áŽá” á€áá: ášááł áááá”-5</annotation>
<annotation cp="đ§đżââ">áŽá” á€áá | ášááł áááá”-6</annotation>
<annotation cp="đ§đżââ" type="tts">áŽá” á€áá: ášááł áááá”-6</annotation>
<annotation cp="đđ»">áááá | ááááá” | ááłá
| á«á” ááłá” | á°á ááłá
á„ášá°á°ášá | áłáá | áŽá” ááłá
á„ášá°á°ášáᜠ| á„áááł | áá„ášá” | áá ááá” | ášááł áááá”-1-2 | ášáá á” áłáá | ášáá” ááłá
| áá”</annotation>
<annotation cp="đđ»" type="tts">ášáá” ááłá
: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">áááá | ááášáá áá á«á ášááł ááá | ááááá” | ááłá
| á«á” ááłá” | á°á ááłá
á„ášá°á°ášá | áłáá | áŽá” ááłá
á„ášá°á°ášáᜠ| á„áááł | áá„ášá” | áá ááá” | ášáá á” áłáá | ášáá” ááłá
| áá”</annotation>
<annotation cp="đđŒ" type="tts">ášáá” ááłá
: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">áááá | ááááá” | ááłá
| á«á” ááłá” | á°á ááłá
á„ášá°á°ášá | áłáá | áŽá” ááłá
á„ášá°á°ášáᜠ| á„áááł | áá„ášá” | áá ááá” | ášááł áááá”-4 | ášáá á” áłáá | ášáá” ááłá
| áá”</annotation>
<annotation cp="đđœ" type="tts">ášáá” ááłá
: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">áááá | ááááá” | ááłá
| á«á” ááłá” | á°á ááłá
á„ášá°á°ášá | áłáá | áŽá” ááłá
á„ášá°á°ášáᜠ| á„áááł | áá„ášá” | áá ááá” | ášááł áááá”-5 | ášáá á” áłáá | ášáá” ááłá
| áá”</annotation>
<annotation cp="đđŸ" type="tts">ášáá” ááłá
: ášááł áááá”-5</annotation>
<annotation cp="đđż">áááá | ááááá” | ááłá
| á«á” ááłá” | á°á ááłá
á„ášá°á°ášá | áłáá | áŽá” ááłá
á„ášá°á°ášáᜠ| á„áááł | áá„ášá” | áá ááá” | ášááł áááá”-6 | ášáá á” áłáá | ášáá” ááłá
| áá”</annotation>
<annotation cp="đđż" type="tts">ášáá” ááłá
: ášááł áááá”-6</annotation>
<annotation cp="đđ»ââ">ááááá” | ááłá
| á«á” ááłá” | áłáá | á€á° áá á” | ááá” | ááá” ášáá” ááłá
| ááá” ášáá” ááłá
á„ášá°á°ášááá” | áá„ášá” | áá ááá” | ášááł áááá”-1-2 | ášáá á” áłáá</annotation>
<annotation cp="đđ»ââ" type="tts">ááá” ášáá” ááłá
: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒââ">ááášáá áá á«á ášááł ááá | ááááá” | ááłá
| á«á” ááłá” | áłáá | á€á° áá á” | ááá” | ááá” ášáá” ááłá
| ááá” ášáá” ááłá
á„ášá°á°ášááá” | áá„ášá” | áá ááá” | ášáá á” áłáá</annotation>
<annotation cp="đđŒââ" type="tts">ááá” ášáá” ááłá
: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœââ">ááááá” | ááłá
| á«á” ááłá” | áłáá | á€á° áá á” | ááá” | ááá” ášáá” ááłá
| ááá” ášáá” ááłá
á„ášá°á°ášááá” | áá„ášá” | áá ááá” | ášááł áááá”-4 | ášáá á” áłáá</annotation>
<annotation cp="đđœââ" type="tts">ááá” ášáá” ááłá
: ášááł áááá”-4</annotation>
<annotation cp="đđŸââ">ááááá” | ááłá
| á«á” ááłá” | áłáá | á€á° áá á” | ááá” | ááá” ášáá” ááłá
| ááá” ášáá” ááłá
á„ášá°á°ášááá” | áá„ášá” | áá ááá” | ášááł áááá”-5 | ášáá á” áłáá</annotation>
<annotation cp="đđŸââ" type="tts">ááá” ášáá” ááłá
: ášááł áááá”-5</annotation>
<annotation cp="đđżââ">ááááá” | ááłá
| á«á” ááłá” | áłáá | á€á° áá á” | ááá” | ááá” ášáá” ááłá
| ááá” ášáá” ááłá
á„ášá°á°ášááá” | áá„ášá” | áá ááá” | ášááł áááá”-6 | ášáá á” áłáá</annotation>
<annotation cp="đđżââ" type="tts">ááá” ášáá” ááłá
: ášááł áááá”-6</annotation>
<annotation cp="đđ»ââ">ááłá
| áłáá | áŽá” | áŽá” ášáá” ááłá
| ášááł áááá”-1-2</annotation>
<annotation cp="đđ»ââ" type="tts">áŽá” ášáá” ááłá
: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒââ">ááášáá áá á«á ášááł ááá | ááłá
| áłáá | áŽá” | áŽá” ášáá” ááłá
</annotation>
<annotation cp="đđŒââ" type="tts">áŽá” ášáá” ááłá
: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœââ">ááłá
| áłáá | áŽá” | áŽá” ášáá” ááłá
| ášááł áááá”-4</annotation>
<annotation cp="đđœââ" type="tts">áŽá” ášáá” ááłá
: ášááł áááá”-4</annotation>
<annotation cp="đđŸââ">ááłá
| áłáá | áŽá” | áŽá” ášáá” ááłá
| ášááł áááá”-5</annotation>
<annotation cp="đđŸââ" type="tts">áŽá” ášáá” ááłá
: ášááł áááá”-5</annotation>
<annotation cp="đđżââ">ááłá
| áłáá | áŽá” | áŽá” ášáá” ááłá
| ášááł áááá”-6</annotation>
<annotation cp="đđżââ" type="tts">áŽá” ášáá” ááłá
: ášááł áááá”-6</annotation>
<annotation cp="đđ»">á°á ááá á„ášá°áá°á | á ááá” ááášá„ | á„áááł ááá á« | áá á” | ášááł áááá”-1-2 | ášáá á” áłáá | ážáá ááášá„ | ážáá áá«á | ááá á á”á°á«á«á</annotation>
<annotation cp="đđ»" type="tts">ážáá ááášá„: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááášáá áá á«á ášááł ááá | á°á ááá á„ášá°áá°á | á ááá” ááášá„ | á„áááł ááá á« | áá á” | ášáá á” áłáá | ážáá ááášá„ | ážáá áá«á | ááá á á”á°á«á«á</annotation>
<annotation cp="đđŒ" type="tts">ážáá ááášá„: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">á°á ááá á„ášá°áá°á | á ááá” ááášá„ | á„áááł ááá á« | áá á” | ášááł áááá”-4 | ášáá á” áłáá | ážáá ááášá„ | ážáá áá«á | ááá á á”á°á«á«á</annotation>
<annotation cp="đđœ" type="tts">ážáá ááášá„: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">á°á ááá á„ášá°áá°á | á ááá” ááášá„ | á„áááł ááá á« | áá á” | ášááł áááá”-5 | ášáá á” áłáá | ážáá ááášá„ | ážáá áá«á | ááá á á”á°á«á«á</annotation>
<annotation cp="đđŸ" type="tts">ážáá ááášá„: ášááł áááá”-5</annotation>
<annotation cp="đđż">á°á ááá á„ášá°áá°á | á ááá” ááášá„ | á„áááł ááá á« | áá á” | ášááł áááá”-6 | ášáá á” áłáá | ážáá ááášá„ | ážáá áá«á | ááá á á”á°á«á«á</annotation>
<annotation cp="đđż" type="tts">ážáá ááášá„: ášááł áááá”-6</annotation>
<annotation cp="đđ»ââ">á°á | ááá” | ááá” ážáá ááášá„ | ááá” ááá©á á„ášá°áášá | áá á” | ášááł áááá”-1-2 | ášááá ááá„ | ážáá áá«á | ááá | ááá á€á” | ááá á á”á°á«á«á</annotation>
<annotation cp="đđ»ââ" type="tts">ááá” ážáá ááášá„: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒââ">ááášáá áá á«á ášááł ááá | á°á | ááá” | ááá” ážáá ááášá„ | ááá” ááá©á á„ášá°áášá | áá á” | ášááá ááá„ | ážáá áá«á | ááá | ááá á€á” | ááá á á”á°á«á«á</annotation>
<annotation cp="đđŒââ" type="tts">ááá” ážáá ááášá„: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœââ">á°á | ááá” | ááá” ážáá ááášá„ | ááá” ááá©á á„ášá°áášá | áá á” | ášááł áááá”-4 | ášááá ááá„ | ážáá áá«á | ááá | ááá á€á” | ááá á á”á°á«á«á</annotation>
<annotation cp="đđœââ" type="tts">ááá” ážáá ááášá„: ášááł áááá”-4</annotation>
<annotation cp="đđŸââ">á°á | ááá” | ááá” ážáá ááášá„ | ááá” ááá©á á„ášá°áášá | áá á” | ášááł áááá”-5 | ášááá ááá„ | ážáá áá«á | ááá | ááá á€á” | ááá á á”á°á«á«á</annotation>
<annotation cp="đđŸââ" type="tts">ááá” ážáá ááášá„: ášááł áááá”-5</annotation>
<annotation cp="đđżââ">á°á | ááá” | ááá” ážáá ááášá„ | ááá” ááá©á á„ášá°áášá | áá á” | ášááł áááá”-6 | ášááá ááá„ | ážáá áá«á | ááá | ááá á€á” | ááá á á”á°á«á«á</annotation>
<annotation cp="đđżââ" type="tts">ááá” ážáá ááášá„: ášááł áááá”-6</annotation>
<annotation cp="đđ»ââ">áŽá” | áŽá” ážáá ááášá„ | ášááł áááá”-1-2 | ážáá áá«á</annotation>
<annotation cp="đđ»ââ" type="tts">áŽá” ážáá ááášá„: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒââ">ááášáá áá á«á ášááł ááá | áŽá” | áŽá” ážáá ááášá„ | ážáá áá«á</annotation>
<annotation cp="đđŒââ" type="tts">áŽá” ážáá ááášá„: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœââ">áŽá” | áŽá” ážáá ááášá„ | ášááł áááá”-4 | ážáá áá«á</annotation>
<annotation cp="đđœââ" type="tts">áŽá” ážáá ááášá„: ášááł áááá”-4</annotation>
<annotation cp="đđŸââ">áŽá” | áŽá” ážáá ááášá„ | ášááł áááá”-5 | ážáá áá«á</annotation>
<annotation cp="đđŸââ" type="tts">áŽá” ážáá ááášá„: ášááł áááá”-5</annotation>
<annotation cp="đđżââ">áŽá” | áŽá” ážáá ááášá„ | ášááł áááá”-6 | ážáá áá«á</annotation>
<annotation cp="đđżââ" type="tts">áŽá” ážáá ááášá„: ášááł áááá”-6</annotation>
<annotation cp="đ¶đ»">áá«áá” | á ááá„ áá«áá” | á á„áá áážá«ážá | á ášááá” | á„áášá | ášááł áááá”-1-2 | ášá„áá ášá„á áá | ášá„áá áá</annotation>
<annotation cp="đ¶đ»" type="tts">á„áášá: ášááł áááá”-1-2</annotation>
<annotation cp="đ¶đŒ">ááášáá áá á«á ášááł ááá | áá«áá” | á ááá„ áá«áá” | á á„áá áážá«ážá | á ášááá” | á„áášá | ášá„áá ášá„á áá | ášá„áá áá</annotation>
<annotation cp="đ¶đŒ" type="tts">á„áášá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ¶đœ">áá«áá” | á ááá„ áá«áá” | á á„áá áážá«ážá | á ášááá” | á„áášá | ášááł áááá”-4 | ášá„áá ášá„á áá | ášá„áá áá</annotation>
<annotation cp="đ¶đœ" type="tts">á„áášá: ášááł áááá”-4</annotation>
<annotation cp="đ¶đŸ">áá«áá” | á ááá„ áá«áá” | á á„áá áážá«ážá | á ášááá” | á„áášá | ášááł áááá”-5 | ášá„áá ášá„á áá | ášá„áá áá</annotation>
<annotation cp="đ¶đŸ" type="tts">á„áášá: ášááł áááá”-5</annotation>
<annotation cp="đ¶đż">áá«áá” | á ááá„ áá«áá” | á á„áá áážá«ážá | á ášááá” | á„áášá | ášááł áááá”-6 | ášá„áá ášá„á áá | ášá„áá áá</annotation>
<annotation cp="đ¶đż" type="tts">á„áášá: ášááł áááá”-6</annotation>
<annotation cp="đ¶đ»ââ">áá«áá” | á á„áá áážá«ážá | ášááł áááá”-1-2 | ášá„áá ášá„á áá | ášááá” á„áá áá</annotation>
<annotation cp="đ¶đ»ââ" type="tts">ášááá” á„áá áá: ášááł áááá”-1-2</annotation>
<annotation cp="đ¶đŒââ">ááášáá áá á«á ášááł ááá | áá«áá” | á á„áá áážá«ážá | ášá„áá ášá„á áá | ášááá” á„áá áá</annotation>
<annotation cp="đ¶đŒââ" type="tts">ášááá” á„áá áá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ¶đœââ">áá«áá” | á á„áá áážá«ážá | ášááł áááá”-4 | ášá„áá ášá„á áá | ášááá” á„áá áá</annotation>
<annotation cp="đ¶đœââ" type="tts">ášááá” á„áá áá: ášááł áááá”-4</annotation>
<annotation cp="đ¶đŸââ">áá«áá” | á á„áá áážá«ážá | ášááł áááá”-5 | ášá„áá ášá„á áá | ášááá” á„áá áá</annotation>
<annotation cp="đ¶đŸââ" type="tts">ášááá” á„áá áá: ášááł áááá”-5</annotation>
<annotation cp="đ¶đżââ">áá«áá” | á á„áá áážá«ážá | ášááł áááá”-6 | ášá„áá ášá„á áá | ášááá” á„áá áá</annotation>
<annotation cp="đ¶đżââ" type="tts">ášááá” á„áá áá: ášááł áááá”-6</annotation>
<annotation cp="đ¶đ»ââ">áá«áá” | ááážá«á°á” | áááá | ášá„á ášá„áá áá | á á„áá áážá«ážá | á á„áá ášáá”á«áá” áŽá” | á á©á«á” áá«áá” | á°ááá áá«áá” | á„áášá | ášáŽá¶áœ á„áá áá | ášááł áááá”-1-2 | ášá„áá ášá„á áá</annotation>
<annotation cp="đ¶đ»ââ" type="tts">ášáŽá¶áœ á„áá áá: ášááł áááá”-1-2</annotation>
<annotation cp="đ¶đŒââ">ááášáá áá á«á ášááł ááá | áá«áá” | ááážá«á°á” | áááá | ášá„á ášá„áá áá | á á„áá áážá«ážá | á á„áá ášáá”á«áá” áŽá” | á á©á«á” áá«áá” | á°ááá áá«áá” | á„áášá | ášáŽá¶áœ á„áá áá | ášá„áá ášá„á áá</annotation>
<annotation cp="đ¶đŒââ" type="tts">ášáŽá¶áœ á„áá áá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ¶đœââ">áá«áá” | ááážá«á°á” | áááá | ášá„á ášá„áá áá | á á„áá áážá«ážá | á á„áá ášáá”á«áá” áŽá” | á á©á«á” áá«áá” | á°ááá áá«áá” | á„áášá | ášáŽá¶áœ á„áá áá | ášááł áááá”-4 | ášá„áá ášá„á áá</annotation>
<annotation cp="đ¶đœââ" type="tts">ášáŽá¶áœ á„áá áá: ášááł áááá”-4</annotation>
<annotation cp="đ¶đŸââ">áá«áá” | ááážá«á°á” | áááá | ášá„á ášá„áá áá | á á„áá áážá«ážá | á á„áá ášáá”á«áá” áŽá” | á á©á«á” áá«áá” | á°ááá áá«áá” | á„áášá | ášáŽá¶áœ á„áá áá | ášááł áááá”-5 | ášá„áá ášá„á áá</annotation>
<annotation cp="đ¶đŸââ" type="tts">ášáŽá¶áœ á„áá áá: ášááł áááá”-5</annotation>
<annotation cp="đ¶đżââ">áá«áá” | ááážá«á°á” | áááá | ášá„á ášá„áá áá | á á„áá áážá«ážá | á á„áá ášáá”á«áá” áŽá” | á á©á«á” áá«áá” | á°ááá áá«áá” | á„áášá | ášáŽá¶áœ á„áá áá | ášááł áááá”-6 | ášá„áá ášá„á áá</annotation>
<annotation cp="đ¶đżââ" type="tts">ášáŽá¶áœ á„áá áá: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»">ááá | á°á áá | áá | ášáá á°á | ášááł áááá”-1-2</annotation>
<annotation cp="đ§đ»" type="tts">á°á áá: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒ">ááášáá áá á«á ášááł ááá | ááá | á°á áá | áá | ášáá á°á</annotation>
<annotation cp="đ§đŒ" type="tts">á°á áá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœ">ááá | á°á áá | áá | ášáá á°á | ášááł áááá”-4</annotation>
<annotation cp="đ§đœ" type="tts">á°á áá: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸ">ááá | á°á áá | áá | ášáá á°á | ášááł áááá”-5</annotation>
<annotation cp="đ§đŸ" type="tts">á°á áá: ášááł áááá”-5</annotation>
<annotation cp="đ§đż">ááá | á°á áá | áá | ášáá á°á | ášááł áááá”-6</annotation>
<annotation cp="đ§đż" type="tts">á°á áá: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»ââ">áá | ááá” | ášááł áááá”-1-2</annotation>
<annotation cp="đ§đ»ââ" type="tts">ááá” áá: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒââ">ááášáá áá á«á ášááł ááá | áá | ááá”</annotation>
<annotation cp="đ§đŒââ" type="tts">ááá” áá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœââ">áá | ááá” | ášááł áááá”-4</annotation>
<annotation cp="đ§đœââ" type="tts">ááá” áá: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸââ">áá | ááá” | ášááł áááá”-5</annotation>
<annotation cp="đ§đŸââ" type="tts">ááá” áá: ášááł áááá”-5</annotation>
<annotation cp="đ§đżââ">áá | ááá” | ášááł áááá”-6</annotation>
<annotation cp="đ§đżââ" type="tts">ááá” áá: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»ââ">ááá | áŽá” | áŽá” áá | ášááł áááá”-1-2</annotation>
<annotation cp="đ§đ»ââ" type="tts">áŽá” áá: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒââ">ááášáá áá á«á ášááł ááá | ááá | áŽá” | áŽá” áá</annotation>
<annotation cp="đ§đŒââ" type="tts">áŽá” áá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœââ">ááá | áŽá” | áŽá” áá | ášááł áááá”-4</annotation>
<annotation cp="đ§đœââ" type="tts">áŽá” áá: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸââ">ááá | áŽá” | áŽá” áá | ášááł áááá”-5</annotation>
<annotation cp="đ§đŸââ" type="tts">áŽá” áá: ášááł áááá”-5</annotation>
<annotation cp="đ§đżââ">ááá | áŽá” | áŽá” áá | ášááł áááá”-6</annotation>
<annotation cp="đ§đżââ" type="tts">áŽá” áá: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»">ááá áášá | á°á á°áá áááź | á ááá áášá áá | á ááá á± ášá°áá ášášáš á°á | á°áá áášá | ášááł áááá”-1-2 | ááá á”</annotation>
<annotation cp="đ§đ»" type="tts">á°á á°áá áááź: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒ">ááášáá áá á«á ášááł ááá | ááá áášá | á°á á°áá áááź | á ááá áášá áá | á ááá á± ášá°áá ášášáš á°á | á°áá áášá | ááá á”</annotation>
<annotation cp="đ§đŒ" type="tts">á°á á°áá áááź: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœ">ááá áášá | á°á á°áá áááź | á ááá áášá áá | á ááá á± ášá°áá ášášáš á°á | á°áá áášá | ášááł áááá”-4 | ááá á”</annotation>
<annotation cp="đ§đœ" type="tts">á°á á°áá áááź: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸ">ááá áášá | á°á á°áá áááź | á ááá áášá áá | á ááá á± ášá°áá ášášáš á°á | á°áá áášá | ášááł áááá”-5 | ááá á”</annotation>
<annotation cp="đ§đŸ" type="tts">á°á á°áá áááź: ášááł áááá”-5</annotation>
<annotation cp="đ§đż">ááá áášá | á°á á°áá áááź | á ááá áášá áá | á ááá á± ášá°áá ášášáš á°á | á°áá áášá | ášááł áááá”-6 | ááá á”</annotation>
<annotation cp="đ§đż" type="tts">á°á á°áá áááź: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»ââ">ááá áášá | ááá” | ááá” á°áá áááź | ášááł áááá”-1-2</annotation>
<annotation cp="đ§đ»ââ" type="tts">ááá” á°áá áááź: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒââ">ááášáá áá á«á ášááł ááá | ááá áášá | ááá” | ááá” á°áá áááź</annotation>
<annotation cp="đ§đŒââ" type="tts">ááá” á°áá áááź: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœââ">ááá áášá | ááá” | ááá” á°áá áááź | ášááł áááá”-4</annotation>
<annotation cp="đ§đœââ" type="tts">ááá” á°áá áááź: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸââ">ááá áášá | ááá” | ááá” á°áá áááź | ášááł áááá”-5</annotation>
<annotation cp="đ§đŸââ" type="tts">ááá” á°áá áááź: ášááł áááá”-5</annotation>
<annotation cp="đ§đżââ">ááá áášá | ááá” | ááá” á°áá áááź | ášááł áááá”-6</annotation>
<annotation cp="đ§đżââ" type="tts">ááá” á°áá áááź: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»ââ">áŽá” | áŽá” á°áá ááá« | á°áá áášá | ášááł áááá”-1-2</annotation>
<annotation cp="đ§đ»ââ" type="tts">áŽá” á°áá ááá«: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒââ">ááášáá áá á«á ášááł ááá | áŽá” | áŽá” á°áá ááá« | á°áá áášá</annotation>
<annotation cp="đ§đŒââ" type="tts">áŽá” á°áá ááá«: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœââ">áŽá” | áŽá” á°áá ááá« | á°áá áášá | ášááł áááá”-4</annotation>
<annotation cp="đ§đœââ" type="tts">áŽá” á°áá ááá«: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸââ">áŽá” | áŽá” á°áá ááá« | á°áá áášá | ášááł áááá”-5</annotation>
<annotation cp="đ§đŸââ" type="tts">áŽá” á°áá ááá«: ášááł áááá”-5</annotation>
<annotation cp="đ§đżââ">áŽá” | áŽá” á°áá ááá« | á°áá áášá | ášááł áááá”-6</annotation>
<annotation cp="đ§đżââ" type="tts">áŽá” á°áá ááá«: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»âđŠŻ">á°á ášáááȘá« á ááł áá | ášááł áááá”-1-2</annotation>
<annotation cp="đ§đ»âđŠŻ" type="tts">á°á ášáááȘá« á ááł áá: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒâđŠŻ">ááášáá áá á«á ášááł ááá | á°á ášáááȘá« á ááł áá</annotation>
<annotation cp="đ§đŒâđŠŻ" type="tts">á°á ášáááȘá« á ááł áá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœâđŠŻ">á°á ášáááȘá« á ááł áá | ášááł áááá”-4</annotation>
<annotation cp="đ§đœâđŠŻ" type="tts">á°á ášáááȘá« á ááł áá: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸâđŠŻ">á°á ášáááȘá« á ááł áá | ášááł áááá”-5</annotation>
<annotation cp="đ§đŸâđŠŻ" type="tts">á°á ášáááȘá« á ááł áá: ášááł áááá”-5</annotation>
<annotation cp="đ§đżâđŠŻ">á°á ášáááȘá« á ááł áá | ášááł áááá”-6</annotation>
<annotation cp="đ§đżâđŠŻ" type="tts">á°á ášáááȘá« á ááł áá: ášááł áááá”-6</annotation>
<annotation cp="đšđ»âđŠŻ">ááč | á°á | á°á°á«áœ | á°á°á«áœáá” | á„áá | ááá” | ááá” á ášáá« | ááá” ášááá á”áá ášáá« áá | ááá á”áá | ášááł áááá”-1-2</annotation>
<annotation cp="đšđ»âđŠŻ" type="tts">ááá” á ášáá«: ášááł áááá”-1-2</annotation>
<annotation cp="đšđŒâđŠŻ">ááášáá áá á«á ášááł ááá | ááč | á°á | á°á°á«áœ | á°á°á«áœáá” | á„áá | ááá” | ááá” á ášáá« | ááá” ášááá á”áá ášáá« áá | ááá á”áá</annotation>
<annotation cp="đšđŒâđŠŻ" type="tts">ááá” á ášáá«: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđœâđŠŻ">ááč | á°á | á°á°á«áœ | á°á°á«áœáá” | á„áá | ááá” | ááá” á ášáá« | ááá” ášááá á”áá ášáá« áá | ááá á”áá | ášááł áááá”-4</annotation>
<annotation cp="đšđœâđŠŻ" type="tts">ááá” á ášáá«: ášááł áááá”-4</annotation>
<annotation cp="đšđŸâđŠŻ">ááč | á°á | á°á°á«áœ | á°á°á«áœáá” | á„áá | ááá” | ááá” á ášáá« | ááá” ášááá á”áá ášáá« áá | ááá á”áá | ášááł áááá”-5</annotation>
<annotation cp="đšđŸâđŠŻ" type="tts">ááá” á ášáá«: ášááł áááá”-5</annotation>
<annotation cp="đšđżâđŠŻ">ááč | á°á | á°á°á«áœ | á°á°á«áœáá” | á„áá | ááá” | ááá” á ášáá« | ááá” ášááá á”áá ášáá« áá | ááá á”áá | ášááł áááá”-6</annotation>
<annotation cp="đšđżâđŠŻ" type="tts">ááá” á ášáá«: ášááł áááá”-6</annotation>
<annotation cp="đ©đ»âđŠŻ">ááč | á°á | áŽá” | áŽá” á ášáá« | áŽá” ášááá á”áá ášáá« áá | á°á°á«áœ | á°á°á«áœáá” | á„áá | ááá á”áá | ášááł áááá”-1-2</annotation>
<annotation cp="đ©đ»âđŠŻ" type="tts">áŽá” á ášáá«: ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŒâđŠŻ">ááášáá áá á«á ášááł ááá | ááč | á°á | áŽá” | áŽá” á ášáá« | áŽá” ášááá á”áá ášáá« áá | á°á°á«áœ | á°á°á«áœáá” | á„áá | ááá á”áá</annotation>
<annotation cp="đ©đŒâđŠŻ" type="tts">áŽá” á ášáá«: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đœâđŠŻ">ááč | á°á | áŽá” | áŽá” á ášáá« | áŽá” ášááá á”áá ášáá« áá | á°á°á«áœ | á°á°á«áœáá” | á„áá | ááá á”áá | ášááł áááá”-4</annotation>
<annotation cp="đ©đœâđŠŻ" type="tts">áŽá” á ášáá«: ášááł áááá”-4</annotation>
<annotation cp="đ©đŸâđŠŻ">ááč | á°á | áŽá” | áŽá” á ášáá« | áŽá” ášááá á”áá ášáá« áá | á°á°á«áœ | á°á°á«áœáá” | á„áá | ááá á”áá | ášááł áááá”-5</annotation>
<annotation cp="đ©đŸâđŠŻ" type="tts">áŽá” á ášáá«: ášááł áááá”-5</annotation>
<annotation cp="đ©đżâđŠŻ">ááč | á°á | áŽá” | áŽá” á ášáá« | áŽá” ášááá á”áá ášáá« áá | á°á°á«áœ | á°á°á«áœáá” | á„áá | ááá á”áá | ášááł áááá”-6</annotation>
<annotation cp="đ©đżâđŠŻ" type="tts">áŽá” á ášáá«: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»âđŠŒ">á°á ášáŁááá°á áááá« áá | ášááł áááá”-1-2</annotation>
<annotation cp="đ§đ»âđŠŒ" type="tts">á°á ášáŁááá°á áááá« áá: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒâđŠŒ">ááášáá áá á«á ášááł ááá | á°á ášáŁááá°á áááá« áá</annotation>
<annotation cp="đ§đŒâđŠŒ" type="tts">á°á ášáŁááá°á áááá« áá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœâđŠŒ">á°á ášáŁááá°á áááá« áá | ášááł áááá”-4</annotation>
<annotation cp="đ§đœâđŠŒ" type="tts">á°á ášáŁááá°á áááá« áá: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸâđŠŒ">á°á ášáŁááá°á áááá« áá | ášááł áááá”-5</annotation>
<annotation cp="đ§đŸâđŠŒ" type="tts">á°á ášáŁááá°á áááá« áá: ášááł áááá”-5</annotation>
<annotation cp="đ§đżâđŠŒ">á°á ášáŁááá°á áááá« áá | ášááł áááá”-6</annotation>
<annotation cp="đ§đżâđŠŒ" type="tts">á°á ášáŁááá°á áááá« áá: ášááł áááá”-6</annotation>
<annotation cp="đšđ»âđŠŒ">ááč | á°áœášáá«áȘ ááá á | á°á°á«áœ | á°á°á«áœáá” | á á«á ááłá°á | ááá” | ááá” á áá°á á°áœášáá«áȘ ááá á | ááá” á áá°á á°áœášáá«áȘ ááá á áá | ášááł áááá”-1-2 | ášá á«á ááłá°á á°áœášáá«áȘ ááá á</annotation>
<annotation cp="đšđ»âđŠŒ" type="tts">ááá” á áá°á á°áœášáá«áȘ ááá á: ášááł áááá”-1-2</annotation>
<annotation cp="đšđŒâđŠŒ">ááášáá áá á«á ášááł ááá | ááč | á°áœášáá«áȘ ááá á | á°á°á«áœ | á°á°á«áœáá” | á á«á ááłá°á | ááá” | ááá” á áá°á á°áœášáá«áȘ ááá á | ááá” á áá°á á°áœášáá«áȘ ááá á áá | ášá á«á ááłá°á á°áœášáá«áȘ ááá á</annotation>
<annotation cp="đšđŒâđŠŒ" type="tts">ááá” á áá°á á°áœášáá«áȘ ááá á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđœâđŠŒ">ááč | á°áœášáá«áȘ ááá á | á°á°á«áœ | á°á°á«áœáá” | á á«á ááłá°á | ááá” | ááá” á áá°á á°áœášáá«áȘ ááá á | ááá” á áá°á á°áœášáá«áȘ ááá á áá | ášááł áááá”-4 | ášá á«á ááłá°á á°áœášáá«áȘ ááá á</annotation>
<annotation cp="đšđœâđŠŒ" type="tts">ááá” á áá°á á°áœášáá«áȘ ááá á: ášááł áááá”-4</annotation>
<annotation cp="đšđŸâđŠŒ">ááč | á°áœášáá«áȘ ááá á | á°á°á«áœ | á°á°á«áœáá” | á á«á ááłá°á | ááá” | ááá” á áá°á á°áœášáá«áȘ ááá á | ááá” á áá°á á°áœášáá«áȘ ááá á áá | ášááł áááá”-5 | ášá á«á ááłá°á á°áœášáá«áȘ ááá á</annotation>
<annotation cp="đšđŸâđŠŒ" type="tts">ááá” á áá°á á°áœášáá«áȘ ááá á: ášááł áááá”-5</annotation>
<annotation cp="đšđżâđŠŒ">ááč | á°áœášáá«áȘ ááá á | á°á°á«áœ | á°á°á«áœáá” | á á«á ááłá°á | ááá” | ááá” á áá°á á°áœášáá«áȘ ááá á | ááá” á áá°á á°áœášáá«áȘ ááá á áá | ášááł áááá”-6 | ášá á«á ááłá°á á°áœášáá«áȘ ááá á</annotation>
<annotation cp="đšđżâđŠŒ" type="tts">ááá” á áá°á á°áœášáá«áȘ ááá á: ášááł áááá”-6</annotation>
<annotation cp="đ©đ»âđŠŒ">áááᣠ| ááč | á°á | áŽá” | áŽá” á áá°á á°áœášáá«áȘ ááá á | áŽá” á áá°á ášáá°á« á°áœášáá«áȘ ááá á áá | á°áœášáá«áȘ ááá á | á°á°á«áœ | á°á°á«áœáá” | á á«á ááłá°á | ášááł áááá”-1-2 | ášá á«á ááłá°á á°áœášáá«áȘ ááá á</annotation>
<annotation cp="đ©đ»âđŠŒ" type="tts">áŽá” á áá°á á°áœášáá«áȘ ááá á: ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŒâđŠŒ">ááášáá áá á«á ášááł ááá | áááᣠ| ááč | á°á | áŽá” | áŽá” á áá°á á°áœášáá«áȘ ááá á | áŽá” á áá°á ášáá°á« á°áœášáá«áȘ ááá á áá | á°áœášáá«áȘ ááá á | á°á°á«áœ | á°á°á«áœáá” | á á«á ááłá°á | ášá á«á ááłá°á á°áœášáá«áȘ ááá á</annotation>
<annotation cp="đ©đŒâđŠŒ" type="tts">áŽá” á áá°á á°áœášáá«áȘ ááá á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đœâđŠŒ">áááᣠ| ááč | á°á | áŽá” | áŽá” á áá°á á°áœášáá«áȘ ááá á | áŽá” á áá°á ášáá°á« á°áœášáá«áȘ ááá á áá | á°áœášáá«áȘ ááá á | á°á°á«áœ | á°á°á«áœáá” | á á«á ááłá°á | ášááł áááá”-4 | ášá á«á ááłá°á á°áœášáá«áȘ ááá á</annotation>
<annotation cp="đ©đœâđŠŒ" type="tts">áŽá” á áá°á á°áœášáá«áȘ ááá á: ášááł áááá”-4</annotation>
<annotation cp="đ©đŸâđŠŒ">áááᣠ| ááč | á°á | áŽá” | áŽá” á áá°á á°áœášáá«áȘ ááá á | áŽá” á áá°á ášáá°á« á°áœášáá«áȘ ááá á áá | á°áœášáá«áȘ ááá á | á°á°á«áœ | á°á°á«áœáá” | á á«á ááłá°á | ášááł áááá”-5 | ášá á«á ááłá°á á°áœášáá«áȘ ááá á</annotation>
<annotation cp="đ©đŸâđŠŒ" type="tts">áŽá” á áá°á á°áœášáá«áȘ ááá á: ášááł áááá”-5</annotation>
<annotation cp="đ©đżâđŠŒ">áááᣠ| ááč | á°á | áŽá” | áŽá” á áá°á á°áœášáá«áȘ ááá á | áŽá” á áá°á ášáá°á« á°áœášáá«áȘ ááá á áá | á°áœášáá«áȘ ááá á | á°á°á«áœ | á°á°á«áœáá” | á á«á ááłá°á | ášááł áááá”-6 | ášá á«á ááłá°á á°áœášáá«áȘ ááá á</annotation>
<annotation cp="đ©đżâđŠŒ" type="tts">áŽá” á áá°á á°áœášáá«áȘ ááá á: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»âđŠœ">á°á á áŁáá„á
á°áœášáá«áȘ ááá á | ášááł áááá”-1-2</annotation>
<annotation cp="đ§đ»âđŠœ" type="tts">á°á á áŁáá„á
á°áœášáá«áȘ ááá á: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒâđŠœ">ááášáá áá á«á ášááł ááá | á°á á áŁáá„á
á°áœášáá«áȘ ááá á</annotation>
<annotation cp="đ§đŒâđŠœ" type="tts">á°á á áŁáá„á
á°áœášáá«áȘ ááá á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœâđŠœ">á°á á áŁáá„á
á°áœášáá«áȘ ááá á | ášááł áááá”-4</annotation>
<annotation cp="đ§đœâđŠœ" type="tts">á°á á áŁáá„á
á°áœášáá«áȘ ááá á: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸâđŠœ">á°á á áŁáá„á
á°áœášáá«áȘ ááá á | ášááł áááá”-5</annotation>
<annotation cp="đ§đŸâđŠœ" type="tts">á°á á áŁáá„á
á°áœášáá«áȘ ááá á: ášááł áááá”-5</annotation>
<annotation cp="đ§đżâđŠœ">á°á á áŁáá„á
á°áœášáá«áȘ ááá á | ášááł áááá”-6</annotation>
<annotation cp="đ§đżâđŠœ" type="tts">á°á á áŁáá„á
á°áœášáá«áȘ ááá á: ášááł áááá”-6</annotation>
<annotation cp="đšđ»âđŠœ">áááᣠ| ááč | á°á | á°áœášáá«áȘ ááá á | á°á°á«áœ | á°á°á«áœáá” | á á«á ááłá°á | ááá” | ááá” á á„á
á°áœášáá«áȘ ááá á | ááá” á á„á
ášááá á°áœášáá«áȘ ááá á áá | ášááł áááá”-1-2 | ášá á«á ááłá°á á°áœášáá«áȘ ááá á</annotation>
<annotation cp="đšđ»âđŠœ" type="tts">ááá” á á„á
á°áœášáá«áȘ ááá á: ášááł áááá”-1-2</annotation>
<annotation cp="đšđŒâđŠœ">ááášáá áá á«á ášááł ááá | áááᣠ| ááč | á°á | á°áœášáá«áȘ ááá á | á°á°á«áœ | á°á°á«áœáá” | á á«á ááłá°á | ááá” | ááá” á á„á
á°áœášáá«áȘ ááá á | ááá” á á„á
ášááá á°áœášáá«áȘ ááá á áá | ášá á«á ááłá°á á°áœášáá«áȘ ááá á</annotation>
<annotation cp="đšđŒâđŠœ" type="tts">ááá” á á„á
á°áœášáá«áȘ ááá á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđœâđŠœ">áááᣠ| ááč | á°á | á°áœášáá«áȘ ááá á | á°á°á«áœ | á°á°á«áœáá” | á á«á ááłá°á | ááá” | ááá” á á„á
á°áœášáá«áȘ ááá á | ááá” á á„á
ášááá á°áœášáá«áȘ ááá á áá | ášááł áááá”-4 | ášá á«á ááłá°á á°áœášáá«áȘ ááá á</annotation>
<annotation cp="đšđœâđŠœ" type="tts">ááá” á á„á
á°áœášáá«áȘ ááá á: ášááł áááá”-4</annotation>
<annotation cp="đšđŸâđŠœ">áááᣠ| ááč | á°á | á°áœášáá«áȘ ááá á | á°á°á«áœ | á°á°á«áœáá” | á á«á ááłá°á | ááá” | ááá” á á„á
á°áœášáá«áȘ ááá á | ááá” á á„á
ášááá á°áœášáá«áȘ ááá á áá | ášááł áááá”-5 | ášá á«á ááłá°á á°áœášáá«áȘ ááá á</annotation>
<annotation cp="đšđŸâđŠœ" type="tts">ááá” á á„á
á°áœášáá«áȘ ááá á: ášááł áááá”-5</annotation>
<annotation cp="đšđżâđŠœ">áááᣠ| ááč | á°á | á°áœášáá«áȘ ááá á | á°á°á«áœ | á°á°á«áœáá” | á á«á ááłá°á | ááá” | ááá” á á„á
á°áœášáá«áȘ ááá á | ááá” á á„á
ášááá á°áœášáá«áȘ ááá á áá | ášááł áááá”-6 | ášá á«á ááłá°á á°áœášáá«áȘ ááá á</annotation>
<annotation cp="đšđżâđŠœ" type="tts">ááá” á á„á
á°áœášáá«áȘ ááá á: ášááł áááá”-6</annotation>
<annotation cp="đ©đ»âđŠœ">áááᣠ| ááč | á°á | áŽá” | áŽá” á á„á
á°áœášáá«áȘ ááá á | áŽá” á á„á
ášááá á°áœášáá«áȘ ááá á áá | á°áœášáá«áȘ ááá á | á°á°á«áœ | á°á°á«áœáá” | á á«á ááłá°á | ášááł áááá”-1-2 | ášá á«á ááłá°á á°áœášáá«áȘ ááá á</annotation>
<annotation cp="đ©đ»âđŠœ" type="tts">áŽá” á á„á
á°áœášáá«áȘ ááá á: ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŒâđŠœ">ááášáá áá á«á ášááł ááá | áááᣠ| ááč | á°á | áŽá” | áŽá” á á„á
á°áœášáá«áȘ ááá á | áŽá” á á„á
ášááá á°áœášáá«áȘ ááá á áá | á°áœášáá«áȘ ááá á | á°á°á«áœ | á°á°á«áœáá” | á á«á ááłá°á | ášá á«á ááłá°á á°áœášáá«áȘ ááá á</annotation>
<annotation cp="đ©đŒâđŠœ" type="tts">áŽá” á á„á
á°áœášáá«áȘ ááá á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đœâđŠœ">áááᣠ| ááč | á°á | áŽá” | áŽá” á á„á
á°áœášáá«áȘ ááá á | áŽá” á á„á
ášááá á°áœášáá«áȘ ááá á áá | á°áœášáá«áȘ ááá á | á°á°á«áœ | á°á°á«áœáá” | á á«á ááłá°á | ášááł áááá”-4 | ášá á«á ááłá°á á°áœášáá«áȘ ááá á</annotation>
<annotation cp="đ©đœâđŠœ" type="tts">áŽá” á á„á
á°áœášáá«áȘ ááá á: ášááł áááá”-4</annotation>
<annotation cp="đ©đŸâđŠœ">áááᣠ| ááč | á°á | áŽá” | áŽá” á á„á
á°áœášáá«áȘ ááá á | áŽá” á á„á
ášááá á°áœášáá«áȘ ááá á áá | á°áœášáá«áȘ ááá á | á°á°á«áœ | á°á°á«áœáá” | á á«á ááłá°á | ášááł áááá”-5 | ášá á«á ááłá°á á°áœášáá«áȘ ááá á</annotation>
<annotation cp="đ©đŸâđŠœ" type="tts">áŽá” á á„á
á°áœášáá«áȘ ááá á: ášááł áááá”-5</annotation>
<annotation cp="đ©đżâđŠœ">áááᣠ| ááč | á°á | áŽá” | áŽá” á á„á
á°áœášáá«áȘ ááá á | áŽá” á á„á
ášááá á°áœášáá«áȘ ááá á áá | á°áœášáá«áȘ ááá á | á°á°á«áœ | á°á°á«áœáá” | á á«á ááłá°á | ášááł áááá”-6 | ášá á«á ááłá°á á°áœášáá«áȘ ááá á</annotation>
<annotation cp="đ©đżâđŠœ" type="tts">áŽá” á á„á
á°áœášáá«áȘ ááá á: ášááł áááá”-6</annotation>
<annotation cp="đđ»">ááááłáá” | áá«á¶á | á©á« | áŻá | á°á áČáźá„ | áœáźá | á„áœá
á”á”á | ášááł áááá”-1-2 | á„á”áá«</annotation>
<annotation cp="đđ»" type="tts">áŻá: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááášáá áá á«á ášááł ááá | ááááłáá” | áá«á¶á | á©á« | áŻá | á°á áČáźá„ | áœáźá | á„áœá
á”á”á | á„á”áá«</annotation>
<annotation cp="đđŒ" type="tts">áŻá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">ááááłáá” | áá«á¶á | á©á« | áŻá | á°á áČáźá„ | áœáźá | á„áœá
á”á”á | ášááł áááá”-4 | á„á”áá«</annotation>
<annotation cp="đđœ" type="tts">áŻá: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">ááááłáá” | áá«á¶á | á©á« | áŻá | á°á áČáźá„ | áœáźá | á„áœá
á”á”á | ášááł áááá”-5 | á„á”áá«</annotation>
<annotation cp="đđŸ" type="tts">áŻá: ášááł áááá”-5</annotation>
<annotation cp="đđż">ááááłáá” | áá«á¶á | á©á« | áŻá | á°á áČáźá„ | áœáźá | á„áœá
á”á”á | ášááł áááá”-6 | á„á”áá«</annotation>
<annotation cp="đđż" type="tts">áŻá: ášááł áááá”-6</annotation>
<annotation cp="đđ»ââ">áá«á¶á | á©á« | áá”á”á | ášááł áááá”-1-2 | ášááá” á©á«</annotation>
<annotation cp="đđ»ââ" type="tts">ášááá” á©á«: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒââ">ááášáá áá á«á ášááł ááá | áá«á¶á | á©á« | áá”á”á | ášááá” á©á«</annotation>
<annotation cp="đđŒââ" type="tts">ášááá” á©á«: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœââ">áá«á¶á | á©á« | áá”á”á | ášááł áááá”-4 | ášááá” á©á«</annotation>
<annotation cp="đđœââ" type="tts">ášááá” á©á«: ášááł áááá”-4</annotation>
<annotation cp="đđŸââ">áá«á¶á | á©á« | áá”á”á | ášááł áááá”-5 | ášááá” á©á«</annotation>
<annotation cp="đđŸââ" type="tts">ášááá” á©á«: ášááł áááá”-5</annotation>
<annotation cp="đđżââ">áá«á¶á | á©á« | áá”á”á | ášááł áááá”-6 | ášááá” á©á«</annotation>
<annotation cp="đđżââ" type="tts">ášááá” á©á«: ášááł áááá”-6</annotation>
<annotation cp="đđ»ââ">ááŁá | áá«á¶á | á©á« | áŻá | áŽá” á„ášáźá ᜠ| áœáźá | áá”á”á | ášáŽá” á©á« | ášááł áááá”-1-2 | ááŁá | áá á | áá„áá”</annotation>
<annotation cp="đđ»ââ" type="tts">ášáŽá” á©á«: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒââ">ááášáá áá á«á ášááł ááá | ááŁá | áá«á¶á | á©á« | áŻá | áŽá” á„ášáźá ᜠ| áœáźá | áá”á”á | ášáŽá” á©á« | ááŁá | áá á | áá„áá”</annotation>
<annotation cp="đđŒââ" type="tts">ášáŽá” á©á«: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœââ">ááŁá | áá«á¶á | á©á« | áŻá | áŽá” á„ášáźá ᜠ| áœáźá | áá”á”á | ášáŽá” á©á« | ášááł áááá”-4 | ááŁá | áá á | áá„áá”</annotation>
<annotation cp="đđœââ" type="tts">ášáŽá” á©á«: ášááł áááá”-4</annotation>
<annotation cp="đđŸââ">ááŁá | áá«á¶á | á©á« | áŻá | áŽá” á„ášáźá ᜠ| áœáźá | áá”á”á | ášáŽá” á©á« | ášááł áááá”-5 | ááŁá | áá á | áá„áá”</annotation>
<annotation cp="đđŸââ" type="tts">ášáŽá” á©á«: ášááł áááá”-5</annotation>
<annotation cp="đđżââ">ááŁá | áá«á¶á | á©á« | áŻá | áŽá” á„ášáźá ᜠ| áœáźá | áá”á”á | ášáŽá” á©á« | ášááł áááá”-6 | ááŁá | áá á | áá„áá”</annotation>
<annotation cp="đđżââ" type="tts">ášáŽá” á©á«: ášááł áááá”-6</annotation>
<annotation cp="đđ»">áá°áá” | áłááł | áŽá” | áŽá” á”á”á°áá” | áŽá¶áœ áČá°áá± | ášááł áááá”-1-2 | á°áᜠ| áłáá” | áááááź</annotation>
<annotation cp="đđ»" type="tts">áŽá¶áœ áČá°áá±: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááášáá áá á«á ášááł ááá | áá°áá” | áłááł | áŽá” | áŽá” á”á”á°áá” | áŽá¶áœ áČá°áá± | á°áᜠ| áłáá” | áááááź</annotation>
<annotation cp="đđŒ" type="tts">áŽá¶áœ áČá°áá±: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">áá°áá” | áłááł | áŽá” | áŽá” á”á”á°áá” | áŽá¶áœ áČá°áá± | ášááł áááá”-4 | á°áᜠ| áłáá” | áááááź</annotation>
<annotation cp="đđœ" type="tts">áŽá¶áœ áČá°áá±: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">áá°áá” | áłááł | áŽá” | áŽá” á”á”á°áá” | áŽá¶áœ áČá°áá± | ášááł áááá”-5 | á°áᜠ| áłáá” | áááááź</annotation>
<annotation cp="đđŸ" type="tts">áŽá¶áœ áČá°áá±: ášááł áááá”-5</annotation>
<annotation cp="đđż">áá°áá” | áłááł | áŽá” | áŽá” á”á”á°áá” | áŽá¶áœ áČá°áá± | ášááł áááá”-6 | á°áᜠ| áłáá” | áááááź</annotation>
<annotation cp="đđż" type="tts">áŽá¶áœ áČá°áá±: ášááł áááá”-6</annotation>
<annotation cp="đșđ»">á°á | á°á áČá°áá” | áłááł | ášááł áááá”-1-2 | áłáá°á | áłáá” | áááááź</annotation>
<annotation cp="đșđ»" type="tts">á°á áČá°áá”: ášááł áááá”-1-2</annotation>
<annotation cp="đșđŒ">ááášáá áá á«á ášááł ááá | á°á | á°á áČá°áá” | áłááł | áłáá°á | áłáá” | áááááź</annotation>
<annotation cp="đșđŒ" type="tts">á°á áČá°áá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đșđœ">á°á | á°á áČá°áá” | áłááł | ášááł áááá”-4 | áłáá°á | áłáá” | áááááź</annotation>
<annotation cp="đșđœ" type="tts">á°á áČá°áá”: ášááł áááá”-4</annotation>
<annotation cp="đșđŸ">á°á | á°á áČá°áá” | áłááł | ášááł áááá”-5 | áłáá°á | áłáá” | áááááź</annotation>
<annotation cp="đșđŸ" type="tts">á°á áČá°áá”: ášááł áááá”-5</annotation>
<annotation cp="đșđż">á°á | á°á áČá°áá” | áłááł | ášááł áááá”-6 | áłáá°á | áłáá” | áááááź</annotation>
<annotation cp="đșđż" type="tts">á°á áČá°áá”: ášááł áááá”-6</annotation>
<annotation cp="đŽđ»">áááłáá | áá áá„á” | á°á | áœá á„á ášáá á° ášá„á« á°á | áąááá” | ááá” á„á« | ááá” | ášá„á« áá„á” | ášá„á« áá„á” ášáá á° á°á ášá á„á áČááłáá | ášááł áááá”-1-2</annotation>
<annotation cp="đŽđ»" type="tts">áœá á„á ášáá á° ášá„á« á°á: ášááł áááá”-1-2</annotation>
<annotation cp="đŽđŒ">ááášáá áá á«á ášááł ááá | áááłáá | áá áá„á” | á°á | áœá á„á ášáá á° ášá„á« á°á | áąááá” | ááá” á„á« | ááá” | ášá„á« áá„á” | ášá„á« áá„á” ášáá á° á°á ášá á„á áČááłáá</annotation>
<annotation cp="đŽđŒ" type="tts">áœá á„á ášáá á° ášá„á« á°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đŽđœ">áááłáá | áá áá„á” | á°á | áœá á„á ášáá á° ášá„á« á°á | áąááá” | ááá” á„á« | ááá” | ášá„á« áá„á” | ášá„á« áá„á” ášáá á° á°á ášá á„á áČááłáá | ášááł áááá”-4</annotation>
<annotation cp="đŽđœ" type="tts">áœá á„á ášáá á° ášá„á« á°á: ášááł áááá”-4</annotation>
<annotation cp="đŽđŸ">áááłáá | áá áá„á” | á°á | áœá á„á ášáá á° ášá„á« á°á | áąááá” | ááá” á„á« | ááá” | ášá„á« áá„á” | ášá„á« áá„á” ášáá á° á°á ášá á„á áČááłáá | ášááł áááá”-5</annotation>
<annotation cp="đŽđŸ" type="tts">áœá á„á ášáá á° ášá„á« á°á: ášááł áááá”-5</annotation>
<annotation cp="đŽđż">áááłáá | áá áá„á” | á°á | áœá á„á ášáá á° ášá„á« á°á | áąááá” | ááá” á„á« | ááá” | ášá„á« áá„á” | ášá„á« áá„á” ášáá á° á°á ášá á„á áČááłáá | ášááł áááá”-6</annotation>
<annotation cp="đŽđż" type="tts">áœá á„á ášáá á° ášá„á« á°á: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»">áááłáłá” | á°á á á„áááá” ááá áá”á„ | áłáá | á”á | á
ááŠá” | á„ááááłá | á„áááá” ááá | áá ááá” | ášáá á”á | ášááł áááá”-1-2 | áááá</annotation>
<annotation cp="đ§đ»" type="tts">á°á á á„áááá” ááá áá”á„: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒ">ááášáá áá á«á ášááł ááá | áááłáłá” | á°á á á„áááá” ááá áá”á„ | áłáá | á”á | á
ááŠá” | á„ááááłá | á„áááá” ááá | áá ááá” | ášáá á”á | áááá</annotation>
<annotation cp="đ§đŒ" type="tts">á°á á á„áááá” ááá áá”á„: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœ">áááłáłá” | á°á á á„áááá” ááá áá”á„ | áłáá | á”á | á
ááŠá” | á„ááááłá | á„áááá” ááá | áá ááá” | ášáá á”á | ášááł áááá”-4 | áááá</annotation>
<annotation cp="đ§đœ" type="tts">á°á á á„áááá” ááá áá”á„: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸ">áááłáłá” | á°á á á„áááá” ááá áá”á„ | áłáá | á”á | á
ááŠá” | á„ááááłá | á„áááá” ááá | áá ááá” | ášáá á”á | ášááł áááá”-5 | áááá</annotation>
<annotation cp="đ§đŸ" type="tts">á°á á á„áááá” ááá áá”á„: ášááł áááá”-5</annotation>
<annotation cp="đ§đż">áááłáłá” | á°á á á„áááá” ááá áá”á„ | áłáá | á”á | á
ááŠá” | á„ááááłá | á„áááá” ááá | áá ááá” | ášáá á”á | ášááł áááá”-6 | áááá</annotation>
<annotation cp="đ§đż" type="tts">á°á á á„áááá” ááá áá”á„: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»ââ">ááá” á á„áááá” ááá áá”á„ | ášááł áááá”-1-2</annotation>
<annotation cp="đ§đ»ââ" type="tts">ááá” á á„áááá” ááá áá”á„: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒââ">ááášáá áá á«á ášááł ááá | ááá” á á„áááá” ááá áá”á„</annotation>
<annotation cp="đ§đŒââ" type="tts">ááá” á á„áááá” ááá áá”á„: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœââ">ááá” á á„áááá” ááá áá”á„ | ášááł áááá”-4</annotation>
<annotation cp="đ§đœââ" type="tts">ááá” á á„áááá” ááá áá”á„: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸââ">ááá” á á„áááá” ááá áá”á„ | ášááł áááá”-5</annotation>
<annotation cp="đ§đŸââ" type="tts">ááá” á á„áááá” ááá áá”á„: ášááł áááá”-5</annotation>
<annotation cp="đ§đżââ">ááá” á á„áááá” ááá áá”á„ | ášááł áááá”-6</annotation>
<annotation cp="đ§đżââ" type="tts">ááá” á á„áááá” ááá áá”á„: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»ââ">áŽá” á á„áááá” ááá áá”á„ | ášááł áááá”-1-2</annotation>
<annotation cp="đ§đ»ââ" type="tts">áŽá” á á„áááá” ááá áá”á„: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒââ">ááášáá áá á«á ášááł ááá | áŽá” á á„áááá” ááá áá”á„</annotation>
<annotation cp="đ§đŒââ" type="tts">áŽá” á á„áááá” ááá áá”á„: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœââ">áŽá” á á„áááá” ááá áá”á„ | ášááł áááá”-4</annotation>
<annotation cp="đ§đœââ" type="tts">áŽá” á á„áááá” ááá áá”á„: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸââ">áŽá” á á„áááá” ááá áá”á„ | ášááł áááá”-5</annotation>
<annotation cp="đ§đŸââ" type="tts">áŽá” á á„áááá” ááá áá”á„: ášááł áááá”-5</annotation>
<annotation cp="đ§đżââ">áŽá” á á„áááá” ááá áá”á„ | ášááł áááá”-6</annotation>
<annotation cp="đ§đżââ" type="tts">áŽá” á á„áááá” ááá áá”á„: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»">á°á á°á«á« áČáᣠ| á°á áá°áá á áááŁá” áá | á°á«á« | á°á«á« ááȘ | á áá” ááȘ | áá° áá áááŁá” | ášááł áááá”-1-2 | á°ášá</annotation>
<annotation cp="đ§đ»" type="tts">á°á á°á«á« áČááŁ: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒ">ááášáá áá á«á ášááł ááá | á°á á°á«á« áČáᣠ| á°á áá°áá á áááŁá” áá | á°á«á« | á°á«á« ááȘ | á áá” ááȘ | áá° áá áááŁá” | á°ášá</annotation>
<annotation cp="đ§đŒ" type="tts">á°á á°á«á« áČááŁ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœ">á°á á°á«á« áČáᣠ| á°á áá°áá á áááŁá” áá | á°á«á« | á°á«á« ááȘ | á áá” ááȘ | áá° áá áááŁá” | ášááł áááá”-4 | á°ášá</annotation>
<annotation cp="đ§đœ" type="tts">á°á á°á«á« áČááŁ: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸ">á°á á°á«á« áČáᣠ| á°á áá°áá á áááŁá” áá | á°á«á« | á°á«á« ááȘ | á áá” ááȘ | áá° áá áááŁá” | ášááł áááá”-5 | á°ášá</annotation>
<annotation cp="đ§đŸ" type="tts">á°á á°á«á« áČááŁ: ášááł áááá”-5</annotation>
<annotation cp="đ§đż">á°á á°á«á« áČáᣠ| á°á áá°áá á áááŁá” áá | á°á«á« | á°á«á« ááȘ | á áá” ááȘ | áá° áá áááŁá” | ášááł áááá”-6 | á°ášá</annotation>
<annotation cp="đ§đż" type="tts">á°á á°á«á« áČááŁ: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»ââ">ááá” á°á«á« áČáᣠ| ášááł áááá”-1-2</annotation>
<annotation cp="đ§đ»ââ" type="tts">ááá” á°á«á« áČááŁ: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒââ">ááášáá áá á«á ášááł ááá | ááá” á°á«á« áČááŁ</annotation>
<annotation cp="đ§đŒââ" type="tts">ááá” á°á«á« áČááŁ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœââ">ááá” á°á«á« áČáᣠ| ášááł áááá”-4</annotation>
<annotation cp="đ§đœââ" type="tts">ááá” á°á«á« áČááŁ: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸââ">ááá” á°á«á« áČáᣠ| ášááł áááá”-5</annotation>
<annotation cp="đ§đŸââ" type="tts">ááá” á°á«á« áČááŁ: ášááł áááá”-5</annotation>
<annotation cp="đ§đżââ">ááá” á°á«á« áČáᣠ| ášááł áááá”-6</annotation>
<annotation cp="đ§đżââ" type="tts">ááá” á°á«á« áČááŁ: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»ââ">áŽá” á°á«á« á”á”áᣠ| ášááł áááá”-1-2</annotation>
<annotation cp="đ§đ»ââ" type="tts">áŽá” á°á«á« á”á”ááŁ: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒââ">ááášáá áá á«á ášááł ááá | áŽá” á°á«á« á”á”ááŁ</annotation>
<annotation cp="đ§đŒââ" type="tts">áŽá” á°á«á« á”á”ááŁ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœââ">áŽá” á°á«á« á”á”áᣠ| ášááł áááá”-4</annotation>
<annotation cp="đ§đœââ" type="tts">áŽá” á°á«á« á”á”ááŁ: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸââ">áŽá” á°á«á« á”á”áᣠ| ášááł áááá”-5</annotation>
<annotation cp="đ§đŸââ" type="tts">áŽá” á°á«á« á”á”ááŁ: ášááł áááá”-5</annotation>
<annotation cp="đ§đżââ">áŽá” á°á«á« á”á”áᣠ| ášááł áááá”-6</annotation>
<annotation cp="đ§đżââ" type="tts">áŽá” á°á«á« á”á”ááŁ: ášááł áááá”-6</annotation>
<annotation cp="đđ»">á„áœá
á”áá”á | ášááł áááá”-1-2 | ášá„áœá
á”áá”á áášá” | ášáášá” á„áœá
á”áá”á | áááá | áááąá« | áášá”</annotation>
<annotation cp="đđ»" type="tts">ášáášá” á„áœá
á”áá”á: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááášáá áá á«á ášááł ááá | á„áœá
á”áá”á | ášá„áœá
á”áá”á áášá” | ášáášá” á„áœá
á”áá”á | áááá | áááąá« | áášá”</annotation>
<annotation cp="đđŒ" type="tts">ášáášá” á„áœá
á”áá”á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">á„áœá
á”áá”á | ášááł áááá”-4 | ášá„áœá
á”áá”á áášá” | ášáášá” á„áœá
á”áá”á | áááá | áááąá« | áášá”</annotation>
<annotation cp="đđœ" type="tts">ášáášá” á„áœá
á”áá”á: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">á„áœá
á”áá”á | ášááł áááá”-5 | ášá„áœá
á”áá”á áášá” | ášáášá” á„áœá
á”áá”á | áááá | áááąá« | áášá”</annotation>
<annotation cp="đđŸ" type="tts">ášáášá” á„áœá
á”áá”á: ášááł áááá”-5</annotation>
<annotation cp="đđż">á„áœá
á”áá”á | ášááł áááá”-6 | ášá„áœá
á”áá”á áášá” | ášáášá” á„áœá
á”áá”á | áááá | áááąá« | áášá”</annotation>
<annotation cp="đđż" type="tts">ášáášá” á„áœá
á”áá”á: ášááł áááá”-6</annotation>
<annotation cp="đđ»">á”áȘ | á ášá¶ | á ášá¶ ážáá°áŽ á°á«áᜠ| ášááł áááá”-1-2 | ášá ášá¶ ááážá«á°á»</annotation>
<annotation cp="đđ»" type="tts">á ášá¶ ážáá°áŽ á°á«ááœ: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááášáá áá á«á ášááł ááá | á”áȘ | á ášá¶ | á ášá¶ ážáá°áŽ á°á«áᜠ| ášá ášá¶ ááážá«á°á»</annotation>
<annotation cp="đđŒ" type="tts">á ášá¶ ážáá°áŽ á°á«ááœ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">á”áȘ | á ášá¶ | á ášá¶ ážáá°áŽ á°á«áᜠ| ášááł áááá”-4 | ášá ášá¶ ááážá«á°á»</annotation>
<annotation cp="đđœ" type="tts">á ášá¶ ážáá°áŽ á°á«ááœ: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">á”áȘ | á ášá¶ | á ášá¶ ážáá°áŽ á°á«áᜠ| ášááł áááá”-5 | ášá ášá¶ ááážá«á°á»</annotation>
<annotation cp="đđŸ" type="tts">á ášá¶ ážáá°áŽ á°á«ááœ: ášááł áááá”-5</annotation>
<annotation cp="đđż">á”áȘ | á ášá¶ | á ášá¶ ážáá°áŽ á°á«áᜠ| ášááł áááá”-6 | ášá ášá¶ ááážá«á°á»</annotation>
<annotation cp="đđż" type="tts">á ášá¶ ážáá°áŽ á°á«ááœ: ášááł áááá”-6</annotation>
<annotation cp="đđ»">áČ | á ášááᎠ| áłá” | ášááł áááá”-1-2 | ááá | ááá á°á«áᜠ| ááá ášááł</annotation>
<annotation cp="đđ»" type="tts">ááá á°á«ááœ: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááášáá áá á«á ášááł ááá | áČ | á ášááᎠ| áłá” | ááá | ááá á°á«áᜠ| ááá ášááł</annotation>
<annotation cp="đđŒ" type="tts">ááá á°á«ááœ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">áČ | á ášááᎠ| áłá” | ášááł áááá”-4 | ááá | ááá á°á«áᜠ| ááá ášááł</annotation>
<annotation cp="đđœ" type="tts">ááá á°á«ááœ: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">áČ | á ášááᎠ| áłá” | ášááł áááá”-5 | ááá | ááá á°á«áᜠ| ááá ášááł</annotation>
<annotation cp="đđŸ" type="tts">ááá á°á«ááœ: ášááł áááá”-5</annotation>
<annotation cp="đđż">áČ | á ášááᎠ| áłá” | ášááł áááá”-6 | ááá | ááá á°á«áᜠ| ááá ášááł</annotation>
<annotation cp="đđż" type="tts">ááá á°á«ááœ: ášááł áááá”-6</annotation>
<annotation cp="đđ»ââ">á°á | ááá” | ááá” ááá á°á«áᜠ| ášááł áááá”-1-2 | ááá</annotation>
<annotation cp="đđ»ââ" type="tts">ááá” ááá á°á«ááœ: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒââ">ááášáá áá á«á ášááł ááá | á°á | ááá” | ááá” ááá á°á«áᜠ| ááá</annotation>
<annotation cp="đđŒââ" type="tts">ááá” ááá á°á«ááœ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœââ">á°á | ááá” | ááá” ááá á°á«áᜠ| ášááł áááá”-4 | ááá</annotation>
<annotation cp="đđœââ" type="tts">ááá” ááá á°á«ááœ: ášááł áááá”-4</annotation>
<annotation cp="đđŸââ">á°á | ááá” | ááá” ááá á°á«áᜠ| ášááł áááá”-5 | ááá</annotation>
<annotation cp="đđŸââ" type="tts">ááá” ááá á°á«ááœ: ášááł áááá”-5</annotation>
<annotation cp="đđżââ">á°á | ááá” | ááá” ááá á°á«áᜠ| ášááł áááá”-6 | ááá</annotation>
<annotation cp="đđżââ" type="tts">ááá” ááá á°á«ááœ: ášááł áááá”-6</annotation>
<annotation cp="đđ»ââ">áŽá” | áŽá” ááá á°á«áᜠ| áłá” | ášááł áááá”-1-2 | ášááá áłá” ášáá”ááł áŽá” áá
| ááá</annotation>
<annotation cp="đđ»ââ" type="tts">áŽá” ááá á°á«ááœ: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒââ">ááášáá áá á«á ášááł ááá | áŽá” | áŽá” ááá á°á«áᜠ| áłá” | ášááá áłá” ášáá”ááł áŽá” áá
| ááá</annotation>
<annotation cp="đđŒââ" type="tts">áŽá” ááá á°á«ááœ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœââ">áŽá” | áŽá” ááá á°á«áᜠ| áłá” | ášááł áááá”-4 | ášááá áłá” ášáá”ááł áŽá” áá
| ááá</annotation>
<annotation cp="đđœââ" type="tts">áŽá” ááá á°á«ááœ: ášááł áááá”-4</annotation>
<annotation cp="đđŸââ">áŽá” | áŽá” ááá á°á«áᜠ| áłá” | ášááł áááá”-5 | ášááá áłá” ášáá”ááł áŽá” áá
| ááá</annotation>
<annotation cp="đđŸââ" type="tts">áŽá” ááá á°á«ááœ: ášááł áááá”-5</annotation>
<annotation cp="đđżââ">áŽá” | áŽá” ááá á°á«áᜠ| áłá” | ášááł áááá”-6 | ášááá áłá” ášáá”ááł áŽá” áá
| ááá</annotation>
<annotation cp="đđżââ" type="tts">áŽá” ááá á°á«ááœ: ášááł áááá”-6</annotation>
<annotation cp="đđ»">ááážá«á°á” | ááá áᜠ| á”ááá” | á áá áá ášááážá«á°á” á°á | ášá ááá” | áá
á«áá” | ášááł áááá”-1-2 | ášáŁá
á áłáá» | ášáá áá á°áážá«áłáœ | ášáá ážáá°áŽ | ášáá ážáá°áŽ á°á«ááœ</annotation>
<annotation cp="đđ»" type="tts">ášáá ážáá°áŽ á°á«ááœ: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááášáá áá á«á ášááł ááá | ááážá«á°á” | ááá áᜠ| á”ááá” | á áá áá ášááážá«á°á” á°á | ášá ááá” | áá
á«áá” | ášáŁá
á áłáá» | ášáá áá á°áážá«áłáœ | ášáá ážáá°áŽ | ášáá ážáá°áŽ á°á«ááœ</annotation>
<annotation cp="đđŒ" type="tts">ášáá ážáá°áŽ á°á«ááœ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">ááážá«á°á” | ááá áᜠ| á”ááá” | á áá áá ášááážá«á°á” á°á | ášá ááá” | áá
á«áá” | ášááł áááá”-4 | ášáŁá
á áłáá» | ášáá áá á°áážá«áłáœ | ášáá ážáá°áŽ | ášáá ážáá°áŽ á°á«ááœ</annotation>
<annotation cp="đđœ" type="tts">ášáá ážáá°áŽ á°á«ááœ: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">ááážá«á°á” | ááá áᜠ| á”ááá” | á áá áá ášááážá«á°á” á°á | ášá ááá” | áá
á«áá” | ášááł áááá”-5 | ášáŁá
á áłáá» | ášáá áá á°áážá«áłáœ | ášáá ážáá°áŽ | ášáá ážáá°áŽ á°á«ááœ</annotation>
<annotation cp="đđŸ" type="tts">ášáá ážáá°áŽ á°á«ááœ: ášááł áááá”-5</annotation>
<annotation cp="đđż">ááážá«á°á” | ááá áᜠ| á”ááá” | á áá áá ášááážá«á°á” á°á | ášá ááá” | áá
á«áá” | ášááł áááá”-6 | ášáŁá
á áłáá» | ášáá áá á°áážá«áłáœ | ášáá ážáá°áŽ | ášáá ážáá°áŽ á°á«ááœ</annotation>
<annotation cp="đđż" type="tts">ášáá ážáá°áŽ á°á«ááœ: ášááł áááá”-6</annotation>
<annotation cp="đđ»ââ">ááá” | ááá” ášáá ážáá°áŽ á°á«áᜠ| ášááł áááá”-1-2 | ášáá ážáá°áŽ</annotation>
<annotation cp="đđ»ââ" type="tts">ááá” ášáá ážáá°áŽ á°á«ááœ: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒââ">ááášáá áá á«á ášááł ááá | ááá” | ááá” ášáá ážáá°áŽ á°á«áᜠ| ášáá ážáá°áŽ</annotation>
<annotation cp="đđŒââ" type="tts">ááá” ášáá ážáá°áŽ á°á«ááœ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœââ">ááá” | ááá” ášáá ážáá°áŽ á°á«áᜠ| ášááł áááá”-4 | ášáá ážáá°áŽ</annotation>
<annotation cp="đđœââ" type="tts">ááá” ášáá ážáá°áŽ á°á«ááœ: ášááł áááá”-4</annotation>
<annotation cp="đđŸââ">ááá” | ááá” ášáá ážáá°áŽ á°á«áᜠ| ášááł áááá”-5 | ášáá ážáá°áŽ</annotation>
<annotation cp="đđŸââ" type="tts">ááá” ášáá ážáá°áŽ á°á«ááœ: ášááł áááá”-5</annotation>
<annotation cp="đđżââ">ááá” | ááá” ášáá ážáá°áŽ á°á«áᜠ| ášááł áááá”-6 | ášáá ážáá°áŽ</annotation>
<annotation cp="đđżââ" type="tts">ááá” ášáá ážáá°áŽ á°á«ááœ: ášááł áááá”-6</annotation>
<annotation cp="đđ»ââ">ááá¶áœ | á°á áá áá á„ášá°áážá«á°á° | áŽá” | áŽá” áá áá á„ášá°áážá«á°á°áœ | áŽá” ášáá ážáá°áŽ á°á«áᜠ| á”ááá” | áá áá ááážá«á°á” | áá
á«áá” | ášááł áááá”-1-2 | ášáŁá
á áłáá» | ášáá ážáá°áŽ | ášáá ážáá°áŽ á°á«ááœ</annotation>
<annotation cp="đđ»ââ" type="tts">áŽá” ášáá ážáá°áŽ á°á«ááœ: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒââ">ááášáá áá á«á ášááł ááá | ááá¶áœ | á°á áá áá á„ášá°áážá«á°á° | áŽá” | áŽá” áá áá á„ášá°áážá«á°á°áœ | áŽá” ášáá ážáá°áŽ á°á«áᜠ| á”ááá” | áá áá ááážá«á°á” | áá
á«áá” | ášáŁá
á áłáá» | ášáá ážáá°áŽ | ášáá ážáá°áŽ á°á«ááœ</annotation>
<annotation cp="đđŒââ" type="tts">áŽá” ášáá ážáá°áŽ á°á«ááœ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœââ">ááá¶áœ | á°á áá áá á„ášá°áážá«á°á° | áŽá” | áŽá” áá áá á„ášá°áážá«á°á°áœ | áŽá” ášáá ážáá°áŽ á°á«áᜠ| á”ááá” | áá áá ááážá«á°á” | áá
á«áá” | ášááł áááá”-4 | ášáŁá
á áłáá» | ášáá ážáá°áŽ | ášáá ážáá°áŽ á°á«ááœ</annotation>
<annotation cp="đđœââ" type="tts">áŽá” ášáá ážáá°áŽ á°á«ááœ: ášááł áááá”-4</annotation>
<annotation cp="đđŸââ">ááá¶áœ | á°á áá áá á„ášá°áážá«á°á° | áŽá” | áŽá” áá áá á„ášá°áážá«á°á°áœ | áŽá” ášáá ážáá°áŽ á°á«áᜠ| á”ááá” | áá áá ááážá«á°á” | áá
á«áá” | ášááł áááá”-5 | ášáŁá
á áłáá» | ášáá ážáá°áŽ | ášáá ážáá°áŽ á°á«ááœ</annotation>
<annotation cp="đđŸââ" type="tts">áŽá” ášáá ážáá°áŽ á°á«ááœ: ášááł áááá”-5</annotation>
<annotation cp="đđżââ">ááá¶áœ | á°á áá áá á„ášá°áážá«á°á° | áŽá” | áŽá” áá áá á„ášá°áážá«á°á°áœ | áŽá” ášáá ážáá°áŽ á°á«áᜠ| á”ááá” | áá áá ááážá«á°á” | áá
á«áá” | ášááł áááá”-6 | ášáŁá
á áłáá» | ášáá ážáá°áŽ | ášáá ážáá°áŽ á°á«ááœ</annotation>
<annotation cp="đđżââ" type="tts">áŽá” ášáá ážáá°áŽ á°á«ááœ: ášááł áááá”-6</annotation>
<annotation cp="đŁđ»">áá
ááá« | áááᣠ| á°áœášáá«áȘ | á«á«áȘáá | áá | ááá | ášááá ááᣠ| ášááł áááá”-1-2 | ášáłááł ááá | ááᣠ| ááᣠášáááá á°á</annotation>
<annotation cp="đŁđ»" type="tts">ášáłááł ááá: ášááł áááá”-1-2</annotation>
<annotation cp="đŁđŒ">ááášáá áá á«á ášááł ááá | áá
ááá« | áááᣠ| á°áœášáá«áȘ | á«á«áȘáá | áá | ááá | ášááá ááᣠ| ášáłááł ááá | ááᣠ| ááᣠášáááá á°á</annotation>
<annotation cp="đŁđŒ" type="tts">ášáłááł ááá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đŁđœ">áá
ááá« | áááᣠ| á°áœášáá«áȘ | á«á«áȘáá | áá | ááá | ášááá ááᣠ| ášááł áááá”-4 | ášáłááł ááá | ááᣠ| ááᣠášáááá á°á</annotation>
<annotation cp="đŁđœ" type="tts">ášáłááł ááá: ášááł áááá”-4</annotation>
<annotation cp="đŁđŸ">áá
ááá« | áááᣠ| á°áœášáá«áȘ | á«á«áȘáá | áá | ááá | ášááá ááᣠ| ášááł áááá”-5 | ášáłááł ááá | ááᣠ| ááᣠášáááá á°á</annotation>
<annotation cp="đŁđŸ" type="tts">ášáłááł ááá: ášááł áááá”-5</annotation>
<annotation cp="đŁđż">áá
ááá« | áááᣠ| á°áœášáá«áȘ | á«á«áȘáá | áá | ááá | ášááá ááᣠ| ášááł áááá”-6 | ášáłááł ááá | ááᣠ| ááᣠášáááá á°á</annotation>
<annotation cp="đŁđż" type="tts">ášáłááł ááá: ášááł áááá”-6</annotation>
<annotation cp="đŁđ»ââ">á°áœášáá«áȘ | ááá” | ášááł áááá”-1-2 | ášááá” ááᣠááá | áááŁ</annotation>
<annotation cp="đŁđ»ââ" type="tts">ášááá” ááᣠááá: ášááł áááá”-1-2</annotation>
<annotation cp="đŁđŒââ">ááášáá áá á«á ášááł ááá | á°áœášáá«áȘ | ááá” | ášááá” ááᣠááá | áááŁ</annotation>
<annotation cp="đŁđŒââ" type="tts">ášááá” ááᣠááá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đŁđœââ">á°áœášáá«áȘ | ááá” | ášááł áááá”-4 | ášááá” ááᣠááá | áááŁ</annotation>
<annotation cp="đŁđœââ" type="tts">ášááá” ááᣠááá: ášááł áááá”-4</annotation>
<annotation cp="đŁđŸââ">á°áœášáá«áȘ | ááá” | ášááł áááá”-5 | ášááá” ááᣠááá | áááŁ</annotation>
<annotation cp="đŁđŸââ" type="tts">ášááá” ááᣠááá: ášááł áááá”-5</annotation>
<annotation cp="đŁđżââ">á°áœášáá«áȘ | ááá” | ášááł áááá”-6 | ášááá” ááᣠááá | áááŁ</annotation>
<annotation cp="đŁđżââ" type="tts">ášááá” ááᣠááá: ášááł áááá”-6</annotation>
<annotation cp="đŁđ»ââ">ááá
| ááášá„ | áá
áá | áŽá” | áŽá” ááᣠá„ášáááᜠ| á°áœášáá«áȘ | ááá | ááł áá„áá” | ášáŽá” ááᣠááá | ášááł áááá”-1-2 | ášááᣠáá
ááá« | áááŁ</annotation>
<annotation cp="đŁđ»ââ" type="tts">ášáŽá” ááᣠááá: ášááł áááá”-1-2</annotation>
<annotation cp="đŁđŒââ">ááá
| ááášáá áá á«á ášááł ááá | ááášá„ | áá
áá | áŽá” | áŽá” ááᣠá„ášáááᜠ| á°áœášáá«áȘ | ááá | ááł áá„áá” | ášáŽá” ááᣠááá | ášááᣠáá
ááá« | áááŁ</annotation>
<annotation cp="đŁđŒââ" type="tts">ášáŽá” ááᣠááá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đŁđœââ">ááá
| ááášá„ | áá
áá | áŽá” | áŽá” ááᣠá„ášáááᜠ| á°áœášáá«áȘ | ááá | ááł áá„áá” | ášáŽá” ááᣠááá | ášááł áááá”-4 | ášááᣠáá
ááá« | áááŁ</annotation>
<annotation cp="đŁđœââ" type="tts">ášáŽá” ááᣠááá: ášááł áááá”-4</annotation>
<annotation cp="đŁđŸââ">ááá
| ááášá„ | áá
áá | áŽá” | áŽá” ááᣠá„ášáááᜠ| á°áœášáá«áȘ | ááá | ááł áá„áá” | ášáŽá” ááᣠááá | ášááł áááá”-5 | ášááᣠáá
ááá« | áááŁ</annotation>
<annotation cp="đŁđŸââ" type="tts">ášáŽá” ááᣠááá: ášááł áááá”-5</annotation>
<annotation cp="đŁđżââ">ááá
| ááášá„ | áá
áá | áŽá” | áŽá” ááᣠá„ášáááᜠ| á°áœášáá«áȘ | ááá | ááł áá„áá” | ášáŽá” ááᣠááá | ášááł áááá”-6 | ášááᣠáá
ááá« | áááŁ</annotation>
<annotation cp="đŁđżââ" type="tts">ášáŽá” ááᣠááá: ášááł áááá”-6</annotation>
<annotation cp="đđ»">á°á áČáá | á”ááá” | á”áȘá«á”áá | áá» áá | áá | ááá°á | áá áá | ášááł áááá”-1-2</annotation>
<annotation cp="đđ»" type="tts">ááá°á: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááášáá áá á«á ášááł ááá | á°á áČáá | á”ááá” | á”áȘá«á”áá | áá» áá | áá | ááá°á | áá áá</annotation>
<annotation cp="đđŒ" type="tts">ááá°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">á°á áČáá | á”ááá” | á”áȘá«á”áá | áá» áá | áá | ááá°á | áá áá | ášááł áááá”-4</annotation>
<annotation cp="đđœ" type="tts">ááá°á: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">á°á áČáá | á”ááá” | á”áȘá«á”áá | áá» áá | áá | ááá°á | áá áá | ášááł áááá”-5</annotation>
<annotation cp="đđŸ" type="tts">ááá°á: ášááł áááá”-5</annotation>
<annotation cp="đđż">á°á áČáá | á”ááá” | á”áȘá«á”áá | áá» áá | áá | ááá°á | áá áá | ášááł áááá”-6</annotation>
<annotation cp="đđż" type="tts">ááá°á: ášááł áááá”-6</annotation>
<annotation cp="đđ»ââ">á°á | ááá” | áá | ášááł áááá”-1-2 | ášááá” ááá°á</annotation>
<annotation cp="đđ»ââ" type="tts">ášááá” ááá°á: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒââ">ááášáá áá á«á ášááł ááá | á°á | ááá” | áá | ášááá” ááá°á</annotation>
<annotation cp="đđŒââ" type="tts">ášááá” ááá°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœââ">á°á | ááá” | áá | ášááł áááá”-4 | ášááá” ááá°á</annotation>
<annotation cp="đđœââ" type="tts">ášááá” ááá°á: ášááł áááá”-4</annotation>
<annotation cp="đđŸââ">á°á | ááá” | áá | ášááł áááá”-5 | ášááá” ááá°á</annotation>
<annotation cp="đđŸââ" type="tts">ášááá” ááá°á: ášááł áááá”-5</annotation>
<annotation cp="đđżââ">á°á | ááá” | áá | ášááł áááá”-6 | ášááá” ááá°á</annotation>
<annotation cp="đđżââ" type="tts">ášááá” ááá°á: ášááł áááá”-6</annotation>
<annotation cp="đđ»ââ">áááá” | áŽá” | áŽá” á„ášááᜠ| áá | ááá°á | ášáŽá” ááá°á | ášááł áááá”-1-2</annotation>
<annotation cp="đđ»ââ" type="tts">ášáŽá” ááá°á: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒââ">ááášáá áá á«á ášááł ááá | áááá” | áŽá” | áŽá” á„ášááᜠ| áá | ááá°á | ášáŽá” ááá°á</annotation>
<annotation cp="đđŒââ" type="tts">ášáŽá” ááá°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœââ">áááá” | áŽá” | áŽá” á„ášááᜠ| áá | ááá°á | ášáŽá” ááá°á | ášááł áááá”-4</annotation>
<annotation cp="đđœââ" type="tts">ášáŽá” ááá°á: ášááł áááá”-4</annotation>
<annotation cp="đđŸââ">áááá” | áŽá” | áŽá” á„ášááᜠ| áá | ááá°á | ášáŽá” ááá°á | ášááł áááá”-5</annotation>
<annotation cp="đđŸââ" type="tts">ášáŽá” ááá°á: ášááł áááá”-5</annotation>
<annotation cp="đđżââ">áááá” | áŽá” | áŽá” á„ášááᜠ| áá | ááá°á | ášáŽá” ááá°á | ášááł áááá”-6</annotation>
<annotation cp="đđżââ" type="tts">ášáŽá” ááá°á: ášááł áááá”-6</annotation>
<annotation cp="âčđ»">áášá„ á„á» | ááá á | á°á áłá” áČá«áá„á | á”ááá” | á»áááźá | á
áá«á” áłá” | á
áá«á” áłá” á°á«áᜠ| á°á«áᜠ| áá» áááá« | á á”ááČá | áłá” | áłá” ášá«á á°á | ášááł áááá”-1-2</annotation>
<annotation cp="âčđ»" type="tts">áłá” ášá«á á°á: ášááł áááá”-1-2</annotation>
<annotation cp="âčđŒ">ááášáá áá á«á ášááł ááá | áášá„ á„á» | ááá á | á°á áłá” áČá«áá„á | á”ááá” | á»áááźá | á
áá«á” áłá” | á
áá«á” áłá” á°á«áᜠ| á°á«áᜠ| áá» áááá« | á á”ááČá | áłá” | áłá” ášá«á á°á</annotation>
<annotation cp="âčđŒ" type="tts">áłá” ášá«á á°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="âčđœ">áášá„ á„á» | ááá á | á°á áłá” áČá«áá„á | á”ááá” | á»áááźá | á
áá«á” áłá” | á
áá«á” áłá” á°á«áᜠ| á°á«áᜠ| áá» áááá« | á á”ááČá | áłá” | áłá” ášá«á á°á | ášááł áááá”-4</annotation>
<annotation cp="âčđœ" type="tts">áłá” ášá«á á°á: ášááł áááá”-4</annotation>
<annotation cp="âčđŸ">áášá„ á„á» | ááá á | á°á áłá” áČá«áá„á | á”ááá” | á»áááźá | á
áá«á” áłá” | á
áá«á” áłá” á°á«áᜠ| á°á«áᜠ| áá» áááá« | á á”ááČá | áłá” | áłá” ášá«á á°á | ášááł áááá”-5</annotation>
<annotation cp="âčđŸ" type="tts">áłá” ášá«á á°á: ášááł áááá”-5</annotation>
<annotation cp="âčđż">áášá„ á„á» | ááá á | á°á áłá” áČá«áá„á | á”ááá” | á»áááźá | á
áá«á” áłá” | á
áá«á” áłá” á°á«áᜠ| á°á«áᜠ| áá» áááá« | á á”ááČá | áłá” | áłá” ášá«á á°á | ášááł áááá”-6</annotation>
<annotation cp="âčđż" type="tts">áłá” ášá«á á°á: ášááł áááá”-6</annotation>
<annotation cp="âčđ»ââ">áłá” | áłá” ášá«á ááá” | ááá” | ášááł áááá”-1-2</annotation>
<annotation cp="âčđ»ââ" type="tts">áłá” ášá«á ááá”: ášááł áááá”-1-2</annotation>
<annotation cp="âčđŒââ">ááášáá áá á«á ášááł ááá | áłá” | áłá” ášá«á ááá” | ááá”</annotation>
<annotation cp="âčđŒââ" type="tts">áłá” ášá«á ááá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="âčđœââ">áłá” | áłá” ášá«á ááá” | ááá” | ášááł áááá”-4</annotation>
<annotation cp="âčđœââ" type="tts">áłá” ášá«á ááá”: ášááł áááá”-4</annotation>
<annotation cp="âčđŸââ">áłá” | áłá” ášá«á ááá” | ááá” | ášááł áááá”-5</annotation>
<annotation cp="âčđŸââ" type="tts">áłá” ášá«á ááá”: ášááł áááá”-5</annotation>
<annotation cp="âčđżââ">áłá” | áłá” ášá«á ááá” | ááá” | ášááł áááá”-6</annotation>
<annotation cp="âčđżââ" type="tts">áłá” ášá«á ááá”: ášááł áááá”-6</annotation>
<annotation cp="âčđ»ââ">áŽá” | áłá” | áłá” ášááłáá„á áŽá” | áłá” ášá«áᜠáŽá” | ášá
áá«á” áłá” | ášááł áááá”-1-2</annotation>
<annotation cp="âčđ»ââ" type="tts">áłá” ášá«áᜠáŽá”: ášááł áááá”-1-2</annotation>
<annotation cp="âčđŒââ">ááášáá áá á«á ášááł ááá | áŽá” | áłá” | áłá” ášááłáá„á áŽá” | áłá” ášá«áᜠáŽá” | ášá
áá«á” áłá”</annotation>
<annotation cp="âčđŒââ" type="tts">áłá” ášá«áᜠáŽá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="âčđœââ">áŽá” | áłá” | áłá” ášááłáá„á áŽá” | áłá” ášá«áᜠáŽá” | ášá
áá«á” áłá” | ášááł áááá”-4</annotation>
<annotation cp="âčđœââ" type="tts">áłá” ášá«áᜠáŽá”: ášááł áááá”-4</annotation>
<annotation cp="âčđŸââ">áŽá” | áłá” | áłá” ášááłáá„á áŽá” | áłá” ášá«áᜠáŽá” | ášá
áá«á” áłá” | ášááł áááá”-5</annotation>
<annotation cp="âčđŸââ" type="tts">áłá” ášá«áᜠáŽá”: ášááł áááá”-5</annotation>
<annotation cp="âčđżââ">áŽá” | áłá” | áłá” ášááłáá„á áŽá” | áłá” ášá«áᜠáŽá” | ášá
áá«á” áłá” | ášááł áááá”-6</annotation>
<annotation cp="âčđżââ" type="tts">áłá” ášá«áᜠáŽá”: ášááł áááá”-6</annotation>
<annotation cp="đđ»">á°ááá” áááą | ášáŁá” áá„á°á” áááłá” | áá„á°á” | áá„á°á” áááłá” | áá„á°á” á ááș | ášááł áááá”-1-2 | á°áá€á | áŽá”ááá”</annotation>
<annotation cp="đđ»" type="tts">áá„á°á” á ááș: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááášáá áá á«á ášááł ááá | á°ááá” áááą | ášáŁá” áá„á°á” áááłá” | áá„á°á” | áá„á°á” áááłá” | áá„á°á” á ááș | á°áá€á | áŽá”ááá”</annotation>
<annotation cp="đđŒ" type="tts">áá„á°á” á ááș: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">á°ááá” áááą | ášáŁá” áá„á°á” áááłá” | áá„á°á” | áá„á°á” áááłá” | áá„á°á” á ááș | ášááł áááá”-4 | á°áá€á | áŽá”ááá”</annotation>
<annotation cp="đđœ" type="tts">áá„á°á” á ááș: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">á°ááá” áááą | ášáŁá” áá„á°á” áááłá” | áá„á°á” | áá„á°á” áááłá” | áá„á°á” á ááș | ášááł áááá”-5 | á°áá€á | áŽá”ááá”</annotation>
<annotation cp="đđŸ" type="tts">áá„á°á” á ááș: ášááł áááá”-5</annotation>
<annotation cp="đđż">á°ááá” áááą | ášáŁá” áá„á°á” áááłá” | áá„á°á” | áá„á°á” áááłá” | áá„á°á” á ááș | ášááł áááá”-6 | á°áá€á | áŽá”ááá”</annotation>
<annotation cp="đđż" type="tts">áá„á°á” á ááș: ášááł áááá”-6</annotation>
<annotation cp="đđ»ââ">áá„á°á” | ááá” | ááá” áá„á°á” á ááș | ášááł áááá”-1-2</annotation>
<annotation cp="đđ»ââ" type="tts">ááá” áá„á°á” á ááș: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒââ">ááášáá áá á«á ášááł ááá | áá„á°á” | ááá” | ááá” áá„á°á” á ááș</annotation>
<annotation cp="đđŒââ" type="tts">ááá” áá„á°á” á ááș: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœââ">áá„á°á” | ááá” | ááá” áá„á°á” á ááș | ášááł áááá”-4</annotation>
<annotation cp="đđœââ" type="tts">ááá” áá„á°á” á ááș: ášááł áááá”-4</annotation>
<annotation cp="đđŸââ">áá„á°á” | ááá” | ááá” áá„á°á” á ááș | ášááł áááá”-5</annotation>
<annotation cp="đđŸââ" type="tts">ááá” áá„á°á” á ááș: ášááł áááá”-5</annotation>
<annotation cp="đđżââ">áá„á°á” | ááá” | ááá” áá„á°á” á ááș | ášááł áááá”-6</annotation>
<annotation cp="đđżââ" type="tts">ááá” áá„á°á” á ááș: ášááł áááá”-6</annotation>
<annotation cp="đđ»ââ">áŽá” | áŽá” áá„á°á” á ááș | áŽá” áá„á°á” á„á«ááłáœ | áá„á°á” | ášááł áááá”-1-2</annotation>
<annotation cp="đđ»ââ" type="tts">áŽá” áá„á°á” á ááș: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒââ">ááášáá áá á«á ášááł ááá | áŽá” | áŽá” áá„á°á” á ááș | áŽá” áá„á°á” á„á«ááłáœ | áá„á°á”</annotation>
<annotation cp="đđŒââ" type="tts">áŽá” áá„á°á” á ááș: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœââ">áŽá” | áŽá” áá„á°á” á ááș | áŽá” áá„á°á” á„á«ááłáœ | áá„á°á” | ášááł áááá”-4</annotation>
<annotation cp="đđœââ" type="tts">áŽá” áá„á°á” á ááș: ášááł áááá”-4</annotation>
<annotation cp="đđŸââ">áŽá” | áŽá” áá„á°á” á ááș | áŽá” áá„á°á” á„á«ááłáœ | áá„á°á” | ášááł áááá”-5</annotation>
<annotation cp="đđŸââ" type="tts">áŽá” áá„á°á” á ááș: ášááł áááá”-5</annotation>
<annotation cp="đđżââ">áŽá” | áŽá” áá„á°á” á ááș | áŽá” áá„á°á” á„á«ááłáœ | áá„á°á” | ášááł áááá”-6</annotation>
<annotation cp="đđżââ" type="tts">áŽá” áá„á°á” á ááș: ášááł áááá”-6</annotation>
<annotation cp="đŽđ»">áłááá | á”ááá” | á áááá„ áá | áŁáá | á„á”ááá” | á„á”ááá” áááą | ášáááá„ á°á | ášááł áááá”-1-2</annotation>
<annotation cp="đŽđ»" type="tts">á„á”ááá” áááą: ášááł áááá”-1-2</annotation>
<annotation cp="đŽđŒ">ááášáá áá á«á ášááł ááá | áłááá | á”ááá” | á áááá„ áá | áŁáá | á„á”ááá” | á„á”ááá” áááą | ášáááá„ á°á</annotation>
<annotation cp="đŽđŒ" type="tts">á„á”ááá” áááą: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đŽđœ">áłááá | á”ááá” | á áááá„ áá | áŁáá | á„á”ááá” | á„á”ááá” áááą | ášáááá„ á°á | ášááł áááá”-4</annotation>
<annotation cp="đŽđœ" type="tts">á„á”ááá” áááą: ášááł áááá”-4</annotation>
<annotation cp="đŽđŸ">áłááá | á”ááá” | á áááá„ áá | áŁáá | á„á”ááá” | á„á”ááá” áááą | ášáááá„ á°á | ášááł áááá”-5</annotation>
<annotation cp="đŽđŸ" type="tts">á„á”ááá” áááą: ášááł áááá”-5</annotation>
<annotation cp="đŽđż">áłááá | á”ááá” | á áááá„ áá | áŁáá | á„á”ááá” | á„á”ááá” áááą | ášáááá„ á°á | ášááł áááá”-6</annotation>
<annotation cp="đŽđż" type="tts">á„á”ááá” áááą: ášááł áááá”-6</annotation>
<annotation cp="đŽđ»ââ">á„á”ááá” | ááá” | ááá” á„á”ááá” áááą | ášááł áááá”-1-2</annotation>
<annotation cp="đŽđ»ââ" type="tts">ááá” á„á”ááá” áááą: ášááł áááá”-1-2</annotation>
<annotation cp="đŽđŒââ">ááášáá áá á«á ášááł ááá | á„á”ááá” | ááá” | ááá” á„á”ááá” áááą</annotation>
<annotation cp="đŽđŒââ" type="tts">ááá” á„á”ááá” áááą: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đŽđœââ">á„á”ááá” | ááá” | ááá” á„á”ááá” áááą | ášááł áááá”-4</annotation>
<annotation cp="đŽđœââ" type="tts">ááá” á„á”ááá” áááą: ášááł áááá”-4</annotation>
<annotation cp="đŽđŸââ">á„á”ááá” | ááá” | ááá” á„á”ááá” áááą | ášááł áááá”-5</annotation>
<annotation cp="đŽđŸââ" type="tts">ááá” á„á”ááá” áááą: ášááł áááá”-5</annotation>
<annotation cp="đŽđżââ">á„á”ááá” | ááá” | ááá” á„á”ááá” áááą | ášááł áááá”-6</annotation>
<annotation cp="đŽđżââ" type="tts">ááá” á„á”ááá” áááą: ášááł áááá”-6</annotation>
<annotation cp="đŽđ»ââ">áááłá” | áŽá” | áŽá” á„á”ááá” á„ášááłáœ | áŽá” á„á”ááá” áááą | á”ááá” | á„á”ááá” | á„á”ááá” áááą | ášááł áááá”-1-2</annotation>
<annotation cp="đŽđ»ââ" type="tts">áŽá” á„á”ááá” áááą: ášááł áááá”-1-2</annotation>
<annotation cp="đŽđŒââ">ááášáá áá á«á ášááł ááá | áááłá” | áŽá” | áŽá” á„á”ááá” á„ášááłáœ | áŽá” á„á”ááá” áááą | á”ááá” | á„á”ááá” | á„á”ááá” áááą</annotation>
<annotation cp="đŽđŒââ" type="tts">áŽá” á„á”ááá” áááą: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đŽđœââ">áááłá” | áŽá” | áŽá” á„á”ááá” á„ášááłáœ | áŽá” á„á”ááá” áááą | á”ááá” | á„á”ááá” | á„á”ááá” áááą | ášááł áááá”-4</annotation>
<annotation cp="đŽđœââ" type="tts">áŽá” á„á”ááá” áááą: ášááł áááá”-4</annotation>
<annotation cp="đŽđŸââ">áááłá” | áŽá” | áŽá” á„á”ááá” á„ášááłáœ | áŽá” á„á”ááá” áááą | á”ááá” | á„á”ááá” | á„á”ááá” áááą | ášááł áááá”-5</annotation>
<annotation cp="đŽđŸââ" type="tts">áŽá” á„á”ááá” áááą: ášááł áááá”-5</annotation>
<annotation cp="đŽđżââ">áááłá” | áŽá” | áŽá” á„á”ááá” á„ášááłáœ | áŽá” á„á”ááá” áááą | á”ááá” | á„á”ááá” | á„á”ááá” áááą | ášááł áááá”-6</annotation>
<annotation cp="đŽđżââ" type="tts">áŽá” á„á”ááá” áááą: ášááł áááá”-6</annotation>
<annotation cp="đ”đ»">ááááŽá | á„á”ááá” | á„á”ááá” áááą | á°á«á« | á á”ááČá | ášááł áááá”-1-2 | ášá°á«á« á„á”ááá” áááą</annotation>
<annotation cp="đ”đ»" type="tts">ášá°á«á« á„á”ááá” áááą: ášááł áááá”-1-2</annotation>
<annotation cp="đ”đŒ">ááášáá áá á«á ášááł ááá | ááááŽá | á„á”ááá” | á„á”ááá” áááą | á°á«á« | á á”ááČá | ášá°á«á« á„á”ááá” áááą</annotation>
<annotation cp="đ”đŒ" type="tts">ášá°á«á« á„á”ááá” áááą: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ”đœ">ááááŽá | á„á”ááá” | á„á”ááá” áááą | á°á«á« | á á”ááČá | ášááł áááá”-4 | ášá°á«á« á„á”ááá” áááą</annotation>
<annotation cp="đ”đœ" type="tts">ášá°á«á« á„á”ááá” áááą: ášááł áááá”-4</annotation>
<annotation cp="đ”đŸ">ááááŽá | á„á”ááá” | á„á”ááá” áááą | á°á«á« | á á”ááČá | ášááł áááá”-5 | ášá°á«á« á„á”ááá” áááą</annotation>
<annotation cp="đ”đŸ" type="tts">ášá°á«á« á„á”ááá” áááą: ášááł áááá”-5</annotation>
<annotation cp="đ”đż">ááááŽá | á„á”ááá” | á„á”ááá” áááą | á°á«á« | á á”ááČá | ášááł áááá”-6 | ášá°á«á« á„á”ááá” áááą</annotation>
<annotation cp="đ”đż" type="tts">ášá°á«á« á„á”ááá” áááą: ášááł áááá”-6</annotation>
<annotation cp="đ”đ»ââ">á„á”ááá” | á„á”ááá” áááą | á°á«á« | ááá” | ááá” ášá°á«á« á„á”ááá” áááą | ášááł áááá”-1-2</annotation>
<annotation cp="đ”đ»ââ" type="tts">ááá” ášá°á«á« á„á”ááá” áááą: ášááł áááá”-1-2</annotation>
<annotation cp="đ”đŒââ">ááášáá áá á«á ášááł ááá | á„á”ááá” | á„á”ááá” áááą | á°á«á« | ááá” | ááá” ášá°á«á« á„á”ááá” áááą</annotation>
<annotation cp="đ”đŒââ" type="tts">ááá” ášá°á«á« á„á”ááá” áááą: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ”đœââ">á„á”ááá” | á„á”ááá” áááą | á°á«á« | ááá” | ááá” ášá°á«á« á„á”ááá” áááą | ášááł áááá”-4</annotation>
<annotation cp="đ”đœââ" type="tts">ááá” ášá°á«á« á„á”ááá” áááą: ášááł áááá”-4</annotation>
<annotation cp="đ”đŸââ">á„á”ááá” | á„á”ááá” áááą | á°á«á« | ááá” | ááá” ášá°á«á« á„á”ááá” áááą | ášááł áááá”-5</annotation>
<annotation cp="đ”đŸââ" type="tts">ááá” ášá°á«á« á„á”ááá” áááą: ášááł áááá”-5</annotation>
<annotation cp="đ”đżââ">á„á”ááá” | á„á”ááá” áááą | á°á«á« | ááá” | ááá” ášá°á«á« á„á”ááá” áááą | ášááł áááá”-6</annotation>
<annotation cp="đ”đżââ" type="tts">ááá” ášá°á«á« á„á”ááá” áááą: ášááł áááá”-6</annotation>
<annotation cp="đ”đ»ââ">áááłá” | áŽá” | áŽá” á„á”ááá” á„ášááłáœ | áŽá” ášá°á«á« á„á”ááá” áááą | á”ááá” | á„á”ááá” | á„á”ááá” áááą | á°á«á« | ášááł áááá”-1-2 | ášá„á”ááá” á°ááłáłáȘ</annotation>
<annotation cp="đ”đ»ââ" type="tts">áŽá” ášá°á«á« á„á”ááá” áááą: ášááł áááá”-1-2</annotation>
<annotation cp="đ”đŒââ">ááášáá áá á«á ášááł ááá | áááłá” | áŽá” | áŽá” á„á”ááá” á„ášááłáœ | áŽá” ášá°á«á« á„á”ááá” áááą | á”ááá” | á„á”ááá” | á„á”ááá” áááą | á°á«á« | ášá„á”ááá” á°ááłáłáȘ</annotation>
<annotation cp="đ”đŒââ" type="tts">áŽá” ášá°á«á« á„á”ááá” áááą: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ”đœââ">áááłá” | áŽá” | áŽá” á„á”ááá” á„ášááłáœ | áŽá” ášá°á«á« á„á”ááá” áááą | á”ááá” | á„á”ááá” | á„á”ááá” áááą | á°á«á« | ášááł áááá”-4 | ášá„á”ááá” á°ááłáłáȘ</annotation>
<annotation cp="đ”đœââ" type="tts">áŽá” ášá°á«á« á„á”ááá” áááą: ášááł áááá”-4</annotation>
<annotation cp="đ”đŸââ">áááłá” | áŽá” | áŽá” á„á”ááá” á„ášááłáœ | áŽá” ášá°á«á« á„á”ááá” áááą | á”ááá” | á„á”ááá” | á„á”ááá” áááą | á°á«á« | ášááł áááá”-5 | ášá„á”ááá” á°ááłáłáȘ</annotation>
<annotation cp="đ”đŸââ" type="tts">áŽá” ášá°á«á« á„á”ááá” áááą: ášááł áááá”-5</annotation>
<annotation cp="đ”đżââ">áááłá” | áŽá” | áŽá” á„á”ááá” á„ášááłáœ | áŽá” ášá°á«á« á„á”ááá” áááą | á”ááá” | á„á”ááá” | á„á”ááá” áááą | á°á«á« | ášááł áááá”-6 | ášá„á”ááá” á°ááłáłáȘ</annotation>
<annotation cp="đ”đżââ" type="tts">áŽá” ášá°á«á« á„á”ááá” áááą: ášááł áááá”-6</annotation>
<annotation cp="đ€žđ»">á°á | á”ááá” | áá | á ááźáŁá” | ášááł áááá”-1-2 | á°á”á°á | á
ááá”áČá | áá</annotation>
<annotation cp="đ€žđ»" type="tts">á ááźáŁá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ€žđŒ">ááášáá áá á«á ášááł ááá | á°á | á”ááá” | áá | á ááźáŁá” | á°á”á°á | á
ááá”áČá | áá</annotation>
<annotation cp="đ€žđŒ" type="tts">á ááźáŁá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€žđœ">á°á | á”ááá” | áá | á ááźáŁá” | ášááł áááá”-4 | á°á”á°á | á
ááá”áČá | áá</annotation>
<annotation cp="đ€žđœ" type="tts">á ááźáŁá”: ášááł áááá”-4</annotation>
<annotation cp="đ€žđŸ">á°á | á”ááá” | áá | á ááźáŁá” | ášááł áááá”-5 | á°á”á°á | á
ááá”áČá | áá</annotation>
<annotation cp="đ€žđŸ" type="tts">á ááźáŁá”: ášááł áááá”-5</annotation>
<annotation cp="đ€žđż">á°á | á”ááá” | áá | á ááźáŁá” | ášááł áááá”-6 | á°á”á°á | á
ááá”áČá | áá</annotation>
<annotation cp="đ€žđż" type="tts">á ááźáŁá”: ášááł áááá”-6</annotation>
<annotation cp="đ€žđ»ââ">á°á | á”ááá” | áá | á ááźáŁá” | ááá” | ášááł áááá”-1-2 | ášááá” á ááźáŁá” | á°á”á°á | áááá”áČá | á
ááá”áČá | áá</annotation>
<annotation cp="đ€žđ»ââ" type="tts">ášááá” á ááźáŁá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ€žđŒââ">ááášáá áá á«á ášááł ááá | á°á | á”ááá” | áá | á ááźáŁá” | ááá” | ášááá” á ááźáŁá” | á°á”á°á | áááá”áČá | á
ááá”áČá | áá</annotation>
<annotation cp="đ€žđŒââ" type="tts">ášááá” á ááźáŁá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€žđœââ">á°á | á”ááá” | áá | á ááźáŁá” | ááá” | ášááł áááá”-4 | ášááá” á ááźáŁá” | á°á”á°á | áááá”áČá | á
ááá”áČá | áá</annotation>
<annotation cp="đ€žđœââ" type="tts">ášááá” á ááźáŁá”: ášááł áááá”-4</annotation>
<annotation cp="đ€žđŸââ">á°á | á”ááá” | áá | á ááźáŁá” | ááá” | ášááł áááá”-5 | ášááá” á ááźáŁá” | á°á”á°á | áááá”áČá | á
ááá”áČá | áá</annotation>
<annotation cp="đ€žđŸââ" type="tts">ášááá” á ááźáŁá”: ášááł áááá”-5</annotation>
<annotation cp="đ€žđżââ">á°á | á”ááá” | áá | á ááźáŁá” | ááá” | ášááł áááá”-6 | ášááá” á ááźáŁá” | á°á”á°á | áááá”áČá | á
ááá”áČá | áá</annotation>
<annotation cp="đ€žđżââ" type="tts">ášááá” á ááźáŁá”: ášááł áááá”-6</annotation>
<annotation cp="đ€žđ»ââ">áŽá” | á”ááá” | á áá áááá á„ | áá | á ááźáŁá” | ášáŽá” á ááźáŁá” | ášááł áááá”-1-2 | á
ááá”áČá | áá</annotation>
<annotation cp="đ€žđ»ââ" type="tts">ášáŽá” á ááźáŁá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ€žđŒââ">ááášáá áá á«á ášááł ááá | áŽá” | á”ááá” | á áá áááá á„ | áá | á ááźáŁá” | ášáŽá” á ááźáŁá” | á
ááá”áČá | áá</annotation>
<annotation cp="đ€žđŒââ" type="tts">ášáŽá” á ááźáŁá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€žđœââ">áŽá” | á”ááá” | á áá áááá á„ | áá | á ááźáŁá” | ášáŽá” á ááźáŁá” | ášááł áááá”-4 | á
ááá”áČá | áá</annotation>
<annotation cp="đ€žđœââ" type="tts">ášáŽá” á ááźáŁá”: ášááł áááá”-4</annotation>
<annotation cp="đ€žđŸââ">áŽá” | á”ááá” | á áá áááá á„ | áá | á ááźáŁá” | ášáŽá” á ááźáŁá” | ášááł áááá”-5 | á
ááá”áČá | áá</annotation>
<annotation cp="đ€žđŸââ" type="tts">ášáŽá” á ááźáŁá”: ášááł áááá”-5</annotation>
<annotation cp="đ€žđżââ">áŽá” | á”ááá” | á áá áááá á„ | áá | á ááźáŁá” | ášáŽá” á ááźáŁá” | ášááł áááá”-6 | á
ááá”áČá | áá</annotation>
<annotation cp="đ€žđżââ" type="tts">ášáŽá” á ááźáŁá”: ášááł áááá”-6</annotation>
<annotation cp="đ€œđ»">áááź | á°á | á”ááá” | áá | áá áá | ášááł áááá”-1-2 | ášáá áá áá ášááł | ášáá á”ááá” | ášáá áá | ášáá ášááł</annotation>
<annotation cp="đ€œđ»" type="tts">ášáá áá áá ášááł: ášááł áááá”-1-2</annotation>
<annotation cp="đ€œđŒ">ááášáá áá á«á ášááł ááá | áááź | á°á | á”ááá” | áá | áá áá | ášáá áá áá ášááł | ášáá á”ááá” | ášáá áá | ášáá ášááł</annotation>
<annotation cp="đ€œđŒ" type="tts">ášáá áá áá ášááł: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€œđœ">áááź | á°á | á”ááá” | áá | áá áá | ášááł áááá”-4 | ášáá áá áá ášááł | ášáá á”ááá” | ášáá áá | ášáá ášááł</annotation>
<annotation cp="đ€œđœ" type="tts">ášáá áá áá ášááł: ášááł áááá”-4</annotation>
<annotation cp="đ€œđŸ">áááź | á°á | á”ááá” | áá | áá áá | ášááł áááá”-5 | ášáá áá áá ášááł | ášáá á”ááá” | ášáá áá | ášáá ášááł</annotation>
<annotation cp="đ€œđŸ" type="tts">ášáá áá áá ášááł: ášááł áááá”-5</annotation>
<annotation cp="đ€œđż">áááź | á°á | á”ááá” | áá | áá áá | ášááł áááá”-6 | ášáá áá áá ášááł | ášáá á”ááá” | ášáá áá | ášáá ášááł</annotation>
<annotation cp="đ€œđż" type="tts">ášáá áá áá ášááł: ášááł áááá”-6</annotation>
<annotation cp="đ€œđ»ââ">áááź | á”ááá” | áłá” ášááášáá ááá” | ááá” | áá | ášááł áááá”-1-2 | ášááá” ášáá áá áá ášááł | ášáá ášááł</annotation>
<annotation cp="đ€œđ»ââ" type="tts">ášááá” ášáá áá áá ášááł: ášááł áááá”-1-2</annotation>
<annotation cp="đ€œđŒââ">ááášáá áá á«á ášááł ááá | áááź | á”ááá” | áłá” ášááášáá ááá” | ááá” | áá | ášááá” ášáá áá áá ášááł | ášáá ášááł</annotation>
<annotation cp="đ€œđŒââ" type="tts">ášááá” ášáá áá áá ášááł: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€œđœââ">áááź | á”ááá” | áłá” ášááášáá ááá” | ááá” | áá | ášááł áááá”-4 | ášááá” ášáá áá áá ášááł | ášáá ášááł</annotation>
<annotation cp="đ€œđœââ" type="tts">ášááá” ášáá áá áá ášááł: ášááł áááá”-4</annotation>
<annotation cp="đ€œđŸââ">áááź | á”ááá” | áłá” ášááášáá ááá” | ááá” | áá | ášááł áááá”-5 | ášááá” ášáá áá áá ášááł | ášáá ášááł</annotation>
<annotation cp="đ€œđŸââ" type="tts">ášááá” ášáá áá áá ášááł: ášááł áááá”-5</annotation>
<annotation cp="đ€œđżââ">áááź | á”ááá” | áłá” ášááášáá ááá” | ááá” | áá | ášááł áááá”-6 | ášááá” ášáá áá áá ášááł | ášáá ášááł</annotation>
<annotation cp="đ€œđżââ" type="tts">ášááá” ášáá áá áá ášááł: ášááł áááá”-6</annotation>
<annotation cp="đ€œđ»ââ">áááź | áŽá” | á”ááá” | áá | áá áá | ášáŽá” ášáá áá áá ášááł | ášááł áááá”-1-2 | ášáá á”ááá” | ášáá áá | ášáá ášááł</annotation>
<annotation cp="đ€œđ»ââ" type="tts">ášáŽá” ášáá áá áá ášááł: ášááł áááá”-1-2</annotation>
<annotation cp="đ€œđŒââ">ááášáá áá á«á ášááł ááá | áááź | áŽá” | á”ááá” | áá | áá áá | ášáŽá” ášáá áá áá ášááł | ášáá á”ááá” | ášáá áá | ášáá ášááł</annotation>
<annotation cp="đ€œđŒââ" type="tts">ášáŽá” ášáá áá áá ášááł: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€œđœââ">áááź | áŽá” | á”ááá” | áá | áá áá | ášáŽá” ášáá áá áá ášááł | ášááł áááá”-4 | ášáá á”ááá” | ášáá áá | ášáá ášááł</annotation>
<annotation cp="đ€œđœââ" type="tts">ášáŽá” ášáá áá áá ášááł: ášááł áááá”-4</annotation>
<annotation cp="đ€œđŸââ">áááź | áŽá” | á”ááá” | áá | áá áá | ášáŽá” ášáá áá áá ášááł | ášááł áááá”-5 | ášáá á”ááá” | ášáá áá | ášáá ášááł</annotation>
<annotation cp="đ€œđŸââ" type="tts">ášáŽá” ášáá áá áá ášááł: ášááł áááá”-5</annotation>
<annotation cp="đ€œđżââ">áááź | áŽá” | á”ááá” | áá | áá áá | ášáŽá” ášáá áá áá ášááł | ášááł áááá”-6 | ášáá á”ááá” | ášáá áá | ášáá ášááł</annotation>
<annotation cp="đ€œđżââ" type="tts">ášáŽá” ášáá áá áá ášááł: ášááł áááá”-6</annotation>
<annotation cp="đ€Ÿđ»">ááááá | áá«á | ááŁá | ááœááá á | ááá | á°á | á”ááá” | áłá” | ášááł áááá”-1-2 | ášá„á
áłá”</annotation>
<annotation cp="đ€Ÿđ»" type="tts">ášá„á
áłá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ€ŸđŒ">ááášáá áá á«á ášááł ááá | ááááá | áá«á | ááŁá | ááœááá á | ááá | á°á | á”ááá” | áłá” | ášá„á
áłá”</annotation>
<annotation cp="đ€ŸđŒ" type="tts">ášá„á
áłá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€Ÿđœ">ááááá | áá«á | ááŁá | ááœááá á | ááá | á°á | á”ááá” | áłá” | ášááł áááá”-4 | ášá„á
áłá”</annotation>
<annotation cp="đ€Ÿđœ" type="tts">ášá„á
áłá”: ášááł áááá”-4</annotation>
<annotation cp="đ€ŸđŸ">ááááá | áá«á | ááŁá | ááœááá á | ááá | á°á | á”ááá” | áłá” | ášááł áááá”-5 | ášá„á
áłá”</annotation>
<annotation cp="đ€ŸđŸ" type="tts">ášá„á
áłá”: ášááł áááá”-5</annotation>
<annotation cp="đ€Ÿđż">ááááá | áá«á | ááŁá | ááœááá á | ááá | á°á | á”ááá” | áłá” | ášááł áááá”-6 | ášá„á
áłá”</annotation>
<annotation cp="đ€Ÿđż" type="tts">ášá„á
áłá”: ášááł áááá”-6</annotation>
<annotation cp="đ€Ÿđ»ââ">á”ááá” | áłá” | ááá” | ášááł áááá”-1-2 | ášá„á
áłá” | ášááá” ášá„á
áłá” ášááł</annotation>
<annotation cp="đ€Ÿđ»ââ" type="tts">ášááá” ášá„á
áłá” ášááł: ášááł áááá”-1-2</annotation>
<annotation cp="đ€ŸđŒââ">ááášáá áá á«á ášááł ááá | á”ááá” | áłá” | ááá” | ášá„á
áłá” | ášááá” ášá„á
áłá” ášááł</annotation>
<annotation cp="đ€ŸđŒââ" type="tts">ášááá” ášá„á
áłá” ášááł: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€Ÿđœââ">á”ááá” | áłá” | ááá” | ášááł áááá”-4 | ášá„á
áłá” | ášááá” ášá„á
áłá” ášááł</annotation>
<annotation cp="đ€Ÿđœââ" type="tts">ášááá” ášá„á
áłá” ášááł: ášááł áááá”-4</annotation>
<annotation cp="đ€ŸđŸââ">á”ááá” | áłá” | ááá” | ášááł áááá”-5 | ášá„á
áłá” | ášááá” ášá„á
áłá” ášááł</annotation>
<annotation cp="đ€ŸđŸââ" type="tts">ášááá” ášá„á
áłá” ášááł: ášááł áááá”-5</annotation>
<annotation cp="đ€Ÿđżââ">á”ááá” | áłá” | ááá” | ášááł áááá”-6 | ášá„á
áłá” | ášááá” ášá„á
áłá” ášááł</annotation>
<annotation cp="đ€Ÿđżââ" type="tts">ášááá” ášá„á
áłá” ášááł: ášááł áááá”-6</annotation>
<annotation cp="đ€Ÿđ»ââ">áá«á | ááŁá | áá»áá” | ááá | ááááá | áŽá” | á”ááá” | áłá” | ášáŽá” ášá„á
áłá” ášááł | ášááł áááá”-1-2 | ášá„á
áłá”</annotation>
<annotation cp="đ€Ÿđ»ââ" type="tts">ášáŽá” ášá„á
áłá” ášááł: ášááł áááá”-1-2</annotation>
<annotation cp="đ€ŸđŒââ">ááášáá áá á«á ášááł ááá | áá«á | ááŁá | áá»áá” | ááá | ááááá | áŽá” | á”ááá” | áłá” | ášáŽá” ášá„á
áłá” ášááł | ášá„á
áłá”</annotation>
<annotation cp="đ€ŸđŒââ" type="tts">ášáŽá” ášá„á
áłá” ášááł: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€Ÿđœââ">áá«á | ááŁá | áá»áá” | ááá | ááááá | áŽá” | á”ááá” | áłá” | ášáŽá” ášá„á
áłá” ášááł | ášááł áááá”-4 | ášá„á
áłá”</annotation>
<annotation cp="đ€Ÿđœââ" type="tts">ášáŽá” ášá„á
áłá” ášááł: ášááł áááá”-4</annotation>
<annotation cp="đ€ŸđŸââ">áá«á | ááŁá | áá»áá” | ááá | ááááá | áŽá” | á”ááá” | áłá” | ášáŽá” ášá„á
áłá” ášááł | ášááł áááá”-5 | ášá„á
áłá”</annotation>
<annotation cp="đ€ŸđŸââ" type="tts">ášáŽá” ášá„á
áłá” ášááł: ášááł áááá”-5</annotation>
<annotation cp="đ€Ÿđżââ">áá«á | ááŁá | áá»áá” | ááá | ááááá | áŽá” | á”ááá” | áłá” | ášáŽá” ášá„á
áłá” ášááł | ášááł áááá”-6 | ášá„á
áłá”</annotation>
<annotation cp="đ€Ÿđżââ" type="tts">ášáŽá” ášá„á
áłá” ášááł: ášááł áááá”-6</annotation>
<annotation cp="đ€čđ»">ááá | ááá áá á á
| ááááá„ | á„á« á„á | á”á«á„á | á
áááŠáœ | áœááł | á á«á«á | ášááł áááá”-1-2</annotation>
<annotation cp="đ€čđ»" type="tts">á
áááŠáœ: ášááł áááá”-1-2</annotation>
<annotation cp="đ€čđŒ">ááášáá áá á«á ášááł ááá | ááá | ááá áá á á
| ááááá„ | á„á« á„á | á”á«á„á | á
áááŠáœ | áœááł | á á«á«á</annotation>
<annotation cp="đ€čđŒ" type="tts">á
áááŠáœ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€čđœ">ááá | ááá áá á á
| ááááá„ | á„á« á„á | á”á«á„á | á
áááŠáœ | áœááł | á á«á«á | ášááł áááá”-4</annotation>
<annotation cp="đ€čđœ" type="tts">á
áááŠáœ: ášááł áááá”-4</annotation>
<annotation cp="đ€čđŸ">ááá | ááá áá á á
| ááááá„ | á„á« á„á | á”á«á„á | á
áááŠáœ | áœááł | á á«á«á | ášááł áááá”-5</annotation>
<annotation cp="đ€čđŸ" type="tts">á
áááŠáœ: ášááł áááá”-5</annotation>
<annotation cp="đ€čđż">ááá | ááá áá á á
| ááááá„ | á„á« á„á | á”á«á„á | á
áááŠáœ | áœááł | á á«á«á | ášááł áááá”-6</annotation>
<annotation cp="đ€čđż" type="tts">á
áááŠáœ: ášááł áááá”-6</annotation>
<annotation cp="đ€čđ»ââ">áááá | áá”á°áłá°á | á”á«á„á | á
áááŠáœ | á
á„á„áᜠášáá«áá” ááá” | áŁáá„á á°ááŁá | áœááł | á á«á«á | ááá” | ášááł áááá”-1-2 | ášááá” á
á„á„ááœ</annotation>
<annotation cp="đ€čđ»ââ" type="tts">ášááá” á
á„á„ááœ: ášááł áááá”-1-2</annotation>
<annotation cp="đ€čđŒââ">ááášáá áá á«á ášááł ááá | áááá | áá”á°áłá°á | á”á«á„á | á
áááŠáœ | á
á„á„áᜠášáá«áá” ááá” | áŁáá„á á°ááŁá | áœááł | á á«á«á | ááá” | ášááá” á
á„á„ááœ</annotation>
<annotation cp="đ€čđŒââ" type="tts">ášááá” á
á„á„ááœ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€čđœââ">áááá | áá”á°áłá°á | á”á«á„á | á
áááŠáœ | á
á„á„áᜠášáá«áá” ááá” | áŁáá„á á°ááŁá | áœááł | á á«á«á | ááá” | ášááł áááá”-4 | ášááá” á
á„á„ááœ</annotation>
<annotation cp="đ€čđœââ" type="tts">ášááá” á
á„á„ááœ: ášááł áááá”-4</annotation>
<annotation cp="đ€čđŸââ">áááá | áá”á°áłá°á | á”á«á„á | á
áááŠáœ | á
á„á„áᜠášáá«áá” ááá” | áŁáá„á á°ááŁá | áœááł | á á«á«á | ááá” | ášááł áááá”-5 | ášááá” á
á„á„ááœ</annotation>
<annotation cp="đ€čđŸââ" type="tts">ášááá” á
á„á„ááœ: ášááł áááá”-5</annotation>
<annotation cp="đ€čđżââ">áááá | áá”á°áłá°á | á”á«á„á | á
áááŠáœ | á
á„á„áᜠášáá«áá” ááá” | áŁáá„á á°ááŁá | áœááł | á á«á«á | ááá” | ášááł áááá”-6 | ášááá” á
á„á„ááœ</annotation>
<annotation cp="đ€čđżââ" type="tts">ášááá” á
á„á„ááœ: ášááł áááá”-6</annotation>
<annotation cp="đ€čđ»ââ">áŽá” | áŽá” á
á„á„áᜠá„ášá°á«áá°áœ | á”á«á„á | á
áááŠáœ | áŁá á„á á°ááŁá | ášáŽá” á
á„á„áᜠ| ášááł áááá”-1-2</annotation>
<annotation cp="đ€čđ»ââ" type="tts">ášáŽá” á
á„á„ááœ: ášááł áááá”-1-2</annotation>
<annotation cp="đ€čđŒââ">ááášáá áá á«á ášááł ááá | áŽá” | áŽá” á
á„á„áᜠá„ášá°á«áá°áœ | á”á«á„á | á
áááŠáœ | áŁá á„á á°ááŁá | ášáŽá” á
á„á„ááœ</annotation>
<annotation cp="đ€čđŒââ" type="tts">ášáŽá” á
á„á„ááœ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ€čđœââ">áŽá” | áŽá” á
á„á„áᜠá„ášá°á«áá°áœ | á”á«á„á | á
áááŠáœ | áŁá á„á á°ááŁá | ášáŽá” á
á„á„áᜠ| ášááł áááá”-4</annotation>
<annotation cp="đ€čđœââ" type="tts">ášáŽá” á
á„á„ááœ: ášááł áááá”-4</annotation>
<annotation cp="đ€čđŸââ">áŽá” | áŽá” á
á„á„áᜠá„ášá°á«áá°áœ | á”á«á„á | á
áááŠáœ | áŁá á„á á°ááŁá | ášáŽá” á
á„á„áᜠ| ášááł áááá”-5</annotation>
<annotation cp="đ€čđŸââ" type="tts">ášáŽá” á
á„á„ááœ: ášááł áááá”-5</annotation>
<annotation cp="đ€čđżââ">áŽá” | áŽá” á
á„á„áᜠá„ášá°á«áá°áœ | á”á«á„á | á
áááŠáœ | áŁá á„á á°ááŁá | ášáŽá” á
á„á„áᜠ| ášááł áááá”-6</annotation>
<annotation cp="đ€čđżââ" type="tts">ášáŽá” á
á„á„ááœ: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»">ááČáŽáœá | á°áá | á áá°á” á áááá„ ášá°ááá á°á | á ááłá” áŁáááá„ | á°áá”አ| á„ááá ááááá | ášáááá” áá» | áá ááá” | áá | ášááł áááá”-1-2 | ášá°áááá á„áá | áźá | áźá</annotation>
<annotation cp="đ§đ»" type="tts">á ááłá” áŁáááá„: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒ">ááášáá áá á«á ášááł ááá | ááČáŽáœá | á°áá | á áá°á” á áááá„ ášá°ááá á°á | á ááłá” áŁáááá„ | á°áá”አ| á„ááá ááááá | ášáááá” áá» | áá ááá” | áá | ášá°áááá á„áá | áźá | áźá</annotation>
<annotation cp="đ§đŒ" type="tts">á ááłá” áŁáááá„: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœ">ááČáŽáœá | á°áá | á áá°á” á áááá„ ášá°ááá á°á | á ááłá” áŁáááá„ | á°áá”አ| á„ááá ááááá | ášáááá” áá» | áá ááá” | áá | ášááł áááá”-4 | ášá°áááá á„áá | áźá | áźá</annotation>
<annotation cp="đ§đœ" type="tts">á ááłá” áŁáááá„: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸ">ááČáŽáœá | á°áá | á áá°á” á áááá„ ášá°ááá á°á | á ááłá” áŁáááá„ | á°áá”አ| á„ááá ááááá | ášáááá” áá» | áá ááá” | áá | ášááł áááá”-5 | ášá°áááá á„áá | áźá | áźá</annotation>
<annotation cp="đ§đŸ" type="tts">á ááłá” áŁáááá„: ášááł áááá”-5</annotation>
<annotation cp="đ§đż">ááČáŽáœá | á°áá | á áá°á” á áááá„ ášá°ááá á°á | á ááłá” áŁáááá„ | á°áá”አ| á„ááá ááááá | ášáááá” áá» | áá ááá” | áá | ášááł áááá”-6 | ášá°áááá á„áá | áźá | áźá</annotation>
<annotation cp="đ§đż" type="tts">á ááłá” áŁáááá„: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»ââ">á ááłá” áŁáááá„ ááá” | ášááł áááá”-1-2</annotation>
<annotation cp="đ§đ»ââ" type="tts">á ááłá” áŁáááá„ ááá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒââ">ááášáá áá á«á ášááł ááá | á ááłá” áŁáááá„ ááá”</annotation>
<annotation cp="đ§đŒââ" type="tts">á ááłá” áŁáááá„ ááá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœââ">á ááłá” áŁáááá„ ááá” | ášááł áááá”-4</annotation>
<annotation cp="đ§đœââ" type="tts">á ááłá” áŁáááá„ ááá”: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸââ">á ááłá” áŁáááá„ ááá” | ášááł áááá”-5</annotation>
<annotation cp="đ§đŸââ" type="tts">á ááłá” áŁáááá„ ááá”: ášááł áááá”-5</annotation>
<annotation cp="đ§đżââ">á ááłá” áŁáááá„ ááá” | ášááł áááá”-6</annotation>
<annotation cp="đ§đżââ" type="tts">á ááłá” áŁáááá„ ááá”: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»ââ">á ááłá” áŁáááá„ áŽá” | ášááł áááá”-1-2</annotation>
<annotation cp="đ§đ»ââ" type="tts">á ááłá” áŁáááá„ áŽá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒââ">ááášáá áá á«á ášááł ááá | á ááłá” áŁáááá„ áŽá”</annotation>
<annotation cp="đ§đŒââ" type="tts">á ááłá” áŁáááá„ áŽá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœââ">á ááłá” áŁáááá„ áŽá” | ášááł áááá”-4</annotation>
<annotation cp="đ§đœââ" type="tts">á ááłá” áŁáááá„ áŽá”: ášááł áááá”-4</annotation>
<annotation cp="đ§đŸââ">á ááłá” áŁáááá„ áŽá” | ášááł áááá”-5</annotation>
<annotation cp="đ§đŸââ" type="tts">á ááłá” áŁáááá„ áŽá”: ášááł áááá”-5</annotation>
<annotation cp="đ§đżââ">á ááłá” áŁáááá„ áŽá” | ášááł áááá”-6</annotation>
<annotation cp="đ§đżââ" type="tts">á ááłá” áŁáááá„ áŽá”: ášááł áááá”-6</annotation>
<annotation cp="đđ»">ášááł áááá”-1-2 | ášáá ááłá áąá« áááł | ááá ááłá á„ | áááá ášááłá á„ á°á</annotation>
<annotation cp="đđ»" type="tts">áááá ášááłá á„ á°á: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááášáá áá á«á ášááł ááá | ášáá ááłá áąá« áááł | ááá ááłá á„ | áááá ášááłá á„ á°á</annotation>
<annotation cp="đđŒ" type="tts">áááá ášááłá á„ á°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">ášááł áááá”-4 | ášáá ááłá áąá« áááł | ááá ááłá á„ | áááá ášááłá á„ á°á</annotation>
<annotation cp="đđœ" type="tts">áááá ášááłá á„ á°á: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">ášááł áááá”-5 | ášáá ááłá áąá« áááł | ááá ááłá á„ | áááá ášááłá á„ á°á</annotation>
<annotation cp="đđŸ" type="tts">áááá ášááłá á„ á°á: ášááł áááá”-5</annotation>
<annotation cp="đđż">ášááł áááá”-6 | ášáá ááłá áąá« áááł | ááá ááłá á„ | áááá ášááłá á„ á°á</annotation>
<annotation cp="đđż" type="tts">áááá ášááłá á„ á°á: ášááł áááá”-6</annotation>
<annotation cp="đđ»">ááŽá | á áá áá ášá°á á°á | á„áá
áá | ášááł áááá”-1-2</annotation>
<annotation cp="đđ»" type="tts">á áá áá ášá°á á°á: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááŽá | ááášáá áá á«á ášááł ááá | á áá áá ášá°á á°á | á„áá
áá</annotation>
<annotation cp="đđŒ" type="tts">á áá áá ášá°á á°á: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">ááŽá | á áá áá ášá°á á°á | á„áá
áá | ášááł áááá”-4</annotation>
<annotation cp="đđœ" type="tts">á áá áá ášá°á á°á: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">ááŽá | á áá áá ášá°á á°á | á„áá
áá | ášááł áááá”-5</annotation>
<annotation cp="đđŸ" type="tts">á áá áá ášá°á á°á: ášááł áááá”-5</annotation>
<annotation cp="đđż">ááŽá | á áá áá ášá°á á°á | á„áá
áá | ášááł áááá”-6</annotation>
<annotation cp="đđż" type="tts">á áá áá ášá°á á°á: ášááł áááá”-6</annotation>
<annotation cp="đ§đ»âđ€âđ§đ»">áá«á | á°á | á°áᜠá„á
áá„á
á°á«ááá | áŁáá áá”á” | á„á
| á„á
áá„á
áá«á«á | ášááł áááá”-1-2 | á„áá¶áœ</annotation>
<annotation cp="đ§đ»âđ€âđ§đ»" type="tts">á°áᜠá„á
áá„á
á°á«ááá: ášááł áááá”-1-2</annotation>
<annotation cp="đ§đ»âđ€âđ§đŒ">ááášáá áá á«á ášááł ááá | áá«á | á°á | á°áᜠá„á
áá„á
á°á«ááá | áŁáá áá”á” | á„á
| á„á
áá„á
áá«á«á | ášááł áááá”-1-2 | á„áá¶áœ</annotation>
<annotation cp="đ§đ»âđ€âđ§đŒ" type="tts">á°áᜠá„á
áá„á
á°á«ááá: ášááł áááá”-1-2 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đ»âđ€âđ§đœ">áá«á | á°á | á°áᜠá„á
áá„á
á°á«ááá | áŁáá áá”á” | á„á
| á„á
áá„á
áá«á«á | ášááł áááá”-1-2 | ášááł áááá”-4 | á„áá¶áœ</annotation>
<annotation cp="đ§đ»âđ€âđ§đœ" type="tts">á°áᜠá„á
áá„á
á°á«ááá: ášááł áááá”-1-2 á„á ášááł áááá”-4</annotation>
<annotation cp="đ§đ»âđ€âđ§đŸ">áá«á | á°á | á°áᜠá„á
áá„á
á°á«ááá | áŁáá áá”á” | á„á
| á„á
áá„á
áá«á«á | ášááł áááá”-1-2 | ášááł áááá”-5 | á„áá¶áœ</annotation>
<annotation cp="đ§đ»âđ€âđ§đŸ" type="tts">á°áᜠá„á
áá„á
á°á«ááá: ášááł áááá”-1-2 á„á ášááł áááá”-5</annotation>
<annotation cp="đ§đ»âđ€âđ§đż">áá«á | á°á | á°áᜠá„á
áá„á
á°á«ááá | áŁáá áá”á” | á„á
| á„á
áá„á
áá«á«á | ášááł áááá”-1-2 | ášááł áááá”-6 | á„áá¶áœ</annotation>
<annotation cp="đ§đ»âđ€âđ§đż" type="tts">á°áᜠá„á
áá„á
á°á«ááá: ášááł áááá”-1-2 á„á ášááł áááá”-6</annotation>
<annotation cp="đ§đŒâđ€âđ§đ»">ááášáá áá á«á ášááł ááá | áá«á | á°á | á°áᜠá„á
áá„á
á°á«ááá | áŁáá áá”á” | á„á
| á„á
áá„á
áá«á«á | ášááł áááá”-1-2 | á„áá¶áœ</annotation>
<annotation cp="đ§đŒâđ€âđ§đ»" type="tts">á°áᜠá„á
áá„á
á°á«ááá: ááášáá áá á«á ášááł ááá á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŒâđ€âđ§đŒ">ááášáá áá á«á ášááł ááá | áá«á | á°á | á°áᜠá„á
áá„á
á°á«ááá | áŁáá áá”á” | á„á
| á„á
áá„á
áá«á«á | á„áá¶áœ</annotation>
<annotation cp="đ§đŒâđ€âđ§đŒ" type="tts">á°áᜠá„á
áá„á
á°á«ááá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đŒâđ€âđ§đœ">ááášáá áá á«á ášááł ááá | áá«á | á°á | á°áᜠá„á
áá„á
á°á«ááá | áŁáá áá”á” | á„á
| á„á
áá„á
áá«á«á | ášááł áááá”-4 | á„áá¶áœ</annotation>
<annotation cp="đ§đŒâđ€âđ§đœ" type="tts">á°áᜠá„á
áá„á
á°á«ááá: ááášáá áá á«á ášááł ááá á„á ášááł áááá”-4</annotation>
<annotation cp="đ§đŒâđ€âđ§đŸ">ááášáá áá á«á ášááł ááá | áá«á | á°á | á°áᜠá„á
áá„á
á°á«ááá | áŁáá áá”á” | á„á
| á„á
áá„á
áá«á«á | ášááł áááá”-5 | á„áá¶áœ</annotation>
<annotation cp="đ§đŒâđ€âđ§đŸ" type="tts">á°áᜠá„á
áá„á
á°á«ááá: ááášáá áá á«á ášááł ááá á„á ášááł áááá”-5</annotation>
<annotation cp="đ§đŒâđ€âđ§đż">ááášáá áá á«á ášááł ááá | áá«á | á°á | á°áᜠá„á
áá„á
á°á«ááá | áŁáá áá”á” | á„á
| á„á
áá„á
áá«á«á | ášááł áááá”-6 | á„áá¶áœ</annotation>
<annotation cp="đ§đŒâđ€âđ§đż" type="tts">á°áᜠá„á
áá„á
á°á«ááá: ááášáá áá á«á ášááł ááá á„á ášááł áááá”-6</annotation>
<annotation cp="đ§đœâđ€âđ§đ»">áá«á | á°á | á°áᜠá„á
áá„á
á°á«ááá | áŁáá áá”á” | á„á
| á„á
áá„á
áá«á«á | ášááł áááá”-1-2 | ášááł áááá”-4 | á„áá¶áœ</annotation>
<annotation cp="đ§đœâđ€âđ§đ»" type="tts">á°áᜠá„á
áá„á
á°á«ááá: ášááł áááá”-4 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ§đœâđ€âđ§đŒ">ááášáá áá á«á ášááł ááá | áá«á | á°á | á°áᜠá„á
áá„á
á°á«ááá | áŁáá áá”á” | á„á
| á„á
áá„á
áá«á«á | ášááł áááá”-4 | á„áá¶áœ</annotation>
<annotation cp="đ§đœâđ€âđ§đŒ" type="tts">á°áᜠá„á
áá„á
á°á«ááá: ášááł áááá”-4 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đœâđ€âđ§đœ">áá«á | á°á | á°áᜠá„á
áá„á
á°á«ááá | áŁáá áá”á” | á„á
| á„á
áá„á
áá«á«á | ášááł áááá”-4 | á„áá¶áœ</annotation>
<annotation cp="đ§đœâđ€âđ§đœ" type="tts">á°áᜠá„á
áá„á
á°á«ááá: ášááł áááá”-4</annotation>
<annotation cp="đ§đœâđ€âđ§đŸ">áá«á | á°á | á°áᜠá„á
áá„á
á°á«ááá | áŁáá áá”á” | á„á
| á„á
áá„á
áá«á«á | ášááł áááá”-4 | ášááł áááá”-5 | á„áá¶áœ</annotation>
<annotation cp="đ§đœâđ€âđ§đŸ" type="tts">á°áᜠá„á
áá„á
á°á«ááá: ášááł áááá”-4 á„á ášááł áááá”-5</annotation>
<annotation cp="đ§đœâđ€âđ§đż">áá«á | á°á | á°áᜠá„á
áá„á
á°á«ááá | áŁáá áá”á” | á„á
| á„á
áá„á
áá«á«á | ášááł áááá”-4 | ášááł áááá”-6 | á„áá¶áœ</annotation>
<annotation cp="đ§đœâđ€âđ§đż" type="tts">á°áᜠá„á
áá„á
á°á«ááá: ášááł áááá”-4 á„á ášááł áááá”-6</annotation>
<annotation cp="đ§đŸâđ€âđ§đ»">áá«á | á°á | á°áᜠá„á
áá„á
á°á«ááá | áŁáá áá”á” | á„á
| á„á
áá„á
áá«á«á | ášááł áááá”-1-2 | ášááł áááá”-5 | á„áá¶áœ</annotation>
<annotation cp="đ§đŸâđ€âđ§đ»" type="tts">á°áᜠá„á
áá„á
á°á«ááá: ášááł áááá”-5 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ§đŸâđ€âđ§đŒ">ááášáá áá á«á ášááł ááá | áá«á | á°á | á°áᜠá„á
áá„á
á°á«ááá | áŁáá áá”á” | á„á
| á„á
áá„á
áá«á«á | ášááł áááá”-5 | á„áá¶áœ</annotation>
<annotation cp="đ§đŸâđ€âđ§đŒ" type="tts">á°áᜠá„á
áá„á
á°á«ááá: ášááł áááá”-5 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đŸâđ€âđ§đœ">áá«á | á°á | á°áᜠá„á
áá„á
á°á«ááá | áŁáá áá”á” | á„á
| á„á
áá„á
áá«á«á | ášááł áááá”-4 | ášááł áááá”-5 | á„áá¶áœ</annotation>
<annotation cp="đ§đŸâđ€âđ§đœ" type="tts">á°áᜠá„á
áá„á
á°á«ááá: ášááł áááá”-5 á„á ášááł áááá”-4</annotation>
<annotation cp="đ§đŸâđ€âđ§đŸ">áá«á | á°á | á°áᜠá„á
áá„á
á°á«ááá | áŁáá áá”á” | á„á
| á„á
áá„á
áá«á«á | ášááł áááá”-5 | á„áá¶áœ</annotation>
<annotation cp="đ§đŸâđ€âđ§đŸ" type="tts">á°áᜠá„á
áá„á
á°á«ááá: ášááł áááá”-5</annotation>
<annotation cp="đ§đŸâđ€âđ§đż">áá«á | á°á | á°áᜠá„á
áá„á
á°á«ááá | áŁáá áá”á” | á„á
| á„á
áá„á
áá«á«á | ášááł áááá”-5 | ášááł áááá”-6 | á„áá¶áœ</annotation>
<annotation cp="đ§đŸâđ€âđ§đż" type="tts">á°áᜠá„á
áá„á
á°á«ááá: ášááł áááá”-5 á„á ášááł áááá”-6</annotation>
<annotation cp="đ§đżâđ€âđ§đ»">áá«á | á°á | á°áᜠá„á
áá„á
á°á«ááá | áŁáá áá”á” | á„á
| á„á
áá„á
áá«á«á | ášááł áááá”-1-2 | ášááł áááá”-6 | á„áá¶áœ</annotation>
<annotation cp="đ§đżâđ€âđ§đ»" type="tts">á°áᜠá„á
áá„á
á°á«ááá: ášááł áááá”-6 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ§đżâđ€âđ§đŒ">ááášáá áá á«á ášááł ááá | áá«á | á°á | á°áᜠá„á
áá„á
á°á«ááá | áŁáá áá”á” | á„á
| á„á
áá„á
áá«á«á | ášááł áááá”-6 | á„áá¶áœ</annotation>
<annotation cp="đ§đżâđ€âđ§đŒ" type="tts">á°áᜠá„á
áá„á
á°á«ááá: ášááł áááá”-6 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ§đżâđ€âđ§đœ">áá«á | á°á | á°áᜠá„á
áá„á
á°á«ááá | áŁáá áá”á” | á„á
| á„á
áá„á
áá«á«á | ášááł áááá”-4 | ášááł áááá”-6 | á„áá¶áœ</annotation>
<annotation cp="đ§đżâđ€âđ§đœ" type="tts">á°áᜠá„á
áá„á
á°á«ááá: ášááł áááá”-6 á„á ášááł áááá”-4</annotation>
<annotation cp="đ§đżâđ€âđ§đŸ">áá«á | á°á | á°áᜠá„á
áá„á
á°á«ááá | áŁáá áá”á” | á„á
| á„á
áá„á
áá«á«á | ášááł áááá”-5 | ášááł áááá”-6 | á„áá¶áœ</annotation>
<annotation cp="đ§đżâđ€âđ§đŸ" type="tts">á°áᜠá„á
áá„á
á°á«ááá: ášááł áááá”-6 á„á ášááł áááá”-5</annotation>
<annotation cp="đ§đżâđ€âđ§đż">áá«á | á°á | á°áᜠá„á
áá„á
á°á«ááá | áŁáá áá”á” | á„á
| á„á
áá„á
áá«á«á | ášááł áááá”-6 | á„áá¶áœ</annotation>
<annotation cp="đ§đżâđ€âđ§đż" type="tts">á°áᜠá„á
áá„á
á°á«ááá: ášááł áááá”-6</annotation>
<annotation cp="đđ»">áá«á | áŽá” | á„á
| á„á
áá„á
ášá°á«á«á áŽá¶áœ | ášááł áááá”-1-2</annotation>
<annotation cp="đđ»" type="tts">á„á
áá„á
ášá°á«á«á áŽá¶áœ: ášááł áááá”-1-2</annotation>
<annotation cp="đ©đ»âđ€âđ©đŒ">ááášáá áá á«á ášááł ááá | áá«á | áŽá” | á„á
| á„á
áá„á
ášá°á«á«á áŽá¶áœ | ášááł áááá”-1-2</annotation>
<annotation cp="đ©đ»âđ€âđ©đŒ" type="tts">á„á
áá„á
ášá°á«á«á áŽá¶áœ: ášááł áááá”-1-2 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đ»âđ€âđ©đœ">áá«á | áŽá” | á„á
| á„á
áá„á
ášá°á«á«á áŽá¶áœ | ášááł áááá”-1-2 | ášááł áááá”-4</annotation>
<annotation cp="đ©đ»âđ€âđ©đœ" type="tts">á„á
áá„á
ášá°á«á«á áŽá¶áœ: ášááł áááá”-1-2 á„á ášááł áááá”-4</annotation>
<annotation cp="đ©đ»âđ€âđ©đŸ">áá«á | áŽá” | á„á
| á„á
áá„á
ášá°á«á«á áŽá¶áœ | ášááł áááá”-1-2 | ášááł áááá”-5</annotation>
<annotation cp="đ©đ»âđ€âđ©đŸ" type="tts">á„á
áá„á
ášá°á«á«á áŽá¶áœ: ášááł áááá”-1-2 á„á ášááł áááá”-5</annotation>
<annotation cp="đ©đ»âđ€âđ©đż">áá«á | áŽá” | á„á
| á„á
áá„á
ášá°á«á«á áŽá¶áœ | ášááł áááá”-1-2 | ášááł áááá”-6</annotation>
<annotation cp="đ©đ»âđ€âđ©đż" type="tts">á„á
áá„á
ášá°á«á«á áŽá¶áœ: ášááł áááá”-1-2 á„á ášááł áááá”-6</annotation>
<annotation cp="đ©đŒâđ€âđ©đ»">ááášáá áá á«á ášááł ááá | áá«á | áŽá” | á„á
| á„á
áá„á
ášá°á«á«á áŽá¶áœ | ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŒâđ€âđ©đ»" type="tts">á„á
áá„á
ášá°á«á«á áŽá¶áœ: ááášáá áá á«á ášááł ááá á„á ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááášáá áá á«á ášááł ááá | áá«á | áŽá” | á„á
| á„á
áá„á
ášá°á«á«á áŽá¶áœ</annotation>
<annotation cp="đđŒ" type="tts">á„á
áá„á
ášá°á«á«á áŽá¶áœ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đŒâđ€âđ©đœ">ááášáá áá á«á ášááł ááá | áá«á | áŽá” | á„á
| á„á
áá„á
ášá°á«á«á áŽá¶áœ | ášááł áááá”-4</annotation>
<annotation cp="đ©đŒâđ€âđ©đœ" type="tts">á„á
áá„á
ášá°á«á«á áŽá¶áœ: ááášáá áá á«á ášááł ááá á„á ášááł áááá”-4</annotation>
<annotation cp="đ©đŒâđ€âđ©đŸ">ááášáá áá á«á ášááł ááá | áá«á | áŽá” | á„á
| á„á
áá„á
ášá°á«á«á áŽá¶áœ | ášááł áááá”-5</annotation>
<annotation cp="đ©đŒâđ€âđ©đŸ" type="tts">á„á
áá„á
ášá°á«á«á áŽá¶áœ: ááášáá áá á«á ášááł ááá á„á ášááł áááá”-5</annotation>
<annotation cp="đ©đŒâđ€âđ©đż">ááášáá áá á«á ášááł ááá | áá«á | áŽá” | á„á
| á„á
áá„á
ášá°á«á«á áŽá¶áœ | ášááł áááá”-6</annotation>
<annotation cp="đ©đŒâđ€âđ©đż" type="tts">á„á
áá„á
ášá°á«á«á áŽá¶áœ: ááášáá áá á«á ášááł ááá á„á ášááł áááá”-6</annotation>
<annotation cp="đ©đœâđ€âđ©đ»">áá«á | áŽá” | á„á
| á„á
áá„á
ášá°á«á«á áŽá¶áœ | ášááł áááá”-1-2 | ášááł áááá”-4</annotation>
<annotation cp="đ©đœâđ€âđ©đ»" type="tts">á„á
áá„á
ášá°á«á«á áŽá¶áœ: ášááł áááá”-4 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ©đœâđ€âđ©đŒ">ááášáá áá á«á ášááł ááá | áá«á | áŽá” | á„á
| á„á
áá„á
ášá°á«á«á áŽá¶áœ | ášááł áááá”-4</annotation>
<annotation cp="đ©đœâđ€âđ©đŒ" type="tts">á„á
áá„á
ášá°á«á«á áŽá¶áœ: ášááł áááá”-4 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">áá«á | áŽá” | á„á
| á„á
áá„á
ášá°á«á«á áŽá¶áœ | ášááł áááá”-4</annotation>
<annotation cp="đđœ" type="tts">á„á
áá„á
ášá°á«á«á áŽá¶áœ: ášááł áááá”-4</annotation>
<annotation cp="đ©đœâđ€âđ©đŸ">áá«á | áŽá” | á„á
| á„á
áá„á
ášá°á«á«á áŽá¶áœ | ášááł áááá”-4 | ášááł áááá”-5</annotation>
<annotation cp="đ©đœâđ€âđ©đŸ" type="tts">á„á
áá„á
ášá°á«á«á áŽá¶áœ: ášááł áááá”-4 á„á ášááł áááá”-5</annotation>
<annotation cp="đ©đœâđ€âđ©đż">áá«á | áŽá” | á„á
| á„á
áá„á
ášá°á«á«á áŽá¶áœ | ášááł áááá”-4 | ášááł áááá”-6</annotation>
<annotation cp="đ©đœâđ€âđ©đż" type="tts">á„á
áá„á
ášá°á«á«á áŽá¶áœ: ášááł áááá”-4 á„á ášááł áááá”-6</annotation>
<annotation cp="đ©đŸâđ€âđ©đ»">áá«á | áŽá” | á„á
| á„á
áá„á
ášá°á«á«á áŽá¶áœ | ášááł áááá”-1-2 | ášááł áááá”-5</annotation>
<annotation cp="đ©đŸâđ€âđ©đ»" type="tts">á„á
áá„á
ášá°á«á«á áŽá¶áœ: ášááł áááá”-5 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŸâđ€âđ©đŒ">ááášáá áá á«á ášááł ááá | áá«á | áŽá” | á„á
| á„á
áá„á
ášá°á«á«á áŽá¶áœ | ášááł áááá”-5</annotation>
<annotation cp="đ©đŸâđ€âđ©đŒ" type="tts">á„á
áá„á
ášá°á«á«á áŽá¶áœ: ášááł áááá”-5 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đŸâđ€âđ©đœ">áá«á | áŽá” | á„á
| á„á
áá„á
ášá°á«á«á áŽá¶áœ | ášááł áááá”-4 | ášááł áááá”-5</annotation>
<annotation cp="đ©đŸâđ€âđ©đœ" type="tts">á„á
áá„á
ášá°á«á«á áŽá¶áœ: ášááł áááá”-5 á„á ášááł áááá”-4</annotation>
<annotation cp="đđŸ">áá«á | áŽá” | á„á
| á„á
áá„á
ášá°á«á«á áŽá¶áœ | ášááł áááá”-5</annotation>
<annotation cp="đđŸ" type="tts">á„á
áá„á
ášá°á«á«á áŽá¶áœ: ášááł áááá”-5</annotation>
<annotation cp="đ©đŸâđ€âđ©đż">áá«á | áŽá” | á„á
| á„á
áá„á
ášá°á«á«á áŽá¶áœ | ášááł áááá”-5 | ášááł áááá”-6</annotation>
<annotation cp="đ©đŸâđ€âđ©đż" type="tts">á„á
áá„á
ášá°á«á«á áŽá¶áœ: ášááł áááá”-5 á„á ášááł áááá”-6</annotation>
<annotation cp="đ©đżâđ€âđ©đ»">áá«á | áŽá” | á„á
| á„á
áá„á
ášá°á«á«á áŽá¶áœ | ášááł áááá”-1-2 | ášááł áááá”-6</annotation>
<annotation cp="đ©đżâđ€âđ©đ»" type="tts">á„á
áá„á
ášá°á«á«á áŽá¶áœ: ášááł áááá”-6 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ©đżâđ€âđ©đŒ">ááášáá áá á«á ášááł ááá | áá«á | áŽá” | á„á
| á„á
áá„á
ášá°á«á«á áŽá¶áœ | ášááł áááá”-6</annotation>
<annotation cp="đ©đżâđ€âđ©đŒ" type="tts">á„á
áá„á
ášá°á«á«á áŽá¶áœ: ášááł áááá”-6 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đżâđ€âđ©đœ">áá«á | áŽá” | á„á
| á„á
áá„á
ášá°á«á«á áŽá¶áœ | ášááł áááá”-4 | ášááł áááá”-6</annotation>
<annotation cp="đ©đżâđ€âđ©đœ" type="tts">á„á
áá„á
ášá°á«á«á áŽá¶áœ: ášááł áááá”-6 á„á ášááł áááá”-4</annotation>
<annotation cp="đ©đżâđ€âđ©đŸ">áá«á | áŽá” | á„á
| á„á
áá„á
ášá°á«á«á áŽá¶áœ | ášááł áááá”-5 | ášááł áááá”-6</annotation>
<annotation cp="đ©đżâđ€âđ©đŸ" type="tts">á„á
áá„á
ášá°á«á«á áŽá¶áœ: ášááł áááá”-6 á„á ášááł áááá”-5</annotation>
<annotation cp="đđż">áá«á | áŽá” | á„á
| á„á
áá„á
ášá°á«á«á áŽá¶áœ | ášááł áááá”-6</annotation>
<annotation cp="đđż" type="tts">á„á
áá„á
ášá°á«á«á áŽá¶áœ: ášááł áááá”-6</annotation>
<annotation cp="đ«đ»">áŽá” | á„á
| á„á
áá„á
| á„á
áá„á
ášá°á«á«á ááá” á„á áŽá” | ááá” | ááá” á„á áŽá” | ášááł áááá”-1-2 | á„áá¶áœ</annotation>
<annotation cp="đ«đ»" type="tts">á„á
áá„á
ášá°á«á«á ááá” á„á áŽá”: ášááł áááá”-1-2</annotation>
<annotation cp="đ©đ»âđ€âđšđŒ">ááášáá áá á«á ášááł ááá | áŽá” | á„á
| á„á
áá„á
| á„á
áá„á
ášá°á«á«á ááá” á„á áŽá” | ááá” | ááá” á„á áŽá” | ášááł áááá”-1-2 | á„áá¶áœ</annotation>
<annotation cp="đ©đ»âđ€âđšđŒ" type="tts">á„á
áá„á
ášá°á«á«á ááá” á„á áŽá”: ášááł áááá”-1-2 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đ»âđ€âđšđœ">áŽá” | á„á
| á„á
áá„á
| á„á
áá„á
ášá°á«á«á ááá” á„á áŽá” | ááá” | ááá” á„á áŽá” | ášááł áááá”-1-2 | ášááł áááá”-4 | á„áá¶áœ</annotation>
<annotation cp="đ©đ»âđ€âđšđœ" type="tts">á„á
áá„á
ášá°á«á«á ááá” á„á áŽá”: ášááł áááá”-1-2 á„á ášááł áááá”-4</annotation>
<annotation cp="đ©đ»âđ€âđšđŸ">áŽá” | á„á
| á„á
áá„á
| á„á
áá„á
ášá°á«á«á ááá” á„á áŽá” | ááá” | ááá” á„á áŽá” | ášááł áááá”-1-2 | ášááł áááá”-5 | á„áá¶áœ</annotation>
<annotation cp="đ©đ»âđ€âđšđŸ" type="tts">á„á
áá„á
ášá°á«á«á ááá” á„á áŽá”: ášááł áááá”-1-2 á„á ášááł áááá”-5</annotation>
<annotation cp="đ©đ»âđ€âđšđż">áŽá” | á„á
| á„á
áá„á
| á„á
áá„á
ášá°á«á«á ááá” á„á áŽá” | ááá” | ááá” á„á áŽá” | ášááł áááá”-1-2 | ášááł áááá”-6 | á„áá¶áœ</annotation>
<annotation cp="đ©đ»âđ€âđšđż" type="tts">á„á
áá„á
ášá°á«á«á ááá” á„á áŽá”: ášááł áááá”-1-2 á„á ášááł áááá”-6</annotation>
<annotation cp="đ©đŒâđ€âđšđ»">ááášáá áá á«á ášááł ááá | áŽá” | á„á
| á„á
áá„á
| á„á
áá„á
ášá°á«á«á ááá” á„á áŽá” | ááá” | ááá” á„á áŽá” | ášááł áááá”-1-2 | á„áá¶áœ</annotation>
<annotation cp="đ©đŒâđ€âđšđ»" type="tts">á„á
áá„á
ášá°á«á«á ááá” á„á áŽá”: ááášáá áá á«á ášááł ááá á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ«đŒ">ááášáá áá á«á ášááł ááá | áŽá” | á„á
| á„á
áá„á
| á„á
áá„á
ášá°á«á«á ááá” á„á áŽá” | ááá” | ááá” á„á áŽá” | á„áá¶áœ</annotation>
<annotation cp="đ«đŒ" type="tts">á„á
áá„á
ášá°á«á«á ááá” á„á áŽá”: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đŒâđ€âđšđœ">ááášáá áá á«á ášááł ááá | áŽá” | á„á
| á„á
áá„á
| á„á
áá„á
ášá°á«á«á ááá” á„á áŽá” | ááá” | ááá” á„á áŽá” | ášááł áááá”-4 | á„áá¶áœ</annotation>
<annotation cp="đ©đŒâđ€âđšđœ" type="tts">á„á
áá„á
ášá°á«á«á ááá” á„á áŽá”: ááášáá áá á«á ášááł ááá á„á ášááł áááá”-4</annotation>
<annotation cp="đ©đŒâđ€âđšđŸ">ááášáá áá á«á ášááł ááá | áŽá” | á„á
| á„á
áá„á
| á„á
áá„á
ášá°á«á«á ááá” á„á áŽá” | ááá” | ááá” á„á áŽá” | ášááł áááá”-5 | á„áá¶áœ</annotation>
<annotation cp="đ©đŒâđ€âđšđŸ" type="tts">á„á
áá„á
ášá°á«á«á ááá” á„á áŽá”: ááášáá áá á«á ášááł ááá á„á ášááł áááá”-5</annotation>
<annotation cp="đ©đŒâđ€âđšđż">ááášáá áá á«á ášááł ááá | áŽá” | á„á
| á„á
áá„á
| á„á
áá„á
ášá°á«á«á ááá” á„á áŽá” | ááá” | ááá” á„á áŽá” | ášááł áááá”-6 | á„áá¶áœ</annotation>
<annotation cp="đ©đŒâđ€âđšđż" type="tts">á„á
áá„á
ášá°á«á«á ááá” á„á áŽá”: ááášáá áá á«á ášááł ááá á„á ášááł áááá”-6</annotation>
<annotation cp="đ©đœâđ€âđšđ»">áŽá” | á„á
| á„á
áá„á
| á„á
áá„á
ášá°á«á«á ááá” á„á áŽá” | ááá” | ááá” á„á áŽá” | ášááł áááá”-1-2 | ášááł áááá”-4 | á„áá¶áœ</annotation>
<annotation cp="đ©đœâđ€âđšđ»" type="tts">á„á
áá„á
ášá°á«á«á ááá” á„á áŽá”: ášááł áááá”-4 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ©đœâđ€âđšđŒ">ááášáá áá á«á ášááł ááá | áŽá” | á„á
| á„á
áá„á
| á„á
áá„á
ášá°á«á«á ááá” á„á áŽá” | ááá” | ááá” á„á áŽá” | ášááł áááá”-4 | á„áá¶áœ</annotation>
<annotation cp="đ©đœâđ€âđšđŒ" type="tts">á„á
áá„á
ášá°á«á«á ááá” á„á áŽá”: ášááł áááá”-4 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ«đœ">áŽá” | á„á
| á„á
áá„á
| á„á
áá„á
ášá°á«á«á ááá” á„á áŽá” | ááá” | ááá” á„á áŽá” | ášááł áááá”-4 | á„áá¶áœ</annotation>
<annotation cp="đ«đœ" type="tts">á„á
áá„á
ášá°á«á«á ááá” á„á áŽá”: ášááł áááá”-4</annotation>
<annotation cp="đ©đœâđ€âđšđŸ">áŽá” | á„á
| á„á
áá„á
| á„á
áá„á
ášá°á«á«á ááá” á„á áŽá” | ááá” | ááá” á„á áŽá” | ášááł áááá”-4 | ášááł áááá”-5 | á„áá¶áœ</annotation>
<annotation cp="đ©đœâđ€âđšđŸ" type="tts">á„á
áá„á
ášá°á«á«á ááá” á„á áŽá”: ášááł áááá”-4 á„á ášááł áááá”-5</annotation>
<annotation cp="đ©đœâđ€âđšđż">áŽá” | á„á
| á„á
áá„á
| á„á
áá„á
ášá°á«á«á ááá” á„á áŽá” | ááá” | ááá” á„á áŽá” | ášááł áááá”-4 | ášááł áááá”-6 | á„áá¶áœ</annotation>
<annotation cp="đ©đœâđ€âđšđż" type="tts">á„á
áá„á
ášá°á«á«á ááá” á„á áŽá”: ášááł áááá”-4 á„á ášááł áááá”-6</annotation>
<annotation cp="đ©đŸâđ€âđšđ»">áŽá” | á„á
| á„á
áá„á
| á„á
áá„á
ášá°á«á«á ááá” á„á áŽá” | ááá” | ááá” á„á áŽá” | ášááł áááá”-1-2 | ášááł áááá”-5 | á„áá¶áœ</annotation>
<annotation cp="đ©đŸâđ€âđšđ»" type="tts">á„á
áá„á
ášá°á«á«á ááá” á„á áŽá”: ášááł áááá”-5 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ©đŸâđ€âđšđŒ">ááášáá áá á«á ášááł ááá | áŽá” | á„á
| á„á
áá„á
| á„á
áá„á
ášá°á«á«á ááá” á„á áŽá” | ááá” | ááá” á„á áŽá” | ášááł áááá”-5 | á„áá¶áœ</annotation>
<annotation cp="đ©đŸâđ€âđšđŒ" type="tts">á„á
áá„á
ášá°á«á«á ááá” á„á áŽá”: ášááł áááá”-5 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đŸâđ€âđšđœ">áŽá” | á„á
| á„á
áá„á
| á„á
áá„á
ášá°á«á«á ááá” á„á áŽá” | ááá” | ááá” á„á áŽá” | ášááł áááá”-4 | ášááł áááá”-5 | á„áá¶áœ</annotation>
<annotation cp="đ©đŸâđ€âđšđœ" type="tts">á„á
áá„á
ášá°á«á«á ááá” á„á áŽá”: ášááł áááá”-5 á„á ášááł áááá”-4</annotation>
<annotation cp="đ«đŸ">áŽá” | á„á
| á„á
áá„á
| á„á
áá„á
ášá°á«á«á ááá” á„á áŽá” | ááá” | ááá” á„á áŽá” | ášááł áááá”-5 | á„áá¶áœ</annotation>
<annotation cp="đ«đŸ" type="tts">á„á
áá„á
ášá°á«á«á ááá” á„á áŽá”: ášááł áááá”-5</annotation>
<annotation cp="đ©đŸâđ€âđšđż">áŽá” | á„á
| á„á
áá„á
| á„á
áá„á
ášá°á«á«á ááá” á„á áŽá” | ááá” | ááá” á„á áŽá” | ášááł áááá”-5 | ášááł áááá”-6 | á„áá¶áœ</annotation>
<annotation cp="đ©đŸâđ€âđšđż" type="tts">á„á
áá„á
ášá°á«á«á ááá” á„á áŽá”: ášááł áááá”-5 á„á ášááł áááá”-6</annotation>
<annotation cp="đ©đżâđ€âđšđ»">áŽá” | á„á
| á„á
áá„á
| á„á
áá„á
ášá°á«á«á ááá” á„á áŽá” | ááá” | ááá” á„á áŽá” | ášááł áááá”-1-2 | ášááł áááá”-6 | á„áá¶áœ</annotation>
<annotation cp="đ©đżâđ€âđšđ»" type="tts">á„á
áá„á
ášá°á«á«á ááá” á„á áŽá”: ášááł áááá”-6 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đ©đżâđ€âđšđŒ">ááášáá áá á«á ášááł ááá | áŽá” | á„á
| á„á
áá„á
| á„á
áá„á
ášá°á«á«á ááá” á„á áŽá” | ááá” | ááá” á„á áŽá” | ášááł áááá”-6 | á„áá¶áœ</annotation>
<annotation cp="đ©đżâđ€âđšđŒ" type="tts">á„á
áá„á
ášá°á«á«á ááá” á„á áŽá”: ášááł áááá”-6 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đ©đżâđ€âđšđœ">áŽá” | á„á
| á„á
áá„á
| á„á
áá„á
ášá°á«á«á ááá” á„á áŽá” | ááá” | ááá” á„á áŽá” | ášááł áááá”-4 | ášááł áááá”-6 | á„áá¶áœ</annotation>
<annotation cp="đ©đżâđ€âđšđœ" type="tts">á„á
áá„á
ášá°á«á«á ááá” á„á áŽá”: ášááł áááá”-6 á„á ášááł áááá”-4</annotation>
<annotation cp="đ©đżâđ€âđšđŸ">áŽá” | á„á
| á„á
áá„á
| á„á
áá„á
ášá°á«á«á ááá” á„á áŽá” | ááá” | ááá” á„á áŽá” | ášááł áááá”-5 | ášááł áááá”-6 | á„áá¶áœ</annotation>
<annotation cp="đ©đżâđ€âđšđŸ" type="tts">á„á
áá„á
ášá°á«á«á ááá” á„á áŽá”: ášááł áááá”-6 á„á ášááł áááá”-5</annotation>
<annotation cp="đ«đż">áŽá” | á„á
| á„á
áá„á
| á„á
áá„á
ášá°á«á«á ááá” á„á áŽá” | ááá” | ááá” á„á áŽá” | ášááł áááá”-6 | á„áá¶áœ</annotation>
<annotation cp="đ«đż" type="tts">á„á
áá„á
ášá°á«á«á ááá” á„á áŽá”: ášááł áááá”-6</annotation>
<annotation cp="đŹđ»">ááźá”áźá | ááá”áźáœ | áá«á á„á
| á€áááąáČáȘá | á„á
áá„á
ášá°á«á«á á°áᜠ| á„á
áá„á
ášá°á«á«á ááá¶áœ | áá”á«á | ášááł áááá”-1-2 | ááá | á„áá¶áœ | áá«áŹ ášááá„á”</annotation>
<annotation cp="đŹđ»" type="tts">á„á
áá„á
ášá°á«á«á ááá¶áœ: ášááł áááá”-1-2</annotation>
<annotation cp="đšđ»âđ€âđšđŒ">ááźá”áźá | ááášáá áá á«á ášááł ááá | ááá”áźáœ | áá«á á„á
| á€áááąáČáȘá | á„á
áá„á
ášá°á«á«á á°áᜠ| á„á
áá„á
ášá°á«á«á ááá¶áœ | áá”á«á | ášááł áááá”-1-2 | ááá | á„áá¶áœ | áá«áŹ ášááá„á”</annotation>
<annotation cp="đšđ»âđ€âđšđŒ" type="tts">á„á
áá„á
ášá°á«á«á ááá¶áœ: ášááł áááá”-1-2 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđ»âđ€âđšđœ">ááźá”áźá | ááá”áźáœ | áá«á á„á
| á€áááąáČáȘá | á„á
áá„á
ášá°á«á«á á°áᜠ| á„á
áá„á
ášá°á«á«á ááá¶áœ | áá”á«á | ášááł áááá”-1-2 | ášááł áááá”-4 | ááá | á„áá¶áœ | áá«áŹ ášááá„á”</annotation>
<annotation cp="đšđ»âđ€âđšđœ" type="tts">á„á
áá„á
ášá°á«á«á ááá¶áœ: ášááł áááá”-1-2 á„á ášááł áááá”-4</annotation>
<annotation cp="đšđ»âđ€âđšđŸ">ááźá”áźá | ááá”áźáœ | áá«á á„á
| á€áááąáČáȘá | á„á
áá„á
ášá°á«á«á á°áᜠ| á„á
áá„á
ášá°á«á«á ááá¶áœ | áá”á«á | ášááł áááá”-1-2 | ášááł áááá”-5 | ááá | á„áá¶áœ | áá«áŹ ášááá„á”</annotation>
<annotation cp="đšđ»âđ€âđšđŸ" type="tts">á„á
áá„á
ášá°á«á«á ááá¶áœ: ášááł áááá”-1-2 á„á ášááł áááá”-5</annotation>
<annotation cp="đšđ»âđ€âđšđż">ááźá”áźá | ááá”áźáœ | áá«á á„á
| á€áááąáČáȘá | á„á
áá„á
ášá°á«á«á á°áᜠ| á„á
áá„á
ášá°á«á«á ááá¶áœ | áá”á«á | ášááł áááá”-1-2 | ášááł áááá”-6 | ááá | á„áá¶áœ | áá«áŹ ášááá„á”</annotation>
<annotation cp="đšđ»âđ€âđšđż" type="tts">á„á
áá„á
ášá°á«á«á ááá¶áœ: ášááł áááá”-1-2 á„á ášááł áááá”-6</annotation>
<annotation cp="đšđŒâđ€âđšđ»">ááźá”áźá | ááášáá áá á«á ášááł ááá | ááá”áźáœ | áá«á á„á
| á€áááąáČáȘá | á„á
áá„á
ášá°á«á«á á°áᜠ| á„á
áá„á
ášá°á«á«á ááá¶áœ | áá”á«á | ášááł áááá”-1-2 | ááá | á„áá¶áœ | áá«áŹ ášááá„á”</annotation>
<annotation cp="đšđŒâđ€âđšđ»" type="tts">á„á
áá„á
ášá°á«á«á ááá¶áœ: ááášáá áá á«á ášááł ááá á„á ášááł áááá”-1-2</annotation>
<annotation cp="đŹđŒ">ááźá”áźá | ááášáá áá á«á ášááł ááá | ááá”áźáœ | áá«á á„á
| á€áááąáČáȘá | á„á
áá„á
ášá°á«á«á á°áᜠ| á„á
áá„á
ášá°á«á«á ááá¶áœ | áá”á«á | ááá | á„áá¶áœ | áá«áŹ ášááá„á”</annotation>
<annotation cp="đŹđŒ" type="tts">á„á
áá„á
ášá°á«á«á ááá¶áœ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđŒâđ€âđšđœ">ááźá”áźá | ááášáá áá á«á ášááł ááá | ááá”áźáœ | áá«á á„á
| á€áááąáČáȘá | á„á
áá„á
ášá°á«á«á á°áᜠ| á„á
áá„á
ášá°á«á«á ááá¶áœ | áá”á«á | ášááł áááá”-4 | ááá | á„áá¶áœ | áá«áŹ ášááá„á”</annotation>
<annotation cp="đšđŒâđ€âđšđœ" type="tts">á„á
áá„á
ášá°á«á«á ááá¶áœ: ááášáá áá á«á ášááł ááá á„á ášááł áááá”-4</annotation>
<annotation cp="đšđŒâđ€âđšđŸ">ááźá”áźá | ááášáá áá á«á ášááł ááá | ááá”áźáœ | áá«á á„á
| á€áááąáČáȘá | á„á
áá„á
ášá°á«á«á á°áᜠ| á„á
áá„á
ášá°á«á«á ááá¶áœ | áá”á«á | ášááł áááá”-5 | ááá | á„áá¶áœ | áá«áŹ ášááá„á”</annotation>
<annotation cp="đšđŒâđ€âđšđŸ" type="tts">á„á
áá„á
ášá°á«á«á ááá¶áœ: ááášáá áá á«á ášááł ááá á„á ášááł áááá”-5</annotation>
<annotation cp="đšđŒâđ€âđšđż">ááźá”áźá | ááášáá áá á«á ášááł ááá | ááá”áźáœ | áá«á á„á
| á€áááąáČáȘá | á„á
áá„á
ášá°á«á«á á°áᜠ| á„á
áá„á
ášá°á«á«á ááá¶áœ | áá”á«á | ášááł áááá”-6 | ááá | á„áá¶áœ | áá«áŹ ášááá„á”</annotation>
<annotation cp="đšđŒâđ€âđšđż" type="tts">á„á
áá„á
ášá°á«á«á ááá¶áœ: ááášáá áá á«á ášááł ááá á„á ášááł áááá”-6</annotation>
<annotation cp="đšđœâđ€âđšđ»">ááźá”áźá | ááá”áźáœ | áá«á á„á
| á€áááąáČáȘá | á„á
áá„á
ášá°á«á«á á°áᜠ| á„á
áá„á
ášá°á«á«á ááá¶áœ | áá”á«á | ášááł áááá”-1-2 | ášááł áááá”-4 | ááá | á„áá¶áœ | áá«áŹ ášááá„á”</annotation>
<annotation cp="đšđœâđ€âđšđ»" type="tts">á„á
áá„á
ášá°á«á«á ááá¶áœ: ášááł áááá”-4 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đšđœâđ€âđšđŒ">ááźá”áźá | ááášáá áá á«á ášááł ááá | ááá”áźáœ | áá«á á„á
| á€áááąáČáȘá | á„á
áá„á
ášá°á«á«á á°áᜠ| á„á
áá„á
ášá°á«á«á ááá¶áœ | áá”á«á | ášááł áááá”-4 | ááá | á„áá¶áœ | áá«áŹ ášááá„á”</annotation>
<annotation cp="đšđœâđ€âđšđŒ" type="tts">á„á
áá„á
ášá°á«á«á ááá¶áœ: ášááł áááá”-4 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đŹđœ">ááźá”áźá | ááá”áźáœ | áá«á á„á
| á€áááąáČáȘá | á„á
áá„á
ášá°á«á«á á°áᜠ| á„á
áá„á
ášá°á«á«á ááá¶áœ | áá”á«á | ášááł áááá”-4 | ááá | á„áá¶áœ | áá«áŹ ášááá„á”</annotation>
<annotation cp="đŹđœ" type="tts">á„á
áá„á
ášá°á«á«á ááá¶áœ: ášááł áááá”-4</annotation>
<annotation cp="đšđœâđ€âđšđŸ">ááźá”áźá | ááá”áźáœ | áá«á á„á
| á€áááąáČáȘá | á„á
áá„á
ášá°á«á«á á°áᜠ| á„á
áá„á
ášá°á«á«á ááá¶áœ | áá”á«á | ášááł áááá”-4 | ášááł áááá”-5 | ááá | á„áá¶áœ | áá«áŹ ášááá„á”</annotation>
<annotation cp="đšđœâđ€âđšđŸ" type="tts">á„á
áá„á
ášá°á«á«á ááá¶áœ: ášááł áááá”-4 á„á ášááł áááá”-5</annotation>
<annotation cp="đšđœâđ€âđšđż">ááźá”áźá | ááá”áźáœ | áá«á á„á
| á€áááąáČáȘá | á„á
áá„á
ášá°á«á«á á°áᜠ| á„á
áá„á
ášá°á«á«á ááá¶áœ | áá”á«á | ášááł áááá”-4 | ášááł áááá”-6 | ááá | á„áá¶áœ | áá«áŹ ášááá„á”</annotation>
<annotation cp="đšđœâđ€âđšđż" type="tts">á„á
áá„á
ášá°á«á«á ááá¶áœ: ášááł áááá”-4 á„á ášááł áááá”-6</annotation>
<annotation cp="đšđŸâđ€âđšđ»">ááźá”áźá | ááá”áźáœ | áá«á á„á
| á€áááąáČáȘá | á„á
áá„á
ášá°á«á«á á°áᜠ| á„á
áá„á
ášá°á«á«á ááá¶áœ | áá”á«á | ášááł áááá”-1-2 | ášááł áááá”-5 | ááá | á„áá¶áœ | áá«áŹ ášááá„á”</annotation>
<annotation cp="đšđŸâđ€âđšđ»" type="tts">á„á
áá„á
ášá°á«á«á ááá¶áœ: ášááł áááá”-5 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đšđŸâđ€âđšđŒ">ááźá”áźá | ááášáá áá á«á ášááł ááá | ááá”áźáœ | áá«á á„á
| á€áááąáČáȘá | á„á
áá„á
ášá°á«á«á á°áᜠ| á„á
áá„á
ášá°á«á«á ááá¶áœ | áá”á«á | ášááł áááá”-5 | ááá | á„áá¶áœ | áá«áŹ ášááá„á”</annotation>
<annotation cp="đšđŸâđ€âđšđŒ" type="tts">á„á
áá„á
ášá°á«á«á ááá¶áœ: ášááł áááá”-5 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđŸâđ€âđšđœ">ááźá”áźá | ááá”áźáœ | áá«á á„á
| á€áááąáČáȘá | á„á
áá„á
ášá°á«á«á á°áᜠ| á„á
áá„á
ášá°á«á«á ááá¶áœ | áá”á«á | ášááł áááá”-4 | ášááł áááá”-5 | ááá | á„áá¶áœ | áá«áŹ ášááá„á”</annotation>
<annotation cp="đšđŸâđ€âđšđœ" type="tts">á„á
áá„á
ášá°á«á«á ááá¶áœ: ášááł áááá”-5 á„á ášááł áááá”-4</annotation>
<annotation cp="đŹđŸ">ááźá”áźá | ááá”áźáœ | áá«á á„á
| á€áááąáČáȘá | á„á
áá„á
ášá°á«á«á á°áᜠ| á„á
áá„á
ášá°á«á«á ááá¶áœ | áá”á«á | ášááł áááá”-5 | ááá | á„áá¶áœ | áá«áŹ ášááá„á”</annotation>
<annotation cp="đŹđŸ" type="tts">á„á
áá„á
ášá°á«á«á ááá¶áœ: ášááł áááá”-5</annotation>
<annotation cp="đšđŸâđ€âđšđż">ááźá”áźá | ááá”áźáœ | áá«á á„á
| á€áááąáČáȘá | á„á
áá„á
ášá°á«á«á á°áᜠ| á„á
áá„á
ášá°á«á«á ááá¶áœ | áá”á«á | ášááł áááá”-5 | ášááł áááá”-6 | ááá | á„áá¶áœ | áá«áŹ ášááá„á”</annotation>
<annotation cp="đšđŸâđ€âđšđż" type="tts">á„á
áá„á
ášá°á«á«á ááá¶áœ: ášááł áááá”-5 á„á ášááł áááá”-6</annotation>
<annotation cp="đšđżâđ€âđšđ»">ááźá”áźá | ááá”áźáœ | áá«á á„á
| á€áááąáČáȘá | á„á
áá„á
ášá°á«á«á á°áᜠ| á„á
áá„á
ášá°á«á«á ááá¶áœ | áá”á«á | ášááł áááá”-1-2 | ášááł áááá”-6 | ááá | á„áá¶áœ | áá«áŹ ášááá„á”</annotation>
<annotation cp="đšđżâđ€âđšđ»" type="tts">á„á
áá„á
ášá°á«á«á ááá¶áœ: ášááł áááá”-6 á„á ášááł áááá”-1-2</annotation>
<annotation cp="đšđżâđ€âđšđŒ">ááźá”áźá | ááášáá áá á«á ášááł ááá | ááá”áźáœ | áá«á á„á
| á€áááąáČáȘá | á„á
áá„á
ášá°á«á«á á°áᜠ| á„á
áá„á
ášá°á«á«á ááá¶áœ | áá”á«á | ášááł áááá”-6 | ááá | á„áá¶áœ | áá«áŹ ášááá„á”</annotation>
<annotation cp="đšđżâđ€âđšđŒ" type="tts">á„á
áá„á
ášá°á«á«á ááá¶áœ: ášááł áááá”-6 á„á ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đšđżâđ€âđšđœ">ááźá”áźá | ááá”áźáœ | áá«á á„á
| á€áááąáČáȘá | á„á
áá„á
ášá°á«á«á á°áᜠ| á„á
áá„á
ášá°á«á«á ááá¶áœ | áá”á«á | ášááł áááá”-4 | ášááł áááá”-6 | ááá | á„áá¶áœ | áá«áŹ ášááá„á”</annotation>
<annotation cp="đšđżâđ€âđšđœ" type="tts">á„á
áá„á
ášá°á«á«á ááá¶áœ: ášááł áááá”-6 á„á ášááł áááá”-4</annotation>
<annotation cp="đšđżâđ€âđšđŸ">ááźá”áźá | ááá”áźáœ | áá«á á„á
| á€áááąáČáȘá | á„á
áá„á
ášá°á«á«á á°áᜠ| á„á
áá„á
ášá°á«á«á ááá¶áœ | áá”á«á | ášááł áááá”-5 | ášááł áááá”-6 | ááá | á„áá¶áœ | áá«áŹ ášááá„á”</annotation>
<annotation cp="đšđżâđ€âđšđŸ" type="tts">á„á
áá„á
ášá°á«á«á ááá¶áœ: ášááł áááá”-6 á„á ášááł áááá”-5</annotation>
<annotation cp="đŹđż">ááźá”áźá | ááá”áźáœ | áá«á á„á
| á€áááąáČáȘá | á„á
áá„á
ášá°á«á«á á°áᜠ| á„á
áá„á
ášá°á«á«á ááá¶áœ | áá”á«á | ášááł áááá”-6 | ááá | á„áá¶áœ | áá«áŹ ášááá„á”</annotation>
<annotation cp="đŹđż" type="tts">á„á
áá„á
ášá°á«á«á ááá¶áœ: ášááł áááá”-6</annotation>
<annotation cp="đđ»">ááłá | ááłáłá | ášááł áááá”-1-2 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đđ»" type="tts">ááłá: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">ááášáá áá á«á ášááł ááá | ááłá | ááłáłá | á„áá¶áœ | áá
á</annotation>
<annotation cp="đđŒ" type="tts">ááłá: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">ááłá | ááłáłá | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đđœ" type="tts">ááłá: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">ááłá | ááłáłá | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đđŸ" type="tts">ááłá: ášááł áááá”-5</annotation>
<annotation cp="đđż">ááłá | ááłáłá | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đđż" type="tts">ááłá: ášááł áááá”-6</annotation>
<annotation cp="đ©ââ€âđâđš">ááłá | ááłáłá | á°á | áŽá” | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©ââ€âđâđš" type="tts">ááłá: áŽá” á„á á°á</annotation>
<annotation cp="đšââ€âđâđš">ááłá | ááłáłá | á°á | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšââ€âđâđš" type="tts">ááłá: á°á á„á á°á</annotation>
<annotation cp="đ©ââ€âđâđ©">ááłá | ááłáłá | áŽá” | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©ââ€âđâđ©" type="tts">ááłá: áŽá” á„á áŽá”</annotation>
<annotation cp="đđ»">áá„ | áá„ á áááážá á«á á„áá¶áœ | ášááł áááá”-1-2 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đđ»" type="tts">áá„ á áááážá á«á á„áá¶áœ: ášááł áááá”-1-2</annotation>
<annotation cp="đđŒ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ááášáá áá á«á ášááł ááá | á„áá¶áœ | áá
á</annotation>
<annotation cp="đđŒ" type="tts">áá„ á áááážá á«á á„áá¶áœ: ááášáá áá á«á ášááł ááá</annotation>
<annotation cp="đđœ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ášááł áááá”-4 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đđœ" type="tts">áá„ á áááážá á«á á„áá¶áœ: ášááł áááá”-4</annotation>
<annotation cp="đđŸ">áá„ | áá„ á áááážá á«á á„áá¶áœ | ášááł áááá”-5 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đđŸ" type="tts">áá„ á áááážá á«á á„áá¶áœ: ášááł áááá”-5</annotation>
<annotation cp="đđż">áá„ | áá„ á áááážá á«á á„áá¶áœ | ášááł áááá”-6 | á„áá¶áœ | áá
á</annotation>
<annotation cp="đđż" type="tts">áá„ á áááážá á«á á„áá¶áœ: ášááł áááá”-6</annotation>
<annotation cp="đ©ââ€âđš">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | áŽá” | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©ââ€âđš" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá” á„á á°á</annotation>
<annotation cp="đšââ€âđš">áá„ | áá„ á áááážá á«á á„áá¶áœ | á°á | á„áá¶áœ | áá
á</annotation>
<annotation cp="đšââ€âđš" type="tts">áá„ á áááážá á«á á„áá¶áœ: á°á á„á á°á</annotation>
<annotation cp="đ©ââ€âđ©">áá„ | áá„ á áááážá á«á á„áá¶áœ | áŽá” | á„áá¶áœ | áá
á</annotation>
<annotation cp="đ©ââ€âđ©" type="tts">áá„ á áááážá á«á á„áá¶áœ: áŽá” á„á áŽá”</annotation>
<annotation cp="đšâđ©âđŠ">áá
| á°á | áŽá” | á€á°á°á„ | á áŁá” | á„áá” | á„áá” á áŁá”á áá
| ááá” áá
</annotation>
<annotation cp="đšâđ©âđŠ" type="tts">á€á°á°á„: á°áᣠáŽá” á„á ááá” áá
</annotation>
<annotation cp="đšâđ©âđ§">áááášá” | áá
| á°á | áŽá” | á€á°á°á„ | á áŁá” | á„áá” | á„áá” á áŁá”á áá
</annotation>
<annotation cp="đšâđ©âđ§" type="tts">á€á°á°á„: á°áᣠáŽá” á„á áááášá”</annotation>
<annotation cp="đšâđ©âđ§âđŠ">áááášá” | áá
| á°á | áŽá” | á€á°á°á„ | á áŁá” | á„áá” | á„áá” á áŁá”á áá
| ááá” áá
</annotation>
<annotation cp="đšâđ©âđ§âđŠ" type="tts">á€á°á°á„: á°áᣠáŽá”ᣠáááášá” á„á ááá” áá
</annotation>
<annotation cp="đšâđ©âđŠâđŠ">áá
| á°á | áŽá” | á€á°á°á„ | á áŁá” | á„áá” | á„áá” á áŁá”á áá
| ááá” áá
</annotation>
<annotation cp="đšâđ©âđŠâđŠ" type="tts">á€á°á°á„: á°áᣠáŽá”ᣠááá” áá
á„á ááá” áá
</annotation>
<annotation cp="đšâđ©âđ§âđ§">áááášá” | áá
| á°á | áŽá” | á€á°á°á„ | á áŁá” | á„áá” | á„áá” á áŁá”á áá
</annotation>
<annotation cp="đšâđ©âđ§âđ§" type="tts">á€á°á°á„: á°áᣠáŽá”ᣠáááášá” á„á áááášá”</annotation>
<annotation cp="đšâđšâđŠ">áá
| á°á | á€á°á°á„ | á áŁá” | á„áá” | á„áá” á áŁá”á áá
| ááá” áá
</annotation>
<annotation cp="đšâđšâđŠ" type="tts">á€á°á°á„: á°áᣠá°á á„á ááá” áá
</annotation>
<annotation cp="đšâđšâđ§">áááášá” | áá
| á°á | á€á°á°á„ | á áŁá” | á„áá” | á„áá” á áŁá”á áá
</annotation>
<annotation cp="đšâđšâđ§" type="tts">á€á°á°á„: á°áᣠá°á á„á áááášá”</annotation>
<annotation cp="đšâđšâđ§âđŠ">áááášá” | áá
| á°á | á€á°á°á„ | á áŁá” | á„áá” | á„áá” á áŁá”á áá
| ááá” áá
</annotation>
<annotation cp="đšâđšâđ§âđŠ" type="tts">á€á°á°á„: á°áᣠá°áᣠáááášá” á„á ááá” áá
</annotation>
<annotation cp="đšâđšâđŠâđŠ">áá
| á°á | á€á°á°á„ | á áŁá” | á„áá” | á„áá” á áŁá”á áá
| ááá” áá
</annotation>
<annotation cp="đšâđšâđŠâđŠ" type="tts">á€á°á°á„: á°áᣠá°áᣠááá” áá
á„á ááá” áá
</annotation>
<annotation cp="đšâđšâđ§âđ§">áááášá” | áá
| á°á | á€á°á°á„ | á áŁá” | á„áá” | á„áá” á áŁá”á áá
</annotation>
<annotation cp="đšâđšâđ§âđ§" type="tts">á€á°á°á„: á°áᣠá°áᣠáááášá” á„á áááášá”</annotation>
<annotation cp="đ©âđ©âđŠ">áá
| áŽá” | á€á°á°á„ | á áŁá” | á„áá” | á„áá” á áŁá”á áá
| ááá” áá
</annotation>
<annotation cp="đ©âđ©âđŠ" type="tts">á€á°á°á„: áŽá”ᣠáŽá” á„á ááá” áá
</annotation>
<annotation cp="đ©âđ©âđ§">áááášá” | áá
| áŽá” | á€á°á°á„ | á áŁá” | á„áá” | á„áá” á áŁá”á áá
</annotation>
<annotation cp="đ©âđ©âđ§" type="tts">á€á°á°á„: áŽá”ᣠáŽá” á„á áááášá”</annotation>
<annotation cp="đ©âđ©âđ§âđŠ">áááášá” | áá
| áŽá” | á€á°á°á„ | á áŁá” | á„áá” | á„áá” á áŁá”á áá
| ááá” áá
</annotation>
<annotation cp="đ©âđ©âđ§âđŠ" type="tts">á€á°á°á„: áŽá”ᣠáŽá”ᣠáááášá” á„á ááá” áá
</annotation>
<annotation cp="đ©âđ©âđŠâđŠ">áá
| áŽá” | á€á°á°á„ | á áŁá” | á„áá” | á„áá” á áŁá”á áá
| ááá” áá
</annotation>
<annotation cp="đ©âđ©âđŠâđŠ" type="tts">á€á°á°á„: áŽá”ᣠáŽá”ᣠááá” áá
á„á ááá” áá
</annotation>
<annotation cp="đ©âđ©âđ§âđ§">áááášá” | áá
| áŽá” | á€á°á°á„ | á áŁá” | á„áá” | á„áá” á áŁá”á áá
</annotation>
<annotation cp="đ©âđ©âđ§âđ§" type="tts">á€á°á°á„: áŽá”ᣠáŽá”ᣠáááášá” á„á áááášá”</annotation>
<annotation cp="đšâđŠ">áá
| á°á | á€á°á°á„ | á áŁá” | á„áá” | á„áá” á áŁá”á áá
| ááá” áá
</annotation>
<annotation cp="đšâđŠ" type="tts">á€á°á°á„: á°á á„á ááá” áá
</annotation>
<annotation cp="đšâđŠâđŠ">áá
| á°á | á€á°á°á„ | á áŁá” | á„áá” | á„áá” á áŁá”á áá
| ááá” áá
</annotation>
<annotation cp="đšâđŠâđŠ" type="tts">á€á°á°á„: á°áᣠááá” áá
á„á ááá” áá
</annotation>
<annotation cp="đšâđ§">áááášá” | áá
| á°á | á€á°á°á„ | á áŁá” | á„áá” | á„áá” á áŁá”á áá
</annotation>
<annotation cp="đšâđ§" type="tts">á€á°á°á„: á°á á„á áááášá”</annotation>
<annotation cp="đšâđ§âđŠ">áááášá” | áá
| á°á | á€á°á°á„ | á áŁá” | á„áá” | á„áá” á áŁá”á áá
| ááá” áá
</annotation>
<annotation cp="đšâđ§âđŠ" type="tts">á€á°á°á„: á°áᣠáááášá” á„á ááá” áá
</annotation>
<annotation cp="đšâđ§âđ§">áááášá” | áá
| á°á | á€á°á°á„ | á áŁá” | á„áá” | á„áá” á áŁá”á áá
</annotation>
<annotation cp="đšâđ§âđ§" type="tts">á€á°á°á„: á°áᣠáááášá” á„á áááášá”</annotation>
<annotation cp="đ©âđŠ">áá
| áŽá” | á€á°á°á„ | á áŁá” | á„áá” | á„áá” á áŁá”á áá
| ááá” áá
</annotation>
<annotation cp="đ©âđŠ" type="tts">á€á°á°á„: áŽá” á„á ááá” áá
</annotation>
<annotation cp="đ©âđŠâđŠ">áá
| áŽá” | á€á°á°á„ | á áŁá” | á„áá” | á„áá” á áŁá”á áá
| ááá” áá
</annotation>
<annotation cp="đ©âđŠâđŠ" type="tts">á€á°á°á„: áŽá”ᣠááá” áá
á„á ááá” áá
</annotation>
<annotation cp="đ©âđ§">áááášá” | áá
| áŽá” | á€á°á°á„ | á áŁá” | á„áá” | á„áá” á áŁá”á áá
</annotation>
<annotation cp="đ©âđ§" type="tts">á€á°á°á„: áŽá” á„á áááášá”</annotation>
<annotation cp="đ©âđ§âđŠ">áááášá” | áá
| áŽá” | á€á°á°á„ | á áŁá” | á„áá” | á„áá” á áŁá”á áá
| ááá” áá
</annotation>
<annotation cp="đ©âđ§âđŠ" type="tts">á€á°á°á„: áŽá”ᣠáááášá” á„á ááá” áá
</annotation>
<annotation cp="đ©âđ§âđ§">áááášá” | áá
| áŽá” | á€á°á°á„ | á áŁá” | á„áá” | á„áá” á áŁá”á áá
</annotation>
<annotation cp="đ©âđ§âđ§" type="tts">á€á°á°á„: áŽá”ᣠáááášá” á„á áááášá”</annotation>
<annotation cp="#âŁ">ášá á„á áá ááá áá„áȘá«</annotation>
<annotation cp="#âŁ" type="tts">ášá á„á áá ááá áá„áȘá«: #</annotation>
<annotation cp="*âŁ">ášá á„á áá ááá áá„áȘá«</annotation>
<annotation cp="*âŁ" type="tts">ášá á„á áá ááá áá„áȘá«: *</annotation>
<annotation cp="đ">ášá á„á áá ááá áá„áȘá«</annotation>
<annotation cp="đ" type="tts">ášá á„á áá ááá áá„áȘá«: 10</annotation>
<annotation cp="đŠđš">áŁááČá«</annotation>
<annotation cp="đŠđš" type="tts">áŁááČá«: á áŽááœá á°áŽá”</annotation>
<annotation cp="đŠđ©">áŁááČá«</annotation>
<annotation cp="đŠđ©" type="tts">áŁááČá«: á áá¶á«</annotation>
<annotation cp="đŠđȘ">áŁááČá«</annotation>
<annotation cp="đŠđȘ" type="tts">áŁááČá«: ášá°áŁá á©á” áášá„ á€ááŹá”á”</annotation>
<annotation cp="đŠđ«">áŁááČá«</annotation>
<annotation cp="đŠđ«" type="tts">áŁááČá«: á áááá”áłá</annotation>
<annotation cp="đŠđŹ">áŁááČá«</annotation>
<annotation cp="đŠđŹ" type="tts">áŁááČá«: á ááČá á„á áŁááĄáł</annotation>
<annotation cp="đŠđź">áŁááČá«</annotation>
<annotation cp="đŠđź" type="tts">áŁááČá«: á áááá</annotation>
<annotation cp="đŠđ±">áŁááČá«</annotation>
<annotation cp="đŠđ±" type="tts">áŁááČá«: á ááŁáá«</annotation>
<annotation cp="đŠđČ">áŁááČá«</annotation>
<annotation cp="đŠđČ" type="tts">áŁááČá«: á áááá«</annotation>
<annotation cp="đŠđŽ">áŁááČá«</annotation>
<annotation cp="đŠđŽ" type="tts">áŁááČá«: á ááá</annotation>
<annotation cp="đŠđ¶">áŁááČá«</annotation>
<annotation cp="đŠđ¶" type="tts">áŁááČá«: á ááłáááČá«</annotation>
<annotation cp="đŠđ·">áŁááČá«</annotation>
<annotation cp="đŠđ·" type="tts">áŁááČá«: á ááááČá</annotation>
<annotation cp="đŠđž">áŁááČá«</annotation>
<annotation cp="đŠđž" type="tts">áŁááČá«: ášá ááȘá« áłáá </annotation>
<annotation cp="đŠđč">áŁááČá«</annotation>
<annotation cp="đŠđč" type="tts">áŁááČá«: áŠá”á”áȘá«</annotation>
<annotation cp="đŠđș">áŁááČá«</annotation>
<annotation cp="đŠđș" type="tts">áŁááČá«: á áá”á”á«áá«</annotation>
<annotation cp="đŠđŒ">áŁááČá«</annotation>
<annotation cp="đŠđŒ" type="tts">áŁááČá«: á á©áŁ</annotation>
<annotation cp="đŠđœ">áŁááČá«</annotation>
<annotation cp="đŠđœ" type="tts">áŁááČá«: ášá ááá” á°áŽá¶áœ</annotation>
<annotation cp="đŠđż">áŁááČá«</annotation>
<annotation cp="đŠđż" type="tts">áŁááČá«: á áááŁáá</annotation>
<annotation cp="đ§đŠ">áŁááČá«</annotation>
<annotation cp="đ§đŠ" type="tts">áŁááČá«: áŠá”áá« á„á áááááȘáá«</annotation>
<annotation cp="đ§đ§">áŁááČá«</annotation>
<annotation cp="đ§đ§" type="tts">áŁááČá«: áŁáá€á¶á”</annotation>
<annotation cp="đ§đ©">áŁááČá«</annotation>
<annotation cp="đ§đ©" type="tts">áŁááČá«: áŁááááČáœ</annotation>
<annotation cp="đ§đȘ">áŁááČá«</annotation>
<annotation cp="đ§đȘ" type="tts">áŁááČá«: á€ááá</annotation>
<annotation cp="đ§đ«">áŁááČá«</annotation>
<annotation cp="đ§đ«" type="tts">áŁááČá«: áĄááȘá áá¶</annotation>
<annotation cp="đ§đŹ">áŁááČá«</annotation>
<annotation cp="đ§đŹ" type="tts">áŁááČá«: áĄáááȘá«</annotation>
<annotation cp="đ§đ">áŁááČá«</annotation>
<annotation cp="đ§đ" type="tts">áŁááČá«: áŁá
áŹá</annotation>
<annotation cp="đ§đź">áŁááČá«</annotation>
<annotation cp="đ§đź" type="tts">áŁááČá«: á„á©ááČ</annotation>
<annotation cp="đ§đŻ">áŁááČá«</annotation>
<annotation cp="đ§đŻ" type="tts">áŁááČá«: á€áá</annotation>
<annotation cp="đ§đ±">áŁááČá«</annotation>
<annotation cp="đ§đ±" type="tts">áŁááČá«: áŽáá” áŁááŽáá</annotation>
<annotation cp="đ§đČ">áŁááČá«</annotation>
<annotation cp="đ§đČ" type="tts">áŁááČá«: á€áááł</annotation>
<annotation cp="đ§đł">áŁááČá«</annotation>
<annotation cp="đ§đł" type="tts">áŁááČá«: á„á©á</annotation>
<annotation cp="đ§đŽ">áŁááČá«</annotation>
<annotation cp="đ§đŽ" type="tts">áŁááČá«: áŠááȘá«</annotation>
<annotation cp="đ§đ¶">áŁááČá«</annotation>
<annotation cp="đ§đ¶" type="tts">áŁááČá«: ášá«áȘáąá«á áááááá”á”</annotation>
<annotation cp="đ§đ·">áŁááČá«</annotation>
<annotation cp="đ§đ·" type="tts">áŁááČá«: á„á«áá</annotation>
<annotation cp="đ§đž">áŁááČá«</annotation>
<annotation cp="đ§đž" type="tts">áŁááČá«: áŁááá”</annotation>
<annotation cp="đ§đč">áŁááČá«</annotation>
<annotation cp="đ§đč" type="tts">áŁááČá«: áĄá
áłá</annotation>
<annotation cp="đ§đ»">áŁááČá«</annotation>
<annotation cp="đ§đ»" type="tts">áŁááČá«: áĄáŹá” á°áŽá”</annotation>
<annotation cp="đ§đŒ">áŁááČá«</annotation>
<annotation cp="đ§đŒ" type="tts">áŁááČá«: áŠá”á”áá</annotation>
<annotation cp="đ§đŸ">áŁááČá«</annotation>
<annotation cp="đ§đŸ" type="tts">áŁááČá«: á€áá©á”</annotation>
<annotation cp="đ§đż">áŁááČá«</annotation>
<annotation cp="đ§đż" type="tts">áŁááČá«: á áá</annotation>
<annotation cp="đšđŠ">áŁááČá«</annotation>
<annotation cp="đšđŠ" type="tts">áŁááČá«: á«ááł</annotation>
<annotation cp="đšđš">áŁááČá«</annotation>
<annotation cp="đšđš" type="tts">áŁááČá«: áźáźá”(áŹááá) á°áŽá¶áœ</annotation>
<annotation cp="đšđ©">áŁááČá«</annotation>
<annotation cp="đšđ©" type="tts">áŁááČá«: áźáá-áȘáá»áł</annotation>
<annotation cp="đšđ«">áŁááČá«</annotation>
<annotation cp="đšđ«" type="tts">áŁááČá«: ááášáá á ááȘá« áȘáá„áá</annotation>
<annotation cp="đšđŹ">áŁááČá«</annotation>
<annotation cp="đšđŹ" type="tts">áŁááČá«: áźáá á„á«ááȘá</annotation>
<annotation cp="đšđ">áŁááČá«</annotation>
<annotation cp="đšđ" type="tts">áŁááČá«: á”áááááá”</annotation>
<annotation cp="đšđź">áŁááČá«</annotation>
<annotation cp="đšđź" type="tts">áŁááČá«: áźá”áČáŻá</annotation>
<annotation cp="đšđ°">áŁááČá«</annotation>
<annotation cp="đšđ°" type="tts">áŁááČá«: á©á á°áŽá¶áœ</annotation>
<annotation cp="đšđ±">áŁááČá«</annotation>
<annotation cp="đšđ±" type="tts">áŁááČá«: áșá</annotation>
<annotation cp="đšđČ">áŁááČá«</annotation>
<annotation cp="đšđČ" type="tts">áŁááČá«: á«áá©á</annotation>
<annotation cp="đšđł">áŁááČá«</annotation>
<annotation cp="đšđł" type="tts">áŁááČá«: á»áá</annotation>
<annotation cp="đšđŽ">áŁááČá«</annotation>
<annotation cp="đšđŽ" type="tts">áŁááČá«: áźáááąá«</annotation>
<annotation cp="đšđ”">áŁááČá«</annotation>
<annotation cp="đšđ”" type="tts">áŁááČá«: ááááá¶á á°áŽá”</annotation>
<annotation cp="đšđ·">áŁááČá«</annotation>
<annotation cp="đšđ·" type="tts">áŁááČá«: áźá”áłáȘá«</annotation>
<annotation cp="đšđș">áŁááČá«</annotation>
<annotation cp="đšđș" type="tts">áŁááČá«: á©áŁ</annotation>
<annotation cp="đšđ»">áŁááČá«</annotation>
<annotation cp="đšđ»" type="tts">áŁááČá«: áŹáášááŽ</annotation>
<annotation cp="đšđŒ">áŁááČá«</annotation>
<annotation cp="đšđŒ" type="tts">áŁááČá«: á©á«áłá</annotation>
<annotation cp="đšđœ">áŁááČá«</annotation>
<annotation cp="đšđœ" type="tts">áŁááČá«: ááȘá”áá” á°áŽá”</annotation>
<annotation cp="đšđŸ">áŁááČá«</annotation>
<annotation cp="đšđŸ" type="tts">áŁááČá«: áłááášá”</annotation>
<annotation cp="đšđż">áŁááČá«</annotation>
<annotation cp="đšđż" type="tts">áŁááČá«: áŒáșá«</annotation>
<annotation cp="đ©đȘ">áŁááČá«</annotation>
<annotation cp="đ©đȘ" type="tts">áŁááČá«: áááá</annotation>
<annotation cp="đ©đŹ">áŁááČá«</annotation>
<annotation cp="đ©đŹ" type="tts">áŁááČá«: áČáŹá áááČá«</annotation>
<annotation cp="đ©đŻ">áŁááČá«</annotation>
<annotation cp="đ©đŻ" type="tts">áŁááČá«: ááĄáČ</annotation>
<annotation cp="đ©đ°">áŁááČá«</annotation>
<annotation cp="đ©đ°" type="tts">áŁááČá«: áŽáááá</annotation>
<annotation cp="đ©đČ">áŁááČá«</annotation>
<annotation cp="đ©đČ" type="tts">áŁááČá«: á¶ááá«</annotation>
<annotation cp="đ©đŽ">áŁááČá«</annotation>
<annotation cp="đ©đŽ" type="tts">áŁááČá«: á¶ááá«á áȘáá„áá</annotation>
<annotation cp="đ©đż">áŁááČá«</annotation>
<annotation cp="đ©đż" type="tts">áŁááČá«: á áááȘá«</annotation>
<annotation cp="đȘđŠ">áŁááČá«</annotation>
<annotation cp="đȘđŠ" type="tts">áŁááČá«: áŽáĄáłá ááá</annotation>
<annotation cp="đȘđš">áŁááČá«</annotation>
<annotation cp="đȘđš" type="tts">áŁááČá«: áąáłá¶á</annotation>
<annotation cp="đȘđȘ">áŁááČá«</annotation>
<annotation cp="đȘđȘ" type="tts">áŁááČá«: á€á”á¶áá«</annotation>
<annotation cp="đȘđŹ">áŁááČá«</annotation>
<annotation cp="đȘđŹ" type="tts">áŁááČá«: áá„áœ</annotation>
<annotation cp="đȘđ">áŁááČá«</annotation>
<annotation cp="đȘđ" type="tts">áŁááČá«: ááá«áŁá áłá
á«</annotation>
<annotation cp="đȘđ·">áŁááČá«</annotation>
<annotation cp="đȘđ·" type="tts">áŁááČá«: á€áá”á«</annotation>
<annotation cp="đȘđž">áŁááČá«</annotation>
<annotation cp="đȘđž" type="tts">áŁááČá«: á”áá</annotation>
<annotation cp="đȘđč">áŁááČá«</annotation>
<annotation cp="đȘđč" type="tts">áŁááČá«: áąá”áźá”á«</annotation>
<annotation cp="đȘđș">áŁááČá«</annotation>
<annotation cp="đȘđș" type="tts">áŁááČá«: ášá ááźá á
á„ášá”</annotation>
<annotation cp="đ«đź">áŁááČá«</annotation>
<annotation cp="đ«đź" type="tts">áŁááČá«: ááááá”</annotation>
<annotation cp="đ«đŻ">áŁááČá«</annotation>
<annotation cp="đ«đŻ" type="tts">áŁááČá«: áá</annotation>
<annotation cp="đ«đ°">áŁááČá«</annotation>
<annotation cp="đ«đ°" type="tts">áŁááČá«: ášááááá” á°áŽá¶áœ</annotation>
<annotation cp="đ«đČ">áŁááČá«</annotation>
<annotation cp="đ«đČ" type="tts">áŁááČá«: ááááźááąá«</annotation>
<annotation cp="đ«đŽ">áŁááČá«</annotation>
<annotation cp="đ«đŽ" type="tts">áŁááČá«: ášááź á°áŽá¶áœ</annotation>
<annotation cp="đ«đ·">áŁááČá«</annotation>
<annotation cp="đ«đ·" type="tts">áŁááČá«: áášááłá</annotation>
<annotation cp="đŹđŠ">áŁááČá«</annotation>
<annotation cp="đŹđŠ" type="tts">áŁááČá«: ááŠá</annotation>
<annotation cp="đŹđ§">áŁááČá«</annotation>
<annotation cp="đŹđ§" type="tts">áŁááČá«: á©ááá”á” áȘááá°á</annotation>
<annotation cp="đŹđ©">áŁááČá«</annotation>
<annotation cp="đŹđ©" type="tts">áŁááČá«: ááŹááł</annotation>
<annotation cp="đŹđȘ">áŁááČá«</annotation>
<annotation cp="đŹđȘ" type="tts">áŁááČá«: áááá«</annotation>
<annotation cp="đŹđ«">áŁááČá«</annotation>
<annotation cp="đŹđ«" type="tts">áŁááČá«: ášáášááłá ááá á</annotation>
<annotation cp="đŹđŹ">áŁááČá«</annotation>
<annotation cp="đŹđŹ" type="tts">áŁááČá«: ááááČ</annotation>
<annotation cp="đŹđ">áŁááČá«</annotation>
<annotation cp="đŹđ" type="tts">áŁááČá«: áá</annotation>
<annotation cp="đŹđź">áŁááČá«</annotation>
<annotation cp="đŹđź" type="tts">áŁááČá«: áá„á«áá°á</annotation>
<annotation cp="đŹđ±">áŁááČá«</annotation>
<annotation cp="đŹđ±" type="tts">áŁááČá«: ááȘáááá”</annotation>
<annotation cp="đŹđČ">áŁááČá«</annotation>
<annotation cp="đŹđČ" type="tts">áŁááČá«: áááąá«</annotation>
<annotation cp="đŹđł">áŁááČá«</annotation>
<annotation cp="đŹđł" type="tts">áŁááČá«: áá</annotation>
<annotation cp="đŹđ”">áŁááČá«</annotation>
<annotation cp="đŹđ”" type="tts">áŁááČá«: ááá°áá</annotation>
<annotation cp="đŹđ¶">áŁááČá«</annotation>
<annotation cp="đŹđ¶" type="tts">áŁááČá«: áąáłá¶áȘá«á áá</annotation>
<annotation cp="đŹđ·">áŁááČá«</annotation>
<annotation cp="đŹđ·" type="tts">áŁááČá«: ááȘá</annotation>
<annotation cp="đŹđž">áŁááČá«</annotation>
<annotation cp="đŹđž" type="tts">áŁááČá«: á°áĄá„ áááá« á„á ášá°áĄá„ áłáá”áᜠá°áŽá¶áœ</annotation>
<annotation cp="đŹđč">áŁááČá«</annotation>
<annotation cp="đŹđč" type="tts">áŁááČá«: áááČáá</annotation>
<annotation cp="đŹđș">áŁááČá«</annotation>
<annotation cp="đŹđș" type="tts">áŁááČá«: ááá</annotation>
<annotation cp="đŹđŒ">áŁááČá«</annotation>
<annotation cp="đŹđŒ" type="tts">áŁááČá«: áá-áąáłá</annotation>
<annotation cp="đŹđŸ">áŁááČá«</annotation>
<annotation cp="đŹđŸ" type="tts">áŁááČá«: áá«á</annotation>
<annotation cp="đđ°">áŁááČá«</annotation>
<annotation cp="đđ°" type="tts">áŁááČá«: ááá áźáá áá© ášá á”á°áłá°á ááá á»áá</annotation>
<annotation cp="đđČ">áŁááČá«</annotation>
<annotation cp="đđČ" type="tts">áŁááČá«: áœáá” áŁá ááá¶ááá” á°áŽá¶áœ</annotation>
<annotation cp="đđł">áŁááČá«</annotation>
<annotation cp="đđł" type="tts">áŁááČá«: ááá±á«á”</annotation>
<annotation cp="đđ·">áŁááČá«</annotation>
<annotation cp="đđ·" type="tts">áŁááČá«: ááźá€áœá«</annotation>
<annotation cp="đđč">áŁááČá«</annotation>
<annotation cp="đđč" type="tts">áŁááČá«: áááČ</annotation>
<annotation cp="đđș">áŁááČá«</annotation>
<annotation cp="đđș" type="tts">áŁááČá«: ááááȘ</annotation>
<annotation cp="đźđš">áŁááČá«</annotation>
<annotation cp="đźđš" type="tts">áŁááČá«: ášá«ááȘ á°áŽá¶áœ</annotation>
<annotation cp="đźđ©">áŁááČá«</annotation>
<annotation cp="đźđ©" type="tts">áŁááČá«: áąáá¶ááąá«</annotation>
<annotation cp="đźđȘ">áŁááČá«</annotation>
<annotation cp="đźđȘ" type="tts">áŁááČá«: á ášáááá”</annotation>
<annotation cp="đźđ±">áŁááČá«</annotation>
<annotation cp="đźđ±" type="tts">áŁááČá«: á„á”á«á€á</annotation>
<annotation cp="đźđČ">áŁááČá«</annotation>
<annotation cp="đźđČ" type="tts">áŁááČá«: á áá áŠá áá</annotation>
<annotation cp="đźđł">áŁááČá«</annotation>
<annotation cp="đźđł" type="tts">áŁááČá«: á
áá”</annotation>
<annotation cp="đźđŽ">áŁááČá«</annotation>
<annotation cp="đźđŽ" type="tts">áŁááČá«: ášá„áȘáłáá« á
áá” ááá«áá” ááá”</annotation>
<annotation cp="đźđ¶">áŁááČá«</annotation>
<annotation cp="đźđ¶" type="tts">áŁááČá«: áąá«á
</annotation>
<annotation cp="đźđ·">áŁááČá«</annotation>
<annotation cp="đźđ·" type="tts">áŁááČá«: áąá«á</annotation>
<annotation cp="đźđž">áŁááČá«</annotation>
<annotation cp="đźđž" type="tts">áŁááČá«: á áá”ááá”</annotation>
<annotation cp="đźđč">áŁááČá«</annotation>
<annotation cp="đźđč" type="tts">áŁááČá«: áŁáá«á</annotation>
<annotation cp="đŻđȘ">áŁááČá«</annotation>
<annotation cp="đŻđȘ" type="tts">áŁááČá«: ááá</annotation>
<annotation cp="đŻđČ">áŁááČá«</annotation>
<annotation cp="đŻđČ" type="tts">áŁááČá«: áááá«</annotation>
<annotation cp="đŻđŽ">áŁááČá«</annotation>
<annotation cp="đŻđŽ" type="tts">áŁááČá«: áááłá</annotation>
<annotation cp="đŻđ”">áŁááČá«</annotation>
<annotation cp="đŻđ”" type="tts">áŁááČá«: ááá</annotation>
<annotation cp="đ°đȘ">áŁááČá«</annotation>
<annotation cp="đ°đȘ" type="tts">áŁááČá«: áŹáá«</annotation>
<annotation cp="đ°đŹ">áŁááČá«</annotation>
<annotation cp="đ°đŹ" type="tts">áŁááČá«: áȘááá”áłá</annotation>
<annotation cp="đ°đ">áŁááČá«</annotation>
<annotation cp="đ°đ" type="tts">áŁááČá«: á«ááŠáČá«</annotation>
<annotation cp="đ°đź">áŁááČá«</annotation>
<annotation cp="đ°đź" type="tts">áŁááČá«: áȘáȘáŁáČ</annotation>
<annotation cp="đ°đČ">áŁááČá«</annotation>
<annotation cp="đ°đČ" type="tts">áŁááČá«: áźááźá”</annotation>
<annotation cp="đ°đł">áŁááČá«</annotation>
<annotation cp="đ°đł" type="tts">áŁááČá«: á
á±á” áȘá”á” á„á ááȘá”</annotation>
<annotation cp="đ°đ”">áŁááČá«</annotation>
<annotation cp="đ°đ”" type="tts">áŁááČá«: á°áá áźáȘá«</annotation>
<annotation cp="đ°đ·">áŁááČá«</annotation>
<annotation cp="đ°đ·" type="tts">áŁááČá«: á°áĄá„ áźáȘá«</annotation>
<annotation cp="đ°đŒ">áŁááČá«</annotation>
<annotation cp="đ°đŒ" type="tts">áŁááČá«: á©áá”</annotation>
<annotation cp="đ°đŸ">áŁááČá«</annotation>
<annotation cp="đ°đŸ" type="tts">áŁááČá«: á«ááá á°áŽá¶áœ</annotation>
<annotation cp="đ°đż">áŁááČá«</annotation>
<annotation cp="đ°đż" type="tts">áŁááČá«: á«ááȘá”áłá</annotation>
<annotation cp="đ±đŠ">áŁááČá«</annotation>
<annotation cp="đ±đŠ" type="tts">áŁááČá«: ááŠá”</annotation>
<annotation cp="đ±đ§">áŁááČá«</annotation>
<annotation cp="đ±đ§" type="tts">áŁááČá«: ááŁáá”</annotation>
<annotation cp="đ±đš">áŁááČá«</annotation>
<annotation cp="đ±đš" type="tts">áŁááČá«: áŽáá” ááșá«</annotation>
<annotation cp="đ±đź">áŁááČá«</annotation>
<annotation cp="đ±đź" type="tts">áŁááČá«: ááœá°áá”áłáá</annotation>
<annotation cp="đ±đ°">áŁááČá«</annotation>
<annotation cp="đ±đ°" type="tts">áŁááČá«: áČáȘááá«</annotation>
<annotation cp="đ±đ·">áŁááČá«</annotation>
<annotation cp="đ±đ·" type="tts">áŁááČá«: ááá€áȘá«</annotation>
<annotation cp="đ±đž">áŁááČá«</annotation>
<annotation cp="đ±đž" type="tts">áŁááČá«: áá¶á¶</annotation>
<annotation cp="đ±đč">áŁááČá«</annotation>
<annotation cp="đ±đč" type="tts">áŁááČá«: áá±ááá«</annotation>
<annotation cp="đ±đș">áŁááČá«</annotation>
<annotation cp="đ±đș" type="tts">áŁááČá«: ááá°áá áá</annotation>
<annotation cp="đ±đ»">áŁááČá«</annotation>
<annotation cp="đ±đ»" type="tts">áŁááČá«: áá”áȘá«</annotation>
<annotation cp="đ±đŸ">áŁááČá«</annotation>
<annotation cp="đ±đŸ" type="tts">áŁááČá«: ááąá«</annotation>
<annotation cp="đČđŠ">áŁááČá«</annotation>
<annotation cp="đČđŠ" type="tts">áŁááČá«: ááźáź</annotation>
<annotation cp="đČđš">áŁááČá«</annotation>
<annotation cp="đČđš" type="tts">áŁááČá«: áááź</annotation>
<annotation cp="đČđ©">áŁááČá«</annotation>
<annotation cp="đČđ©" type="tts">áŁááČá«: ááá¶á«</annotation>
<annotation cp="đČđȘ">áŁááČá«</annotation>
<annotation cp="đČđȘ" type="tts">áŁááČá«: ááá°áááź</annotation>
<annotation cp="đČđ«">áŁááČá«</annotation>
<annotation cp="đČđ«" type="tts">áŁááČá«: áŽáá” áááČá</annotation>
<annotation cp="đČđŹ">áŁááČá«</annotation>
<annotation cp="đČđŹ" type="tts">áŁááČá«: ááłáá”á«á</annotation>
<annotation cp="đČđ">áŁááČá«</annotation>
<annotation cp="đČđ" type="tts">áŁááČá«: ááá»á á°áŽá¶áœ</annotation>
<annotation cp="đČđ°">áŁááČá«</annotation>
<annotation cp="đČđ°" type="tts">áŁááČá«: á°áá ááá¶áá«</annotation>
<annotation cp="đČđ±">áŁááČá«</annotation>
<annotation cp="đČđ±" type="tts">áŁááČá«: áá</annotation>
<annotation cp="đČđČ">áŁááČá«</annotation>
<annotation cp="đČđČ" type="tts">áŁááČá«: ááááá(á áá)</annotation>
<annotation cp="đČđł">áŁááČá«</annotation>
<annotation cp="đČđł" type="tts">áŁááČá«: ááááá«</annotation>
<annotation cp="đČđŽ">áŁááČá«</annotation>
<annotation cp="đČđŽ" type="tts">áŁááČá«: áá«áŠ áá© ášá á”á°áłá°á ááá á»áá</annotation>
<annotation cp="đČđ”">áŁááČá«</annotation>
<annotation cp="đČđ”" type="tts">áŁááČá«: ášá°ááá ááȘá«á á°áŽá¶áœ</annotation>
<annotation cp="đČđ¶">áŁááČá«</annotation>
<annotation cp="đČđ¶" type="tts">áŁááČá«: áááČáá</annotation>
<annotation cp="đČđ·">áŁááČá«</annotation>
<annotation cp="đČđ·" type="tts">áŁááČá«: ááȘáŽáá«</annotation>
<annotation cp="đČđž">áŁááČá«</annotation>
<annotation cp="đČđž" type="tts">áŁááČá«: ááá”áŽá«á”</annotation>
<annotation cp="đČđč">áŁááČá«</annotation>
<annotation cp="đČđč" type="tts">áŁááČá«: áááł</annotation>
<annotation cp="đČđș">áŁááČá«</annotation>
<annotation cp="đČđș" type="tts">áŁááČá«: ááȘážá”</annotation>
<annotation cp="đČđ»">áŁááČá«</annotation>
<annotation cp="đČđ»" type="tts">áŁááČá«: áááČáá”</annotation>
<annotation cp="đČđŒ">áŁááČá«</annotation>
<annotation cp="đČđŒ" type="tts">áŁááČá«: ááá</annotation>
<annotation cp="đČđœ">áŁááČá«</annotation>
<annotation cp="đČđœ" type="tts">áŁááČá«: áááČáź</annotation>
<annotation cp="đČđŸ">áŁááČá«</annotation>
<annotation cp="đČđŸ" type="tts">áŁááČá«: áááąá«</annotation>
<annotation cp="đČđż">áŁááČá«</annotation>
<annotation cp="đČđż" type="tts">áŁááČá«: ááááąá</annotation>
<annotation cp="đłđŠ">áŁááČá«</annotation>
<annotation cp="đłđŠ" type="tts">áŁááČá«: áááąá«</annotation>
<annotation cp="đłđš">áŁááČá«</annotation>
<annotation cp="đłđš" type="tts">áŁááČá«: áá á«áá¶áá«</annotation>
<annotation cp="đłđȘ">áŁááČá«</annotation>
<annotation cp="đłđȘ" type="tts">áŁááČá«: ááá</annotation>
<annotation cp="đłđ«">áŁááČá«</annotation>
<annotation cp="đłđ«" type="tts">áŁááČá«: ááááá á°áŽá”</annotation>
<annotation cp="đłđŹ">áŁááČá«</annotation>
<annotation cp="đłđŹ" type="tts">áŁááČá«: ááááȘá«</annotation>
<annotation cp="đłđź">áŁááČá«</annotation>
<annotation cp="đłđź" type="tts">áŁááČá«: áá«á«á</annotation>
<annotation cp="đłđ±">áŁááČá«</annotation>
<annotation cp="đłđ±" type="tts">áŁááČá«: áááááá”</annotation>
<annotation cp="đłđŽ">áŁááČá«</annotation>
<annotation cp="đłđŽ" type="tts">áŁááČá«: áááá</annotation>
<annotation cp="đłđ”">áŁááČá«</annotation>
<annotation cp="đłđ”" type="tts">áŁááČá«: ááá</annotation>
<annotation cp="đłđ·">áŁááČá«</annotation>
<annotation cp="đłđ·" type="tts">áŁááČá«: ááĄá©</annotation>
<annotation cp="đłđș">áŁááČá«</annotation>
<annotation cp="đłđș" type="tts">áŁááČá«: áá</annotation>
<annotation cp="đłđż">áŁááČá«</annotation>
<annotation cp="đłđż" type="tts">áŁááČá«: áá áááá”</annotation>
<annotation cp="đŽđČ">áŁááČá«</annotation>
<annotation cp="đŽđČ" type="tts">áŁááČá«: áŠáá</annotation>
<annotation cp="đ”đŠ">áŁááČá«</annotation>
<annotation cp="đ”đŠ" type="tts">áŁááČá«: ááá</annotation>
<annotation cp="đ”đȘ">áŁááČá«</annotation>
<annotation cp="đ”đȘ" type="tts">áŁááČá«: áá©</annotation>
<annotation cp="đ”đ«">áŁááČá«</annotation>
<annotation cp="đ”đ«" type="tts">áŁááČá«: ášáášááłá ááááąá«</annotation>
<annotation cp="đ”đŹ">áŁááČá«</annotation>
<annotation cp="đ”đŹ" type="tts">áŁááČá«: ááá áá áá</annotation>
<annotation cp="đ”đ">áŁááČá«</annotation>
<annotation cp="đ”đ" type="tts">áŁááČá«: ááááá”</annotation>
<annotation cp="đ”đ°">áŁááČá«</annotation>
<annotation cp="đ”đ°" type="tts">áŁááČá«: ááȘá”áłá</annotation>
<annotation cp="đ”đ±">áŁááČá«</annotation>
<annotation cp="đ”đ±" type="tts">áŁááČá«: áááá”</annotation>
<annotation cp="đ”đČ">áŁááČá«</annotation>
<annotation cp="đ”đČ" type="tts">áŁááČá«: áŽáá” ááŹá á„á áá©á€áá</annotation>
<annotation cp="đ”đł">áŁááČá«</annotation>
<annotation cp="đ”đł" type="tts">áŁááČá«: áá”á«áąáá á°áŽá¶áœ</annotation>
<annotation cp="đ”đ·">áŁááČá«</annotation>
<annotation cp="đ”đ·" type="tts">áŁááČá«: áááá¶ áȘáź</annotation>
<annotation cp="đ”đž">áŁááČá«</annotation>
<annotation cp="đ”đž" type="tts">áŁááČá«: ášááá”á€á ááá”</annotation>
<annotation cp="đ”đč">áŁááČá«</annotation>
<annotation cp="đ”đč" type="tts">áŁááČá«: ááá±áá</annotation>
<annotation cp="đ”đŒ">áŁááČá«</annotation>
<annotation cp="đ”đŒ" type="tts">áŁááČá«: ááá</annotation>
<annotation cp="đ”đŸ">áŁááČá«</annotation>
<annotation cp="đ”đŸ" type="tts">áŁááČá«: áá«áá</annotation>
<annotation cp="đ¶đŠ">áŁááČá«</annotation>
<annotation cp="đ¶đŠ" type="tts">áŁááČá«: áłáłá</annotation>
<annotation cp="đ·đȘ">áŁááČá«</annotation>
<annotation cp="đ·đȘ" type="tts">áŁááČá«: áȘá©áášá</annotation>
<annotation cp="đ·đŽ">áŁááČá«</annotation>
<annotation cp="đ·đŽ" type="tts">áŁááČá«: áźááá«</annotation>
<annotation cp="đ·đž">áŁááČá«</annotation>
<annotation cp="đ·đž" type="tts">áŁááČá«: á°áá„á«</annotation>
<annotation cp="đ·đș">áŁááČá«</annotation>
<annotation cp="đ·đș" type="tts">áŁááČá«: á©á”á«</annotation>
<annotation cp="đ·đŒ">áŁááČá«</annotation>
<annotation cp="đ·đŒ" type="tts">áŁááČá«: á©áááł</annotation>
<annotation cp="đžđŠ">áŁááČá«</annotation>
<annotation cp="đžđŠ" type="tts">áŁááČá«: áłáá”á ášáąá«</annotation>
<annotation cp="đžđ§">áŁááČá«</annotation>
<annotation cp="đžđ§" type="tts">áŁááČá«: á°ááá á°áŽá¶áœ</annotation>
<annotation cp="đžđš">áŁááČá«</annotation>
<annotation cp="đžđš" type="tts">áŁááČá«: áČáŒáá”</annotation>
<annotation cp="đžđ©">áŁááČá«</annotation>
<annotation cp="đžđ©" type="tts">áŁááČá«: á±áłá</annotation>
<annotation cp="đžđȘ">áŁááČá«</annotation>
<annotation cp="đžđȘ" type="tts">áŁááČá«: á”áá”á</annotation>
<annotation cp="đžđŹ">áŁááČá«</annotation>
<annotation cp="đžđŹ" type="tts">áŁááČá«: áČáááá</annotation>
<annotation cp="đžđ">áŁááČá«</annotation>
<annotation cp="đžđ" type="tts">áŁááČá«: áŽáá” ááá</annotation>
<annotation cp="đžđź">áŁááČá«</annotation>
<annotation cp="đžđź" type="tts">áŁááČá«: á”ááŹáá«</annotation>
<annotation cp="đžđŻ">áŁááČá«</annotation>
<annotation cp="đžđŻ" type="tts">áŁááČá«: á”á«ááŁáá” á„á áá áášá</annotation>
<annotation cp="đžđ°">áŁááČá«</annotation>
<annotation cp="đžđ°" type="tts">áŁááČá«: á”áá«áȘá«</annotation>
<annotation cp="đžđ±">áŁááČá«</annotation>
<annotation cp="đžđ±" type="tts">áŁááČá«: áŽá«ááźá</annotation>
<annotation cp="đžđČ">áŁááČá«</annotation>
<annotation cp="đžđČ" type="tts">áŁááČá«: áłá ááȘá</annotation>
<annotation cp="đžđł">áŁááČá«</annotation>
<annotation cp="đžđł" type="tts">áŁááČá«: áŽááá</annotation>
<annotation cp="đžđŽ">áŁááČá«</annotation>
<annotation cp="đžđŽ" type="tts">áŁááČá«: á¶ááá«</annotation>
<annotation cp="đžđ·">áŁááČá«</annotation>
<annotation cp="đžđ·" type="tts">áŁááČá«: á±áȘáá</annotation>
<annotation cp="đžđž">áŁááČá«</annotation>
<annotation cp="đžđž" type="tts">áŁááČá«: á°áĄá„ á±áłá</annotation>
<annotation cp="đžđč">áŁááČá«</annotation>
<annotation cp="đžđč" type="tts">áŁááČá«: áłáŠ á¶á á„á ááȘááČá</annotation>
<annotation cp="đžđ»">áŁááČá«</annotation>
<annotation cp="đžđ»" type="tts">áŁááČá«: á€á áłáá«á¶á</annotation>
<annotation cp="đžđœ">áŁááČá«</annotation>
<annotation cp="đžđœ" type="tts">áŁááČá«: áČáá” ááá°á</annotation>
<annotation cp="đžđŸ">áŁááČá«</annotation>
<annotation cp="đžđŸ" type="tts">áŁááČá«: á¶áȘá«</annotation>
<annotation cp="đžđż">áŁááČá«</annotation>
<annotation cp="đžđż" type="tts">áŁááČá«: á€á”ááČá</annotation>
<annotation cp="đčđŠ">áŁááČá«</annotation>
<annotation cp="đčđŠ" type="tts">áŁááČá«: á”áȘá”áłá áł á©áá</annotation>
<annotation cp="đčđš">áŁááČá«</annotation>
<annotation cp="đčđš" type="tts">áŁááČá«: ášá±ááźáœá ášá«áąáźá” á°áŽá¶áœ</annotation>
<annotation cp="đčđ©">áŁááČá«</annotation>
<annotation cp="đčđ©" type="tts">áŁááČá«: á»á”</annotation>
<annotation cp="đčđ«">áŁááČá«</annotation>
<annotation cp="đčđ«" type="tts">áŁááČá«: ášáášááłá á°áĄáŁá ááá¶áœ</annotation>
<annotation cp="đčđŹ">áŁááČá«</annotation>
<annotation cp="đčđŹ" type="tts">áŁááČá«: á¶á</annotation>
<annotation cp="đčđ">áŁááČá«</annotation>
<annotation cp="đčđ" type="tts">áŁááČá«: áłáááá”</annotation>
<annotation cp="đčđŻ">áŁááČá«</annotation>
<annotation cp="đčđŻ" type="tts">áŁááČá«: áłááȘá”áłá</annotation>
<annotation cp="đčđ°">áŁááČá«</annotation>
<annotation cp="đčđ°" type="tts">áŁááČá«: á¶ááá</annotation>
<annotation cp="đčđ±">áŁááČá«</annotation>
<annotation cp="đčđ±" type="tts">áŁááČá«: áČáá áá”áŽ</annotation>
<annotation cp="đčđČ">áŁááČá«</annotation>
<annotation cp="đčđČ" type="tts">áŁááČá«: á±ááááá”áłá</annotation>
<annotation cp="đčđł">áŁááČá«</annotation>
<annotation cp="đčđł" type="tts">áŁááČá«: á±ááá«</annotation>
<annotation cp="đčđŽ">áŁááČá«</annotation>
<annotation cp="đčđŽ" type="tts">áŁááČá«: á¶áá</annotation>
<annotation cp="đčđ·">áŁááČá«</annotation>
<annotation cp="đčđ·" type="tts">áŁááČá«: á±áá</annotation>
<annotation cp="đčđč">áŁááČá«</annotation>
<annotation cp="đčđč" type="tts">áŁááČá«: á”áȘááłá” á„á á¶á€á</annotation>
<annotation cp="đčđ»">áŁááČá«</annotation>
<annotation cp="đčđ»" type="tts">áŁááČá«: á±á«á</annotation>
<annotation cp="đčđŒ">áŁááČá«</annotation>
<annotation cp="đčđŒ" type="tts">áŁááČá«: áłááá</annotation>
<annotation cp="đčđż">áŁááČá«</annotation>
<annotation cp="đčđż" type="tts">áŁááČá«: áłáááá«</annotation>
<annotation cp="đșđŠ">áŁááČá«</annotation>
<annotation cp="đșđŠ" type="tts">áŁááČá«: á©ááŹá</annotation>
<annotation cp="đșđŹ">áŁááČá«</annotation>
<annotation cp="đșđŹ" type="tts">áŁááČá«: á©áááł</annotation>
<annotation cp="đșđČ">áŁááČá«</annotation>
<annotation cp="đșđČ" type="tts">áŁááČá«: ášá© á€á” á ášá áá á«á á°áŽá¶áœ</annotation>
<annotation cp="đșđł">áŁááČá«</annotation>
<annotation cp="đșđł" type="tts">áŁááČá«: ášá°áŁá á©á” áááá”áłá”</annotation>
<annotation cp="đșđž">áŁááČá«</annotation>
<annotation cp="đșđž" type="tts">áŁááČá«: á©ááá”á” á”áŽá”á”</annotation>
<annotation cp="đșđŸ">áŁááČá«</annotation>
<annotation cp="đșđŸ" type="tts">áŁááČá«: áĄá«áá</annotation>
<annotation cp="đșđż">áŁááČá«</annotation>
<annotation cp="đșđż" type="tts">áŁááČá«: áĄáá€áȘá”áłá</annotation>
<annotation cp="đ»đŠ">áŁááČá«</annotation>
<annotation cp="đ»đŠ" type="tts">áŁááČá«: á«áČá«á ášá°á</annotation>
<annotation cp="đ»đš">áŁááČá«</annotation>
<annotation cp="đ»đš" type="tts">áŁááČá«: áŽáá” áȘááŽáá” á„á ááŹááČáá”</annotation>
<annotation cp="đ»đȘ">áŁááČá«</annotation>
<annotation cp="đ»đȘ" type="tts">áŁááČá«: áŹáááá</annotation>
<annotation cp="đ»đŹ">áŁááČá«</annotation>
<annotation cp="đ»đŹ" type="tts">áŁááČá«: ášá„áááá ášááá á°áŽá¶áœ</annotation>
<annotation cp="đ»đź">áŁááČá«</annotation>
<annotation cp="đ»đź" type="tts">áŁááČá«: ášá ááȘá« ášááá á°áŽá¶áœ</annotation>
<annotation cp="đ»đł">áŁááČá«</annotation>
<annotation cp="đ»đł" type="tts">áŁááČá«: áŹá”áá</annotation>
<annotation cp="đ»đș">áŁááČá«</annotation>
<annotation cp="đ»đș" type="tts">áŁááČá«: á«áá á±</annotation>
<annotation cp="đŒđ«">áŁááČá«</annotation>
<annotation cp="đŒđ«" type="tts">áŁááČá«: ááá” á„á áá±á á°áŽá¶áœ</annotation>
<annotation cp="đŒđž">áŁááČá«</annotation>
<annotation cp="đŒđž" type="tts">áŁááČá«: áłáá </annotation>
<annotation cp="đœđ°">áŁááČá«</annotation>
<annotation cp="đœđ°" type="tts">áŁááČá«: áźá¶áź</annotation>
<annotation cp="đŸđȘ">áŁááČá«</annotation>
<annotation cp="đŸđȘ" type="tts">áŁááČá«: ášáá</annotation>
<annotation cp="đŸđč">áŁááČá«</annotation>
<annotation cp="đŸđč" type="tts">áŁááČá«: áááŠáŽ</annotation>
<annotation cp="đżđŠ">áŁááČá«</annotation>
<annotation cp="đżđŠ" type="tts">áŁááČá«: á°áĄá„ á ááȘá«</annotation>
<annotation cp="đżđČ">áŁááČá«</annotation>
<annotation cp="đżđČ" type="tts">áŁááČá«: áááąá«</annotation>
<annotation cp="đżđŒ">áŁááČá«</annotation>
<annotation cp="đżđŒ" type="tts">áŁááČá«: ááá§á€</annotation>
<annotation cp="đŽó §ó ąó „ó źó §ó ż">áŁááČá«</annotation>
<annotation cp="đŽó §ó ąó „ó źó §ó ż" type="tts">áŁááČá«: á„áááá</annotation>
<annotation cp="đŽó §ó ąó łó Łó Žó ż">áŁááČá«</annotation>
<annotation cp="đŽó §ó ąó łó Łó Žó ż" type="tts">áŁááČá«: á”áźá”ááá”</annotation>
<annotation cp="đŽó §ó ąó ·ó Źó łó ż">áŁááČá«</annotation>
<annotation cp="đŽó §ó ąó ·ó Źó łó ż" type="tts">áŁááČá«: ááá”</annotation>
<annotation cp="€" type="tts">á«ááłáá áááá„</annotation>
<annotation cp="Ö" type="tts">ášá ááá á”á«á</annotation>
<annotation cp="Ű" type="tts">ášá ááá á ááá</annotation>
<annotation cp="à§ł" type="tts">ášáŁááááČᜠáłá«</annotation>
<annotation cp="àžż" type="tts">ášáłáááá” áŁá
á”</annotation>
<annotation cp="á" type="tts">ášá«ááŠáČá« áŹá</annotation>
<annotation cp="âĄ" type="tts">ášáźá”áłáȘá« áźáá</annotation>
<annotation cp="âŠ" type="tts">ášááááȘá« ááá«</annotation>
<annotation cp="âȘ" type="tts">ášá„á”á«á€á á áČá” áœá
á</annotation>
<annotation cp="â«" type="tts">ášáášá”áá á¶áá</annotation>
<annotation cp="â" type="tts">ášááŠáČ áȘá</annotation>
<annotation cp="âź" type="tts">ášááááá«á á±ááȘá</annotation>
<annotation cp="âČ" type="tts">ášáá«áá áá á«á</annotation>
<annotation cp="âŽ" type="tts">ášá©ááŹá ááȘáááá </annotation>
<annotation cp="â”" type="tts">ášáá áČáČ</annotation>
<annotation cp="âž" type="tts">ášá«ááȘá”áłá á°áá</annotation>
<annotation cp="âș" type="tts">ášá±áá áá«</annotation>
<annotation cp="âŒ" type="tts">ášá áááŁáá ááá”</annotation>
<annotation cp="âŸ" type="tts">ášááá
á« ááȘ</annotation>
<annotation cp="0âŁ">ášá á„á áá ááá áá„áȘá«</annotation>
<annotation cp="0âŁ" type="tts">ášá á„á áá ááá áá„áȘá«: 0</annotation>
<annotation cp="1âŁ">ášá á„á áá ááá áá„áȘá«</annotation>
<annotation cp="1âŁ" type="tts">ášá á„á áá ááá áá„áȘá«: 1</annotation>
<annotation cp="2âŁ">ášá á„á áá ááá áá„áȘá«</annotation>
<annotation cp="2âŁ" type="tts">ášá á„á áá ááá áá„áȘá«: 2</annotation>
<annotation cp="3âŁ">ášá á„á áá ááá áá„áȘá«</annotation>
<annotation cp="3âŁ" type="tts">ášá á„á áá ááá áá„áȘá«: 3</annotation>
<annotation cp="4âŁ">ášá á„á áá ááá áá„áȘá«</annotation>
<annotation cp="4âŁ" type="tts">ášá á„á áá ááá áá„áȘá«: 4</annotation>
<annotation cp="5âŁ">ášá á„á áá ááá áá„áȘá«</annotation>
<annotation cp="5âŁ" type="tts">ášá á„á áá ááá áá„áȘá«: 5</annotation>
<annotation cp="6âŁ">ášá á„á áá ááá áá„áȘá«</annotation>
<annotation cp="6âŁ" type="tts">ášá á„á áá ááá áá„áȘá«: 6</annotation>
<annotation cp="7âŁ">ášá á„á áá ááá áá„áȘá«</annotation>
<annotation cp="7âŁ" type="tts">ášá á„á áá ááá áá„áȘá«: 7</annotation>
<annotation cp="8âŁ">ášá á„á áá ááá áá„áȘá«</annotation>
<annotation cp="8âŁ" type="tts">ášá á„á áá ááá áá„áȘá«: 8</annotation>
<annotation cp="9âŁ">ášá á„á áá ááá áá„áȘá«</annotation>
<annotation cp="9âŁ" type="tts">ášá á„á áá ááá áá„áȘá«: 9</annotation>
</annotations>
</ldml>
|