Datasets:
File size: 144,884 Bytes
1d71a9f |
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 |
File type = "ooTextFile"
Object class = "TextGrid"
xmin = 0
xmax = 1070.89
tiers? <exists>
size = 2
item []:
item [1]:
class = "IntervalTier"
name = "DCA_se1_ag1_m_07"
xmin = 0
xmax = 1070.89
intervals: size = 692
intervals [1]:
xmin = 0
xmax = 1.1809517502365183
text = "What, count to ten now?"
intervals [2]:
xmin = 1.1809517502365183
xmax = 3.5845463571462344
text = ""
intervals [3]:
xmin = 3.5845463571462344
xmax = 5.240150702094463
text = "Oh, my name is /RD-NAME-4/"
intervals [4]:
xmin = 5.240150702094463
xmax = 5.840636494728382
text = ""
intervals [5]:
xmin = 5.840636494728382
xmax = 6.866385986478181
text = "One, two"
intervals [6]:
xmin = 6.866385986478181
xmax = 7.052901990449625
text = ""
intervals [7]:
xmin = 7.052901990449625
xmax = 7.4818887995839445
text = "three"
intervals [8]:
xmin = 7.4818887995839445
xmax = 7.798966006335398
text = ""
intervals [9]:
xmin = 7.798966006335398
xmax = 8.162672214079713
text = "four"
intervals [10]:
xmin = 8.162672214079713
xmax = 8.492585693347833
text = ""
intervals [11]:
xmin = 8.492585693347833
xmax = 10.2458361306794
text = "five, six, seven"
intervals [12]:
xmin = 10.2458361306794
xmax = 10.516284336437993
text = ""
intervals [13]:
xmin = 10.516284336437993
xmax = 10.814709942792303
text = "eight"
intervals [14]:
xmin = 10.814709942792303
xmax = 11.066506548153752
text = ""
intervals [15]:
xmin = 11.066506548153752
xmax = 12.064367169400974
text = "nine, ten."
intervals [16]:
xmin = 12.064367169400974
xmax = 20.739719398609996
text = ""
intervals [17]:
xmin = 20.739719398609996
xmax = 21.21067230863789
text = "Uh,"
intervals [18]:
xmin = 21.21067230863789
xmax = 21.49510921469434
text = ""
intervals [19]:
xmin = 21.49510921469434
xmax = 23.019877547160892
text = "I played Hide and Go Seek,"
intervals [20]:
xmin = 23.019877547160892
xmax = 24.534976432611646
text = ""
intervals [21]:
xmin = 24.534976432611646
xmax = 24.822280743350213
text = "and"
intervals [22]:
xmin = 24.822280743350213
xmax = 24.959643988463903
text = ""
intervals [23]:
xmin = 24.959643988463903
xmax = 25.882898208122548
text = "baseball,"
intervals [24]:
xmin = 25.882898208122548
xmax = 26.282755188879953
text = ""
intervals [25]:
xmin = 26.282755188879953
xmax = 27.64898491797078
text = "a little bit of football,"
intervals [26]:
xmin = 27.64898491797078
xmax = 28.14791522859439
text = ""
intervals [27]:
xmin = 28.14791522859439
xmax = 29.178416150536613
text = "some basketball."
intervals [28]:
xmin = 29.178416150536613
xmax = 30.008412368209537
text = ""
intervals [29]:
xmin = 30.008412368209537
xmax = 30.525994279230293
text = "That's all."
intervals [30]:
xmin = 30.525994279230293
xmax = 33.681625218665786
text = ""
intervals [31]:
xmin = 33.681625218665786
xmax = 35.64470616046523
text = "We used to uh, find a tree,"
intervals [32]:
xmin = 35.64470616046523
xmax = 36.08768166989741
text = ""
intervals [33]:
xmin = 36.08768166989741
xmax = 37.439922698690374
text = "and you hide your face and"
intervals [34]:
xmin = 37.439922698690374
xmax = 38.058935984114235
text = ""
intervals [35]:
xmin = 38.058935984114235
xmax = 38.83764030069501
text = "you say uh,"
intervals [36]:
xmin = 38.83764030069501
xmax = 39.052133705262165
text = ""
intervals [37]:
xmin = 39.052133705262165
xmax = 42.67986998250674
text = "I spy, stick him in the eye, whoever stole my apple pie."
intervals [38]:
xmin = 42.67986998250674
xmax = 43.28138409531464
text = ""
intervals [39]:
xmin = 43.28138409531464
xmax = 44.96292743791624
text = "And you say, all around my base is it,"
intervals [40]:
xmin = 44.96292743791624
xmax = 45.088613297431834
text = ""
intervals [41]:
xmin = 45.088613297431834
xmax = 47.5887513592738
text = "and, ready or not, and the person that you catch"
intervals [42]:
xmin = 47.5887513592738
xmax = 48.10167037019527
text = ""
intervals [43]:
xmin = 48.10167037019527
xmax = 49.87823530802327
text = "then they it while you go hide."
intervals [44]:
xmin = 49.87823530802327
xmax = 58.59089073802657
text = ""
intervals [45]:
xmin = 58.59089073802657
xmax = 59.6866722613588
text = "Uh, I never played that."
intervals [46]:
xmin = 59.6866722613588
xmax = 63.089741974374725
text = ""
intervals [47]:
xmin = 63.089741974374725
xmax = 65.36990012292561
text = "Yeah, I play basketball all the time on the playground."
intervals [48]:
xmin = 65.36990012292561
xmax = 67.91118067703653
text = ""
intervals [49]:
xmin = 67.91118067703653
xmax = 70.51658940475626
text = "No, I used to play on a team when I went Catholic School though."
intervals [50]:
xmin = 70.51658940475626
xmax = 71.06214871637273
text = ""
intervals [51]:
xmin = 71.06214871637273
xmax = 71.99472873622996
text = "Not anymore."
intervals [52]:
xmin = 71.99472873622996
xmax = 74.74002446692828
text = ""
intervals [53]:
xmin = 74.74002446692828
xmax = 76.29277019999054
text = "What, in basketball? Well I shoot a,"
intervals [54]:
xmin = 76.29277019999054
xmax = 76.50260070445842
text = ""
intervals [55]:
xmin = 76.50260070445842
xmax = 76.88029561250059
text = "you know,"
intervals [56]:
xmin = 76.88029561250059
xmax = 77.11344061746489
text = ""
intervals [57]:
xmin = 77.11344061746489
xmax = 78.94596035648432
text = "lay up. I'm not too good, you know."
intervals [58]:
xmin = 78.94596035648432
xmax = 84.44236714576142
text = ""
intervals [59]:
xmin = 84.44236714576142
xmax = 85.0485441586686
text = "Nah,"
intervals [60]:
xmin = 85.0485441586686
xmax = 85.2537117630372
text = ""
intervals [61]:
xmin = 85.2537117630372
xmax = 86.57331249113516
text = "[Nah, I'm too] short for that."
intervals [62]:
xmin = 86.57331249113516
xmax = 92.23758368398656
text = ""
intervals [63]:
xmin = 92.23758368398656
xmax = 93.45344818211903
text = "Nah, I never played that."
intervals [64]:
xmin = 93.45344818211903
xmax = 98.12567408160369
text = ""
intervals [65]:
xmin = 98.12567408160369
xmax = 99.9057494917498
text = "Oh, yeah, I used to [shoot marbles.]"
intervals [66]:
xmin = 99.9057494917498
xmax = 100.37670240177769
text = ""
intervals [67]:
xmin = 100.37670240177769
xmax = 102.51697354735
text = "Well, you know, we used to draw a little circle in the dirt,"
intervals [68]:
xmin = 102.51697354735
xmax = 103.06253285896648
text = ""
intervals [69]:
xmin = 103.06253285896648
xmax = 104.39145938726301
text = "and each man put in like"
intervals [70]:
xmin = 104.39145938726301
xmax = 104.78314299560304
text = ""
intervals [71]:
xmin = 104.78314299560304
xmax = 105.56980414637606
text = "two marbles,"
intervals [72]:
xmin = 105.56980414637606
xmax = 106.0363106945298
text = ""
intervals [73]:
xmin = 106.0363106945298
xmax = 109.11382476005862
text = "and y- and each marble you knock out the uh, circle is yours"
intervals [74]:
xmin = 109.11382476005862
xmax = 109.56146316959008
text = ""
intervals [75]:
xmin = 109.56146316959008
xmax = 111.71923348777834
text = "and you know, you try to win all the marbles,"
intervals [76]:
xmin = 111.71923348777834
xmax = 111.89642369155122
text = ""
intervals [77]:
xmin = 111.89642369155122
xmax = 112.82434081130914
text = "have a collection."
intervals [78]:
xmin = 112.82434081130914
xmax = 113.07112326385435
text = ""
intervals [79]:
xmin = 113.07112326385435
xmax = 113.77090953146423
text = "So you know,"
intervals [80]:
xmin = 113.77090953146423
xmax = 113.93877393503853
text = ""
intervals [81]:
xmin = 113.93877393503853
xmax = 116.35415618646871
text = "whoever got the most marbles the best marble shooter."
intervals [82]:
xmin = 116.35415618646871
xmax = 128.3263652006526
text = ""
intervals [83]:
xmin = 128.3263652006526
xmax = 129.84647063301986
text = "Oh, well, we used to put our feet"
intervals [84]:
xmin = 129.84647063301986
xmax = 130.04231243718988
text = ""
intervals [85]:
xmin = 130.04231243718988
xmax = 130.9096118556571
text = "all together,"
intervals [86]:
xmin = 130.9096118556571
xmax = 131.38989056588355
text = ""
intervals [87]:
xmin = 131.38989056588355
xmax = 132.35977378653507
text = "and say something like"
intervals [88]:
xmin = 132.35977378653507
xmax = 132.53055915129323
text = ""
intervals [89]:
xmin = 132.53055915129323
xmax = 134.21619753718514
text = "you know, Mickey Mouse built a house."
intervals [90]:
xmin = 134.21619753718514
xmax = 134.53560619398624
text = ""
intervals [91]:
xmin = 134.53560619398624
xmax = 136.74291317710762
text = "How many, you know, bricks did he use? and"
intervals [92]:
xmin = 136.74291317710762
xmax = 137.06931618405764
text = ""
intervals [93]:
xmin = 137.06931618405764
xmax = 138.3344783934566
text = "like if you say, four,"
intervals [94]:
xmin = 138.3344783934566
xmax = 138.62357819961235
text = ""
intervals [95]:
xmin = 138.62357819961235
xmax = 141.57053106236114
text = "you count around four whoever four land on then he out,"
intervals [96]:
xmin = 141.57053106236114
xmax = 141.94356307030404
text = ""
intervals [97]:
xmin = 141.94356307030404
xmax = 144.5063311187717
text = "and the last man still in that's the man it."
intervals [98]:
xmin = 144.5063311187717
xmax = 150.6662100393192
text = ""
intervals [99]:
xmin = 150.6662100393192
xmax = 152.5733361799272
text = "[Yeah], we used to say it like that, [too.]"
intervals [100]:
xmin = 152.5733361799272
xmax = 153.346558724621
text = ""
intervals [101]:
xmin = 153.346558724621
xmax = 155.03885790466836
text = "Well, I don't remember it too good, but"
intervals [102]:
xmin = 155.03885790466836
xmax = 155.23969616493116
text = ""
intervals [103]:
xmin = 155.23969616493116
xmax = 157.7063703174535
text = "one potato, two potato, three potato more."
intervals [104]:
xmin = 157.7063703174535
xmax = 158.40114243224713
text = ""
intervals [105]:
xmin = 158.40114243224713
xmax = 159.10057744714004
text = "Something like that,"
intervals [106]:
xmin = 159.10057744714004
xmax = 159.36521032501815
text = ""
intervals [107]:
xmin = 159.36521032501815
xmax = 159.74290523306033
text = "you know."
intervals [108]:
xmin = 159.74290523306033
xmax = 165.54706342889034
text = ""
intervals [109]:
xmin = 165.54706342889034
xmax = 168.42873569024914
text = "Um, yeah I watch a lot of television, sometimes."
intervals [110]:
xmin = 168.42873569024914
xmax = 171.48644572759957
text = ""
intervals [111]:
xmin = 171.48644572759957
xmax = 175.33034928257658
text = "Like I like to look at uh, I Spy, you know, /but I don't get in til late/."
intervals [112]:
xmin = 175.33034928257658
xmax = 175.7220328909166
text = ""
intervals [113]:
xmin = 175.7220328909166
xmax = 176.10905359915733
text = "And uh,"
intervals [114]:
xmin = 176.10905359915733
xmax = 176.34219860412165
text = ""
intervals [115]:
xmin = 176.34219860412165
xmax = 177.48927202854603
text = "It Takes a Thief,"
intervals [116]:
xmin = 177.48927202854603
xmax = 178.37873351972846
text = ""
intervals [117]:
xmin = 178.37873351972846
xmax = 179.903501852195
text = "Sunday Night at the Movie,"
intervals [118]:
xmin = 179.903501852195
xmax = 180.59361106688937
text = ""
intervals [119]:
xmin = 180.59361106688937
xmax = 181.44692178505872
text = "something like that."
intervals [120]:
xmin = 181.44692178505872
xmax = 188.51740776038602
text = ""
intervals [121]:
xmin = 188.51740776038602
xmax = 188.97437197011607
text = "Well,"
intervals [122]:
xmin = 188.97437197011607
xmax = 189.75773918679613
text = ""
intervals [123]:
xmin = 189.75773918679613
xmax = 191.2125640177734
text = "not really, you know. I-"
intervals [124]:
xmin = 191.2125640177734
xmax = 192.08452633633988
text = ""
intervals [125]:
xmin = 192.08452633633988
xmax = 192.96581445510495
text = "I watch it and"
intervals [126]:
xmin = 192.96581445510495
xmax = 193.63678553536067
text = ""
intervals [127]:
xmin = 193.63678553536067
xmax = 195.8050340815287
text = "you know, I don't really remember about what happened"
intervals [128]:
xmin = 195.8050340815287
xmax = 196.37390789364161
text = ""
intervals [129]:
xmin = 196.37390789364161
xmax = 197.47901521717242
text = "to next day, you know."
intervals [130]:
xmin = 197.47901521717242
xmax = 197.73081182253387
text = ""
intervals [131]:
xmin = 197.73081182253387
xmax = 198.4535613379232
text = "Nothing [like that.]"
intervals [132]:
xmin = 198.4535613379232
xmax = 201.6371696779544
text = ""
intervals [133]:
xmin = 201.6371696779544
xmax = 203.6795199214417
text = "No, I did- I haven't been looking at TV lately."
intervals [134]:
xmin = 203.6795199214417
xmax = 204.28920740666697
text = ""
intervals [135]:
xmin = 204.28920740666697
xmax = 205.58083073416924
text = "[You know], I've been working and"
intervals [136]:
xmin = 205.58083073416924
xmax = 206.196333547275
text = ""
intervals [137]:
xmin = 206.196333547275
xmax = 207.3667214721958
text = "you know, partying at night."
intervals [138]:
xmin = 207.3667214721958
xmax = 209.86488349763198
text = ""
intervals [139]:
xmin = 209.86488349763198
xmax = 212.52258567741185
text = "Well, I work at the /RD-JOB-4/ as a uh, case worker,"
intervals [140]:
xmin = 212.52258567741185
xmax = 212.95172336335938
text = ""
intervals [141]:
xmin = 212.95172336335938
xmax = 213.85166308252158
text = "[you know.]"
intervals [142]:
xmin = 213.85166308252158
xmax = 214.20604349006732
text = ""
intervals [143]:
xmin = 214.20604349006732
xmax = 218.61324987158534
text = "I work with little children who've been in trouble for the first time at number thirteen precinct."
intervals [144]:
xmin = 218.61324987158534
xmax = 219.21284576891935
text = ""
intervals [145]:
xmin = 219.21284576891935
xmax = 220.91014140505948
text = "And you know, I talk to 'em about uh,"
intervals [146]:
xmin = 220.91014140505948
xmax = 221.46036361677525
text = ""
intervals [147]:
xmin = 221.46036361677525
xmax = 221.82406982451957
text = "you know,"
intervals [148]:
xmin = 221.82406982451957
xmax = 222.29853320686556
text = ""
intervals [149]:
xmin = 222.29853320686556
xmax = 224.35487215065072
text = "do they think what they did was right and"
intervals [150]:
xmin = 224.35487215065072
xmax = 224.97037496375648
text = ""
intervals [151]:
xmin = 224.97037496375648
xmax = 227.1432864100238
text = "you know, would they do it all over again and try to"
intervals [152]:
xmin = 227.1432864100238
xmax = 228.811452217787
text = ""
intervals [153]:
xmin = 228.811452217787
xmax = 229.86060474012638
text = "you know, try to uh-"
intervals [154]:
xmin = 229.86060474012638
xmax = 230.46211885293428
text = ""
intervals [155]:
xmin = 230.46211885293428
xmax = 232.55576099751374
text = "You know, I know the environment they in, and I try to"
intervals [156]:
xmin = 232.55576099751374
xmax = 233.2785105129031
text = ""
intervals [157]:
xmin = 233.2785105129031
xmax = 235.32304754524742
text = "you know, make 'em overlook the environment to b-"
intervals [158]:
xmin = 235.32304754524742
xmax = 235.495574848921
text = ""
intervals [159]:
xmin = 235.495574848921
xmax = 235.8491940097395
text = "You know,"
intervals [160]:
xmin = 235.8491940097395
xmax = 235.95604953096912
text = ""
intervals [161]:
xmin = 235.95604953096912
xmax = 237.4062114618471
text = "go to something a little higher."
intervals [162]:
xmin = 237.4062114618471
xmax = 243.29030485310466
text = ""
intervals [163]:
xmin = 243.29030485310466
xmax = 243.57474175916113
text = "[/Oh-/]"
intervals [164]:
xmin = 243.57474175916113
xmax = 244.63180317966294
text = ""
intervals [165]:
xmin = 244.63180317966294
xmax = 248.98471385375862
text = "Yeah, we have children like broke in a house, something like that. Ain't but nine years old."
intervals [166]:
xmin = 248.98471385375862
xmax = 249.82754634394823
text = ""
intervals [167]:
xmin = 249.82754634394823
xmax = 252.24759149547774
text = "And you know, hook school, don't like school"
intervals [168]:
xmin = 252.24759149547774
xmax = 252.7931508070942
text = ""
intervals [169]:
xmin = 252.7931508070942
xmax = 255.09662345614157
text = "or stole something out the drug store. You know, mostly"
intervals [170]:
xmin = 255.09662345614157
xmax = 255.2225217588223
text = ""
intervals [171]:
xmin = 255.2225217588223
xmax = 256.26457626116974
text = "you know, little things"
intervals [172]:
xmin = 256.26457626116974
xmax = 256.66220546172053
text = ""
intervals [173]:
xmin = 256.66220546172053
xmax = 258.499491148869
text = "that could lead to bigger things though,"
intervals [174]:
xmin = 258.499491148869
xmax = 258.6431433042383
text = ""
intervals [175]:
xmin = 258.6431433042383
xmax = 259.24545211672506
text = "[you know.]"
intervals [176]:
xmin = 259.24545211672506
xmax = 263.08186647065645
text = ""
intervals [177]:
xmin = 263.08186647065645
xmax = 264.2709059959745
text = "Oh well, we had a uh-"
intervals [178]:
xmin = 264.2709059959745
xmax = 264.64860090401663
text = ""
intervals [179]:
xmin = 264.64860090401663
xmax = 266.94274775286544
text = "I was working here as just uh, you know-"
intervals [180]:
xmin = 266.94274775286544
xmax = 267.33443136120553
text = ""
intervals [181]:
xmin = 267.33443136120553
xmax = 268.9453596756655
text = "We j- clean up this place,"
intervals [182]:
xmin = 268.9453596756655
xmax = 269.3556948844027
text = ""
intervals [183]:
xmin = 269.3556948844027
xmax = 269.752041392842
text = "and uh,"
intervals [184]:
xmin = 269.752041392842
xmax = 270.1077044924996
text = ""
intervals [185]:
xmin = 270.1077044924996
xmax = 272.4065142414477
text = "one day they aksed us did we wanna start some new,"
intervals [186]:
xmin = 272.4065142414477
xmax = 272.5346403243346
text = ""
intervals [187]:
xmin = 272.5346403243346
xmax = 273.32976846110637
text = "you know, groups."
intervals [188]:
xmin = 273.32976846110637
xmax = 273.8042318434524
text = ""
intervals [189]:
xmin = 273.8042318434524
xmax = 276.08905289210264
text = "So I suggested a juvenile delinquents group"
intervals [190]:
xmin = 276.08905289210264
xmax = 276.5413542017334
text = ""
intervals [191]:
xmin = 276.5413542017334
xmax = 277.8189888289378
text = "cause uh, you know I figured I"
intervals [192]:
xmin = 277.8189888289378
xmax = 278.68628824740506
text = ""
intervals [193]:
xmin = 278.68628824740506
xmax = 281.7068659139665
text = "could talk to uh, juvenile children you know, cause I was-"
intervals [194]:
xmin = 281.7068659139665
xmax = 281.8782407898589
text = ""
intervals [195]:
xmin = 281.8782407898589
xmax = 283.49626712431126
text = "I know how it is when they coming up."
intervals [196]:
xmin = 283.49626712431126
xmax = 284.34957784248064
text = ""
intervals [197]:
xmin = 284.34957784248064
xmax = 284.7453608847179
text = "So uh,"
intervals [198]:
xmin = 284.7453608847179
xmax = 284.94571783825927
text = ""
intervals [199]:
xmin = 284.94571783825927
xmax = 287.6975401137681
text = "we agreed and got together and went down to number thirteen,"
intervals [200]:
xmin = 287.6975401137681
xmax = 288.12537449512126
text = ""
intervals [201]:
xmin = 288.12537449512126
xmax = 290.0837925368215
text = "and they gave us some help. They agreed"
intervals [202]:
xmin = 290.0837925368215
xmax = 290.4375883216055
text = ""
intervals [203]:
xmin = 290.4375883216055
xmax = 290.9277774547923
text = "so uh,"
intervals [204]:
xmin = 290.9277774547923
xmax = 291.22154016104736
text = ""
intervals [205]:
xmin = 291.22154016104736
xmax = 292.8908583965918
text = "you know, we got it on the ball."
intervals [206]:
xmin = 292.8908583965918
xmax = 298.0375476784226
text = ""
intervals [207]:
xmin = 298.0375476784226
xmax = 300.5077323032631
text = "It's only five of us on the uh, staff."
intervals [208]:
xmin = 300.5077323032631
xmax = 300.9087417118017
text = ""
intervals [209]:
xmin = 300.9087417118017
xmax = 302.6013744478426
text = "But in the summer we hope to, you know,"
intervals [210]:
xmin = 302.6013744478426
xmax = 303.4500222659127
text = ""
intervals [211]:
xmin = 303.4500222659127
xmax = 304.92816159738646
text = "put on more people, make it a"
intervals [212]:
xmin = 304.92816159738646
xmax = 305.35714840652076
text = ""
intervals [213]:
xmin = 305.35714840652076
xmax = 305.6509111127758
text = "you know,"
intervals [214]:
xmin = 305.6509111127758
xmax = 306.1253744951218
text = ""
intervals [215]:
xmin = 306.1253744951218
xmax = 307.2351447187519
text = "[city wide] thing."
intervals [216]:
xmin = 307.2351447187519
xmax = 310.5877698901387
text = ""
intervals [217]:
xmin = 310.5877698901387
xmax = 313.92525393344647
text = "I would like to go into that in the future. That's what I was thinking about, but uh,"
intervals [218]:
xmin = 313.92525393344647
xmax = 314.601374447843
text = ""
intervals [219]:
xmin = 314.601374447843
xmax = 318.2652614981007
text = "they say when you go to college, you gotta take up this and all that, you know."
intervals [220]:
xmin = 318.2652614981007
xmax = 318.82947241011436
text = ""
intervals [221]:
xmin = 318.82947241011436
xmax = 321.1609224597575
text = "I don't really know if I'm qualified or not, but"
intervals [222]:
xmin = 321.1609224597575
xmax = 321.62721246968607
text = ""
intervals [223]:
xmin = 321.62721246968607
xmax = 325.28177371974533
text = "I think I got the ability to you know, talk to the children, make 'em understand me,"
intervals [224]:
xmin = 325.28177371974533
xmax = 325.76205242997185
text = ""
intervals [225]:
xmin = 325.76205242997185
xmax = 326.1677247386097
text = "[you know.]"
intervals [226]:
xmin = 326.1677247386097
xmax = 327.6598527703813
text = ""
intervals [227]:
xmin = 327.6598527703813
xmax = 332.0138490353334
text = "But I- You know, I like to be a case worker or something like that, like a probation [officer, so.]"
intervals [228]:
xmin = 332.0138490353334
xmax = 337.1791899175613
text = ""
intervals [229]:
xmin = 337.1791899175613
xmax = 337.4216607227242
text = "Yeah,"
intervals [230]:
xmin = 337.4216607227242
xmax = 337.64081702739065
text = ""
intervals [231]:
xmin = 337.64081702739065
xmax = 341.0540599000682
text = "that's- that's what I think they need you know, younger uh, case workers, you know"
intervals [232]:
xmin = 341.0540599000682
xmax = 341.42593948022994
text = ""
intervals [233]:
xmin = 341.42593948022994
xmax = 343.2537963191501
text = "who can understand the children's problem."
intervals [234]:
xmin = 343.2537963191501
xmax = 350.4292728616847
text = ""
intervals [235]:
xmin = 350.4292728616847
xmax = 352.5322408064627
text = "Every now and then when something, you know, uh,"
intervals [236]:
xmin = 352.5322408064627
xmax = 352.8679696136113
text = ""
intervals [237]:
xmin = 352.8679696136113
xmax = 354.7844215544179
text = "supposed to be good come to the movie,"
intervals [238]:
xmin = 354.7844215544179
xmax = 355.17028983487745
text = ""
intervals [239]:
xmin = 355.17028983487745
xmax = 356.6111259655568
text = "something like that I go."
intervals [240]:
xmin = 356.6111259655568
xmax = 357.85612029206624
text = ""
intervals [241]:
xmin = 357.85612029206624
xmax = 358.1032539973284
text = "[Yeah.]"
intervals [242]:
xmin = 358.1032539973284
xmax = 360.1222897403193
text = ""
intervals [243]:
xmin = 360.1222897403193
xmax = 364.0189403116331
text = "Well the best educated movie I've seen was uh, The Fox, you know."
intervals [244]:
xmin = 364.0189403116331
xmax = 364.3173659179874
text = ""
intervals [245]:
xmin = 364.3173659179874
xmax = 366.52758056504905
text = "In a long time anyway was [The Fox.]"
intervals [246]:
xmin = 366.52758056504905
xmax = 369.15630379326524
text = ""
intervals [247]:
xmin = 369.15630379326524
xmax = 369.8930420089524
text = "I thought it was [you know]-"
intervals [248]:
xmin = 369.8930420089524
xmax = 371.1753395362561
text = ""
intervals [249]:
xmin = 371.1753395362561
xmax = 371.8747745511491
text = "Well, you know it."
intervals [250]:
xmin = 371.8747745511491
xmax = 372.04730185482265
text = ""
intervals [251]:
xmin = 372.04730185482265
xmax = 373.86116999344495
text = "It was uh, you know, two women"
intervals [252]:
xmin = 373.86116999344495
xmax = 374.0823390147038
text = ""
intervals [253]:
xmin = 374.0823390147038
xmax = 378.15454855710624
text = "[And uh], they were living together on a farm. You could say, you know, all by theyself."
intervals [254]:
xmin = 378.15454855710624
xmax = 378.6208385670348
text = ""
intervals [255]:
xmin = 378.6208385670348
xmax = 380.2435278015864
text = "[And you know], running the farm and uh,"
intervals [256]:
xmin = 380.2435278015864
xmax = 380.7692830850246
text = ""
intervals [257]:
xmin = 380.7692830850246
xmax = 386.1781851629511
text = "you know, suspense about the picture to me was I didn't know that they were uh, lesbians or whatever you call them, [you know.]"
intervals [258]:
xmin = 386.1781851629511
xmax = 386.79726048562037
text = ""
intervals [259]:
xmin = 386.79726048562037
xmax = 387.30085369634327
text = "And uh,"
intervals [260]:
xmin = 387.30085369634327
xmax = 387.54798740160544
text = ""
intervals [261]:
xmin = 387.54798740160544
xmax = 388.0888838131226
text = "then uh,"
intervals [262]:
xmin = 388.0888838131226
xmax = 388.50854482205835
text = ""
intervals [263]:
xmin = 388.50854482205835
xmax = 391.76791199145936
text = "you know, one woman- I guess she got lonely for compassion or sex"
intervals [264]:
xmin = 391.76791199145936
xmax = 392.30414550287725
text = ""
intervals [265]:
xmin = 392.30414550287725
xmax = 392.7937500133023
text = "and uh,"
intervals [266]:
xmin = 392.7937500133023
xmax = 393.5433245015062
text = ""
intervals [267]:
xmin = 393.5433245015062
xmax = 395.14736213566067
text = "you know uh, it was this fox"
intervals [268]:
xmin = 395.14736213566067
xmax = 395.7861794492628
text = ""
intervals [269]:
xmin = 395.7861794492628
xmax = 398.85436771459314
text = "and uh, she wouldn't shoot the fox. You know the fox was eating up they chickens, but"
intervals [270]:
xmin = 398.85436771459314
xmax = 399.23091019485406
text = ""
intervals [271]:
xmin = 399.23091019485406
xmax = 403.3995428836159
text = "I guess the reason why she wouldn't shoot it because it was a uh, male fox, you [know.]"
intervals [272]:
xmin = 403.3995428836159
xmax = 403.9217876947359
text = ""
intervals [273]:
xmin = 403.9217876947359
xmax = 405.83242430766205
text = "And then this man came, you know,"
intervals [274]:
xmin = 405.83242430766205
xmax = 406.0422548121299
text = ""
intervals [275]:
xmin = 406.0422548121299
xmax = 407.93539225244007
text = "whose grandfather used to live there"
intervals [276]:
xmin = 407.93539225244007
xmax = 408.55089506554583
text = ""
intervals [277]:
xmin = 408.55089506554583
xmax = 408.91460127329015
text = "and uh,"
intervals [278]:
xmin = 408.91460127329015
xmax = 409.12443177775805
text = ""
intervals [279]:
xmin = 409.12443177775805
xmax = 410.5046502071467
text = "he fell in love with her"
intervals [280]:
xmin = 410.5046502071467
xmax = 410.98377648959206
text = ""
intervals [281]:
xmin = 410.98377648959206
xmax = 412.2287708161014
text = "and wanted to marry her,"
intervals [282]:
xmin = 412.2287708161014
xmax = 412.79764462821436
text = ""
intervals [283]:
xmin = 412.79764462821436
xmax = 413.7815165491637
text = "you know and [uh]-"
intervals [284]:
xmin = 413.7815165491637
xmax = 413.9866841535323
text = ""
intervals [285]:
xmin = 413.9866841535323
xmax = 416.2481907016861
text = "Then the other girl, you know, didn't want her to marry him."
intervals [286]:
xmin = 416.2481907016861
xmax = 416.77394598512427
text = ""
intervals [287]:
xmin = 416.77394598512427
xmax = 418.06090641252723
text = "And as the picture went on"
intervals [288]:
xmin = 418.06090641252723
xmax = 418.53185932255514
text = ""
intervals [289]:
xmin = 418.53185932255514
xmax = 419.1100589348666
text = "you know, uh-"
intervals [290]:
xmin = 419.1100589348666
xmax = 419.3805071406252
text = ""
intervals [291]:
xmin = 419.3805071406252
xmax = 420.812017471106
text = "I remember the other girl say uh,"
intervals [292]:
xmin = 420.812017471106
xmax = 421.1011172772618
text = ""
intervals [293]:
xmin = 421.1011172772618
xmax = 422.7471210123098
text = "I loved you longer than, you know,"
intervals [294]:
xmin = 422.7471210123098
xmax = 423.2075956943579
text = ""
intervals [295]:
xmin = 423.2075956943579
xmax = 427.3735781996124
text = "than he did, and then you know, they were kissing and things. And that's what really blew my mind, [you know.]"
intervals [296]:
xmin = 427.3735781996124
xmax = 427.74661020755525
text = ""
intervals [297]:
xmin = 427.74661020755525
xmax = 430.3764858635526
text = "[I didn't] know that they were, you know, lesbians, but uh,"
intervals [298]:
xmin = 430.3764858635526
xmax = 431.3665184403274
text = ""
intervals [299]:
xmin = 431.3665184403274
xmax = 433.0125221753754
text = "you know, it was a pretty good picture, you know."
intervals [300]:
xmin = 433.0125221753754
xmax = 433.34358808242473
text = ""
intervals [301]:
xmin = 433.34358808242473
xmax = 436.3946622761851
text = "One of the lesbians uh, you know, got killed at the end."
intervals [302]:
xmin = 436.3946622761851
xmax = 436.7758676565454
text = ""
intervals [303]:
xmin = 436.7758676565454
xmax = 439.45237231353565
text = "So I took it for granted that she married the man, you know,"
intervals [304]:
xmin = 439.45237231353565
xmax = 439.9093365232657
text = ""
intervals [305]:
xmin = 439.9093365232657
xmax = 440.62742313855574
text = "[that was] there."
intervals [306]:
xmin = 440.62742313855574
xmax = 441.2149485510658
text = ""
intervals [307]:
xmin = 441.2149485510658
xmax = 441.97966416734874
text = "But it was pretty good."
intervals [308]:
xmin = 441.97966416734874
xmax = 442.16502774353904
text = ""
intervals [309]:
xmin = 442.16502774353904
xmax = 444.0581651838492
text = "You know, educated picture like I [said.]"
intervals [310]:
xmin = 444.0581651838492
xmax = 449.13124751382423
text = ""
intervals [311]:
xmin = 449.13124751382423
xmax = 450.2882749042599
text = "Yeah, I saw that too."
intervals [312]:
xmin = 450.2882749042599
xmax = 452.0077326131152
text = ""
intervals [313]:
xmin = 452.0077326131152
xmax = 454.3618689974421
text = "[Oh] well that was about Sidney Poitier, and uh,"
intervals [314]:
xmin = 454.3618689974421
xmax = 454.79868709330793
text = ""
intervals [315]:
xmin = 454.79868709330793
xmax = 456.3281183258738
text = "you know, a white girl and uh,"
intervals [316]:
xmin = 456.3281183258738
xmax = 457.00423884027026
text = ""
intervals [317]:
xmin = 457.00423884027026
xmax = 458.6261092030341
text = "they fell in love and things"
intervals [318]:
xmin = 458.6261092030341
xmax = 458.81728810710484
text = ""
intervals [319]:
xmin = 458.81728810710484
xmax = 461.00418825366995
text = "after only knowing each other a short while."
intervals [320]:
xmin = 461.00418825366995
xmax = 461.5963765662792
text = ""
intervals [321]:
xmin = 461.5963765662792
xmax = 461.981331845472
text = "But uh,"
intervals [322]:
xmin = 461.981331845472
xmax = 462.1325446405976
text = ""
intervals [323]:
xmin = 462.1325446405976
xmax = 463.3938618531231
text = "back in those days it was,"
intervals [324]:
xmin = 463.3938618531231
xmax = 463.4686202122121
text = ""
intervals [325]:
xmin = 463.4686202122121
xmax = 465.213634615544
text = "you know, almost impossible for a"
intervals [326]:
xmin = 465.213634615544
xmax = 465.5493634226926
text = ""
intervals [327]:
xmin = 465.5493634226926
xmax = 467.40519766220837
text = "colored man to marry a white woman."
intervals [328]:
xmin = 467.40519766220837
xmax = 467.904127972832
text = ""
intervals [329]:
xmin = 467.904127972832
xmax = 471.62975153150626
text = "But uh, she was always raised you know, that the color didn't make no difference."
intervals [330]:
xmin = 471.62975153150626
xmax = 472.04479021190923
text = ""
intervals [331]:
xmin = 472.04479021190923
xmax = 474.0846504848787
text = "So she didn't think her parents would, you know"
intervals [332]:
xmin = 474.0846504848787
xmax = 474.87327897054075
text = ""
intervals [333]:
xmin = 474.87327897054075
xmax = 475.7015591677724
text = "would uh, you know,"
intervals [334]:
xmin = 475.7015591677724
xmax = 475.9703096572997
text = ""
intervals [335]:
xmin = 475.9703096572997
xmax = 477.38895978234547
text = "[disagree] to that, so uh-"
intervals [336]:
xmin = 477.38895978234547
xmax = 478.053601703369
text = ""
intervals [337]:
xmin = 478.053601703369
xmax = 480.66180317550277
text = "And when Sidney Poitier went to meet her parents, you know,"
intervals [338]:
xmin = 480.66180317550277
xmax = 481.0627260369287
text = ""
intervals [339]:
xmin = 481.0627260369287
xmax = 484.49858202209435
text = "her father you know, thought maybe Sidney Poitier was just, you know somebody trying to"
intervals [340]:
xmin = 484.49858202209435
xmax = 484.88628764633046
text = ""
intervals [341]:
xmin = 484.88628764633046
xmax = 487.4944891184642
text = "you know, get they money or something. So he checked upon him."
intervals [342]:
xmin = 487.4944891184642
xmax = 487.91303496280995
text = ""
intervals [343]:
xmin = 487.91303496280995
xmax = 492.7895698016711
text = "Found out that he had a college education and you know, pretty smart man. Had degrees and things."
intervals [344]:
xmin = 492.7895698016711
xmax = 493.29623056061604
text = ""
intervals [345]:
xmin = 493.29623056061604
xmax = 496.4369015818746
text = "[But they] still didn't want to get them married cause they didn't think they could make it,"
intervals [346]:
xmin = 496.4369015818746
xmax = 496.71886930859176
text = ""
intervals [347]:
xmin = 496.71886930859176
xmax = 498.6794261584221
text = "by one of them being white and the other one being colored."
intervals [348]:
xmin = 498.6794261584221
xmax = 499.1521326016079
text = ""
intervals [349]:
xmin = 499.1521326016079
xmax = 502.9567795780093
text = "So uh, you know, Sidney Poitier's family came over and met their family"
intervals [350]:
xmin = 502.9567795780093
xmax = 503.4017598967348
text = ""
intervals [351]:
xmin = 503.4017598967348
xmax = 503.92163789286957
text = "and uh,"
intervals [352]:
xmin = 503.92163789286957
xmax = 504.1463309250973
text = ""
intervals [353]:
xmin = 504.1463309250973
xmax = 506.9924426666486
text = "you know they were all talking about why they shouldn't get married,"
intervals [354]:
xmin = 506.9924426666486
xmax = 507.57778116453295
text = ""
intervals [355]:
xmin = 507.57778116453295
xmax = 510.357806720135
text = "but uh, the two mothers they understood love, you know,"
intervals [356]:
xmin = 510.357806720135
xmax = 510.8292215132402
text = ""
intervals [357]:
xmin = 510.8292215132402
xmax = 513.0805575812476
text = "and they explained it to the fathers. And uh,"
intervals [358]:
xmin = 513.0805575812476
xmax = 514.0189814217281
text = ""
intervals [359]:
xmin = 514.0189814217281
xmax = 518.3932612473743
text = "you know, the fathers at the end all, you know, well, agreed if they were in love, you know"
intervals [360]:
xmin = 518.3932612473743
xmax = 519.1554552586566
text = ""
intervals [361]:
xmin = 519.1554552586566
xmax = 520.82020146038
text = "best thing for 'em to do to get married."
intervals [362]:
xmin = 520.82020146038
xmax = 521.0272715096879
text = ""
intervals [363]:
xmin = 521.0272715096879
xmax = 522.8732789705393
text = "So that turned out pretty good at the end."
intervals [364]:
xmin = 522.8732789705393
xmax = 529.0142628338976
text = ""
intervals [365]:
xmin = 529.0142628338976
xmax = 530.2478716382852
text = "Yes, sir I seen that one."
intervals [366]:
xmin = 530.2478716382852
xmax = 532.2827004813249
text = ""
intervals [367]:
xmin = 532.2827004813249
xmax = 533.7233793350205
text = "Uh, that was about, you know uh,"
intervals [368]:
xmin = 533.7233793350205
xmax = 534.3137492628344
text = ""
intervals [369]:
xmin = 534.3137492628344
xmax = 535.4328086782432
text = "you know from the beginning"
intervals [370]:
xmin = 535.4328086782432
xmax = 535.851354522589
text = ""
intervals [371]:
xmin = 535.851354522589
xmax = 537.4506402225629
text = "[a man] that got killed and uh,"
intervals [372]:
xmin = 537.4506402225629
xmax = 537.6703018248609
text = ""
intervals [373]:
xmin = 537.6703018248609
xmax = 539.5735839802016
text = "Sidney Poitier was passing through the town,"
intervals [374]:
xmin = 539.5735839802016
xmax = 539.9921298245474
text = ""
intervals [375]:
xmin = 539.9921298245474
xmax = 542.6576059911706
text = "and they picked him up, you know, because he was a colored man. And they"
intervals [376]:
xmin = 542.6576059911706
xmax = 543.1642667501155
text = ""
intervals [377]:
xmin = 543.1642667501155
xmax = 544.8862876463284
text = "figured he probably did it and uh,"
intervals [378]:
xmin = 544.8862876463284
xmax = 545.2035013388852
text = ""
intervals [379]:
xmin = 545.2035013388852
xmax = 547.5958212702511
text = "you know, he had a whole lot of money and things, but he was a"
intervals [380]:
xmin = 547.5958212702511
xmax = 548.1729739608753
text = ""
intervals [381]:
xmin = 548.1729739608753
xmax = 549.2876276305541
text = "detective hisself,"
intervals [382]:
xmin = 549.2876276305541
xmax = 549.7584167394594
text = ""
intervals [383]:
xmin = 549.7584167394594
xmax = 553.5508406169807
text = "you know. Uh, take [the autopsy] on people's bodies and found out what caused the death."
intervals [384]:
xmin = 553.5508406169807
xmax = 554.0019894988303
text = ""
intervals [385]:
xmin = 554.0019894988303
xmax = 557.5784338749826
text = "And you know all the white people down there they were surprised because of this, you know."
intervals [386]:
xmin = 557.5784338749826
xmax = 558.1612963873932
text = ""
intervals [387]:
xmin = 558.1612963873932
xmax = 563.1507886012671
text = "And uh, as he- You know, he was determining the man's death and told him how he died and when he died and all."
intervals [388]:
xmin = 563.1507886012671
xmax = 563.7056737130821
text = ""
intervals [389]:
xmin = 563.7056737130821
xmax = 564.1183437125643
text = "And uh,"
intervals [390]:
xmin = 564.1183437125643
xmax = 564.2404841302308
text = ""
intervals [391]:
xmin = 564.2404841302308
xmax = 566.6666152761286
text = "you know, the white people down there, they really didn't like him."
intervals [392]:
xmin = 566.6666152761286
xmax = 567.1935229873479
text = ""
intervals [393]:
xmin = 567.1935229873479
xmax = 567.7111048983686
text = "And uh,"
intervals [394]:
xmin = 567.7111048983686
xmax = 568.0923102787289
text = ""
intervals [395]:
xmin = 568.0923102787289
xmax = 572.629312075334
text = "you know, they tried to uh, you know, kill him at- [at one] time or another, but uh,"
intervals [396]:
xmin = 572.629312075334
xmax = 573.0116698834754
text = ""
intervals [397]:
xmin = 573.0116698834754
xmax = 574.6856510191191
text = "you know, he survived and things."
intervals [398]:
xmin = 574.6856510191191
xmax = 575.1974176022593
text = ""
intervals [399]:
xmin = 575.1974176022593
xmax = 575.5891012105993
text = "And uh,"
intervals [400]:
xmin = 575.5891012105993
xmax = 575.97612191884
text = ""
intervals [401]:
xmin = 575.97612191884
xmax = 578.993018283078
text = "he was going to prove, you know, who- who the killer really was."
intervals [402]:
xmin = 578.993018283078
xmax = 579.5945323958858
text = ""
intervals [403]:
xmin = 579.5945323958858
xmax = 580.102788506708
text = "And uh,"
intervals [404]:
xmin = 580.102788506708
xmax = 581.1414628010675
text = ""
intervals [405]:
xmin = 581.1414628010675
xmax = 581.9341558179461
text = "him and the uh-"
intervals [406]:
xmin = 581.9341558179461
xmax = 582.1486492225133
text = ""
intervals [407]:
xmin = 582.1486492225133
xmax = 582.6102763323426
text = "the uh,"
intervals [408]:
xmin = 582.6102763323426
xmax = 582.862072937704
text = ""
intervals [409]:
xmin = 582.862072937704
xmax = 585.5385775946941
text = "white detective, you know, who was in charge down [there,]"
intervals [410]:
xmin = 585.5385775946941
xmax = 585.6877903978713
text = ""
intervals [411]:
xmin = 585.6877903978713
xmax = 587.7849430147686
text = "he began to like Sidney Poitier and uh,"
intervals [412]:
xmin = 587.7849430147686
xmax = 588.670894033633
text = ""
intervals [413]:
xmin = 588.670894033633
xmax = 591.9768902040266
text = "then as the picture go on, this white man smacks Sidney Poitier."
intervals [414]:
xmin = 591.9768902040266
xmax = 592.4991350151466
text = ""
intervals [415]:
xmin = 592.4991350151466
xmax = 593.9807848189382
text = "And uh, he smacked him back,"
intervals [416]:
xmin = 593.9807848189382
xmax = 594.5869618318454
text = ""
intervals [417]:
xmin = 594.5869618318454
xmax = 595.9718431613333
text = "and the man said he remember"
intervals [418]:
xmin = 595.9718431613333
xmax = 596.1350446648083
text = ""
intervals [419]:
xmin = 596.1350446648083
xmax = 597.9908789043241
text = "where the time he'd had him shot for that."
intervals [420]:
xmin = 597.9908789043241
xmax = 598.693824391535
text = ""
intervals [421]:
xmin = 598.693824391535
xmax = 600.8340955371073
text = "But anyway you know, as the picture goes on"
intervals [422]:
xmin = 600.8340955371073
xmax = 601.2770710465394
text = ""
intervals [423]:
xmin = 601.2770710465394
xmax = 602.3029090683823
text = "Sidney Poitier,"
intervals [424]:
xmin = 602.3029090683823
xmax = 602.5966717746372
text = ""
intervals [425]:
xmin = 602.5966717746372
xmax = 604.6378695903433
text = "you know, they found who the killer was, and"
intervals [426]:
xmin = 604.6378695903433
xmax = 605.2953385043426
text = ""
intervals [427]:
xmin = 605.2953385043426
xmax = 605.8968526171504
text = "you know, and"
intervals [428]:
xmin = 605.8968526171504
xmax = 606.8340955371069
text = ""
intervals [429]:
xmin = 606.8340955371069
xmax = 610.1307659073019
text = "then things get together, and they really you know, start liking each other."
intervals [430]:
xmin = 610.1307659073019
xmax = 610.362758484485
text = ""
intervals [431]:
xmin = 610.362758484485
xmax = 612.008762219533
text = "It turned out pretty good, you know."
intervals [432]:
xmin = 612.008762219533
xmax = 613.183813044553
text = ""
intervals [433]:
xmin = 613.183813044553
xmax = 614.8158280793031
text = "[There are] some interesting parts in it."
intervals [434]:
xmin = 614.8158280793031
xmax = 615.0256585837709
text = ""
intervals [435]:
xmin = 615.0256585837709
xmax = 616.4198657134573
text = "Violence, you know, like that."
intervals [436]:
xmin = 616.4198657134573
xmax = 618.3864571275748
text = ""
intervals [437]:
xmin = 618.3864571275748
xmax = 619.2770710465384
text = "Yes, [yeah.]"
intervals [438]:
xmin = 619.2770710465384
xmax = 619.9112254600412
text = ""
intervals [439]:
xmin = 619.9112254600412
xmax = 620.3588638695727
text = "[Yeah, I-]"
intervals [440]:
xmin = 620.3588638695727
xmax = 620.6852668765226
text = ""
intervals [441]:
xmin = 620.6852668765226
xmax = 623.4119110068237
text = "[I think] it was, you know, real good because you know it was uh-"
intervals [442]:
xmin = 623.4119110068237
xmax = 623.873538116653
text = ""
intervals [443]:
xmin = 623.873538116653
xmax = 626.5780201742388
text = "The way I look at from my point of view it was a colored man"
intervals [444]:
xmin = 626.5780201742388
xmax = 626.9044231811888
text = ""
intervals [445]:
xmin = 626.9044231811888
xmax = 629.421236807022
text = "you know, making it, you know, with a white man, you know,"
intervals [446]:
xmin = 629.421236807022
xmax = 629.7010108129791
text = ""
intervals [447]:
xmin = 629.7010108129791
xmax = 632.2003252661963
text = "who was just as educated as he was. And you know,"
intervals [448]:
xmin = 632.2003252661963
xmax = 632.5826830743378
text = ""
intervals [449]:
xmin = 632.5826830743378
xmax = 635.2906756042416
text = "[he] /could know/ like the average you know, white man in the picture."
intervals [450]:
xmin = 635.2906756042416
xmax = 635.6357302115888
text = ""
intervals [451]:
xmin = 635.6357302115888
xmax = 637.0485889416724
text = "Thought he was a dummy, you know,"
intervals [452]:
xmin = 637.0485889416724
xmax = 637.3283629476296
text = ""
intervals [453]:
xmin = 637.3283629476296
xmax = 639.4639711931025
text = "[but he] knew just as much as him, and you know,"
intervals [454]:
xmin = 639.4639711931025
xmax = 639.9337716753491
text = ""
intervals [455]:
xmin = 639.9337716753491
xmax = 640.274163382597
text = "he was"
intervals [456]:
xmin = 640.274163382597
xmax = 640.4653422866677
text = ""
intervals [457]:
xmin = 640.4653422866677
xmax = 642.2792104252899
text = "even maybe a little smarter, you know."
intervals [458]:
xmin = 642.2792104252899
xmax = 643.6780804550756
text = ""
intervals [459]:
xmin = 643.6780804550756
xmax = 647.5144948090067
text = "And he was making y- more money than he was and you know, that's what they couldn't understand."
intervals [460]:
xmin = 647.5144948090067
xmax = 660.6335908328344
text = ""
intervals [461]:
xmin = 660.6335908328344
xmax = 662.2189768665917
text = "No, we had a uh,"
intervals [462]:
xmin = 662.2189768665917
xmax = 662.8671199803923
text = ""
intervals [463]:
xmin = 662.8671199803923
xmax = 663.9768902040224
text = "cat once but uh,"
intervals [464]:
xmin = 663.9768902040224
xmax = 664.4000616852762
text = ""
intervals [465]:
xmin = 664.4000616852762
xmax = 668.1770107656977
text = "it wasn't never my favorite or nothing like that. He was just my m- , you know my mother's cat."
intervals [466]:
xmin = 668.1770107656977
xmax = 671.6916850127781
text = ""
intervals [467]:
xmin = 671.6916850127781
xmax = 672.2978620256852
text = "[No.]"
intervals [468]:
xmin = 672.2978620256852
xmax = 675.0128917082689
text = ""
intervals [469]:
xmin = 675.0128917082689
xmax = 675.5024962186939
text = "No."
intervals [470]:
xmin = 675.5024962186939
xmax = 675.7915960248496
text = ""
intervals [471]:
xmin = 675.7915960248496
xmax = 677.7733285670463
text = "I would- I would like to have a German Shepard,"
intervals [472]:
xmin = 677.7733285670463
xmax = 678.2664435497894
text = ""
intervals [473]:
xmin = 678.2664435497894
xmax = 680.2062099910925
text = "but we can't have one in our house, you know."
intervals [474]:
xmin = 680.2062099910925
xmax = 680.5932306993332
text = ""
intervals [475]:
xmin = 680.5932306993332
xmax = 681.6097429209776
text = "We live in an apartment."
intervals [476]:
xmin = 681.6097429209776
xmax = 684.0193098445274
text = ""
intervals [477]:
xmin = 684.0193098445274
xmax = 687.2367109130348
text = "Well, you know, I think that uh, you know it's a good breed of an animal,"
intervals [478]:
xmin = 687.2367109130348
xmax = 687.6936751227648
text = ""
intervals [479]:
xmin = 687.6936751227648
xmax = 691.1337429682569
text = "and it's j- you know, I just like the German shepherd like a Doberman Pinscher m-"
intervals [480]:
xmin = 691.1337429682569
xmax = 691.6746393797741
text = ""
intervals [481]:
xmin = 691.6746393797741
xmax = 695.274398256423
text = "I would- wouldn't mind having one of them, but you know, they turn on you, you know."
intervals [482]:
xmin = 695.274398256423
xmax = 695.9260518425419
text = ""
intervals [483]:
xmin = 695.9260518425419
xmax = 698.2435131918871
text = "A German shepherd could turn on you, but uh,"
intervals [484]:
xmin = 698.2435131918871
xmax = 699.1154755104536
text = ""
intervals [485]:
xmin = 699.1154755104536
xmax = 701.5122061614867
text = "it just the most you know, animal I would rather have."
intervals [486]:
xmin = 701.5122061614867
xmax = 702.3783531521727
text = ""
intervals [487]:
xmin = 702.3783531521727
xmax = 705.1550386171114
text = "Cause I think that you know, they learn quick, you know, good"
intervals [488]:
xmin = 705.1550386171114
xmax = 705.407742929525
text = ""
intervals [489]:
xmin = 705.407742929525
xmax = 706.7288389448067
text = "watch dogs and things."
intervals [490]:
xmin = 706.7288389448067
xmax = 712.7541807715946
text = ""
intervals [491]:
xmin = 712.7541807715946
xmax = 714.3223983509815
text = "Oh, I go to school at Western High."
intervals [492]:
xmin = 714.3223983509815
xmax = 717.5304736192904
text = ""
intervals [493]:
xmin = 717.5304736192904
xmax = 719.2137805551328
text = "Oh I take uh, Math,"
intervals [494]:
xmin = 719.2137805551328
xmax = 719.7733285670471
text = ""
intervals [495]:
xmin = 719.7733285670471
xmax = 720.4261345809472
text = "English,"
intervals [496]:
xmin = 720.4261345809472
xmax = 720.784025460811
text = ""
intervals [497]:
xmin = 720.784025460811
xmax = 721.57348441354
text = "History,"
intervals [498]:
xmin = 721.57348441354
xmax = 721.9171101849375
text = ""
intervals [499]:
xmin = 721.9171101849375
xmax = 722.3442325664018
text = "Art"
intervals [500]:
xmin = 722.3442325664018
xmax = 723.1854190119434
text = ""
intervals [501]:
xmin = 723.1854190119434
xmax = 723.7263154234606
text = "and um,"
intervals [502]:
xmin = 723.7263154234606
xmax = 724.0340668300134
text = ""
intervals [503]:
xmin = 724.0340668300134
xmax = 724.4583907390485
text = "you know."
intervals [504]:
xmin = 724.4583907390485
xmax = 724.7708050457007
text = ""
intervals [505]:
xmin = 724.7708050457007
xmax = 725.5774867628772
text = "But I- And then I"
intervals [506]:
xmin = 725.5774867628772
xmax = 725.8525978687351
text = ""
intervals [507]:
xmin = 725.8525978687351
xmax = 727.6233474786827
text = "you know, Physical Ed and lunch."
intervals [508]:
xmin = 727.6233474786827
xmax = 728.2201986913913
text = ""
intervals [509]:
xmin = 728.2201986913913
xmax = 730.691535744013
text = "And I get excused from school on a work program."
intervals [510]:
xmin = 730.691535744013
xmax = 732.9472269642863
text = ""
intervals [511]:
xmin = 732.9472269642863
xmax = 733.5021120761013
text = "Yes sir."
intervals [512]:
xmin = 733.5021120761013
xmax = 736.6961986441123
text = ""
intervals [513]:
xmin = 736.6961986441123
xmax = 738.1277089745932
text = "Well, you know at this point-"
intervals [514]:
xmin = 738.1277089745932
xmax = 738.5042514548542
text = ""
intervals [515]:
xmin = 738.5042514548542
xmax = 740.3087937932779
text = "But i- you know it's the year-"
intervals [516]:
xmin = 740.3087937932779
xmax = 740.7564322028095
text = ""
intervals [517]:
xmin = 740.7564322028095
xmax = 744.8213286616058
text = "I really don't have any favorite subject that I particularly like, you know like,"
intervals [518]:
xmin = 744.8213286616058
xmax = 745.655987779378
text = ""
intervals [519]:
xmin = 745.655987779378
xmax = 746.4253662957602
text = "I just try to-"
intervals [520]:
xmin = 746.4253662957602
xmax = 746.6072193996324
text = ""
intervals [521]:
xmin = 746.6072193996324
xmax = 747.5118220188939
text = "You know, I just do it"
intervals [522]:
xmin = 747.5118220188939
xmax = 747.7169896232625
text = ""
intervals [523]:
xmin = 747.7169896232625
xmax = 749.3696835847005
text = "all on average and uh,"
intervals [524]:
xmin = 749.3696835847005
xmax = 750.0519501452237
text = ""
intervals [525]:
xmin = 750.0519501452237
xmax = 753.9397022138656
text = "I don't devote my time to no one subject, which I should, but I don't, you know."
intervals [526]:
xmin = 753.9397022138656
xmax = 754.7847937459992
text = ""
intervals [527]:
xmin = 754.7847937459992
xmax = 758.8450273046963
text = "But in the future I plan to, you know, give myself a major that I really interested in."
intervals [528]:
xmin = 758.8450273046963
xmax = 760.048055530312
text = ""
intervals [529]:
xmin = 760.048055530312
xmax = 760.8967033483822
text = "But I don't now."
intervals [530]:
xmin = 760.8967033483822
xmax = 765.507159118795
text = ""
intervals [531]:
xmin = 765.507159118795
xmax = 767.5821496629774
text = "Oh well, when school's out for me you know I"
intervals [532]:
xmin = 767.5821496629774
xmax = 767.8899010695302
text = ""
intervals [533]:
xmin = 767.8899010695302
xmax = 769.1896977694499
text = "come- come to work."
intervals [534]:
xmin = 769.1896977694499
xmax = 769.8005376824564
text = ""
intervals [535]:
xmin = 769.8005376824564
xmax = 771.0548578091643
text = "After I get off from work,"
intervals [536]:
xmin = 771.0548578091643
xmax = 771.5817655203837
text = ""
intervals [537]:
xmin = 771.5817655203837
xmax = 774.0670912733032
text = "I might go down the pool room, shoot a little bit of pool."
intervals [538]:
xmin = 774.0670912733032
xmax = 774.7094190592236
text = ""
intervals [539]:
xmin = 774.7094190592236
xmax = 775.8704811839458
text = "Leave there you know."
intervals [540]:
xmin = 775.8704811839458
xmax = 776.1082890890094
text = ""
intervals [541]:
xmin = 776.1082890890094
xmax = 777.6377203215752
text = "If I got any homework to do,"
intervals [542]:
xmin = 777.6377203215752
xmax = 778.0433926302131
text = ""
intervals [543]:
xmin = 778.0433926302131
xmax = 780.2396185769769
text = "I go home and do my homework or"
intervals [544]:
xmin = 780.2396185769769
xmax = 780.8353173619043
text = ""
intervals [545]:
xmin = 780.8353173619043
xmax = 784.8287871731833
text = "I might go up the playground and shoot you know, f- little basketball til about [nine.]"
intervals [546]:
xmin = 784.8287871731833
xmax = 785.197156281027
text = ""
intervals [547]:
xmin = 785.197156281027
xmax = 787.2161920240178
text = "Lights go out, and then I- you know, I go home,"
intervals [548]:
xmin = 787.2161920240178
xmax = 787.6140216784853
text = ""
intervals [549]:
xmin = 787.6140216784853
xmax = 790.2905263354755
text = "look at television or you know, something like that."
intervals [550]:
xmin = 790.2905263354755
xmax = 799.0311591660748
text = ""
intervals [551]:
xmin = 799.0311591660748
xmax = 799.8378408832513
text = "When I was younger?"
intervals [552]:
xmin = 799.8378408832513
xmax = 801.3952495164128
text = ""
intervals [553]:
xmin = 801.3952495164128
xmax = 804.346865279261
text = "Well, you know when I [was younger I] went to Catholic school so"
intervals [554]:
xmin = 804.346865279261
xmax = 804.592846556742
text = ""
intervals [555]:
xmin = 804.592846556742
xmax = 807.5351365193916
text = "you might say all the sisters were you know, hard, with you know"
intervals [556]:
xmin = 807.5351365193916
xmax = 807.8710149401081
text = ""
intervals [557]:
xmin = 807.8710149401081
xmax = 811.3918172106852
text = "and now that I'm a little bit older, you know, I wish all my teacher was like that."
intervals [558]:
xmin = 811.3918172106852
xmax = 811.7669846657467
text = ""
intervals [559]:
xmin = 811.7669846657467
xmax = 815.7783905314043
text = "Cause you know, they made you get your work done, so you had to learn something when you leave [there.]"
intervals [560]:
xmin = 815.7783905314043
xmax = 816.124698951461
text = ""
intervals [561]:
xmin = 816.124698951461
xmax = 818.5777169268631
text = "But like public school, you know, if you don't do your work-"
intervals [562]:
xmin = 818.5777169268631
xmax = 818.7797301718962
text = ""
intervals [563]:
xmin = 818.7797301718962
xmax = 822.6468408625301
text = "you just don't do it, you know. And that's the easy way out, and I believe that's why, you know-"
intervals [564]:
xmin = 822.6468408625301
xmax = 822.8777131425679
text = ""
intervals [565]:
xmin = 822.8777131425679
xmax = 825.2152949779511
text = "half the, you know, teenagers don't make it cause uh,"
intervals [566]:
xmin = 825.2152949779511
xmax = 825.3884491879794
text = ""
intervals [567]:
xmin = 825.3884491879794
xmax = 827.0622732182538
text = "they don't make 'em make it, you know."
intervals [568]:
xmin = 827.0622732182538
xmax = 827.8126081283768
text = ""
intervals [569]:
xmin = 827.8126081283768
xmax = 830.2079080337694
text = "Like when I went to Catholic school, if you didn't bring in your homework,"
intervals [570]:
xmin = 830.2079080337694
xmax = 830.4387803138072
text = ""
intervals [571]:
xmin = 830.4387803138072
xmax = 832.6032079391621
text = "you stayed after school and did it, you know."
intervals [572]:
xmin = 832.6032079391621
xmax = 832.8765447049584
text = ""
intervals [573]:
xmin = 832.8765447049584
xmax = 835.7191596529243
text = "[And maybe] teacher made you write a thousand times or something."
intervals [574]:
xmin = 835.7191596529243
xmax = 836.772514430597
text = ""
intervals [575]:
xmin = 836.772514430597
xmax = 841.5198256888751
text = "And that's why, you know, I think when you leave Catholic school, you know a lot more than you do when you leave public school."
intervals [576]:
xmin = 841.5198256888751
xmax = 846.2040592795078
text = ""
intervals [577]:
xmin = 846.2040592795078
xmax = 848.3973459398673
text = "It's probably a false alarm or something."
intervals [578]:
xmin = 848.3973459398673
xmax = 851.2255313703308
text = ""
intervals [579]:
xmin = 851.2255313703308
xmax = 853.9010588819511
text = "Oh yeah, in the store that had already been burned, yeah."
intervals [580]:
xmin = 853.9010588819511
xmax = 859.03845611496
text = ""
intervals [581]:
xmin = 859.03845611496
xmax = 860.3948307601823
text = "[When that riot start?]"
intervals [582]:
xmin = 860.3948307601823
xmax = 865.3297257459913
text = ""
intervals [583]:
xmin = 865.3297257459913
xmax = 866.3109329361521
text = "Yeah, it was."
intervals [584]:
xmin = 866.3109329361521
xmax = 873.8612821303665
text = ""
intervals [585]:
xmin = 873.8612821303665
xmax = 877.2089301909152
text = "Well you know like, uh, they try to teach you, uh, discipline and"
intervals [586]:
xmin = 877.2089301909152
xmax = 877.9592651010381
text = ""
intervals [587]:
xmin = 877.9592651010381
xmax = 881.9706709666957
text = "like, uh, when I used come to school like fifteen minutes late today,"
intervals [588]:
xmin = 881.9706709666957
xmax = 882.3746974567619
text = ""
intervals [589]:
xmin = 882.3746974567619
xmax = 883.2693275419085
text = "she'll, you know,"
intervals [590]:
xmin = 883.2693275419085
xmax = 883.5001998219464
text = ""
intervals [591]:
xmin = 883.5001998219464
xmax = 887.2518743725614
text = "aks me what happened. I say, I overslept. She tell me to go to bed earlier tomorrow."
intervals [592]:
xmin = 887.2518743725614
xmax = 887.5693237576133
text = ""
intervals [593]:
xmin = 887.5693237576133
xmax = 890.1954959430439
text = "And I might come in, you know, half an hour late tomorrow."
intervals [594]:
xmin = 890.1954959430439
xmax = 890.5418043631006
text = ""
intervals [595]:
xmin = 890.5418043631006
xmax = 891.7250247982945
text = "[And uh], you know, she'll"
intervals [596]:
xmin = 891.7250247982945
xmax = 891.9847561133371
text = ""
intervals [597]:
xmin = 891.9847561133371
xmax = 893.8894524236493
text = "make me stand up in the corner."
intervals [598]:
xmin = 893.8894524236493
xmax = 894.0446516713157
text = ""
intervals [599]:
xmin = 894.0446516713157
xmax = 897.6015499622347
text = "You know, holler at me. Tell me I should have went to bed earlier or something, you know."
intervals [600]:
xmin = 897.6015499622347
xmax = 897.9465057715307
text = ""
intervals [601]:
xmin = 897.9465057715307
xmax = 903.2294124391282
text = "So, you know, the next day I come to school, you know, a little before time, so I wouldn't have to do that, you know."
intervals [602]:
xmin = 903.2294124391282
xmax = 903.7471718074815
text = ""
intervals [603]:
xmin = 903.7471718074815
xmax = 905.5075729427701
text = "And like, if you do your work,"
intervals [604]:
xmin = 905.5075729427701
xmax = 905.6518681177937
text = ""
intervals [605]:
xmin = 905.6518681177937
xmax = 908.9604580385894
text = "[and she] know you can do it better, and you just hurry up to finish it,"
intervals [606]:
xmin = 908.9604580385894
xmax = 909.280498445837
text = ""
intervals [607]:
xmin = 909.280498445837
xmax = 911.8854196788155
text = "she'd tear your paper up and make you do it all over again."
intervals [608]:
xmin = 911.8854196788155
xmax = 912.0767149468237
text = ""
intervals [609]:
xmin = 912.0767149468237
xmax = 916.001543707467
text = "So the next time you take your time. Make sure, you know, penmenship is neat and all."
intervals [610]:
xmin = 916.001543707467
xmax = 916.5533629260867
text = ""
intervals [611]:
xmin = 916.5533629260867
xmax = 920.0995266781388
text = "You know this is in Catholic school. In public school you do what you wanna do."
intervals [612]:
xmin = 920.0995266781388
xmax = 925.6013790709428
text = ""
intervals [613]:
xmin = 925.6013790709428
xmax = 928.7106629695187
text = "Well whe- I had two favorite teachers when I was in Catholic school."
intervals [614]:
xmin = 928.7106629695187
xmax = 929.0313634996669
text = ""
intervals [615]:
xmin = 929.0313634996669
xmax = 930.4771805125048
text = "Uh, sister /RD-NAME-2/,"
intervals [616]:
xmin = 930.4771805125048
xmax = 930.8658409998268
text = ""
intervals [617]:
xmin = 930.8658409998268
xmax = 932.5821803041371
text = "and um, mother /RD-NAME-4/."
intervals [618]:
xmin = 932.5821803041371
xmax = 933.6952893475309
text = ""
intervals [619]:
xmin = 933.6952893475309
xmax = 934.7679922925396
text = "You know, [my two-]"
intervals [620]:
xmin = 934.7679922925396
xmax = 936.3381806613204
text = ""
intervals [621]:
xmin = 936.3381806613204
xmax = 939.2450360760683
text = "Well see sister /RD-NAME-2/, I had her in the fourth grade,"
intervals [622]:
xmin = 939.2450360760683
xmax = 939.6806608522896
text = ""
intervals [623]:
xmin = 939.6806608522896
xmax = 943.1475123992018
text = "and I stayed back in the fourth grade, and I had her that year, you know, again."
intervals [624]:
xmin = 943.1475123992018
xmax = 943.2972023149283
text = ""
intervals [625]:
xmin = 943.2972023149283
xmax = 946.7329610228547
text = "Then when I went to the fifth, she was my fifth grade teacher, so you know,"
intervals [626]:
xmin = 946.7329610228547
xmax = 946.9972501542337
text = ""
intervals [627]:
xmin = 946.9972501542337
xmax = 949.7800592434592
text = "she more or less understood me and I [understood her.]"
intervals [628]:
xmin = 949.7800592434592
xmax = 949.935523438388
text = ""
intervals [629]:
xmin = 949.935523438388
xmax = 952.5784147521775
text = "And you know, we didn't have no trouble together, you know."
intervals [630]:
xmin = 952.5784147521775
xmax = 964.6055679422171
text = ""
intervals [631]:
xmin = 964.6055679422171
xmax = 966.6576953152772
text = "Nah, not in Catholic school."
intervals [632]:
xmin = 966.6576953152772
xmax = 966.9346435840646
text = ""
intervals [633]:
xmin = 966.9346435840646
xmax = 969.9040097072046
text = "Except for, you know, little things, like, be coming through the line,"
intervals [634]:
xmin = 969.9040097072046
xmax = 970.1838441823124
text = ""
intervals [635]:
xmin = 970.1838441823124
xmax = 972.8111890766091
text = "I might sneak out and get me a drink of water, you know, but-"
intervals [636]:
xmin = 972.8111890766091
xmax = 973.3086745003812
text = ""
intervals [637]:
xmin = 973.3086745003812
xmax = 975.4074411319201
text = "and, you know, she ain't catch me or something."
intervals [638]:
xmin = 975.4074411319201
xmax = 975.8058737595327
text = ""
intervals [639]:
xmin = 975.8058737595327
xmax = 978.0290117470145
text = "Or might ease out the room, you know,"
intervals [640]:
xmin = 978.0290117470145
xmax = 978.3865793953507
text = ""
intervals [641]:
xmin = 978.3865793953507
xmax = 981.6036275844082
text = "try to get back before she get back, or something like that, you know."
intervals [642]:
xmin = 981.6036275844082
xmax = 982.1643593321205
text = ""
intervals [643]:
xmin = 982.1643593321205
xmax = 984.2631259636593
text = "But I never, you know, did any tricks, you know to"
intervals [644]:
xmin = 984.2631259636593
xmax = 984.4185901585881
text = ""
intervals [645]:
xmin = 984.4185901585881
xmax = 986.5173567901269
text = "make her look bad or nothing like that, you know."
intervals [646]:
xmin = 986.5173567901269
xmax = 991.2221476172673
text = ""
intervals [647]:
xmin = 991.2221476172673
xmax = 994.113781642943
text = "Nah, in Catholic school they didn't, you know, mess with the teachers,"
intervals [648]:
xmin = 994.113781642943
xmax = 994.7822776811367
text = ""
intervals [649]:
xmin = 994.7822776811367
xmax = 995.264216685416
text = "you know."
intervals [650]:
xmin = 995.264216685416
xmax = 997.2430169968324
text = ""
intervals [651]:
xmin = 997.2430169968324
xmax = 998.2024899695704
text = "Nah."
intervals [652]:
xmin = 998.2024899695704
xmax = 1008.2552491022612
text = ""
intervals [653]:
xmin = 1008.2552491022612
xmax = 1012.9036285306323
text = "Well you know, you call that your walk man, you know, like the person that you be with all the time."
intervals [654]:
xmin = 1012.9036285306323
xmax = 1013.2398754802734
text = ""
intervals [655]:
xmin = 1013.2398754802734
xmax = 1015.1209922389119
text = "But we more or less like, you know,"
intervals [656]:
xmin = 1015.1209922389119
xmax = 1015.354188531305
text = ""
intervals [657]:
xmin = 1015.354188531305
xmax = 1017.157573192479
text = "go to school, come home."
intervals [658]:
xmin = 1017.157573192479
xmax = 1017.4374087433509
text = ""
intervals [659]:
xmin = 1017.4374087433509
xmax = 1019.7227324088042
text = "You know, like I said, we shoot pool together."
intervals [660]:
xmin = 1019.7227324088042
xmax = 1020.0336607986618
text = ""
intervals [661]:
xmin = 1020.0336607986618
xmax = 1021.8214990403429
text = "[Basketball], party,"
intervals [662]:
xmin = 1021.8214990403429
xmax = 1022.2878916251294
text = ""
intervals [663]:
xmin = 1022.2878916251294
xmax = 1024.6509473880471
text = "like, you know, if I don't have nothing to wear today,"
intervals [664]:
xmin = 1024.6509473880471
xmax = 1024.9561014987025
text = ""
intervals [665]:
xmin = 1024.9561014987025
xmax = 1028.2053031727144
text = "you know, I go over his house, and he, you know, lend me some clothes or something."
intervals [666]:
xmin = 1028.2053031727144
xmax = 1028.3607673676433
text = ""
intervals [667]:
xmin = 1028.3607673676433
xmax = 1031.734340397598
text = "Then tomorrow, you know, three days later I might lend him a pair of pants."
intervals [668]:
xmin = 1031.734340397598
xmax = 1032.1230008849202
text = ""
intervals [669]:
xmin = 1032.1230008849202
xmax = 1034.0041176435586
text = "You know, and, if I ain't got no money,"
intervals [670]:
xmin = 1034.0041176435586
xmax = 1034.330592452909
text = ""
intervals [671]:
xmin = 1034.330592452909
xmax = 1036.538184020898
text = "they might give me two or three dollars, you know."
intervals [672]:
xmin = 1036.538184020898
xmax = 1036.8180195717698
text = ""
intervals [673]:
xmin = 1036.8180195717698
xmax = 1039.118889656716
text = "And if he needs some money I give it to him, you know."
intervals [674]:
xmin = 1039.118889656716
xmax = 1040.123632644551
text = ""
intervals [675]:
xmin = 1040.123632644551
xmax = 1041.7093674328248
text = "It's called your walk man, you know."
intervals [676]:
xmin = 1041.7093674328248
xmax = 1042.9997202507338
text = ""
intervals [677]:
xmin = 1042.9997202507338
xmax = 1043.4350199965345
text = "Uh."
intervals [678]:
xmin = 1043.4350199965345
xmax = 1050.8915270739146
text = ""
intervals [679]:
xmin = 1050.8915270739146
xmax = 1055.1667924344565
text = "Well, like, you know, both of y'all, first of all, have to, you know, like the same things and"
intervals [680]:
xmin = 1055.1667924344565
xmax = 1055.4155351463426
text = ""
intervals [681]:
xmin = 1055.4155351463426
xmax = 1057.947800868454
text = "what you might say, dig, the same things [like]-"
intervals [682]:
xmin = 1057.947800868454
xmax = 1058.2760763330323
text = ""
intervals [683]:
xmin = 1058.2760763330323
xmax = 1060.7168641934145
text = "You know, like the same kind of clothes, or"
intervals [684]:
xmin = 1060.7168641934145
xmax = 1060.9500604858076
text = ""
intervals [685]:
xmin = 1060.9500604858076
xmax = 1062.6601666300244
text = "like to party together."
intervals [686]:
xmin = 1062.6601666300244
xmax = 1062.9848407841469
text = ""
intervals [687]:
xmin = 1062.9848407841469
xmax = 1067.6798594709965
text = "You know, like, maybe on occasion you might, you know, get a little drink or something like that together, [you know.]"
intervals [688]:
xmin = 1067.6798594709965
xmax = 1068.3639019286832
text = ""
intervals [689]:
xmin = 1068.3639019286832
xmax = 1069.0168515473842
text = "And, you know,"
intervals [690]:
xmin = 1069.0168515473842
xmax = 1069.2811406787632
text = ""
intervals [691]:
xmin = 1069.2811406787632
xmax = 1070.4004828822506
text = "things of that sort."
intervals [692]:
xmin = 1070.4004828822506
xmax = 1070.89
text = ""
item [2]:
class = "IntervalTier"
name = "DCA_int_02"
xmin = 0
xmax = 1070.89
intervals: size = 325
intervals [1]:
xmin = 0
xmax = 1.1809517502365183
text = ""
intervals [2]:
xmin = 1.1809517502365183
xmax = 3.5845463571462344
text = "Yeah, give me your name and count to ten."
intervals [3]:
xmin = 3.5845463571462344
xmax = 16.0779717271051
text = ""
intervals [4]:
xmin = 16.0779717271051
xmax = 16.623531038721573
text = "Okay."
intervals [5]:
xmin = 16.623531038721573
xmax = 17.201730651033046
text = ""
intervals [6]:
xmin = 17.201730651033046
xmax = 19.9330376814335
text = "Uh, what kinds of games did you play when you were younger?"
intervals [7]:
xmin = 19.9330376814335
xmax = 23.570099758876648
text = ""
intervals [8]:
xmin = 23.570099758876648
xmax = 24.33015247506028
text = "Uh-huh."
intervals [9]:
xmin = 24.33015247506028
xmax = 30.86172308637889
text = ""
intervals [10]:
xmin = 30.86172308637889
xmax = 33.010256134461734
text = "H- How did you play hide and go seek ? /How'd you-/"
intervals [11]:
xmin = 33.010256134461734
xmax = 51.882129922935086
text = ""
intervals [12]:
xmin = 51.882129922935086
xmax = 52.23184743038154
text = "Uh-huh."
intervals [13]:
xmin = 52.23184743038154
xmax = 52.49763273604085
text = ""
intervals [14]:
xmin = 52.49763273604085
xmax = 53.43953855609664
text = "Pretty good. Uh,"
intervals [15]:
xmin = 53.43953855609664
xmax = 54.507342678833155
text = ""
intervals [16]:
xmin = 54.507342678833155
xmax = 57.812186421445794
text = "how about uh, other games like uh, Red Rover Red Rover. Have you ever-"
intervals [17]:
xmin = 57.812186421445794
xmax = 60.47936527823744
text = ""
intervals [18]:
xmin = 60.47936527823744
xmax = 62.80179459600019
text = "How about basketball? You play much basketball around here?"
intervals [19]:
xmin = 62.80179459600019
xmax = 65.9480997352371
text = ""
intervals [20]:
xmin = 65.9480997352371
xmax = 67.45887936740579
text = "Oh, do you play on a team?"
intervals [21]:
xmin = 67.45887936740579
xmax = 72.9879264573779
text = ""
intervals [22]:
xmin = 72.9879264573779
xmax = 73.86921457614297
text = "What's your best shot?"
intervals [23]:
xmin = 73.86921457614297
xmax = 79.23039726254078
text = ""
intervals [24]:
xmin = 79.23039726254078
xmax = 79.72466467306509
text = "Uh-huh."
intervals [25]:
xmin = 79.72466467306509
xmax = 81.69570244905677
text = ""
intervals [26]:
xmin = 81.69570244905677
xmax = 82.05496229492694
text = "You can't-"
intervals [27]:
xmin = 82.05496229492694
xmax = 82.30209600018911
text = ""
intervals [28]:
xmin = 82.30209600018911
xmax = 83.36523722282634
text = "You don't stuff it do you?"
intervals [29]:
xmin = 83.36523722282634
xmax = 85.25837466313648
text = ""
intervals [30]:
xmin = 85.25837466313648
xmax = 85.76663077395867
text = "[<laugh>]"
intervals [31]:
xmin = 85.76663077395867
xmax = 86.9276928986809
text = ""
intervals [32]:
xmin = 86.9276928986809
xmax = 87.47654614439034
text = "Is that right?"
intervals [33]:
xmin = 87.47654614439034
xmax = 87.70524478748048
text = ""
intervals [34]:
xmin = 87.70524478748048
xmax = 90.8153991537043
text = "How about when you're younger, you ever play uh, Kick the Can?"
intervals [35]:
xmin = 90.8153991537043
xmax = 93.7285592879769
text = ""
intervals [36]:
xmin = 93.7285592879769
xmax = 94.96889071438702
text = "Or uh,"
intervals [37]:
xmin = 94.96889071438702
xmax = 96.00405453642853
text = ""
intervals [38]:
xmin = 96.00405453642853
xmax = 97.4868567680015
text = "How about uh, with marbles?"
intervals [39]:
xmin = 97.4868567680015
xmax = 98.66075516524042
text = ""
intervals [40]:
xmin = 98.66075516524042
xmax = 99.9057494917498
text = "[Yeah, how'd you play that?]"
intervals [41]:
xmin = 99.9057494917498
xmax = 117.89176079145193
text = ""
intervals [42]:
xmin = 117.89176079145193
xmax = 118.60984740674199
text = "Oh, good."
intervals [43]:
xmin = 118.60984740674199
xmax = 120.74079275211572
text = ""
intervals [44]:
xmin = 120.74079275211572
xmax = 126.93797339884652
text = "How about at uh- at the beginning of games. Like you're gonna play Hide and Go Seek. How do you decide who's uh,"
intervals [45]:
xmin = 126.93797339884652
xmax = 127.44156660956942
text = ""
intervals [46]:
xmin = 127.44156660956942
xmax = 128.14917499687974
text = "gonna be it?"
intervals [47]:
xmin = 128.14917499687974
xmax = 145.15913713267176
text = ""
intervals [48]:
xmin = 145.15913713267176
xmax = 145.61610134240178
text = "Uh-huh."
intervals [49]:
xmin = 145.61610134240178
xmax = 146.91123514222213
text = ""
intervals [50]:
xmin = 146.91123514222213
xmax = 148.45931797518512
text = "Any other rhymes you could use?"
intervals [51]:
xmin = 148.45931797518512
xmax = 148.81369838273085
text = ""
intervals [52]:
xmin = 148.81369838273085
xmax = 149.24734809196445
text = "Like,"
intervals [53]:
xmin = 149.24734809196445
xmax = 149.8115590039781
text = ""
intervals [54]:
xmin = 149.8115590039781
xmax = 150.97396144587208
text = "one potato, [two pot-]"
intervals [55]:
xmin = 150.97396144587208
xmax = 152.16300097119003
text = ""
intervals [56]:
xmin = 152.16300097119003
xmax = 153.11423259144436
text = "[How'd] that one go?"
intervals [57]:
xmin = 153.11423259144436
xmax = 159.74290523306033
text = ""
intervals [58]:
xmin = 159.74290523306033
xmax = 160.24649844378322
text = "Uh-huh."
intervals [59]:
xmin = 160.24649844378322
xmax = 160.90396735778256
text = ""
intervals [60]:
xmin = 160.90396735778256
xmax = 161.4961556703919
text = "Very good."
intervals [61]:
xmin = 161.4961556703919
xmax = 162.35879218875982
text = ""
intervals [62]:
xmin = 162.35879218875982
xmax = 164.98400494465787
text = "How about uh, televsion? Do you watch a lot of television?"
intervals [63]:
xmin = 164.98400494465787
xmax = 168.76912739749702
text = ""
intervals [64]:
xmin = 168.76912739749702
xmax = 169.36131571010634
text = "Uh-huh."
intervals [65]:
xmin = 169.36131571010634
xmax = 169.52918011368064
text = ""
intervals [66]:
xmin = 169.52918011368064
xmax = 171.27158710779022
text = "Well what's your favorite program?"
intervals [67]:
xmin = 171.27158710779022
xmax = 177.77255650682127
text = ""
intervals [68]:
xmin = 177.77255650682127
xmax = 178.22019491635274
text = "Uh-huh."
intervals [69]:
xmin = 178.22019491635274
xmax = 182.90174661603598
text = ""
intervals [70]:
xmin = 182.90174661603598
xmax = 187.36000055633752
text = "How about uh, can you tell me the best time you ever watched I Spy, what happened?"
intervals [71]:
xmin = 187.36000055633752
xmax = 197.92199072660458
text = ""
intervals [72]:
xmin = 197.92199072660458
xmax = 198.4535613379232
text = "[Uh-huh.]"
intervals [73]:
xmin = 198.4535613379232
xmax = 199.17049552543205
text = ""
intervals [74]:
xmin = 199.17049552543205
xmax = 201.2361602694158
text = "Did you happen to watch it last week, you know?"
intervals [75]:
xmin = 201.2361602694158
xmax = 204.30111117677654
text = ""
intervals [76]:
xmin = 204.30111117677654
xmax = 204.66015448442158
text = "[Huh.]"
intervals [77]:
xmin = 204.66015448442158
xmax = 207.907617883713
text = ""
intervals [78]:
xmin = 207.907617883713
xmax = 209.4090717156831
text = "Yeah, what- what kind of work do you do?"
intervals [79]:
xmin = 209.4090717156831
xmax = 212.95172336335938
text = ""
intervals [80]:
xmin = 212.95172336335938
xmax = 213.85166308252158
text = "[What do you do?]"
intervals [81]:
xmin = 213.85166308252158
xmax = 227.76345212322883
text = ""
intervals [82]:
xmin = 227.76345212322883
xmax = 228.20642763266102
text = "Uh-huh."
intervals [83]:
xmin = 228.20642763266102
xmax = 237.9191304727686
text = ""
intervals [84]:
xmin = 237.9191304727686
xmax = 238.3760946824986
text = "Uh-huh."
intervals [85]:
xmin = 238.3760946824986
xmax = 239.21075380027082
text = ""
intervals [86]:
xmin = 239.21075380027082
xmax = 242.71676814089247
text = "That's interesting. How about the- I guess you have some really interesting"
intervals [87]:
xmin = 242.71676814089247
xmax = 243.29030485310466
text = ""
intervals [88]:
xmin = 243.29030485310466
xmax = 244.40007507673477
text = "[things] happening there."
intervals [89]:
xmin = 244.40007507673477
xmax = 258.71874970180113
text = ""
intervals [90]:
xmin = 258.71874970180113
xmax = 259.24545211672506
text = "[Uh-huh.]"
intervals [91]:
xmin = 259.24545211672506
xmax = 260.872804251376
text = ""
intervals [92]:
xmin = 260.872804251376
xmax = 262.22038238006974
text = "How did you get interested in that?"
intervals [93]:
xmin = 262.22038238006974
xmax = 269.10518097115306
text = ""
intervals [94]:
xmin = 269.10518097115306
xmax = 269.36502068460123
text = "Yeah."
intervals [95]:
xmin = 269.36502068460123
xmax = 277.8189888289378
text = ""
intervals [96]:
xmin = 277.8189888289378
xmax = 278.18269503668216
text = "Yeah."
intervals [97]:
xmin = 278.18269503668216
xmax = 283.4869413241127
text = ""
intervals [98]:
xmin = 283.4869413241127
xmax = 283.8879507326513
text = "Yeah."
intervals [99]:
xmin = 283.8879507326513
xmax = 294.22329539720647
text = ""
intervals [100]:
xmin = 294.22329539720647
xmax = 297.88833487524545
text = "That's interesting. Your b- Is that what your buddies do, too? /Are they into/ that kind of work?"
intervals [101]:
xmin = 297.88833487524545
xmax = 306.143725001182
text = ""
intervals [102]:
xmin = 306.143725001182
xmax = 306.61001501111065
text = "[Uh-huh.]"
intervals [103]:
xmin = 306.61001501111065
xmax = 308.246994040297
text = ""
intervals [104]:
xmin = 308.246994040297
xmax = 309.9163122758415
text = "You plan to go into that uh- ?"
intervals [105]:
xmin = 309.9163122758415
xmax = 318.43778880177433
text = ""
intervals [106]:
xmin = 318.43778880177433
xmax = 318.82947241011436
text = "Uh-huh."
intervals [107]:
xmin = 318.82947241011436
xmax = 325.76205242997185
text = ""
intervals [108]:
xmin = 325.76205242997185
xmax = 327.3707529642256
text = "[Yeah.] That's important, huh?"
intervals [109]:
xmin = 327.3707529642256
xmax = 331.48694132411407
text = ""
intervals [110]:
xmin = 331.48694132411407
xmax = 332.0138490353334
text = "[Yeah.]"
intervals [111]:
xmin = 332.0138490353334
xmax = 332.3635665427799
text = ""
intervals [112]:
xmin = 332.3635665427799
xmax = 336.8574498107106
text = "They probably listen to you too, you know, because you're younger, more their age and all that."
intervals [113]:
xmin = 336.8574498107106
xmax = 343.8137700485788
text = ""
intervals [114]:
xmin = 343.8137700485788
xmax = 344.36865516039387
text = "Mm-hm."
intervals [115]:
xmin = 344.36865516039387
xmax = 346.01932179554115
text = ""
intervals [116]:
xmin = 346.01932179554115
xmax = 347.60470782929843
text = "Good. Uh, how about uh,"
intervals [117]:
xmin = 347.60470782929843
xmax = 348.48133304796426
text = ""
intervals [118]:
xmin = 348.48133304796426
xmax = 349.79511844818177
text = "movies? Do you go to movies much?"
intervals [119]:
xmin = 349.79511844818177
xmax = 357.6742671881941
text = ""
intervals [120]:
xmin = 357.6742671881941
xmax = 359.2736419222492
text = "[What's the best] movie you've ever seen?"
intervals [121]:
xmin = 359.2736419222492
xmax = 365.9587067529361
text = ""
intervals [122]:
xmin = 365.9587067529361
xmax = 366.3737048617726
text = "[Yeah.]"
intervals [123]:
xmin = 366.3737048617726
xmax = 366.658141767829
text = ""
intervals [124]:
xmin = 366.658141767829
xmax = 368.70515491141566
text = "Yeah, I saw that. What'd you think of that?"
intervals [125]:
xmin = 368.70515491141566
xmax = 369.62575894756753
text = ""
intervals [126]:
xmin = 369.62575894756753
xmax = 370.6064657241432
text = "[Well], what happened?"
intervals [127]:
xmin = 370.6064657241432
xmax = 374.0651851700323
text = ""
intervals [128]:
xmin = 374.0651851700323
xmax = 374.550126780358
text = "[Yeah.]"
intervals [129]:
xmin = 374.550126780358
xmax = 378.6208385670348
text = ""
intervals [130]:
xmin = 378.6208385670348
xmax = 378.97256879107374
text = "[Uh-huh.]"
intervals [131]:
xmin = 378.97256879107374
xmax = 385.8417366937967
text = ""
intervals [132]:
xmin = 385.8417366937967
xmax = 386.49733712354026
text = "[Yeah], mm-hm."
intervals [133]:
xmin = 386.49733712354026
xmax = 402.91926417338937
text = ""
intervals [134]:
xmin = 402.91926417338937
xmax = 403.93577639503377
text = "[Yeah.] Uh-huh."
intervals [135]:
xmin = 403.93577639503377
xmax = 413.3898329408237
text = ""
intervals [136]:
xmin = 413.3898329408237
xmax = 413.7815165491637
text = "[Mm-hm.]"
intervals [137]:
xmin = 413.7815165491637
xmax = 426.90365745318144
text = ""
intervals [138]:
xmin = 426.90365745318144
xmax = 427.88183431043456
text = "[<laughs>]"
intervals [139]:
xmin = 427.88183431043456
xmax = 430.8489365293066
text = ""
intervals [140]:
xmin = 430.8489365293066
xmax = 431.3665184403274
text = "Mm-hm."
intervals [141]:
xmin = 431.3665184403274
xmax = 439.9093365232657
text = ""
intervals [142]:
xmin = 439.9093365232657
xmax = 440.3014953193703
text = "[Yeah.]"
intervals [143]:
xmin = 440.3014953193703
xmax = 443.5452461729277
text = ""
intervals [144]:
xmin = 443.5452461729277
xmax = 444.83686950042994
text = "[Yeah,] very good."
intervals [145]:
xmin = 444.83686950042994
xmax = 445.20990150837287
text = ""
intervals [146]:
xmin = 445.20990150837287
xmax = 447.2527269396246
text = "How about other movies? Did you see uh,"
intervals [147]:
xmin = 447.2527269396246
xmax = 447.649073448064
text = ""
intervals [148]:
xmin = 447.649073448064
xmax = 449.13187567963695
text = "like, Guess Who's Coming to Dinner?"
intervals [149]:
xmin = 449.13187567963695
xmax = 450.19438873646146
text = ""
intervals [150]:
xmin = 450.19438873646146
xmax = 452.2309236520683
text = "Who /was that/- I didn't see that one. What [happened?]"
intervals [151]:
xmin = 452.2309236520683
xmax = 456.70115033381666
text = ""
intervals [152]:
xmin = 456.70115033381666
xmax = 457.075152593258
text = "[Mm-hm.]"
intervals [153]:
xmin = 457.075152593258
xmax = 461.19070425764136
text = ""
intervals [154]:
xmin = 461.19070425764136
xmax = 461.5077814643928
text = "Mm-hm."
intervals [155]:
xmin = 461.5077814643928
xmax = 467.5497475652862
text = ""
intervals [156]:
xmin = 467.5497475652862
xmax = 467.90879087293126
text = "Mm-hm."
intervals [157]:
xmin = 467.90879087293126
xmax = 475.9703096572997
text = ""
intervals [158]:
xmin = 475.9703096572997
xmax = 476.3183635699662
text = "[Hm.]"
intervals [159]:
xmin = 476.3183635699662
xmax = 493.29897179802373
text = ""
intervals [160]:
xmin = 493.29897179802373
xmax = 493.6393635052716
text = "[Mm.]"
intervals [161]:
xmin = 493.6393635052716
xmax = 510.357806720135
text = ""
intervals [162]:
xmin = 510.357806720135
xmax = 510.73670085291116
text = "Yeah."
intervals [163]:
xmin = 510.73670085291116
xmax = 523.2389558661256
text = ""
intervals [164]:
xmin = 523.2389558661256
xmax = 523.697153422041
text = "Uh-huh."
intervals [165]:
xmin = 523.697153422041
xmax = 524.2038141809859
text = ""
intervals [166]:
xmin = 524.2038141809859
xmax = 526.1568072402229
text = "Oh, very good. You tell a good story. <laugh>"
intervals [167]:
xmin = 526.1568072402229
xmax = 526.4432054609584
text = ""
intervals [168]:
xmin = 526.4432054609584
xmax = 528.8336272589695
text = "H- how- how about, In the Heat of the Night? You seen that one?"
intervals [169]:
xmin = 528.8336272589695
xmax = 530.6267657710614
text = ""
intervals [170]:
xmin = 530.6267657710614
xmax = 532.1643710308159
text = "Yeah, what- what happened with that one?"
intervals [171]:
xmin = 532.1643710308159
xmax = 535.6266614903612
text = ""
intervals [172]:
xmin = 535.6266614903612
xmax = 536.0590245142074
text = "[Uh-huh.]"
intervals [173]:
xmin = 536.0590245142074
xmax = 542.6576059911706
text = ""
intervals [174]:
xmin = 542.6576059911706
xmax = 543.1642667501155
text = "Mm-hm."
intervals [175]:
xmin = 543.1642667501155
xmax = 550.475433614146
text = ""
intervals [176]:
xmin = 550.475433614146
xmax = 550.8966074681689
text = "[Uh-huh.]"
intervals [177]:
xmin = 550.8966074681689
xmax = 557.7229837780604
text = ""
intervals [178]:
xmin = 557.7229837780604
xmax = 558.0960157860032
text = "Yeah."
intervals [179]:
xmin = 558.0960157860032
xmax = 570.846670488393
text = ""
intervals [180]:
xmin = 570.846670488393
xmax = 571.1497589948466
text = "[Yeah.]"
intervals [181]:
xmin = 571.1497589948466
xmax = 585.1282423859569
text = ""
intervals [182]:
xmin = 585.1282423859569
xmax = 585.5385775946941
text = "[Yeah.]"
intervals [183]:
xmin = 585.5385775946941
xmax = 604.6378695903433
text = ""
intervals [184]:
xmin = 604.6378695903433
xmax = 605.1041596002718
text = "Mm-hm."
intervals [185]:
xmin = 605.1041596002718
xmax = 613.1823992955417
text = ""
intervals [186]:
xmin = 613.1823992955417
xmax = 613.4668362015982
text = "[Huh.]"
intervals [187]:
xmin = 613.4668362015982
xmax = 616.563263188754
text = ""
intervals [188]:
xmin = 616.563263188754
xmax = 617.7849430147669
text = "It got an Oscar, didn't it?"
intervals [189]:
xmin = 617.7849430147669
xmax = 618.7081972344255
text = ""
intervals [190]:
xmin = 618.7081972344255
xmax = 621.016332783572
text = "[Do you] think it deserved an [Oscar? /unintelligible/]"
intervals [191]:
xmin = 621.016332783572
xmax = 629.421236807022
text = ""
intervals [192]:
xmin = 629.421236807022
xmax = 629.7331625587159
text = "Yeah."
intervals [193]:
xmin = 629.7331625587159
xmax = 632.424144470962
text = ""
intervals [194]:
xmin = 632.424144470962
xmax = 632.7318958775148
text = "[Yeah.]"
intervals [195]:
xmin = 632.7318958775148
xmax = 637.3283629476296
text = ""
intervals [196]:
xmin = 637.3283629476296
xmax = 637.631451454083
text = "[Yeah.]"
intervals [197]:
xmin = 637.631451454083
xmax = 648.1346605222117
text = ""
intervals [198]:
xmin = 648.1346605222117
xmax = 648.8947132383953
text = "Yeah, that's"
intervals [199]:
xmin = 648.8947132383953
xmax = 649.5708337527917
text = ""
intervals [200]:
xmin = 649.5708337527917
xmax = 652.5830672169303
text = "tough /unintelligible/"
intervals [201]:
xmin = 652.5830672169303
xmax = 654.5263441305513
text = ""
intervals [202]:
xmin = 654.5263441305513
xmax = 655.4761620017965
text = "kind of tough, hm?"
intervals [203]:
xmin = 655.4761620017965
xmax = 655.9811689615284
text = ""
intervals [204]:
xmin = 655.9811689615284
xmax = 657.002344083272
text = "Hey, do you have uh,"
intervals [205]:
xmin = 657.002344083272
xmax = 657.426667992307
text = ""
intervals [206]:
xmin = 657.426667992307
xmax = 660.1856911020755
text = "a pet you know, like a dog or anything around the house?"
intervals [207]:
xmin = 660.1856911020755
xmax = 668.7085813770163
text = ""
intervals [208]:
xmin = 668.7085813770163
xmax = 669.2028487875406
text = "Mm-hm."
intervals [209]:
xmin = 669.2028487875406
xmax = 670.0316925774323
text = ""
intervals [210]:
xmin = 670.0316925774323
xmax = 671.3512933055302
text = "You don't really care for-"
intervals [211]:
xmin = 671.3512933055302
xmax = 672.0320767200259
text = ""
intervals [212]:
xmin = 672.0320767200259
xmax = 674.6619523760231
text = "[I suppose] you can't have really one here in the city, huh?"
intervals [213]:
xmin = 674.6619523760231
xmax = 681.7915960248498
text = ""
intervals [214]:
xmin = 681.7915960248498
xmax = 683.6800705650606
text = "Mm-hm. How come a German Shepard?"
intervals [215]:
xmin = 683.6800705650606
xmax = 695.6194528637702
text = ""
intervals [216]:
xmin = 695.6194528637702
xmax = 695.9260518425419
text = "Uh-huh."
intervals [217]:
xmin = 695.9260518425419
xmax = 707.4271215319185
text = ""
intervals [218]:
xmin = 707.4271215319185
xmax = 708.7886883609101
text = "Uh-huh. Good."
intervals [219]:
xmin = 708.7886883609101
xmax = 709.6093587783845
text = ""
intervals [220]:
xmin = 709.6093587783845
xmax = 710.024356887221
text = "Uh,"
intervals [221]:
xmin = 710.024356887221
xmax = 710.4719952967524
text = ""
intervals [222]:
xmin = 710.4719952967524
xmax = 712.7774952720911
text = "tell me about your school. Where do you s- where do you go to school?"
intervals [223]:
xmin = 712.7774952720911
xmax = 714.8679576625981
text = ""
intervals [224]:
xmin = 714.8679576625981
xmax = 715.4461572749095
text = "Uh-huh."
intervals [225]:
xmin = 715.4461572749095
xmax = 716.0616600880153
text = ""
intervals [226]:
xmin = 716.0616600880153
xmax = 717.5733737242969
text = "What do you study there? /What do you-/"
intervals [227]:
xmin = 717.5733737242969
xmax = 730.985298450268
text = ""
intervals [228]:
xmin = 730.985298450268
xmax = 732.9472269642863
text = "Oh yeah, doing work in here, huh?"
intervals [229]:
xmin = 732.9472269642863
xmax = 734.1642438901999
text = ""
intervals [230]:
xmin = 734.1642438901999
xmax = 736.5490131672262
text = "And what's your favorite subject? What do you like best?"
intervals [231]:
xmin = 736.5490131672262
xmax = 749.3696835847005
text = ""
intervals [232]:
xmin = 749.3696835847005
xmax = 749.8965912959198
text = "Mm-hm."
intervals [233]:
xmin = 749.8965912959198
xmax = 754.3371553364677
text = ""
intervals [234]:
xmin = 754.3371553364677
xmax = 754.7847937459992
text = "Uh-huh."
intervals [235]:
xmin = 754.7847937459992
xmax = 759.232048012937
text = ""
intervals [236]:
xmin = 759.232048012937
xmax = 759.7449670238585
text = "Mm-hm."
intervals [237]:
xmin = 759.7449670238585
xmax = 761.8432720685372
text = ""
intervals [238]:
xmin = 761.8432720685372
xmax = 765.4885075183978
text = "How about uh, what do you do when school's out? What do kids do when school's out?"
intervals [239]:
xmin = 765.4885075183978
xmax = 784.236598860574
text = ""
intervals [240]:
xmin = 784.236598860574
xmax = 785.1645159803319
text = "[Oh, mm-hm.]"
intervals [241]:
xmin = 785.1645159803319
xmax = 790.6635583434185
text = ""
intervals [242]:
xmin = 790.6635583434185
xmax = 791.1205225531485
text = "Uh-huh."
intervals [243]:
xmin = 791.1205225531485
xmax = 792.3177354508839
text = ""
intervals [244]:
xmin = 792.3177354508839
xmax = 794.1502551899033
text = "Tell me in school, did you ever have a"
intervals [245]:
xmin = 794.1502551899033
xmax = 794.8217128042005
text = ""
intervals [246]:
xmin = 794.8217128042005
xmax = 798.3468652792609
text = "teacher you know, who used to holler a lot or anything when you were younger?"
intervals [247]:
xmin = 798.3468652792609
xmax = 799.8491940097397
text = ""
intervals [248]:
xmin = 799.8491940097397
xmax = 801.1387900109521
text = "How about now, too. Yeah."
intervals [249]:
xmin = 801.1387900109521
xmax = 802.2552504609713
text = ""
intervals [250]:
xmin = 802.2552504609713
xmax = 802.6935630703041
text = "/inaudible/"
intervals [251]:
xmin = 802.6935630703041
xmax = 815.4032230763428
text = ""
intervals [252]:
xmin = 815.4032230763428
xmax = 815.8072495664089
text = "[Uh-huh.]"
intervals [253]:
xmin = 815.8072495664089
xmax = 827.2399620263999
text = ""
intervals [254]:
xmin = 827.2399620263999
xmax = 827.6872770689731
text = "Yeah."
intervals [255]:
xmin = 827.6872770689731
xmax = 832.8909742224607
text = ""
intervals [256]:
xmin = 832.8909742224607
xmax = 833.2661416775222
text = "[Yeah.]"
intervals [257]:
xmin = 833.2661416775222
xmax = 842.8275521839543
text = ""
intervals [258]:
xmin = 842.8275521839543
xmax = 845.5691605094037
text = "Hear the siren. Hm, another fire you think?"
intervals [259]:
xmin = 845.5691605094037
xmax = 848.7003658074169
text = ""
intervals [260]:
xmin = 848.7003658074169
xmax = 851.0235181252976
text = "/?/ a couple fires this week, though, wasn't there?"
intervals [261]:
xmin = 851.0235181252976
xmax = 853.9154883994535
text = ""
intervals [262]:
xmin = 853.9154883994535
xmax = 854.290655854515
text = "Uh-huh."
intervals [263]:
xmin = 854.290655854515
xmax = 854.9688431771261
text = ""
intervals [264]:
xmin = 854.9688431771261
xmax = 856.426224444865
text = "I was out in Detroit last-"
intervals [265]:
xmin = 856.426224444865
xmax = 856.8095333064651
text = ""
intervals [266]:
xmin = 856.8095333064651
xmax = 858.4319273776938
text = "somewhere near Detroit when-"
intervals [267]:
xmin = 858.4319273776938
xmax = 859.03845611496
text = ""
intervals [268]:
xmin = 859.03845611496
xmax = 860.4126927240618
text = "[/unintelligible/.]"
intervals [269]:
xmin = 860.4126927240618
xmax = 861.8955005804283
text = ""
intervals [270]:
xmin = 861.8955005804283
xmax = 865.358584780996
text = "I suppose pretty wild fire around here a couple weeks ago."
intervals [271]:
xmin = 865.358584780996
xmax = 866.8503591041232
text = ""
intervals [272]:
xmin = 866.8503591041232
xmax = 867.1325455863184
text = "Mm."
intervals [273]:
xmin = 867.1325455863184
xmax = 869.0236822265967
text = ""
intervals [274]:
xmin = 869.0236822265967
xmax = 869.4565677516678
text = "Uh,"
intervals [275]:
xmin = 869.4565677516678
xmax = 870.3511978368143
text = ""
intervals [276]:
xmin = 870.3511978368143
xmax = 873.859929519606
text = "what- what kinds of things did the teachers yell at anyhow, hm?"
intervals [277]:
xmin = 873.859929519606
xmax = 890.6325612264196
text = ""
intervals [278]:
xmin = 890.6325612264196
xmax = 890.8890207318804
text = "[Hm.]"
intervals [279]:
xmin = 890.8890207318804
xmax = 897.6015499622347
text = ""
intervals [280]:
xmin = 897.6015499622347
xmax = 897.9465057715307
text = "Mm-hm."
intervals [281]:
xmin = 897.9465057715307
xmax = 905.7007494917498
text = ""
intervals [282]:
xmin = 905.7007494917498
xmax = 906.0784443997919
text = "[Mm-hm.]"
intervals [283]:
xmin = 906.0784443997919
xmax = 916.0941022017624
text = ""
intervals [284]:
xmin = 916.0941022017624
xmax = 916.5533629260867
text = "Mm-hm."
intervals [285]:
xmin = 916.5533629260867
xmax = 920.1601322484348
text = ""
intervals [286]:
xmin = 920.1601322484348
xmax = 920.9996389010504
text = "<laugh>"
intervals [287]:
xmin = 920.9996389010504
xmax = 921.3572065493865
text = ""
intervals [288]:
xmin = 921.3572065493865
xmax = 923.7893445936363
text = "How about the best teacher you ever had. /Was there/"
intervals [289]:
xmin = 923.7893445936363
xmax = 924.0737814996927
text = ""
intervals [290]:
xmin = 924.0737814996927
xmax = 925.4726515294785
text = "favorite teacher you ever had?"
intervals [291]:
xmin = 925.4726515294785
xmax = 934.4324406647439
text = ""
intervals [292]:
xmin = 934.4324406647439
xmax = 935.9028809155199
text = "[What was] so good about them?"
intervals [293]:
xmin = 935.9028809155199
xmax = 948.8628204933793
text = ""
intervals [294]:
xmin = 948.8628204933793
xmax = 949.3136666586728
text = "[Yeah.]"
intervals [295]:
xmin = 949.3136666586728
xmax = 954.7646856214714
text = ""
intervals [296]:
xmin = 954.7646856214714
xmax = 955.5730994351011
text = "That's good."
intervals [297]:
xmin = 955.5730994351011
xmax = 960.2836633231965
text = ""
intervals [298]:
xmin = 960.2836633231965
xmax = 963.6883291921372
text = "How about tricks, you- did you ever play any tricks on the teacher or anything?"
intervals [299]:
xmin = 963.6883291921372
xmax = 972.8111890766091
text = ""
intervals [300]:
xmin = 972.8111890766091
xmax = 973.1687567249454
text = "Yeah."
intervals [301]:
xmin = 973.1687567249454
xmax = 986.5950888875913
text = ""
intervals [302]:
xmin = 986.5950888875913
xmax = 987.6833382520929
text = "How about the, uh-"
intervals [303]:
xmin = 987.6833382520929
xmax = 987.9729459432555
text = ""
intervals [304]:
xmin = 987.9729459432555
xmax = 989.1544738247143
text = "the kids in the class?"
intervals [305]:
xmin = 989.1544738247143
xmax = 989.449855795079
text = ""
intervals [306]:
xmin = 989.449855795079
xmax = 990.491465901102
text = "Did they ever play?"
intervals [307]:
xmin = 990.491465901102
xmax = 995.404134460852
text = ""
intervals [308]:
xmin = 995.404134460852
xmax = 997.471808253405
text = "Not even April Fool's day or anything?"
intervals [309]:
xmin = 997.471808253405
xmax = 998.6688825543567
text = ""
intervals [310]:
xmin = 998.6688825543567
xmax = 999.2596464950861
text = "Mm-hm."
intervals [311]:
xmin = 999.2596464950861
xmax = 1000.9639783601007
text = ""
intervals [312]:
xmin = 1000.9639783601007
xmax = 1007.8354957759535
text = "How about the guys you go around with? Uh, is there a group of kids you usually go around with and do things with? What kinds of things do you usually do?"
intervals [313]:
xmin = 1007.8354957759535
xmax = 1020.0224895986006
text = ""
intervals [314]:
xmin = 1020.0224895986006
xmax = 1020.5867005106142
text = "[Mm-hm.]"
intervals [315]:
xmin = 1020.5867005106142
xmax = 1039.352085949109
text = ""
intervals [316]:
xmin = 1039.352085949109
xmax = 1039.89621063136
text = "Mm-hm."
intervals [317]:
xmin = 1039.89621063136
xmax = 1041.7093674328248
text = ""
intervals [318]:
xmin = 1041.7093674328248
xmax = 1042.5955133439188
text = "Your walk man."
intervals [319]:
xmin = 1042.5955133439188
xmax = 1043.761494805885
text = ""
intervals [320]:
xmin = 1043.761494805885
xmax = 1050.8040228361592
text = "Hm, that's interesting. Uh, what- what does a walk man have to be? He has to do those kinds of things you mentioned, or anything else?"
intervals [321]:
xmin = 1050.8040228361592
xmax = 1057.4969547031606
text = ""
intervals [322]:
xmin = 1057.4969547031606
xmax = 1057.9011616099754
text = "[Yeah.]"
intervals [323]:
xmin = 1057.9011616099754
xmax = 1067.183167580729
text = ""
intervals [324]:
xmin = 1067.183167580729
xmax = 1067.6214801900621
text = "[Mm-hm.]"
intervals [325]:
xmin = 1067.6214801900621
xmax = 1070.89
text = ""
|