project.pbxproj 212 KB
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
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 46;
	objects = {

/* Begin PBXBuildFile section */
		4B42A6C41EC00CC800DA09D7 /* UIAlertView+Blocks.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B42A6C31EC00CC800DA09D7 /* UIAlertView+Blocks.m */; };
		4B42A6C71EC0171800DA09D7 /* PlayRecordCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B42A6C61EC0171800DA09D7 /* PlayRecordCell.m */; };
		4B45CE761EB86A590079AFB7 /* BeingAnchorController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CE451EB86A590079AFB7 /* BeingAnchorController.m */; };
		4B45CE771EB86A590079AFB7 /* IDViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CE471EB86A590079AFB7 /* IDViewController.m */; };
		4B45CE781EB86A590079AFB7 /* LVCMineViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CE491EB86A590079AFB7 /* LVCMineViewController.m */; };
		4B45CE791EB86A590079AFB7 /* MineAboutUsController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CE4B1EB86A590079AFB7 /* MineAboutUsController.m */; };
		4B45CE7A1EB86A590079AFB7 /* MineLiveController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CE4D1EB86A590079AFB7 /* MineLiveController.m */; };
		4B45CE7B1EB86A590079AFB7 /* MinePersonalDataController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CE4F1EB86A590079AFB7 /* MinePersonalDataController.m */; };
		4B45CE7C1EB86A590079AFB7 /* MineSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CE511EB86A590079AFB7 /* MineSettingViewController.m */; };
		4B45CE7D1EB86A590079AFB7 /* ModifyInfomationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CE531EB86A590079AFB7 /* ModifyInfomationController.m */; };
		4B45CE7E1EB86A590079AFB7 /* LoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CE581EB86A590079AFB7 /* LoginViewController.m */; };
		4B45CE7F1EB86A590079AFB7 /* RegisterCommonController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CE5A1EB86A590079AFB7 /* RegisterCommonController.m */; };
		4B45CE801EB86A590079AFB7 /* idAndPwdView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CE5D1EB86A590079AFB7 /* idAndPwdView.m */; };
		4B45CE811EB86A590079AFB7 /* RegistBasicInformationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CE5F1EB86A590079AFB7 /* RegistBasicInformationView.m */; };
		4B45CE821EB86A590079AFB7 /* LVCMineCommonModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CE621EB86A590079AFB7 /* LVCMineCommonModel.m */; };
		4B45CE831EB86A590079AFB7 /* LVCMineModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CE641EB86A590079AFB7 /* LVCMineModel.m */; };
		4B45CE841EB86A590079AFB7 /* ModifyCommonView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CE671EB86A590079AFB7 /* ModifyCommonView.m */; };
		4B45CE851EB86A590079AFB7 /* LVCClearCachesCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CE691EB86A590079AFB7 /* LVCClearCachesCell.m */; };
		4B45CE861EB86A590079AFB7 /* LVCLoginShowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CE6B1EB86A590079AFB7 /* LVCLoginShowView.m */; };
		4B45CE871EB86A590079AFB7 /* LVCMineCommonCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CE6D1EB86A590079AFB7 /* LVCMineCommonCell.m */; };
		4B45CE881EB86A590079AFB7 /* LVCMineShowCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CE6F1EB86A590079AFB7 /* LVCMineShowCell.m */; };
		4B45CE8A1EB86A590079AFB7 /* LVCPersonCommonCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CE731EB86A590079AFB7 /* LVCPersonCommonCell.m */; };
		4B45CE8B1EB86A590079AFB7 /* LVCTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CE751EB86A590079AFB7 /* LVCTextField.m */; };
		4B45CE971EB86A760079AFB7 /* UIButton+createButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CE8E1EB86A760079AFB7 /* UIButton+createButton.m */; };
		4B45CE981EB86A760079AFB7 /* UILabel+createLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CE901EB86A760079AFB7 /* UILabel+createLabel.m */; };
		4B45CE991EB86A760079AFB7 /* UITextField+createTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CE921EB86A760079AFB7 /* UITextField+createTextField.m */; };
		4B45CE9A1EB86A760079AFB7 /* ZXLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CE941EB86A760079AFB7 /* ZXLabel.m */; };
		4B45CE9B1EB86A760079AFB7 /* ZXUIKit.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CE961EB86A760079AFB7 /* ZXUIKit.m */; };
		4B45CEA51EB86B9F0079AFB7 /* CNLiveThirdLoginManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CE9E1EB86B9E0079AFB7 /* CNLiveThirdLoginManager.m */; };
		4B45CEA61EB86B9F0079AFB7 /* NSNumber+ScaleHeight.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CEA01EB86B9E0079AFB7 /* NSNumber+ScaleHeight.m */; };
		4B45CEA71EB86B9F0079AFB7 /* NSObject+UserModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CEA21EB86B9F0079AFB7 /* NSObject+UserModel.m */; };
		4B45CEA81EB86B9F0079AFB7 /* UserTools.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CEA41EB86B9F0079AFB7 /* UserTools.m */; };
		4B45CEAB1EB86BFA0079AFB7 /* NSString+ZXExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CEAA1EB86BFA0079AFB7 /* NSString+ZXExtension.m */; };
		4B45CEAE1EB873630079AFB7 /* UserInformationModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B45CEAD1EB873630079AFB7 /* UserInformationModel.m */; };
		4BD855CD1EBAC4B70082061D /* CNLiveKeychainWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD855CC1EBAC4B70082061D /* CNLiveKeychainWrapper.m */; };
		4BD855FA1EBACD530082061D /* AFHTTPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD855D61EBACD530082061D /* AFHTTPRequestOperation.m */; };
		4BD855FB1EBACD530082061D /* AFHTTPRequestOperationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD855D81EBACD530082061D /* AFHTTPRequestOperationManager.m */; };
		4BD855FC1EBACD530082061D /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD855DA1EBACD530082061D /* AFHTTPSessionManager.m */; };
		4BD855FD1EBACD530082061D /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD855DD1EBACD530082061D /* AFNetworkReachabilityManager.m */; };
		4BD855FE1EBACD530082061D /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD855DF1EBACD530082061D /* AFSecurityPolicy.m */; };
		4BD855FF1EBACD530082061D /* AFURLConnectionOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD855E11EBACD530082061D /* AFURLConnectionOperation.m */; };
		4BD856001EBACD530082061D /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD855E31EBACD530082061D /* AFURLRequestSerialization.m */; };
		4BD856011EBACD530082061D /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD855E51EBACD530082061D /* AFURLResponseSerialization.m */; };
		4BD856021EBACD530082061D /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD855E71EBACD530082061D /* AFURLSessionManager.m */; };
		4BD856031EBACD530082061D /* AFNetworkActivityIndicatorManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD855EA1EBACD530082061D /* AFNetworkActivityIndicatorManager.m */; };
		4BD856041EBACD530082061D /* UIActivityIndicatorView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD855EC1EBACD530082061D /* UIActivityIndicatorView+AFNetworking.m */; };
		4BD856051EBACD530082061D /* UIAlertView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD855EE1EBACD530082061D /* UIAlertView+AFNetworking.m */; };
		4BD856061EBACD530082061D /* UIButton+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD855F01EBACD530082061D /* UIButton+AFNetworking.m */; };
		4BD856071EBACD530082061D /* UIImageView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD855F21EBACD530082061D /* UIImageView+AFNetworking.m */; };
		4BD856081EBACD530082061D /* UIProgressView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD855F51EBACD530082061D /* UIProgressView+AFNetworking.m */; };
		4BD856091EBACD530082061D /* UIRefreshControl+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD855F71EBACD530082061D /* UIRefreshControl+AFNetworking.m */; };
		4BD8560A1EBACD530082061D /* UIWebView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD855F91EBACD530082061D /* UIWebView+AFNetworking.m */; };
		4BD8560F1EBACEF80082061D /* CNLiveWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD8560C1EBACEF80082061D /* CNLiveWebView.m */; };
		4BD856121EBAD2640082061D /* ProgramModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD856111EBAD2640082061D /* ProgramModel.m */; };
		4BD856151EBAD31A0082061D /* NSString+UrlEncode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD856141EBAD31A0082061D /* NSString+UrlEncode.m */; };
		4BD856181EBAD35C0082061D /* NSDictionary+Safety.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD856171EBAD35C0082061D /* NSDictionary+Safety.m */; };
		4BD8561D1EBAD6490082061D /* ZXConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD8561C1EBAD6490082061D /* ZXConst.m */; };
		810B64FE1E779B1F00133E15 /* MASCompositeConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 810B64E61E779B1F00133E15 /* MASCompositeConstraint.m */; };
		810B64FF1E779B1F00133E15 /* MASConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 810B64E91E779B1F00133E15 /* MASConstraint.m */; };
		810B65001E779B1F00133E15 /* MASConstraintMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = 810B64EB1E779B1F00133E15 /* MASConstraintMaker.m */; };
		810B65011E779B1F00133E15 /* MASLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 810B64ED1E779B1F00133E15 /* MASLayoutConstraint.m */; };
		810B65021E779B1F00133E15 /* MASViewAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 810B64F11E779B1F00133E15 /* MASViewAttribute.m */; };
		810B65031E779B1F00133E15 /* MASViewConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 810B64F31E779B1F00133E15 /* MASViewConstraint.m */; };
		810B65041E779B1F00133E15 /* NSArray+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 810B64F51E779B1F00133E15 /* NSArray+MASAdditions.m */; };
		810B65051E779B1F00133E15 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 810B64F81E779B1F00133E15 /* NSLayoutConstraint+MASDebugAdditions.m */; };
		810B65061E779B1F00133E15 /* View+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 810B64FA1E779B1F00133E15 /* View+MASAdditions.m */; };
		810B65071E779B1F00133E15 /* ViewController+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 810B64FD1E779B1F00133E15 /* ViewController+MASAdditions.m */; };
		811BB68E1E8116C8005C6291 /* NSString+StringSize.m in Sources */ = {isa = PBXBuildFile; fileRef = 811BB68D1E8116C8005C6291 /* NSString+StringSize.m */; };
		8178D4241F02043500AA78A4 /* LVCFullScreenPlayerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8178D41F1F02043500AA78A4 /* LVCFullScreenPlayerController.m */; };
		8178D4251F02043500AA78A4 /* LVCLivePlayerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8178D4211F02043500AA78A4 /* LVCLivePlayerController.m */; };
		8178D4311F02044300AA78A4 /* LVCChatRoomModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 8178D42C1F02044300AA78A4 /* LVCChatRoomModel.m */; };
		8178D44A1F02045500AA78A4 /* CNBarrageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8178D4351F02045500AA78A4 /* CNBarrageManager.m */; };
		8178D44B1F02045500AA78A4 /* CNBarrageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8178D4371F02045500AA78A4 /* CNBarrageView.m */; };
		8178D4511F02045500AA78A4 /* LVCPlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 8178D4431F02045500AA78A4 /* LVCPlayer.m */; };
		8178D4531F02045500AA78A4 /* LVCRequestFailedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8178D4471F02045500AA78A4 /* LVCRequestFailedView.m */; };
		8178D4571F0204D600AA78A4 /* LVCTelevisioController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8178D4561F0204D600AA78A4 /* LVCTelevisioController.m */; };
		8178D4611F02060B00AA78A4 /* LVCChatView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8178D45A1F02060B00AA78A4 /* LVCChatView.m */; };
		8178D4621F02060B00AA78A4 /* LVCChatViewTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8178D45C1F02060B00AA78A4 /* LVCChatViewTableViewCell.m */; };
		8178D4631F02060B00AA78A4 /* LVCInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8178D45E1F02060B00AA78A4 /* LVCInputView.m */; };
		8178D4641F02060B00AA78A4 /* LVCMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 8178D4601F02060B00AA78A4 /* LVCMessage.m */; };
		8178D4681F021C4500AA78A4 /* TelevisionData.json in Resources */ = {isa = PBXBuildFile; fileRef = 8178D4671F021C4500AA78A4 /* TelevisionData.json */; };
		8178D46B1F021ED800AA78A4 /* LVCTelevisionModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 8178D46A1F021ED800AA78A4 /* LVCTelevisionModel.m */; };
		8178D46E1F0225E500AA78A4 /* LVCTelevisionCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8178D46D1F0225E500AA78A4 /* LVCTelevisionCell.m */; };
		8178D4711F0239AD00AA78A4 /* LVCPlayerLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8178D4701F0239AD00AA78A4 /* LVCPlayerLoadingView.m */; };
		81A483081E88B6140097A80A /* UIView+ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81A483071E88B6140097A80A /* UIView+ViewController.m */; };
		81F1C8401E8BC5CC0085C2B8 /* NSArray+Safety.m in Sources */ = {isa = PBXBuildFile; fileRef = 81F1C83F1E8BC5CC0085C2B8 /* NSArray+Safety.m */; };
		81FB5B3C1E7A6FFC00F98E1D /* SevenSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 81FB5B3B1E7A6FFC00F98E1D /* SevenSwitch.m */; };
		D2029B861E6EAAA50027CD92 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029B851E6EAAA50027CD92 /* main.m */; };
		D2029B911E6EAAA50027CD92 /* animation.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = D2029B901E6EAAA50027CD92 /* animation.xcassets */; };
		D2029B941E6EAAA50027CD92 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D2029B921E6EAAA50027CD92 /* LaunchScreen.storyboard */; };
		D2029B9F1E6EAAA50027CD92 /* LiveVideoCloudTests.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029B9E1E6EAAA50027CD92 /* LiveVideoCloudTests.m */; };
		D2029BAA1E6EAAA50027CD92 /* LiveVideoCloudUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029BA91E6EAAA50027CD92 /* LiveVideoCloudUITests.m */; };
		D2029BCA1E6EADD70027CD92 /* BaseModel.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029BBE1E6EADD70027CD92 /* BaseModel.m */; };
		D2029BCB1E6EADD70027CD92 /* BaseTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029BC01E6EADD70027CD92 /* BaseTableViewCell.m */; };
		D2029BCC1E6EADD70027CD92 /* BaseView.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029BC21E6EADD70027CD92 /* BaseView.m */; };
		D2029BCD1E6EADD70027CD92 /* BaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029BC41E6EADD70027CD92 /* BaseViewController.m */; };
		D2029BCE1E6EADD70027CD92 /* ZXNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029BC71E6EADD70027CD92 /* ZXNavigationController.m */; };
		D2029BCF1E6EADD70027CD92 /* ZXTabBarController.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029BC91E6EADD70027CD92 /* ZXTabBarController.m */; };
		D2029C861E6EADE10027CD92 /* Tools.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029BD31E6EADE10027CD92 /* Tools.m */; };
		D2029C961E6EADE10027CD92 /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029BFA1E6EADE10027CD92 /* MBProgressHUD.m */; };
		D2029C971E6EADE10027CD92 /* Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = D2029BFC1E6EADE10027CD92 /* Info.plist */; };
		D2029C981E6EADE10027CD92 /* MJExtensionConst.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029BFF1E6EADE10027CD92 /* MJExtensionConst.m */; };
		D2029C991E6EADE10027CD92 /* MJFoundation.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C011E6EADE10027CD92 /* MJFoundation.m */; };
		D2029C9A1E6EADE10027CD92 /* MJProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C031E6EADE10027CD92 /* MJProperty.m */; };
		D2029C9B1E6EADE10027CD92 /* MJPropertyKey.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C051E6EADE10027CD92 /* MJPropertyKey.m */; };
		D2029C9C1E6EADE10027CD92 /* MJPropertyType.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C071E6EADE10027CD92 /* MJPropertyType.m */; };
		D2029C9D1E6EADE10027CD92 /* NSObject+MJClass.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C091E6EADE10027CD92 /* NSObject+MJClass.m */; };
		D2029C9E1E6EADE10027CD92 /* NSObject+MJCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C0B1E6EADE10027CD92 /* NSObject+MJCoding.m */; };
		D2029C9F1E6EADE10027CD92 /* NSObject+MJKeyValue.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C0D1E6EADE10027CD92 /* NSObject+MJKeyValue.m */; };
		D2029CA01E6EADE10027CD92 /* NSObject+MJProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C0F1E6EADE10027CD92 /* NSObject+MJProperty.m */; };
		D2029CA11E6EADE10027CD92 /* NSString+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C111E6EADE10027CD92 /* NSString+MJExtension.m */; };
		D2029CA21E6EADE10027CD92 /* MJRefreshAutoFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C151E6EADE10027CD92 /* MJRefreshAutoFooter.m */; };
		D2029CA31E6EADE10027CD92 /* MJRefreshBackFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C171E6EADE10027CD92 /* MJRefreshBackFooter.m */; };
		D2029CA41E6EADE10027CD92 /* MJRefreshComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C191E6EADE10027CD92 /* MJRefreshComponent.m */; };
		D2029CA51E6EADE10027CD92 /* MJRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C1B1E6EADE10027CD92 /* MJRefreshFooter.m */; };
		D2029CA61E6EADE10027CD92 /* MJRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C1D1E6EADE10027CD92 /* MJRefreshHeader.m */; };
		D2029CA71E6EADE10027CD92 /* MJRefreshAutoGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C221E6EADE10027CD92 /* MJRefreshAutoGifFooter.m */; };
		D2029CA81E6EADE10027CD92 /* MJRefreshAutoNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C241E6EADE10027CD92 /* MJRefreshAutoNormalFooter.m */; };
		D2029CA91E6EADE10027CD92 /* MJRefreshAutoStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C261E6EADE10027CD92 /* MJRefreshAutoStateFooter.m */; };
		D2029CAA1E6EADE10027CD92 /* MJRefreshBackGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C291E6EADE10027CD92 /* MJRefreshBackGifFooter.m */; };
		D2029CAB1E6EADE10027CD92 /* MJRefreshBackNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C2B1E6EADE10027CD92 /* MJRefreshBackNormalFooter.m */; };
		D2029CAC1E6EADE10027CD92 /* MJRefreshBackStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C2D1E6EADE10027CD92 /* MJRefreshBackStateFooter.m */; };
		D2029CAD1E6EADE10027CD92 /* MJRefreshGifHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C301E6EADE10027CD92 /* MJRefreshGifHeader.m */; };
		D2029CAE1E6EADE10027CD92 /* MJRefreshNormalHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C321E6EADE10027CD92 /* MJRefreshNormalHeader.m */; };
		D2029CAF1E6EADE10027CD92 /* MJRefreshStateHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C341E6EADE10027CD92 /* MJRefreshStateHeader.m */; };
		D2029CB01E6EADE10027CD92 /* MJRefresh.bundle in Resources */ = {isa = PBXBuildFile; fileRef = D2029C351E6EADE10027CD92 /* MJRefresh.bundle */; };
		D2029CB11E6EADE10027CD92 /* MJRefreshConst.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C381E6EADE10027CD92 /* MJRefreshConst.m */; };
		D2029CB21E6EADE10027CD92 /* UIScrollView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C3A1E6EADE10027CD92 /* UIScrollView+MJExtension.m */; };
		D2029CB31E6EADE10027CD92 /* UIScrollView+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C3C1E6EADE10027CD92 /* UIScrollView+MJRefresh.m */; };
		D2029CB41E6EADE10027CD92 /* UIView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C3E1E6EADE10027CD92 /* UIView+MJExtension.m */; };
		D2029CB51E6EADE10027CD92 /* SDiOSVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C421E6EADE10027CD92 /* SDiOSVersion.m */; };
		D2029CB61E6EADE10027CD92 /* MKAnnotationView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C461E6EADE10027CD92 /* MKAnnotationView+WebCache.m */; };
		D2029CB71E6EADE10027CD92 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C481E6EADE10027CD92 /* NSData+ImageContentType.m */; };
		D2029CB81E6EADE10027CD92 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C4A1E6EADE10027CD92 /* SDImageCache.m */; };
		D2029CB91E6EADE10027CD92 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C4C1E6EADE10027CD92 /* SDWebImageCompat.m */; };
		D2029CBA1E6EADE10027CD92 /* SDWebImageDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C4E1E6EADE10027CD92 /* SDWebImageDecoder.m */; };
		D2029CBB1E6EADE10027CD92 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C501E6EADE10027CD92 /* SDWebImageDownloader.m */; };
		D2029CBC1E6EADE10027CD92 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C521E6EADE10027CD92 /* SDWebImageDownloaderOperation.m */; };
		D2029CBD1E6EADE10027CD92 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C541E6EADE10027CD92 /* SDWebImageManager.m */; };
		D2029CBE1E6EADE10027CD92 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C571E6EADE10027CD92 /* SDWebImagePrefetcher.m */; };
		D2029CBF1E6EADE10027CD92 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C591E6EADE10027CD92 /* UIButton+WebCache.m */; };
		D2029CC01E6EADE10027CD92 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C5B1E6EADE10027CD92 /* UIImage+GIF.m */; };
		D2029CC11E6EADE10027CD92 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C5D1E6EADE10027CD92 /* UIImage+MultiFormat.m */; };
		D2029CC21E6EADE10027CD92 /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C5F1E6EADE10027CD92 /* UIImage+WebP.m */; };
		D2029CC31E6EADE10027CD92 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C611E6EADE10027CD92 /* UIImageView+HighlightedWebCache.m */; };
		D2029CC41E6EADE10027CD92 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C631E6EADE10027CD92 /* UIImageView+WebCache.m */; };
		D2029CC51E6EADE10027CD92 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C651E6EADE10027CD92 /* UIView+WebCacheOperation.m */; };
		D2029CC61E6EADE10027CD92 /* SSKeychain.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C681E6EADE10027CD92 /* SSKeychain.m */; };
		D2029CC71E6EADE10027CD92 /* SVIndefiniteAnimatedView.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C6B1E6EADE10027CD92 /* SVIndefiniteAnimatedView.m */; };
		D2029CC81E6EADE10027CD92 /* SVProgressAnimatedView.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C6D1E6EADE10027CD92 /* SVProgressAnimatedView.m */; };
		D2029CC91E6EADE10027CD92 /* SVProgressHUD.bundle in Resources */ = {isa = PBXBuildFile; fileRef = D2029C6F1E6EADE10027CD92 /* SVProgressHUD.bundle */; };
		D2029CCA1E6EADE10027CD92 /* SVProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C711E6EADE10027CD92 /* SVProgressHUD.m */; };
		D2029CCB1E6EADE10027CD92 /* SVRadialGradientLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029C731E6EADE10027CD92 /* SVRadialGradientLayer.m */; };
		D2029CD41E6EADE70027CD92 /* HttpService.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029CD31E6EADE70027CD92 /* HttpService.m */; };
		D2029D001E6EAE2E0027CD92 /* NSNumber+ScaleHeight.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029CDF1E6EAE2E0027CD92 /* NSNumber+ScaleHeight.m */; };
		D2029D011E6EAE2E0027CD92 /* UIColor+HexString.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029CE11E6EAE2E0027CD92 /* UIColor+HexString.m */; };
		D2029D021E6EAE2E0027CD92 /* UIImage+ScaleImageSize.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029CE31E6EAE2E0027CD92 /* UIImage+ScaleImageSize.m */; };
		D2029D031E6EAE2E0027CD92 /* UIImage+ZXExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029CE51E6EAE2E0027CD92 /* UIImage+ZXExtension.m */; };
		D2029D041E6EAE2E0027CD92 /* UILabel+ContentSize.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029CE71E6EAE2E0027CD92 /* UILabel+ContentSize.m */; };
		D2029D051E6EAE2E0027CD92 /* UILabel+labelFitSize.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029CE91E6EAE2E0027CD92 /* UILabel+labelFitSize.m */; };
		D2029D061E6EAE2E0027CD92 /* UIView+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029CEB1E6EAE2E0027CD92 /* UIView+Extension.m */; };
		D2029D081E6EAE2E0027CD92 /* ZXDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029CF11E6EAE2E0027CD92 /* ZXDeviceInfo.m */; };
		D2029D091E6EAE2E0027CD92 /* Foundation+Log.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029CF21E6EAE2E0027CD92 /* Foundation+Log.m */; };
		D2029D0A1E6EAE2E0027CD92 /* ZXServerUrl.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029CFE1E6EAE2E0027CD92 /* ZXServerUrl.m */; };
		D2029D161E6EB00D0027CD92 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = D2029D151E6EB00D0027CD92 /* AppDelegate.m */; };
		D207BEA11E84C1EC006A0CE8 /* AnimationBaseView.m in Sources */ = {isa = PBXBuildFile; fileRef = D207BEA01E84C1EC006A0CE8 /* AnimationBaseView.m */; };
		D209AD6B1EC580F100D82E3B /* LVCWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D209AD6A1EC580F100D82E3B /* LVCWebViewController.m */; };
		D209AD6E1EC583B700D82E3B /* MineMessageController.m in Sources */ = {isa = PBXBuildFile; fileRef = D209AD6D1EC583B700D82E3B /* MineMessageController.m */; };
		D209AD711EC583D100D82E3B /* MineAccountController.m in Sources */ = {isa = PBXBuildFile; fileRef = D209AD701EC583D100D82E3B /* MineAccountController.m */; };
		D217A24A1E7B76C7003B44CB /* PresentView.m in Sources */ = {isa = PBXBuildFile; fileRef = D217A2471E7B76C7003B44CB /* PresentView.m */; };
		D217A24B1E7B76C7003B44CB /* PresentViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = D217A2491E7B76C7003B44CB /* PresentViewCell.m */; };
		D217A24E1E7B77C7003B44CB /* ComboCell.m in Sources */ = {isa = PBXBuildFile; fileRef = D217A24D1E7B77C7003B44CB /* ComboCell.m */; };
		D224B1971E826ED800CC61D0 /* ChatBarrageAnimAction.m in Sources */ = {isa = PBXBuildFile; fileRef = D224B1961E826ED800CC61D0 /* ChatBarrageAnimAction.m */; };
		D22830F11E778C0F00627701 /* LiveBaseView.m in Sources */ = {isa = PBXBuildFile; fileRef = D22830F01E778C0F00627701 /* LiveBaseView.m */; };
		D22830FC1E77C2D900627701 /* BottomToolView.m in Sources */ = {isa = PBXBuildFile; fileRef = D22830FB1E77C2D900627701 /* BottomToolView.m */; };
		D22830FF1E77C69E00627701 /* GiftListView.m in Sources */ = {isa = PBXBuildFile; fileRef = D22830FE1E77C69E00627701 /* GiftListView.m */; };
		D22831091E77D8D500627701 /* GiftModel.m in Sources */ = {isa = PBXBuildFile; fileRef = D22831081E77D8D500627701 /* GiftModel.m */; };
		D236967E1E7F9E4100E4BF71 /* GiftPayButton.m in Sources */ = {isa = PBXBuildFile; fileRef = D236967D1E7F9E4100E4BF71 /* GiftPayButton.m */; };
		D23696841E7FC6A900E4BF71 /* chatListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = D23696831E7FC6A900E4BF71 /* chatListCell.m */; };
		D23696921E7FC83800E4BF71 /* chatMsgModel.m in Sources */ = {isa = PBXBuildFile; fileRef = D23696911E7FC83800E4BF71 /* chatMsgModel.m */; };
		D2393D011F020D5700D3EE17 /* FeedbackViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D2393D001F020D5700D3EE17 /* FeedbackViewController.m */; };
		D2393D071F02505400D3EE17 /* TencentOpenAPI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D2393D051F02505400D3EE17 /* TencentOpenAPI.framework */; };
		D2393D081F02505400D3EE17 /* TencentOpenApi_IOS_Bundle.bundle in Resources */ = {isa = PBXBuildFile; fileRef = D2393D061F02505400D3EE17 /* TencentOpenApi_IOS_Bundle.bundle */; };
		D2393D0E1F0250A100D3EE17 /* libWeChatSDK.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D2393D0A1F0250A100D3EE17 /* libWeChatSDK.a */; };
		D2393D0F1F0250A100D3EE17 /* read_me.txt in Resources */ = {isa = PBXBuildFile; fileRef = D2393D0B1F0250A100D3EE17 /* read_me.txt */; };
		D2393D1D1F0250A700D3EE17 /* libWeiboSDK.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D2393D111F0250A700D3EE17 /* libWeiboSDK.a */; };
		D2393D1E1F0250A700D3EE17 /* WeiboSDK.bundle in Resources */ = {isa = PBXBuildFile; fileRef = D2393D1A1F0250A700D3EE17 /* WeiboSDK.bundle */; };
		D2393D201F0256AA00D3EE17 /* libsqlite3.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = D2393D1F1F0256AA00D3EE17 /* libsqlite3.tbd */; };
		D2393D221F0256DC00D3EE17 /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = D2393D211F0256DC00D3EE17 /* libc++.tbd */; };
		D2393D241F0256E900D3EE17 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = D2393D231F0256E900D3EE17 /* libz.tbd */; };
		D2393D261F0256FE00D3EE17 /* libstdc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = D2393D251F0256FE00D3EE17 /* libstdc++.tbd */; };
		D2393D281F02572100D3EE17 /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D2393D271F02572100D3EE17 /* CoreTelephony.framework */; };
		D2393D2C1F02682000D3EE17 /* CNLiveUserSystemSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D2393D2B1F02682000D3EE17 /* CNLiveUserSystemSDK.framework */; };
		D23DC1551ECC41C100103B0E /* LVCVerifyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D23DC1541ECC41C100103B0E /* LVCVerifyViewController.m */; };
		D24571581E8393EB00AA85D6 /* UIImageView+ZXExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = D24571571E8393EB00AA85D6 /* UIImageView+ZXExtension.m */; };
		D245715C1E83A62B00AA85D6 /* BounceView.m in Sources */ = {isa = PBXBuildFile; fileRef = D245715B1E83A62B00AA85D6 /* BounceView.m */; };
		D245715F1E83B09900AA85D6 /* userInfoModel.m in Sources */ = {isa = PBXBuildFile; fileRef = D245715E1E83B09900AA85D6 /* userInfoModel.m */; };
		D24571631E83C40B00AA85D6 /* PrivateView.m in Sources */ = {isa = PBXBuildFile; fileRef = D24571621E83C40B00AA85D6 /* PrivateView.m */; };
		D25530001E7909AC00DF38A5 /* GiftAnimOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = D2552FFF1E7909AC00DF38A5 /* GiftAnimOperation.m */; };
		D25530031E79115100DF38A5 /* AnimQueueManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D25530021E79115100DF38A5 /* AnimQueueManager.m */; };
		D25530061E7911A800DF38A5 /* GiftAnimationAction.m in Sources */ = {isa = PBXBuildFile; fileRef = D25530051E7911A800DF38A5 /* GiftAnimationAction.m */; };
		D255300C1E793F8200DF38A5 /* NHFighterView+animDelegagte.m in Sources */ = {isa = PBXBuildFile; fileRef = D255300B1E793F8200DF38A5 /* NHFighterView+animDelegagte.m */; };
		D2575C461E76857100E3A8FC /* LVCAnimationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D2575C451E76857100E3A8FC /* LVCAnimationManager.m */; };
		D2575C4A1E7685DE00E3A8FC /* UIView+Bubbling.m in Sources */ = {isa = PBXBuildFile; fileRef = D2575C481E7685DE00E3A8FC /* UIView+Bubbling.m */; };
		D2575C7A1E76A4F300E3A8FC /* NHCarViews.m in Sources */ = {isa = PBXBuildFile; fileRef = D2575C6F1E76A4F300E3A8FC /* NHCarViews.m */; };
		D2575C7B1E76A4F300E3A8FC /* NHCarViews.xib in Resources */ = {isa = PBXBuildFile; fileRef = D2575C701E76A4F300E3A8FC /* NHCarViews.xib */; };
		D2575C7C1E76A4F300E3A8FC /* NHFighterView.nib in Resources */ = {isa = PBXBuildFile; fileRef = D2575C721E76A4F300E3A8FC /* NHFighterView.nib */; };
		D2575C7D1E76A4F300E3A8FC /* NHGiftAnimtionSDK.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D2575C731E76A4F300E3A8FC /* NHGiftAnimtionSDK.a */; };
		D2575C7E1E76A4F300E3A8FC /* NHPlaneViews.m in Sources */ = {isa = PBXBuildFile; fileRef = D2575C771E76A4F300E3A8FC /* NHPlaneViews.m */; };
		D2575C7F1E76A4F300E3A8FC /* NHPlaneViews.xib in Resources */ = {isa = PBXBuildFile; fileRef = D2575C781E76A4F300E3A8FC /* NHPlaneViews.xib */; };
		D2575C801E76A4F300E3A8FC /* resource.bundle in Resources */ = {isa = PBXBuildFile; fileRef = D2575C791E76A4F300E3A8FC /* resource.bundle */; };
		D25BF87A1E7B8A82007FB138 /* FilterFunctionView.m in Sources */ = {isa = PBXBuildFile; fileRef = D25BF8771E7B8A82007FB138 /* FilterFunctionView.m */; };
		D25BF87B1E7B8A82007FB138 /* SliderView.m in Sources */ = {isa = PBXBuildFile; fileRef = D25BF8791E7B8A82007FB138 /* SliderView.m */; };
		D25BF87D1E7B8C78007FB138 /* KSYGPUResource.bundle in Resources */ = {isa = PBXBuildFile; fileRef = D25BF87C1E7B8C78007FB138 /* KSYGPUResource.bundle */; };
		D25BF8901E7F7F8F007FB138 /* UGCLoading.jpeg in Resources */ = {isa = PBXBuildFile; fileRef = D25BF88F1E7F7F8F007FB138 /* UGCLoading.jpeg */; };
		D25BF8A01E80C4BD007FB138 /* UIImage+LVCVagueImage.m in Sources */ = {isa = PBXBuildFile; fileRef = D25BF89F1E80C4BD007FB138 /* UIImage+LVCVagueImage.m */; };
		D25BF8A31E80C4FC007FB138 /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D25BF8A21E80C4FC007FB138 /* Accelerate.framework */; };
		D25BF8A51E80EC76007FB138 /* 头像.jpg in Resources */ = {isa = PBXBuildFile; fileRef = D25BF8A41E80EC76007FB138 /* 头像.jpg */; };
		D2888D941E6EB8B4003A77C8 /* LVCTabBar.m in Sources */ = {isa = PBXBuildFile; fileRef = D2888D931E6EB8B4003A77C8 /* LVCTabBar.m */; };
		D2888D9E1E6EBF1B003A77C8 /* LVCLiveViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D2888D9B1E6EBF1B003A77C8 /* LVCLiveViewController.m */; };
		D29D88481E88C53300543A03 /* LVCUGCLivePrepareView.m in Sources */ = {isa = PBXBuildFile; fileRef = D29D88471E88C53300543A03 /* LVCUGCLivePrepareView.m */; };
		D29E81ED1E88DC5B008C9906 /* PriChatCell.m in Sources */ = {isa = PBXBuildFile; fileRef = D29E81EC1E88DC5B008C9906 /* PriChatCell.m */; };
		D2A803081E80BD6F009D6F1C /* TopToolView.m in Sources */ = {isa = PBXBuildFile; fileRef = D2A803071E80BD6F009D6F1C /* TopToolView.m */; };
		D2B2ED801E88FC5200F7538A /* LVCUGCLiveEndView.m in Sources */ = {isa = PBXBuildFile; fileRef = D2B2ED7F1E88FC5200F7538A /* LVCUGCLiveEndView.m */; };
		D2B7B2511E8247D400ED084E /* ChatBarrageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D2B7B2501E8247D400ED084E /* ChatBarrageManager.m */; };
		D2B7B2541E824B2D00ED084E /* ChatBarrageView.m in Sources */ = {isa = PBXBuildFile; fileRef = D2B7B2531E824B2D00ED084E /* ChatBarrageView.m */; };
		D2B7B2571E8261EF00ED084E /* ChatBarrOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = D2B7B2561E8261EF00ED084E /* ChatBarrOperation.m */; };
		D2C6A8BF1F04998D00543EFA /* LVCVodListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = D2C6A8BE1F04998D00543EFA /* LVCVodListModel.m */; };
		D2CBC13B1ECC157A00E00279 /* LVCVerifyLiveAuthService.m in Sources */ = {isa = PBXBuildFile; fileRef = D2CBC13A1ECC157A00E00279 /* LVCVerifyLiveAuthService.m */; };
		D2D7D18D1E8A581000217771 /* timg.jpeg in Resources */ = {isa = PBXBuildFile; fileRef = D2D7D18C1E8A581000217771 /* timg.jpeg */; };
		D2EBC8711F02108000F198FB /* LiveListService.m in Sources */ = {isa = PBXBuildFile; fileRef = D2EBC8661F02108000F198FB /* LiveListService.m */; };
		D2EBC8721F02108000F198FB /* LVCLiveActivityInfoService.m in Sources */ = {isa = PBXBuildFile; fileRef = D2EBC8681F02108000F198FB /* LVCLiveActivityInfoService.m */; };
		D2EBC8741F02108000F198FB /* LVCUGCLiveListController.m in Sources */ = {isa = PBXBuildFile; fileRef = D2EBC86C1F02108000F198FB /* LVCUGCLiveListController.m */; };
		D2EBC8761F02108000F198FB /* LVCUGCLivePlayerController.m in Sources */ = {isa = PBXBuildFile; fileRef = D2EBC8701F02108000F198FB /* LVCUGCLivePlayerController.m */; };
		D2EBC87B1F02108F00F198FB /* LVCUGCLiveListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = D2EBC8781F02108F00F198FB /* LVCUGCLiveListModel.m */; };
		D2EBC87C1F02108F00F198FB /* LVCUGCLivePlayerModel.m in Sources */ = {isa = PBXBuildFile; fileRef = D2EBC87A1F02108F00F198FB /* LVCUGCLivePlayerModel.m */; };
		D2EBC8831F02109C00F198FB /* LVCUGCBackgroundView.m in Sources */ = {isa = PBXBuildFile; fileRef = D2EBC87E1F02109C00F198FB /* LVCUGCBackgroundView.m */; };
		D2EBC8841F02109C00F198FB /* LVCUGCLivePlayerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = D2EBC8801F02109C00F198FB /* LVCUGCLivePlayerCell.m */; };
		D2EBC8851F02109C00F198FB /* LVCUGCPlayerLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = D2EBC8821F02109C00F198FB /* LVCUGCPlayerLoadingView.m */; };
		D2EBC8881F0225D900F198FB /* LVCVodPlayerListController.m in Sources */ = {isa = PBXBuildFile; fileRef = D2EBC8871F0225D900F198FB /* LVCVodPlayerListController.m */; };
		D2EBC88B1F02361600F198FB /* LVCUGCLiveListView.m in Sources */ = {isa = PBXBuildFile; fileRef = D2EBC88A1F02361600F198FB /* LVCUGCLiveListView.m */; };
		D2EBC88E1F023AA400F198FB /* LVCVodPlayerController.m in Sources */ = {isa = PBXBuildFile; fileRef = D2EBC88D1F023AA400F198FB /* LVCVodPlayerController.m */; };
		D2EBC8961F0241BC00F198FB /* CNLiveMsgTools.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = D2EBC88F1F0241AD00F198FB /* CNLiveMsgTools.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
		D2EBC8991F025D4700F198FB /* LVCVodPlayerFullController.m in Sources */ = {isa = PBXBuildFile; fileRef = D2EBC8981F025D4700F198FB /* LVCVodPlayerFullController.m */; };
		D2EBC89B1F03421C00F198FB /* CNLiveChatManager.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D2EBC89A1F03421C00F198FB /* CNLiveChatManager.framework */; };
		D2EBC8A01F034C5500F198FB /* LVCCommentView.m in Sources */ = {isa = PBXBuildFile; fileRef = D2EBC89F1F034C5500F198FB /* LVCCommentView.m */; };
		D2EBC8A21F034F3C00F198FB /* CNLivePlayerSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D2EBC8A11F034F3C00F198FB /* CNLivePlayerSDK.framework */; };
		D2EBC8A31F034F4000F198FB /* CNLivePlayerSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D2EBC8A11F034F3C00F198FB /* CNLivePlayerSDK.framework */; };
		D2EBC8A41F034F4000F198FB /* CNLivePlayerSDK.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = D2EBC8A11F034F3C00F198FB /* CNLivePlayerSDK.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
		D2EBC8A61F03926E00F198FB /* CNLiveChatManager.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D2EBC8A51F03926E00F198FB /* CNLiveChatManager.framework */; };
		D2EBC8A71F03927200F198FB /* CNLiveChatManager.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D2EBC8A51F03926E00F198FB /* CNLiveChatManager.framework */; };
		D2EBC8A81F03927200F198FB /* CNLiveChatManager.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = D2EBC8A51F03926E00F198FB /* CNLiveChatManager.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
		D2EBC8AB1F039E8100F198FB /* LVCCommentTitleCell.m in Sources */ = {isa = PBXBuildFile; fileRef = D2EBC8AA1F039E8100F198FB /* LVCCommentTitleCell.m */; };
		D2EBC8AE1F03A99800F198FB /* LVCCommentCell.m in Sources */ = {isa = PBXBuildFile; fileRef = D2EBC8AD1F03A99800F198FB /* LVCCommentCell.m */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
		D2029B9B1E6EAAA50027CD92 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = D2029B791E6EAAA50027CD92 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = D2029B801E6EAAA50027CD92;
			remoteInfo = LiveVideoCloud;
		};
		D2029BA61E6EAAA50027CD92 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = D2029B791E6EAAA50027CD92 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = D2029B801E6EAAA50027CD92;
			remoteInfo = LiveVideoCloud;
		};
/* End PBXContainerItemProxy section */

/* Begin PBXCopyFilesBuildPhase section */
		812E50591E7699E9004F5FCD /* Embed Frameworks */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = "";
			dstSubfolderSpec = 10;
			files = (
				D2EBC8A41F034F4000F198FB /* CNLivePlayerSDK.framework in Embed Frameworks */,
				D2EBC8961F0241BC00F198FB /* CNLiveMsgTools.framework in Embed Frameworks */,
				D2EBC8A81F03927200F198FB /* CNLiveChatManager.framework in Embed Frameworks */,
			);
			name = "Embed Frameworks";
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXCopyFilesBuildPhase section */

/* Begin PBXFileReference section */
		4B42A6C21EC00CC800DA09D7 /* UIAlertView+Blocks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIAlertView+Blocks.h"; sourceTree = "<group>"; };
		4B42A6C31EC00CC800DA09D7 /* UIAlertView+Blocks.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIAlertView+Blocks.m"; sourceTree = "<group>"; };
		4B42A6C51EC0171800DA09D7 /* PlayRecordCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlayRecordCell.h; sourceTree = "<group>"; };
		4B42A6C61EC0171800DA09D7 /* PlayRecordCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PlayRecordCell.m; sourceTree = "<group>"; };
		4B45CE441EB86A590079AFB7 /* BeingAnchorController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BeingAnchorController.h; sourceTree = "<group>"; };
		4B45CE451EB86A590079AFB7 /* BeingAnchorController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BeingAnchorController.m; sourceTree = "<group>"; };
		4B45CE461EB86A590079AFB7 /* IDViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IDViewController.h; sourceTree = "<group>"; };
		4B45CE471EB86A590079AFB7 /* IDViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IDViewController.m; sourceTree = "<group>"; };
		4B45CE481EB86A590079AFB7 /* LVCMineViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCMineViewController.h; sourceTree = "<group>"; };
		4B45CE491EB86A590079AFB7 /* LVCMineViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCMineViewController.m; sourceTree = "<group>"; };
		4B45CE4A1EB86A590079AFB7 /* MineAboutUsController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MineAboutUsController.h; sourceTree = "<group>"; };
		4B45CE4B1EB86A590079AFB7 /* MineAboutUsController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MineAboutUsController.m; sourceTree = "<group>"; };
		4B45CE4C1EB86A590079AFB7 /* MineLiveController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MineLiveController.h; sourceTree = "<group>"; };
		4B45CE4D1EB86A590079AFB7 /* MineLiveController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MineLiveController.m; sourceTree = "<group>"; };
		4B45CE4E1EB86A590079AFB7 /* MinePersonalDataController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MinePersonalDataController.h; sourceTree = "<group>"; };
		4B45CE4F1EB86A590079AFB7 /* MinePersonalDataController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MinePersonalDataController.m; sourceTree = "<group>"; };
		4B45CE501EB86A590079AFB7 /* MineSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MineSettingViewController.h; sourceTree = "<group>"; };
		4B45CE511EB86A590079AFB7 /* MineSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MineSettingViewController.m; sourceTree = "<group>"; };
		4B45CE521EB86A590079AFB7 /* ModifyInfomationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyInfomationController.h; sourceTree = "<group>"; };
		4B45CE531EB86A590079AFB7 /* ModifyInfomationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifyInfomationController.m; sourceTree = "<group>"; };
		4B45CE571EB86A590079AFB7 /* LoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginViewController.h; sourceTree = "<group>"; };
		4B45CE581EB86A590079AFB7 /* LoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginViewController.m; sourceTree = "<group>"; };
		4B45CE591EB86A590079AFB7 /* RegisterCommonController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RegisterCommonController.h; sourceTree = "<group>"; };
		4B45CE5A1EB86A590079AFB7 /* RegisterCommonController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RegisterCommonController.m; sourceTree = "<group>"; };
		4B45CE5C1EB86A590079AFB7 /* idAndPwdView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = idAndPwdView.h; sourceTree = "<group>"; };
		4B45CE5D1EB86A590079AFB7 /* idAndPwdView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = idAndPwdView.m; sourceTree = "<group>"; };
		4B45CE5E1EB86A590079AFB7 /* RegistBasicInformationView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RegistBasicInformationView.h; sourceTree = "<group>"; };
		4B45CE5F1EB86A590079AFB7 /* RegistBasicInformationView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RegistBasicInformationView.m; sourceTree = "<group>"; };
		4B45CE611EB86A590079AFB7 /* LVCMineCommonModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCMineCommonModel.h; sourceTree = "<group>"; };
		4B45CE621EB86A590079AFB7 /* LVCMineCommonModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCMineCommonModel.m; sourceTree = "<group>"; };
		4B45CE631EB86A590079AFB7 /* LVCMineModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCMineModel.h; sourceTree = "<group>"; };
		4B45CE641EB86A590079AFB7 /* LVCMineModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCMineModel.m; sourceTree = "<group>"; };
		4B45CE661EB86A590079AFB7 /* ModifyCommonView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyCommonView.h; sourceTree = "<group>"; };
		4B45CE671EB86A590079AFB7 /* ModifyCommonView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifyCommonView.m; sourceTree = "<group>"; };
		4B45CE681EB86A590079AFB7 /* LVCClearCachesCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCClearCachesCell.h; sourceTree = "<group>"; };
		4B45CE691EB86A590079AFB7 /* LVCClearCachesCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCClearCachesCell.m; sourceTree = "<group>"; };
		4B45CE6A1EB86A590079AFB7 /* LVCLoginShowView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCLoginShowView.h; sourceTree = "<group>"; };
		4B45CE6B1EB86A590079AFB7 /* LVCLoginShowView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCLoginShowView.m; sourceTree = "<group>"; };
		4B45CE6C1EB86A590079AFB7 /* LVCMineCommonCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCMineCommonCell.h; sourceTree = "<group>"; };
		4B45CE6D1EB86A590079AFB7 /* LVCMineCommonCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCMineCommonCell.m; sourceTree = "<group>"; };
		4B45CE6E1EB86A590079AFB7 /* LVCMineShowCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCMineShowCell.h; sourceTree = "<group>"; };
		4B45CE6F1EB86A590079AFB7 /* LVCMineShowCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCMineShowCell.m; sourceTree = "<group>"; };
		4B45CE721EB86A590079AFB7 /* LVCPersonCommonCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCPersonCommonCell.h; sourceTree = "<group>"; };
		4B45CE731EB86A590079AFB7 /* LVCPersonCommonCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCPersonCommonCell.m; sourceTree = "<group>"; };
		4B45CE741EB86A590079AFB7 /* LVCTextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCTextField.h; sourceTree = "<group>"; };
		4B45CE751EB86A590079AFB7 /* LVCTextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCTextField.m; sourceTree = "<group>"; };
		4B45CE8D1EB86A760079AFB7 /* UIButton+createButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+createButton.h"; sourceTree = "<group>"; };
		4B45CE8E1EB86A760079AFB7 /* UIButton+createButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+createButton.m"; sourceTree = "<group>"; };
		4B45CE8F1EB86A760079AFB7 /* UILabel+createLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UILabel+createLabel.h"; sourceTree = "<group>"; };
		4B45CE901EB86A760079AFB7 /* UILabel+createLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UILabel+createLabel.m"; sourceTree = "<group>"; };
		4B45CE911EB86A760079AFB7 /* UITextField+createTextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITextField+createTextField.h"; sourceTree = "<group>"; };
		4B45CE921EB86A760079AFB7 /* UITextField+createTextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITextField+createTextField.m"; sourceTree = "<group>"; };
		4B45CE931EB86A760079AFB7 /* ZXLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZXLabel.h; sourceTree = "<group>"; };
		4B45CE941EB86A760079AFB7 /* ZXLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZXLabel.m; sourceTree = "<group>"; };
		4B45CE951EB86A760079AFB7 /* ZXUIKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZXUIKit.h; sourceTree = "<group>"; };
		4B45CE961EB86A760079AFB7 /* ZXUIKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZXUIKit.m; sourceTree = "<group>"; };
		4B45CE9D1EB86B9E0079AFB7 /* CNLiveThirdLoginManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CNLiveThirdLoginManager.h; sourceTree = "<group>"; };
		4B45CE9E1EB86B9E0079AFB7 /* CNLiveThirdLoginManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CNLiveThirdLoginManager.m; sourceTree = "<group>"; };
		4B45CE9F1EB86B9E0079AFB7 /* NSNumber+ScaleHeight.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSNumber+ScaleHeight.h"; sourceTree = "<group>"; };
		4B45CEA01EB86B9E0079AFB7 /* NSNumber+ScaleHeight.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSNumber+ScaleHeight.m"; sourceTree = "<group>"; };
		4B45CEA11EB86B9E0079AFB7 /* NSObject+UserModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+UserModel.h"; sourceTree = "<group>"; };
		4B45CEA21EB86B9F0079AFB7 /* NSObject+UserModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+UserModel.m"; sourceTree = "<group>"; };
		4B45CEA31EB86B9F0079AFB7 /* UserTools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserTools.h; sourceTree = "<group>"; };
		4B45CEA41EB86B9F0079AFB7 /* UserTools.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserTools.m; sourceTree = "<group>"; };
		4B45CEA91EB86BFA0079AFB7 /* NSString+ZXExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+ZXExtension.h"; sourceTree = "<group>"; };
		4B45CEAA1EB86BFA0079AFB7 /* NSString+ZXExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+ZXExtension.m"; sourceTree = "<group>"; };
		4B45CEAC1EB873630079AFB7 /* UserInformationModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserInformationModel.h; sourceTree = "<group>"; };
		4B45CEAD1EB873630079AFB7 /* UserInformationModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserInformationModel.m; sourceTree = "<group>"; };
		4BD855CB1EBAC4B70082061D /* CNLiveKeychainWrapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CNLiveKeychainWrapper.h; sourceTree = "<group>"; };
		4BD855CC1EBAC4B70082061D /* CNLiveKeychainWrapper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CNLiveKeychainWrapper.m; sourceTree = "<group>"; };
		4BD855CE1EBAC57A0082061D /* Common.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Common.h; sourceTree = "<group>"; };
		4BD855D51EBACD530082061D /* AFHTTPRequestOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFHTTPRequestOperation.h; sourceTree = "<group>"; };
		4BD855D61EBACD530082061D /* AFHTTPRequestOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFHTTPRequestOperation.m; sourceTree = "<group>"; };
		4BD855D71EBACD530082061D /* AFHTTPRequestOperationManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFHTTPRequestOperationManager.h; sourceTree = "<group>"; };
		4BD855D81EBACD530082061D /* AFHTTPRequestOperationManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFHTTPRequestOperationManager.m; sourceTree = "<group>"; };
		4BD855D91EBACD530082061D /* AFHTTPSessionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFHTTPSessionManager.h; sourceTree = "<group>"; };
		4BD855DA1EBACD530082061D /* AFHTTPSessionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFHTTPSessionManager.m; sourceTree = "<group>"; };
		4BD855DB1EBACD530082061D /* AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFNetworking.h; sourceTree = "<group>"; };
		4BD855DC1EBACD530082061D /* AFNetworkReachabilityManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFNetworkReachabilityManager.h; sourceTree = "<group>"; };
		4BD855DD1EBACD530082061D /* AFNetworkReachabilityManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFNetworkReachabilityManager.m; sourceTree = "<group>"; };
		4BD855DE1EBACD530082061D /* AFSecurityPolicy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFSecurityPolicy.h; sourceTree = "<group>"; };
		4BD855DF1EBACD530082061D /* AFSecurityPolicy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFSecurityPolicy.m; sourceTree = "<group>"; };
		4BD855E01EBACD530082061D /* AFURLConnectionOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLConnectionOperation.h; sourceTree = "<group>"; };
		4BD855E11EBACD530082061D /* AFURLConnectionOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLConnectionOperation.m; sourceTree = "<group>"; };
		4BD855E21EBACD530082061D /* AFURLRequestSerialization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLRequestSerialization.h; sourceTree = "<group>"; };
		4BD855E31EBACD530082061D /* AFURLRequestSerialization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLRequestSerialization.m; sourceTree = "<group>"; };
		4BD855E41EBACD530082061D /* AFURLResponseSerialization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLResponseSerialization.h; sourceTree = "<group>"; };
		4BD855E51EBACD530082061D /* AFURLResponseSerialization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLResponseSerialization.m; sourceTree = "<group>"; };
		4BD855E61EBACD530082061D /* AFURLSessionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLSessionManager.h; sourceTree = "<group>"; };
		4BD855E71EBACD530082061D /* AFURLSessionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLSessionManager.m; sourceTree = "<group>"; };
		4BD855E91EBACD530082061D /* AFNetworkActivityIndicatorManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFNetworkActivityIndicatorManager.h; sourceTree = "<group>"; };
		4BD855EA1EBACD530082061D /* AFNetworkActivityIndicatorManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFNetworkActivityIndicatorManager.m; sourceTree = "<group>"; };
		4BD855EB1EBACD530082061D /* UIActivityIndicatorView+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIActivityIndicatorView+AFNetworking.h"; sourceTree = "<group>"; };
		4BD855EC1EBACD530082061D /* UIActivityIndicatorView+AFNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIActivityIndicatorView+AFNetworking.m"; sourceTree = "<group>"; };
		4BD855ED1EBACD530082061D /* UIAlertView+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIAlertView+AFNetworking.h"; sourceTree = "<group>"; };
		4BD855EE1EBACD530082061D /* UIAlertView+AFNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIAlertView+AFNetworking.m"; sourceTree = "<group>"; };
		4BD855EF1EBACD530082061D /* UIButton+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+AFNetworking.h"; sourceTree = "<group>"; };
		4BD855F01EBACD530082061D /* UIButton+AFNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+AFNetworking.m"; sourceTree = "<group>"; };
		4BD855F11EBACD530082061D /* UIImageView+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+AFNetworking.h"; sourceTree = "<group>"; };
		4BD855F21EBACD530082061D /* UIImageView+AFNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+AFNetworking.m"; sourceTree = "<group>"; };
		4BD855F31EBACD530082061D /* UIKit+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIKit+AFNetworking.h"; sourceTree = "<group>"; };
		4BD855F41EBACD530082061D /* UIProgressView+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIProgressView+AFNetworking.h"; sourceTree = "<group>"; };
		4BD855F51EBACD530082061D /* UIProgressView+AFNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIProgressView+AFNetworking.m"; sourceTree = "<group>"; };
		4BD855F61EBACD530082061D /* UIRefreshControl+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIRefreshControl+AFNetworking.h"; sourceTree = "<group>"; };
		4BD855F71EBACD530082061D /* UIRefreshControl+AFNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIRefreshControl+AFNetworking.m"; sourceTree = "<group>"; };
		4BD855F81EBACD530082061D /* UIWebView+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIWebView+AFNetworking.h"; sourceTree = "<group>"; };
		4BD855F91EBACD530082061D /* UIWebView+AFNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIWebView+AFNetworking.m"; sourceTree = "<group>"; };
		4BD8560B1EBACEF80082061D /* CNLiveWebView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CNLiveWebView.h; path = ../CNLiveWebView.h; sourceTree = "<group>"; };
		4BD8560C1EBACEF80082061D /* CNLiveWebView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CNLiveWebView.m; path = ../CNLiveWebView.m; sourceTree = "<group>"; };
		4BD8560E1EBACEF80082061D /* CNLiveMacro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CNLiveMacro.h; sourceTree = "<group>"; };
		4BD856101EBAD2640082061D /* ProgramModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ProgramModel.h; sourceTree = "<group>"; };
		4BD856111EBAD2640082061D /* ProgramModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ProgramModel.m; sourceTree = "<group>"; };
		4BD856131EBAD31A0082061D /* NSString+UrlEncode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+UrlEncode.h"; sourceTree = "<group>"; };
		4BD856141EBAD31A0082061D /* NSString+UrlEncode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+UrlEncode.m"; sourceTree = "<group>"; };
		4BD856161EBAD35C0082061D /* NSDictionary+Safety.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+Safety.h"; sourceTree = "<group>"; };
		4BD856171EBAD35C0082061D /* NSDictionary+Safety.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+Safety.m"; sourceTree = "<group>"; };
		4BD8561B1EBAD6490082061D /* ZXConst.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ZXConst.h; path = Macros/ZXConst.h; sourceTree = "<group>"; };
		4BD8561C1EBAD6490082061D /* ZXConst.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ZXConst.m; path = Macros/ZXConst.m; sourceTree = "<group>"; };
		810B64E51E779B1F00133E15 /* MASCompositeConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASCompositeConstraint.h; sourceTree = "<group>"; };
		810B64E61E779B1F00133E15 /* MASCompositeConstraint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MASCompositeConstraint.m; sourceTree = "<group>"; };
		810B64E71E779B1F00133E15 /* MASConstraint+Private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MASConstraint+Private.h"; sourceTree = "<group>"; };
		810B64E81E779B1F00133E15 /* MASConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASConstraint.h; sourceTree = "<group>"; };
		810B64E91E779B1F00133E15 /* MASConstraint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MASConstraint.m; sourceTree = "<group>"; };
		810B64EA1E779B1F00133E15 /* MASConstraintMaker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASConstraintMaker.h; sourceTree = "<group>"; };
		810B64EB1E779B1F00133E15 /* MASConstraintMaker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MASConstraintMaker.m; sourceTree = "<group>"; };
		810B64EC1E779B1F00133E15 /* MASLayoutConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASLayoutConstraint.h; sourceTree = "<group>"; };
		810B64ED1E779B1F00133E15 /* MASLayoutConstraint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MASLayoutConstraint.m; sourceTree = "<group>"; };
		810B64EE1E779B1F00133E15 /* Masonry.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Masonry.h; sourceTree = "<group>"; };
		810B64EF1E779B1F00133E15 /* MASUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASUtilities.h; sourceTree = "<group>"; };
		810B64F01E779B1F00133E15 /* MASViewAttribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASViewAttribute.h; sourceTree = "<group>"; };
		810B64F11E779B1F00133E15 /* MASViewAttribute.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MASViewAttribute.m; sourceTree = "<group>"; };
		810B64F21E779B1F00133E15 /* MASViewConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASViewConstraint.h; sourceTree = "<group>"; };
		810B64F31E779B1F00133E15 /* MASViewConstraint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MASViewConstraint.m; sourceTree = "<group>"; };
		810B64F41E779B1F00133E15 /* NSArray+MASAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+MASAdditions.h"; sourceTree = "<group>"; };
		810B64F51E779B1F00133E15 /* NSArray+MASAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+MASAdditions.m"; sourceTree = "<group>"; };
		810B64F61E779B1F00133E15 /* NSArray+MASShorthandAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+MASShorthandAdditions.h"; sourceTree = "<group>"; };
		810B64F71E779B1F00133E15 /* NSLayoutConstraint+MASDebugAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSLayoutConstraint+MASDebugAdditions.h"; sourceTree = "<group>"; };
		810B64F81E779B1F00133E15 /* NSLayoutConstraint+MASDebugAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSLayoutConstraint+MASDebugAdditions.m"; sourceTree = "<group>"; };
		810B64F91E779B1F00133E15 /* View+MASAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "View+MASAdditions.h"; sourceTree = "<group>"; };
		810B64FA1E779B1F00133E15 /* View+MASAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "View+MASAdditions.m"; sourceTree = "<group>"; };
		810B64FB1E779B1F00133E15 /* View+MASShorthandAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "View+MASShorthandAdditions.h"; sourceTree = "<group>"; };
		810B64FC1E779B1F00133E15 /* ViewController+MASAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ViewController+MASAdditions.h"; sourceTree = "<group>"; };
		810B64FD1E779B1F00133E15 /* ViewController+MASAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "ViewController+MASAdditions.m"; sourceTree = "<group>"; };
		811BB68C1E8116C8005C6291 /* NSString+StringSize.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+StringSize.h"; sourceTree = "<group>"; };
		811BB68D1E8116C8005C6291 /* NSString+StringSize.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+StringSize.m"; sourceTree = "<group>"; };
		8178D41E1F02043500AA78A4 /* LVCFullScreenPlayerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCFullScreenPlayerController.h; sourceTree = "<group>"; };
		8178D41F1F02043500AA78A4 /* LVCFullScreenPlayerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCFullScreenPlayerController.m; sourceTree = "<group>"; };
		8178D4201F02043500AA78A4 /* LVCLivePlayerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCLivePlayerController.h; sourceTree = "<group>"; };
		8178D4211F02043500AA78A4 /* LVCLivePlayerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCLivePlayerController.m; sourceTree = "<group>"; };
		8178D42B1F02044300AA78A4 /* LVCChatRoomModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCChatRoomModel.h; sourceTree = "<group>"; };
		8178D42C1F02044300AA78A4 /* LVCChatRoomModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCChatRoomModel.m; sourceTree = "<group>"; };
		8178D4341F02045500AA78A4 /* CNBarrageManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CNBarrageManager.h; sourceTree = "<group>"; };
		8178D4351F02045500AA78A4 /* CNBarrageManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CNBarrageManager.m; sourceTree = "<group>"; };
		8178D4361F02045500AA78A4 /* CNBarrageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CNBarrageView.h; sourceTree = "<group>"; };
		8178D4371F02045500AA78A4 /* CNBarrageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CNBarrageView.m; sourceTree = "<group>"; };
		8178D4421F02045500AA78A4 /* LVCPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCPlayer.h; sourceTree = "<group>"; };
		8178D4431F02045500AA78A4 /* LVCPlayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCPlayer.m; sourceTree = "<group>"; };
		8178D4461F02045500AA78A4 /* LVCRequestFailedView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCRequestFailedView.h; sourceTree = "<group>"; };
		8178D4471F02045500AA78A4 /* LVCRequestFailedView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCRequestFailedView.m; sourceTree = "<group>"; };
		8178D4551F0204D600AA78A4 /* LVCTelevisioController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCTelevisioController.h; sourceTree = "<group>"; };
		8178D4561F0204D600AA78A4 /* LVCTelevisioController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCTelevisioController.m; sourceTree = "<group>"; };
		8178D4591F02060B00AA78A4 /* LVCChatView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCChatView.h; sourceTree = "<group>"; };
		8178D45A1F02060B00AA78A4 /* LVCChatView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCChatView.m; sourceTree = "<group>"; };
		8178D45B1F02060B00AA78A4 /* LVCChatViewTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCChatViewTableViewCell.h; sourceTree = "<group>"; };
		8178D45C1F02060B00AA78A4 /* LVCChatViewTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCChatViewTableViewCell.m; sourceTree = "<group>"; };
		8178D45D1F02060B00AA78A4 /* LVCInputView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCInputView.h; sourceTree = "<group>"; };
		8178D45E1F02060B00AA78A4 /* LVCInputView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCInputView.m; sourceTree = "<group>"; };
		8178D45F1F02060B00AA78A4 /* LVCMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCMessage.h; sourceTree = "<group>"; };
		8178D4601F02060B00AA78A4 /* LVCMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCMessage.m; sourceTree = "<group>"; };
		8178D4671F021C4500AA78A4 /* TelevisionData.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = TelevisionData.json; sourceTree = "<group>"; };
		8178D4691F021ED800AA78A4 /* LVCTelevisionModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCTelevisionModel.h; sourceTree = "<group>"; };
		8178D46A1F021ED800AA78A4 /* LVCTelevisionModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCTelevisionModel.m; sourceTree = "<group>"; };
		8178D46C1F0225E500AA78A4 /* LVCTelevisionCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCTelevisionCell.h; sourceTree = "<group>"; };
		8178D46D1F0225E500AA78A4 /* LVCTelevisionCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCTelevisionCell.m; sourceTree = "<group>"; };
		8178D46F1F0239AD00AA78A4 /* LVCPlayerLoadingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCPlayerLoadingView.h; sourceTree = "<group>"; };
		8178D4701F0239AD00AA78A4 /* LVCPlayerLoadingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCPlayerLoadingView.m; sourceTree = "<group>"; };
		81A483061E88B6140097A80A /* UIView+ViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ViewController.h"; sourceTree = "<group>"; };
		81A483071E88B6140097A80A /* UIView+ViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ViewController.m"; sourceTree = "<group>"; };
		81F1C83E1E8BC5CC0085C2B8 /* NSArray+Safety.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+Safety.h"; sourceTree = "<group>"; };
		81F1C83F1E8BC5CC0085C2B8 /* NSArray+Safety.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+Safety.m"; sourceTree = "<group>"; };
		81FB5B3A1E7A6FFC00F98E1D /* SevenSwitch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SevenSwitch.h; sourceTree = "<group>"; };
		81FB5B3B1E7A6FFC00F98E1D /* SevenSwitch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SevenSwitch.m; sourceTree = "<group>"; };
		D2029B811E6EAAA50027CD92 /* LiveVideoCloud.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = LiveVideoCloud.app; sourceTree = BUILT_PRODUCTS_DIR; };
		D2029B851E6EAAA50027CD92 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
		D2029B901E6EAAA50027CD92 /* animation.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = animation.xcassets; sourceTree = "<group>"; };
		D2029B931E6EAAA50027CD92 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
		D2029B951E6EAAA50027CD92 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
		D2029B9A1E6EAAA50027CD92 /* LiveVideoCloudTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = LiveVideoCloudTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
		D2029B9E1E6EAAA50027CD92 /* LiveVideoCloudTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LiveVideoCloudTests.m; sourceTree = "<group>"; };
		D2029BA01E6EAAA50027CD92 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
		D2029BA51E6EAAA50027CD92 /* LiveVideoCloudUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = LiveVideoCloudUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
		D2029BA91E6EAAA50027CD92 /* LiveVideoCloudUITests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LiveVideoCloudUITests.m; sourceTree = "<group>"; };
		D2029BAB1E6EAAA50027CD92 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
		D2029BBD1E6EADD70027CD92 /* BaseModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseModel.h; sourceTree = "<group>"; };
		D2029BBE1E6EADD70027CD92 /* BaseModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BaseModel.m; sourceTree = "<group>"; };
		D2029BBF1E6EADD70027CD92 /* BaseTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseTableViewCell.h; sourceTree = "<group>"; };
		D2029BC01E6EADD70027CD92 /* BaseTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BaseTableViewCell.m; sourceTree = "<group>"; };
		D2029BC11E6EADD70027CD92 /* BaseView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseView.h; sourceTree = "<group>"; };
		D2029BC21E6EADD70027CD92 /* BaseView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BaseView.m; sourceTree = "<group>"; };
		D2029BC31E6EADD70027CD92 /* BaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseViewController.h; sourceTree = "<group>"; };
		D2029BC41E6EADD70027CD92 /* BaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BaseViewController.m; sourceTree = "<group>"; };
		D2029BC61E6EADD70027CD92 /* ZXNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZXNavigationController.h; sourceTree = "<group>"; };
		D2029BC71E6EADD70027CD92 /* ZXNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZXNavigationController.m; sourceTree = "<group>"; };
		D2029BC81E6EADD70027CD92 /* ZXTabBarController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZXTabBarController.h; sourceTree = "<group>"; };
		D2029BC91E6EADD70027CD92 /* ZXTabBarController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZXTabBarController.m; sourceTree = "<group>"; };
		D2029BD21E6EADE10027CD92 /* Tools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Tools.h; sourceTree = "<group>"; };
		D2029BD31E6EADE10027CD92 /* Tools.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Tools.m; sourceTree = "<group>"; };
		D2029BF91E6EADE10027CD92 /* MBProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MBProgressHUD.h; sourceTree = "<group>"; };
		D2029BFA1E6EADE10027CD92 /* MBProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MBProgressHUD.m; sourceTree = "<group>"; };
		D2029BFC1E6EADE10027CD92 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
		D2029BFD1E6EADE10027CD92 /* MJExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJExtension.h; sourceTree = "<group>"; };
		D2029BFE1E6EADE10027CD92 /* MJExtensionConst.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJExtensionConst.h; sourceTree = "<group>"; };
		D2029BFF1E6EADE10027CD92 /* MJExtensionConst.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJExtensionConst.m; sourceTree = "<group>"; };
		D2029C001E6EADE10027CD92 /* MJFoundation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJFoundation.h; sourceTree = "<group>"; };
		D2029C011E6EADE10027CD92 /* MJFoundation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJFoundation.m; sourceTree = "<group>"; };
		D2029C021E6EADE10027CD92 /* MJProperty.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJProperty.h; sourceTree = "<group>"; };
		D2029C031E6EADE10027CD92 /* MJProperty.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJProperty.m; sourceTree = "<group>"; };
		D2029C041E6EADE10027CD92 /* MJPropertyKey.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJPropertyKey.h; sourceTree = "<group>"; };
		D2029C051E6EADE10027CD92 /* MJPropertyKey.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJPropertyKey.m; sourceTree = "<group>"; };
		D2029C061E6EADE10027CD92 /* MJPropertyType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJPropertyType.h; sourceTree = "<group>"; };
		D2029C071E6EADE10027CD92 /* MJPropertyType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJPropertyType.m; sourceTree = "<group>"; };
		D2029C081E6EADE10027CD92 /* NSObject+MJClass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+MJClass.h"; sourceTree = "<group>"; };
		D2029C091E6EADE10027CD92 /* NSObject+MJClass.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+MJClass.m"; sourceTree = "<group>"; };
		D2029C0A1E6EADE10027CD92 /* NSObject+MJCoding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+MJCoding.h"; sourceTree = "<group>"; };
		D2029C0B1E6EADE10027CD92 /* NSObject+MJCoding.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+MJCoding.m"; sourceTree = "<group>"; };
		D2029C0C1E6EADE10027CD92 /* NSObject+MJKeyValue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+MJKeyValue.h"; sourceTree = "<group>"; };
		D2029C0D1E6EADE10027CD92 /* NSObject+MJKeyValue.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+MJKeyValue.m"; sourceTree = "<group>"; };
		D2029C0E1E6EADE10027CD92 /* NSObject+MJProperty.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+MJProperty.h"; sourceTree = "<group>"; };
		D2029C0F1E6EADE10027CD92 /* NSObject+MJProperty.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+MJProperty.m"; sourceTree = "<group>"; };
		D2029C101E6EADE10027CD92 /* NSString+MJExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+MJExtension.h"; sourceTree = "<group>"; };
		D2029C111E6EADE10027CD92 /* NSString+MJExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+MJExtension.m"; sourceTree = "<group>"; };
		D2029C141E6EADE10027CD92 /* MJRefreshAutoFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshAutoFooter.h; sourceTree = "<group>"; };
		D2029C151E6EADE10027CD92 /* MJRefreshAutoFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshAutoFooter.m; sourceTree = "<group>"; };
		D2029C161E6EADE10027CD92 /* MJRefreshBackFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshBackFooter.h; sourceTree = "<group>"; };
		D2029C171E6EADE10027CD92 /* MJRefreshBackFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshBackFooter.m; sourceTree = "<group>"; };
		D2029C181E6EADE10027CD92 /* MJRefreshComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshComponent.h; sourceTree = "<group>"; };
		D2029C191E6EADE10027CD92 /* MJRefreshComponent.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshComponent.m; sourceTree = "<group>"; };
		D2029C1A1E6EADE10027CD92 /* MJRefreshFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshFooter.h; sourceTree = "<group>"; };
		D2029C1B1E6EADE10027CD92 /* MJRefreshFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshFooter.m; sourceTree = "<group>"; };
		D2029C1C1E6EADE10027CD92 /* MJRefreshHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshHeader.h; sourceTree = "<group>"; };
		D2029C1D1E6EADE10027CD92 /* MJRefreshHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshHeader.m; sourceTree = "<group>"; };
		D2029C211E6EADE10027CD92 /* MJRefreshAutoGifFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshAutoGifFooter.h; sourceTree = "<group>"; };
		D2029C221E6EADE10027CD92 /* MJRefreshAutoGifFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshAutoGifFooter.m; sourceTree = "<group>"; };
		D2029C231E6EADE10027CD92 /* MJRefreshAutoNormalFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshAutoNormalFooter.h; sourceTree = "<group>"; };
		D2029C241E6EADE10027CD92 /* MJRefreshAutoNormalFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshAutoNormalFooter.m; sourceTree = "<group>"; };
		D2029C251E6EADE10027CD92 /* MJRefreshAutoStateFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshAutoStateFooter.h; sourceTree = "<group>"; };
		D2029C261E6EADE10027CD92 /* MJRefreshAutoStateFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshAutoStateFooter.m; sourceTree = "<group>"; };
		D2029C281E6EADE10027CD92 /* MJRefreshBackGifFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshBackGifFooter.h; sourceTree = "<group>"; };
		D2029C291E6EADE10027CD92 /* MJRefreshBackGifFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshBackGifFooter.m; sourceTree = "<group>"; };
		D2029C2A1E6EADE10027CD92 /* MJRefreshBackNormalFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshBackNormalFooter.h; sourceTree = "<group>"; };
		D2029C2B1E6EADE10027CD92 /* MJRefreshBackNormalFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshBackNormalFooter.m; sourceTree = "<group>"; };
		D2029C2C1E6EADE10027CD92 /* MJRefreshBackStateFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshBackStateFooter.h; sourceTree = "<group>"; };
		D2029C2D1E6EADE10027CD92 /* MJRefreshBackStateFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshBackStateFooter.m; sourceTree = "<group>"; };
		D2029C2F1E6EADE10027CD92 /* MJRefreshGifHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshGifHeader.h; sourceTree = "<group>"; };
		D2029C301E6EADE10027CD92 /* MJRefreshGifHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshGifHeader.m; sourceTree = "<group>"; };
		D2029C311E6EADE10027CD92 /* MJRefreshNormalHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshNormalHeader.h; sourceTree = "<group>"; };
		D2029C321E6EADE10027CD92 /* MJRefreshNormalHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshNormalHeader.m; sourceTree = "<group>"; };
		D2029C331E6EADE10027CD92 /* MJRefreshStateHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshStateHeader.h; sourceTree = "<group>"; };
		D2029C341E6EADE10027CD92 /* MJRefreshStateHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshStateHeader.m; sourceTree = "<group>"; };
		D2029C351E6EADE10027CD92 /* MJRefresh.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = MJRefresh.bundle; sourceTree = "<group>"; };
		D2029C361E6EADE10027CD92 /* MJRefresh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefresh.h; sourceTree = "<group>"; };
		D2029C371E6EADE10027CD92 /* MJRefreshConst.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshConst.h; sourceTree = "<group>"; };
		D2029C381E6EADE10027CD92 /* MJRefreshConst.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshConst.m; sourceTree = "<group>"; };
		D2029C391E6EADE10027CD92 /* UIScrollView+MJExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+MJExtension.h"; sourceTree = "<group>"; };
		D2029C3A1E6EADE10027CD92 /* UIScrollView+MJExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+MJExtension.m"; sourceTree = "<group>"; };
		D2029C3B1E6EADE10027CD92 /* UIScrollView+MJRefresh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+MJRefresh.h"; sourceTree = "<group>"; };
		D2029C3C1E6EADE10027CD92 /* UIScrollView+MJRefresh.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+MJRefresh.m"; sourceTree = "<group>"; };
		D2029C3D1E6EADE10027CD92 /* UIView+MJExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+MJExtension.h"; sourceTree = "<group>"; };
		D2029C3E1E6EADE10027CD92 /* UIView+MJExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+MJExtension.m"; sourceTree = "<group>"; };
		D2029C411E6EADE10027CD92 /* SDiOSVersion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDiOSVersion.h; sourceTree = "<group>"; };
		D2029C421E6EADE10027CD92 /* SDiOSVersion.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDiOSVersion.m; sourceTree = "<group>"; };
		D2029C431E6EADE10027CD92 /* SDVersion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDVersion.h; sourceTree = "<group>"; };
		D2029C451E6EADE10027CD92 /* MKAnnotationView+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MKAnnotationView+WebCache.h"; sourceTree = "<group>"; };
		D2029C461E6EADE10027CD92 /* MKAnnotationView+WebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MKAnnotationView+WebCache.m"; sourceTree = "<group>"; };
		D2029C471E6EADE10027CD92 /* NSData+ImageContentType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSData+ImageContentType.h"; sourceTree = "<group>"; };
		D2029C481E6EADE10027CD92 /* NSData+ImageContentType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSData+ImageContentType.m"; sourceTree = "<group>"; };
		D2029C491E6EADE10027CD92 /* SDImageCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDImageCache.h; sourceTree = "<group>"; };
		D2029C4A1E6EADE10027CD92 /* SDImageCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDImageCache.m; sourceTree = "<group>"; };
		D2029C4B1E6EADE10027CD92 /* SDWebImageCompat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageCompat.h; sourceTree = "<group>"; };
		D2029C4C1E6EADE10027CD92 /* SDWebImageCompat.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageCompat.m; sourceTree = "<group>"; };
		D2029C4D1E6EADE10027CD92 /* SDWebImageDecoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageDecoder.h; sourceTree = "<group>"; };
		D2029C4E1E6EADE10027CD92 /* SDWebImageDecoder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageDecoder.m; sourceTree = "<group>"; };
		D2029C4F1E6EADE10027CD92 /* SDWebImageDownloader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageDownloader.h; sourceTree = "<group>"; };
		D2029C501E6EADE10027CD92 /* SDWebImageDownloader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageDownloader.m; sourceTree = "<group>"; };
		D2029C511E6EADE10027CD92 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageDownloaderOperation.h; sourceTree = "<group>"; };
		D2029C521E6EADE10027CD92 /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageDownloaderOperation.m; sourceTree = "<group>"; };
		D2029C531E6EADE10027CD92 /* SDWebImageManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageManager.h; sourceTree = "<group>"; };
		D2029C541E6EADE10027CD92 /* SDWebImageManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageManager.m; sourceTree = "<group>"; };
		D2029C551E6EADE10027CD92 /* SDWebImageOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageOperation.h; sourceTree = "<group>"; };
		D2029C561E6EADE10027CD92 /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImagePrefetcher.h; sourceTree = "<group>"; };
		D2029C571E6EADE10027CD92 /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImagePrefetcher.m; sourceTree = "<group>"; };
		D2029C581E6EADE10027CD92 /* UIButton+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+WebCache.h"; sourceTree = "<group>"; };
		D2029C591E6EADE10027CD92 /* UIButton+WebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+WebCache.m"; sourceTree = "<group>"; };
		D2029C5A1E6EADE10027CD92 /* UIImage+GIF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+GIF.h"; sourceTree = "<group>"; };
		D2029C5B1E6EADE10027CD92 /* UIImage+GIF.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+GIF.m"; sourceTree = "<group>"; };
		D2029C5C1E6EADE10027CD92 /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+MultiFormat.h"; sourceTree = "<group>"; };
		D2029C5D1E6EADE10027CD92 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+MultiFormat.m"; sourceTree = "<group>"; };
		D2029C5E1E6EADE10027CD92 /* UIImage+WebP.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+WebP.h"; sourceTree = "<group>"; };
		D2029C5F1E6EADE10027CD92 /* UIImage+WebP.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+WebP.m"; sourceTree = "<group>"; };
		D2029C601E6EADE10027CD92 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+HighlightedWebCache.h"; sourceTree = "<group>"; };
		D2029C611E6EADE10027CD92 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+HighlightedWebCache.m"; sourceTree = "<group>"; };
		D2029C621E6EADE10027CD92 /* UIImageView+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+WebCache.h"; sourceTree = "<group>"; };
		D2029C631E6EADE10027CD92 /* UIImageView+WebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+WebCache.m"; sourceTree = "<group>"; };
		D2029C641E6EADE10027CD92 /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+WebCacheOperation.h"; sourceTree = "<group>"; };
		D2029C651E6EADE10027CD92 /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+WebCacheOperation.m"; sourceTree = "<group>"; };
		D2029C671E6EADE10027CD92 /* SSKeychain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SSKeychain.h; sourceTree = "<group>"; };
		D2029C681E6EADE10027CD92 /* SSKeychain.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SSKeychain.m; sourceTree = "<group>"; };
		D2029C6A1E6EADE10027CD92 /* SVIndefiniteAnimatedView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SVIndefiniteAnimatedView.h; sourceTree = "<group>"; };
		D2029C6B1E6EADE10027CD92 /* SVIndefiniteAnimatedView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SVIndefiniteAnimatedView.m; sourceTree = "<group>"; };
		D2029C6C1E6EADE10027CD92 /* SVProgressAnimatedView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SVProgressAnimatedView.h; sourceTree = "<group>"; };
		D2029C6D1E6EADE10027CD92 /* SVProgressAnimatedView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SVProgressAnimatedView.m; sourceTree = "<group>"; };
		D2029C6E1E6EADE10027CD92 /* SVProgressHUD-Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "SVProgressHUD-Prefix.pch"; sourceTree = "<group>"; };
		D2029C6F1E6EADE10027CD92 /* SVProgressHUD.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = SVProgressHUD.bundle; sourceTree = "<group>"; };
		D2029C701E6EADE10027CD92 /* SVProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SVProgressHUD.h; sourceTree = "<group>"; };
		D2029C711E6EADE10027CD92 /* SVProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SVProgressHUD.m; sourceTree = "<group>"; };
		D2029C721E6EADE10027CD92 /* SVRadialGradientLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SVRadialGradientLayer.h; sourceTree = "<group>"; };
		D2029C731E6EADE10027CD92 /* SVRadialGradientLayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SVRadialGradientLayer.m; sourceTree = "<group>"; };
		D2029CD21E6EADE70027CD92 /* HttpService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HttpService.h; sourceTree = "<group>"; };
		D2029CD31E6EADE70027CD92 /* HttpService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HttpService.m; sourceTree = "<group>"; };
		D2029CD61E6EADFB0027CD92 /* PrefixHeader.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PrefixHeader.pch; sourceTree = "<group>"; };
		D2029CDE1E6EAE2E0027CD92 /* NSNumber+ScaleHeight.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSNumber+ScaleHeight.h"; sourceTree = "<group>"; };
		D2029CDF1E6EAE2E0027CD92 /* NSNumber+ScaleHeight.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSNumber+ScaleHeight.m"; sourceTree = "<group>"; };
		D2029CE01E6EAE2E0027CD92 /* UIColor+HexString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+HexString.h"; sourceTree = "<group>"; };
		D2029CE11E6EAE2E0027CD92 /* UIColor+HexString.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+HexString.m"; sourceTree = "<group>"; };
		D2029CE21E6EAE2E0027CD92 /* UIImage+ScaleImageSize.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+ScaleImageSize.h"; sourceTree = "<group>"; };
		D2029CE31E6EAE2E0027CD92 /* UIImage+ScaleImageSize.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+ScaleImageSize.m"; sourceTree = "<group>"; };
		D2029CE41E6EAE2E0027CD92 /* UIImage+ZXExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+ZXExtension.h"; sourceTree = "<group>"; };
		D2029CE51E6EAE2E0027CD92 /* UIImage+ZXExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+ZXExtension.m"; sourceTree = "<group>"; };
		D2029CE61E6EAE2E0027CD92 /* UILabel+ContentSize.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UILabel+ContentSize.h"; sourceTree = "<group>"; };
		D2029CE71E6EAE2E0027CD92 /* UILabel+ContentSize.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UILabel+ContentSize.m"; sourceTree = "<group>"; };
		D2029CE81E6EAE2E0027CD92 /* UILabel+labelFitSize.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UILabel+labelFitSize.h"; sourceTree = "<group>"; };
		D2029CE91E6EAE2E0027CD92 /* UILabel+labelFitSize.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UILabel+labelFitSize.m"; sourceTree = "<group>"; };
		D2029CEA1E6EAE2E0027CD92 /* UIView+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Extension.h"; sourceTree = "<group>"; };
		D2029CEB1E6EAE2E0027CD92 /* UIView+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Extension.m"; sourceTree = "<group>"; };
		D2029CF01E6EAE2E0027CD92 /* ZXDeviceInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZXDeviceInfo.h; sourceTree = "<group>"; };
		D2029CF11E6EAE2E0027CD92 /* ZXDeviceInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZXDeviceInfo.m; sourceTree = "<group>"; };
		D2029CF21E6EAE2E0027CD92 /* Foundation+Log.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "Foundation+Log.m"; sourceTree = "<group>"; };
		D2029CF51E6EAE2E0027CD92 /* AppMacro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppMacro.h; sourceTree = "<group>"; };
		D2029CF61E6EAE2E0027CD92 /* EnumMacro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EnumMacro.h; sourceTree = "<group>"; };
		D2029CF71E6EAE2E0027CD92 /* NotificationMacro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NotificationMacro.h; sourceTree = "<group>"; };
		D2029CF81E6EAE2E0027CD92 /* UserDefaultKeyMacro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserDefaultKeyMacro.h; sourceTree = "<group>"; };
		D2029CF91E6EAE2E0027CD92 /* UtilsMacro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UtilsMacro.h; sourceTree = "<group>"; };
		D2029CFA1E6EAE2E0027CD92 /* VenderMacro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VenderMacro.h; sourceTree = "<group>"; };
		D2029CFB1E6EAE2E0027CD92 /* Macros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Macros.h; sourceTree = "<group>"; };
		D2029CFD1E6EAE2E0027CD92 /* ZXServerUrl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZXServerUrl.h; sourceTree = "<group>"; };
		D2029CFE1E6EAE2E0027CD92 /* ZXServerUrl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZXServerUrl.m; sourceTree = "<group>"; };
		D2029CFF1E6EAE2E0027CD92 /* UtilKits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UtilKits.h; sourceTree = "<group>"; };
		D2029D121E6EAF8D0027CD92 /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
		D2029D151E6EB00D0027CD92 /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
		D207BE9F1E84C1EC006A0CE8 /* AnimationBaseView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AnimationBaseView.h; sourceTree = "<group>"; };
		D207BEA01E84C1EC006A0CE8 /* AnimationBaseView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AnimationBaseView.m; sourceTree = "<group>"; };
		D209AD691EC580F100D82E3B /* LVCWebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCWebViewController.h; sourceTree = "<group>"; };
		D209AD6A1EC580F100D82E3B /* LVCWebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCWebViewController.m; sourceTree = "<group>"; };
		D209AD6C1EC583B700D82E3B /* MineMessageController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MineMessageController.h; sourceTree = "<group>"; };
		D209AD6D1EC583B700D82E3B /* MineMessageController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MineMessageController.m; sourceTree = "<group>"; };
		D209AD6F1EC583D100D82E3B /* MineAccountController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MineAccountController.h; sourceTree = "<group>"; };
		D209AD701EC583D100D82E3B /* MineAccountController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MineAccountController.m; sourceTree = "<group>"; };
		D217A2451E7B76C7003B44CB /* PresentModelAble.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PresentModelAble.h; sourceTree = "<group>"; };
		D217A2461E7B76C7003B44CB /* PresentView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PresentView.h; sourceTree = "<group>"; };
		D217A2471E7B76C7003B44CB /* PresentView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PresentView.m; sourceTree = "<group>"; };
		D217A2481E7B76C7003B44CB /* PresentViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PresentViewCell.h; sourceTree = "<group>"; };
		D217A2491E7B76C7003B44CB /* PresentViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PresentViewCell.m; sourceTree = "<group>"; };
		D217A24C1E7B77C7003B44CB /* ComboCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ComboCell.h; path = Present/ComboCell.h; sourceTree = "<group>"; };
		D217A24D1E7B77C7003B44CB /* ComboCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ComboCell.m; path = Present/ComboCell.m; sourceTree = "<group>"; };
		D224B1951E826ED800CC61D0 /* ChatBarrageAnimAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatBarrageAnimAction.h; sourceTree = "<group>"; };
		D224B1961E826ED800CC61D0 /* ChatBarrageAnimAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatBarrageAnimAction.m; sourceTree = "<group>"; };
		D22830EF1E778C0F00627701 /* LiveBaseView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LiveBaseView.h; sourceTree = "<group>"; };
		D22830F01E778C0F00627701 /* LiveBaseView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveBaseView.m; sourceTree = "<group>"; };
		D22830FA1E77C2D900627701 /* BottomToolView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BottomToolView.h; sourceTree = "<group>"; };
		D22830FB1E77C2D900627701 /* BottomToolView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BottomToolView.m; sourceTree = "<group>"; };
		D22830FD1E77C69E00627701 /* GiftListView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GiftListView.h; sourceTree = "<group>"; };
		D22830FE1E77C69E00627701 /* GiftListView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GiftListView.m; sourceTree = "<group>"; };
		D22831071E77D8D500627701 /* GiftModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GiftModel.h; sourceTree = "<group>"; };
		D22831081E77D8D500627701 /* GiftModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GiftModel.m; sourceTree = "<group>"; };
		D236967C1E7F9E4100E4BF71 /* GiftPayButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GiftPayButton.h; sourceTree = "<group>"; };
		D236967D1E7F9E4100E4BF71 /* GiftPayButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GiftPayButton.m; sourceTree = "<group>"; };
		D23696821E7FC6A900E4BF71 /* chatListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chatListCell.h; sourceTree = "<group>"; };
		D23696831E7FC6A900E4BF71 /* chatListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = chatListCell.m; sourceTree = "<group>"; };
		D23696901E7FC83800E4BF71 /* chatMsgModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chatMsgModel.h; sourceTree = "<group>"; };
		D23696911E7FC83800E4BF71 /* chatMsgModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = chatMsgModel.m; sourceTree = "<group>"; };
		D2393CFF1F020D5700D3EE17 /* FeedbackViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FeedbackViewController.h; sourceTree = "<group>"; };
		D2393D001F020D5700D3EE17 /* FeedbackViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FeedbackViewController.m; sourceTree = "<group>"; };
		D2393D051F02505400D3EE17 /* TencentOpenAPI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = TencentOpenAPI.framework; sourceTree = "<group>"; };
		D2393D061F02505400D3EE17 /* TencentOpenApi_IOS_Bundle.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = TencentOpenApi_IOS_Bundle.bundle; sourceTree = "<group>"; };
		D2393D0A1F0250A100D3EE17 /* libWeChatSDK.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libWeChatSDK.a; sourceTree = "<group>"; };
		D2393D0B1F0250A100D3EE17 /* read_me.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = read_me.txt; sourceTree = "<group>"; };
		D2393D0C1F0250A100D3EE17 /* WXApi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXApi.h; sourceTree = "<group>"; };
		D2393D0D1F0250A100D3EE17 /* WXApiObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXApiObject.h; sourceTree = "<group>"; };
		D2393D111F0250A700D3EE17 /* libWeiboSDK.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libWeiboSDK.a; sourceTree = "<group>"; };
		D2393D121F0250A700D3EE17 /* WBHttpRequest+WeiboGame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "WBHttpRequest+WeiboGame.h"; sourceTree = "<group>"; };
		D2393D131F0250A700D3EE17 /* WBHttpRequest+WeiboShare.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "WBHttpRequest+WeiboShare.h"; sourceTree = "<group>"; };
		D2393D141F0250A700D3EE17 /* WBHttpRequest+WeiboToken.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "WBHttpRequest+WeiboToken.h"; sourceTree = "<group>"; };
		D2393D151F0250A700D3EE17 /* WBHttpRequest+WeiboUser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "WBHttpRequest+WeiboUser.h"; sourceTree = "<group>"; };
		D2393D161F0250A700D3EE17 /* WBHttpRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WBHttpRequest.h; sourceTree = "<group>"; };
		D2393D171F0250A700D3EE17 /* WBSDKBasicButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WBSDKBasicButton.h; sourceTree = "<group>"; };
		D2393D181F0250A700D3EE17 /* WBSDKCommentButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WBSDKCommentButton.h; sourceTree = "<group>"; };
		D2393D191F0250A700D3EE17 /* WBSDKRelationshipButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WBSDKRelationshipButton.h; sourceTree = "<group>"; };
		D2393D1A1F0250A700D3EE17 /* WeiboSDK.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = WeiboSDK.bundle; sourceTree = "<group>"; };
		D2393D1B1F0250A700D3EE17 /* WeiboSDK.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WeiboSDK.h; sourceTree = "<group>"; };
		D2393D1C1F0250A700D3EE17 /* WeiboUser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WeiboUser.h; sourceTree = "<group>"; };
		D2393D1F1F0256AA00D3EE17 /* libsqlite3.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.tbd; path = usr/lib/libsqlite3.tbd; sourceTree = SDKROOT; };
		D2393D211F0256DC00D3EE17 /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; };
		D2393D231F0256E900D3EE17 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
		D2393D251F0256FE00D3EE17 /* libstdc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libstdc++.tbd"; path = "usr/lib/libstdc++.tbd"; sourceTree = SDKROOT; };
		D2393D271F02572100D3EE17 /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; };
		D2393D2B1F02682000D3EE17 /* CNLiveUserSystemSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = CNLiveUserSystemSDK.framework; sourceTree = "<group>"; };
		D23DC1531ECC41C100103B0E /* LVCVerifyViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCVerifyViewController.h; sourceTree = "<group>"; };
		D23DC1541ECC41C100103B0E /* LVCVerifyViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCVerifyViewController.m; sourceTree = "<group>"; };
		D24571561E8393EB00AA85D6 /* UIImageView+ZXExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+ZXExtension.h"; sourceTree = "<group>"; };
		D24571571E8393EB00AA85D6 /* UIImageView+ZXExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+ZXExtension.m"; sourceTree = "<group>"; };
		D245715A1E83A62B00AA85D6 /* BounceView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BounceView.h; sourceTree = "<group>"; };
		D245715B1E83A62B00AA85D6 /* BounceView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BounceView.m; sourceTree = "<group>"; };
		D245715D1E83B09900AA85D6 /* userInfoModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = userInfoModel.h; sourceTree = "<group>"; };
		D245715E1E83B09900AA85D6 /* userInfoModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = userInfoModel.m; sourceTree = "<group>"; };
		D24571611E83C40B00AA85D6 /* PrivateView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PrivateView.h; sourceTree = "<group>"; };
		D24571621E83C40B00AA85D6 /* PrivateView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PrivateView.m; sourceTree = "<group>"; };
		D2552FFE1E7909AC00DF38A5 /* GiftAnimOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GiftAnimOperation.h; sourceTree = "<group>"; };
		D2552FFF1E7909AC00DF38A5 /* GiftAnimOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GiftAnimOperation.m; sourceTree = "<group>"; };
		D25530011E79115100DF38A5 /* AnimQueueManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AnimQueueManager.h; sourceTree = "<group>"; };
		D25530021E79115100DF38A5 /* AnimQueueManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AnimQueueManager.m; sourceTree = "<group>"; };
		D25530041E7911A800DF38A5 /* GiftAnimationAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GiftAnimationAction.h; sourceTree = "<group>"; };
		D25530051E7911A800DF38A5 /* GiftAnimationAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GiftAnimationAction.m; sourceTree = "<group>"; };
		D255300A1E793F8200DF38A5 /* NHFighterView+animDelegagte.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NHFighterView+animDelegagte.h"; sourceTree = "<group>"; };
		D255300B1E793F8200DF38A5 /* NHFighterView+animDelegagte.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NHFighterView+animDelegagte.m"; sourceTree = "<group>"; };
		D2575C441E76857100E3A8FC /* LVCAnimationManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LVCAnimationManager.h; path = ../LVCAnimationManager.h; sourceTree = "<group>"; };
		D2575C451E76857100E3A8FC /* LVCAnimationManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = LVCAnimationManager.m; path = ../LVCAnimationManager.m; sourceTree = "<group>"; };
		D2575C481E7685DE00E3A8FC /* UIView+Bubbling.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Bubbling.m"; sourceTree = "<group>"; };
		D2575C491E7685DE00E3A8FC /* UIView+Bubbling.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Bubbling.h"; sourceTree = "<group>"; };
		D2575C6D1E76A4F300E3A8FC /* NHCarView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NHCarView.h; sourceTree = "<group>"; };
		D2575C6E1E76A4F300E3A8FC /* NHCarViews.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NHCarViews.h; sourceTree = "<group>"; };
		D2575C6F1E76A4F300E3A8FC /* NHCarViews.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NHCarViews.m; sourceTree = "<group>"; };
		D2575C701E76A4F300E3A8FC /* NHCarViews.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NHCarViews.xib; sourceTree = "<group>"; };
		D2575C711E76A4F300E3A8FC /* NHFighterView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NHFighterView.h; sourceTree = "<group>"; };
		D2575C721E76A4F300E3A8FC /* NHFighterView.nib */ = {isa = PBXFileReference; lastKnownFileType = file; path = NHFighterView.nib; sourceTree = "<group>"; };
		D2575C731E76A4F300E3A8FC /* NHGiftAnimtionSDK.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = NHGiftAnimtionSDK.a; sourceTree = "<group>"; };
		D2575C741E76A4F300E3A8FC /* NHHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NHHeader.h; sourceTree = "<group>"; };
		D2575C751E76A4F300E3A8FC /* NHPlaneView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NHPlaneView.h; sourceTree = "<group>"; };
		D2575C761E76A4F300E3A8FC /* NHPlaneViews.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NHPlaneViews.h; sourceTree = "<group>"; };
		D2575C771E76A4F300E3A8FC /* NHPlaneViews.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NHPlaneViews.m; sourceTree = "<group>"; };
		D2575C781E76A4F300E3A8FC /* NHPlaneViews.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NHPlaneViews.xib; sourceTree = "<group>"; };
		D2575C791E76A4F300E3A8FC /* resource.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = resource.bundle; sourceTree = "<group>"; };
		D25BF8761E7B8A82007FB138 /* FilterFunctionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FilterFunctionView.h; sourceTree = "<group>"; };
		D25BF8771E7B8A82007FB138 /* FilterFunctionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FilterFunctionView.m; sourceTree = "<group>"; };
		D25BF8781E7B8A82007FB138 /* SliderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SliderView.h; sourceTree = "<group>"; };
		D25BF8791E7B8A82007FB138 /* SliderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SliderView.m; sourceTree = "<group>"; };
		D25BF87C1E7B8C78007FB138 /* KSYGPUResource.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = KSYGPUResource.bundle; sourceTree = "<group>"; };
		D25BF88F1E7F7F8F007FB138 /* UGCLoading.jpeg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = UGCLoading.jpeg; sourceTree = "<group>"; };
		D25BF89E1E80C4BD007FB138 /* UIImage+LVCVagueImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+LVCVagueImage.h"; sourceTree = "<group>"; };
		D25BF89F1E80C4BD007FB138 /* UIImage+LVCVagueImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+LVCVagueImage.m"; sourceTree = "<group>"; };
		D25BF8A21E80C4FC007FB138 /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; };
		D25BF8A41E80EC76007FB138 /* 头像.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = "头像.jpg"; sourceTree = "<group>"; };
		D2888D921E6EB8B4003A77C8 /* LVCTabBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCTabBar.h; sourceTree = "<group>"; };
		D2888D931E6EB8B4003A77C8 /* LVCTabBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCTabBar.m; sourceTree = "<group>"; };
		D2888D9A1E6EBF1B003A77C8 /* LVCLiveViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCLiveViewController.h; sourceTree = "<group>"; };
		D2888D9B1E6EBF1B003A77C8 /* LVCLiveViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCLiveViewController.m; sourceTree = "<group>"; };
		D29D88461E88C53300543A03 /* LVCUGCLivePrepareView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCUGCLivePrepareView.h; sourceTree = "<group>"; };
		D29D88471E88C53300543A03 /* LVCUGCLivePrepareView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCUGCLivePrepareView.m; sourceTree = "<group>"; };
		D29E81EB1E88DC5B008C9906 /* PriChatCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PriChatCell.h; sourceTree = "<group>"; };
		D29E81EC1E88DC5B008C9906 /* PriChatCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PriChatCell.m; sourceTree = "<group>"; };
		D2A803061E80BD6F009D6F1C /* TopToolView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TopToolView.h; sourceTree = "<group>"; };
		D2A803071E80BD6F009D6F1C /* TopToolView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TopToolView.m; sourceTree = "<group>"; };
		D2B2ED7E1E88FC5200F7538A /* LVCUGCLiveEndView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCUGCLiveEndView.h; sourceTree = "<group>"; };
		D2B2ED7F1E88FC5200F7538A /* LVCUGCLiveEndView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCUGCLiveEndView.m; sourceTree = "<group>"; };
		D2B7B24F1E8247D400ED084E /* ChatBarrageManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatBarrageManager.h; sourceTree = "<group>"; };
		D2B7B2501E8247D400ED084E /* ChatBarrageManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatBarrageManager.m; sourceTree = "<group>"; };
		D2B7B2521E824B2D00ED084E /* ChatBarrageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatBarrageView.h; sourceTree = "<group>"; };
		D2B7B2531E824B2D00ED084E /* ChatBarrageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatBarrageView.m; sourceTree = "<group>"; };
		D2B7B2551E8261EF00ED084E /* ChatBarrOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatBarrOperation.h; sourceTree = "<group>"; };
		D2B7B2561E8261EF00ED084E /* ChatBarrOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatBarrOperation.m; sourceTree = "<group>"; };
		D2C6A8BD1F04998D00543EFA /* LVCVodListModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCVodListModel.h; sourceTree = "<group>"; };
		D2C6A8BE1F04998D00543EFA /* LVCVodListModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCVodListModel.m; sourceTree = "<group>"; };
		D2CBC1391ECC157A00E00279 /* LVCVerifyLiveAuthService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LVCVerifyLiveAuthService.h; path = ../LVCVerifyLiveAuthService.h; sourceTree = "<group>"; };
		D2CBC13A1ECC157A00E00279 /* LVCVerifyLiveAuthService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = LVCVerifyLiveAuthService.m; path = ../LVCVerifyLiveAuthService.m; sourceTree = "<group>"; };
		D2D7D18C1E8A581000217771 /* timg.jpeg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = timg.jpeg; sourceTree = "<group>"; };
		D2EBC8651F02108000F198FB /* LiveListService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LiveListService.h; sourceTree = "<group>"; };
		D2EBC8661F02108000F198FB /* LiveListService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveListService.m; sourceTree = "<group>"; };
		D2EBC8671F02108000F198FB /* LVCLiveActivityInfoService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCLiveActivityInfoService.h; sourceTree = "<group>"; };
		D2EBC8681F02108000F198FB /* LVCLiveActivityInfoService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCLiveActivityInfoService.m; sourceTree = "<group>"; };
		D2EBC86B1F02108000F198FB /* LVCUGCLiveListController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCUGCLiveListController.h; sourceTree = "<group>"; };
		D2EBC86C1F02108000F198FB /* LVCUGCLiveListController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCUGCLiveListController.m; sourceTree = "<group>"; };
		D2EBC86F1F02108000F198FB /* LVCUGCLivePlayerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCUGCLivePlayerController.h; sourceTree = "<group>"; };
		D2EBC8701F02108000F198FB /* LVCUGCLivePlayerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCUGCLivePlayerController.m; sourceTree = "<group>"; };
		D2EBC8771F02108F00F198FB /* LVCUGCLiveListModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCUGCLiveListModel.h; sourceTree = "<group>"; };
		D2EBC8781F02108F00F198FB /* LVCUGCLiveListModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCUGCLiveListModel.m; sourceTree = "<group>"; };
		D2EBC8791F02108F00F198FB /* LVCUGCLivePlayerModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCUGCLivePlayerModel.h; sourceTree = "<group>"; };
		D2EBC87A1F02108F00F198FB /* LVCUGCLivePlayerModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCUGCLivePlayerModel.m; sourceTree = "<group>"; };
		D2EBC87D1F02109C00F198FB /* LVCUGCBackgroundView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCUGCBackgroundView.h; sourceTree = "<group>"; };
		D2EBC87E1F02109C00F198FB /* LVCUGCBackgroundView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCUGCBackgroundView.m; sourceTree = "<group>"; };
		D2EBC87F1F02109C00F198FB /* LVCUGCLivePlayerCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCUGCLivePlayerCell.h; sourceTree = "<group>"; };
		D2EBC8801F02109C00F198FB /* LVCUGCLivePlayerCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCUGCLivePlayerCell.m; sourceTree = "<group>"; };
		D2EBC8811F02109C00F198FB /* LVCUGCPlayerLoadingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCUGCPlayerLoadingView.h; sourceTree = "<group>"; };
		D2EBC8821F02109C00F198FB /* LVCUGCPlayerLoadingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCUGCPlayerLoadingView.m; sourceTree = "<group>"; };
		D2EBC8861F0225D900F198FB /* LVCVodPlayerListController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCVodPlayerListController.h; sourceTree = "<group>"; };
		D2EBC8871F0225D900F198FB /* LVCVodPlayerListController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCVodPlayerListController.m; sourceTree = "<group>"; };
		D2EBC8891F02361600F198FB /* LVCUGCLiveListView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCUGCLiveListView.h; sourceTree = "<group>"; };
		D2EBC88A1F02361600F198FB /* LVCUGCLiveListView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCUGCLiveListView.m; sourceTree = "<group>"; };
		D2EBC88C1F023AA400F198FB /* LVCVodPlayerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCVodPlayerController.h; sourceTree = "<group>"; };
		D2EBC88D1F023AA400F198FB /* LVCVodPlayerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCVodPlayerController.m; sourceTree = "<group>"; };
		D2EBC88F1F0241AD00F198FB /* CNLiveMsgTools.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = CNLiveMsgTools.framework; sourceTree = "<group>"; };
		D2EBC8971F025D4700F198FB /* LVCVodPlayerFullController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCVodPlayerFullController.h; sourceTree = "<group>"; };
		D2EBC8981F025D4700F198FB /* LVCVodPlayerFullController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCVodPlayerFullController.m; sourceTree = "<group>"; };
		D2EBC89A1F03421C00F198FB /* CNLiveChatManager.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CNLiveChatManager.framework; path = /Users/cnlive/Desktop/Group/LiveVideoCloud/LiveVideoCloud/Classes/CNLiveSDK/CNLiveChatManager.framework; sourceTree = "<absolute>"; };
		D2EBC89E1F034C5500F198FB /* LVCCommentView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCCommentView.h; sourceTree = "<group>"; };
		D2EBC89F1F034C5500F198FB /* LVCCommentView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCCommentView.m; sourceTree = "<group>"; };
		D2EBC8A11F034F3C00F198FB /* CNLivePlayerSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = CNLivePlayerSDK.framework; sourceTree = "<group>"; };
		D2EBC8A51F03926E00F198FB /* CNLiveChatManager.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = CNLiveChatManager.framework; sourceTree = "<group>"; };
		D2EBC8A91F039E8100F198FB /* LVCCommentTitleCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCCommentTitleCell.h; sourceTree = "<group>"; };
		D2EBC8AA1F039E8100F198FB /* LVCCommentTitleCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCCommentTitleCell.m; sourceTree = "<group>"; };
		D2EBC8AC1F03A99800F198FB /* LVCCommentCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LVCCommentCell.h; sourceTree = "<group>"; };
		D2EBC8AD1F03A99800F198FB /* LVCCommentCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LVCCommentCell.m; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		D2029B7E1E6EAAA50027CD92 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				D2393D281F02572100D3EE17 /* CoreTelephony.framework in Frameworks */,
				D2393D261F0256FE00D3EE17 /* libstdc++.tbd in Frameworks */,
				D2EBC8A61F03926E00F198FB /* CNLiveChatManager.framework in Frameworks */,
				D2EBC8A71F03927200F198FB /* CNLiveChatManager.framework in Frameworks */,
				D2393D2C1F02682000D3EE17 /* CNLiveUserSystemSDK.framework in Frameworks */,
				D2393D241F0256E900D3EE17 /* libz.tbd in Frameworks */,
				D2393D221F0256DC00D3EE17 /* libc++.tbd in Frameworks */,
				D2393D201F0256AA00D3EE17 /* libsqlite3.tbd in Frameworks */,
				D2EBC89B1F03421C00F198FB /* CNLiveChatManager.framework in Frameworks */,
				D25BF8A31E80C4FC007FB138 /* Accelerate.framework in Frameworks */,
				D2EBC8A31F034F4000F198FB /* CNLivePlayerSDK.framework in Frameworks */,
				D2393D0E1F0250A100D3EE17 /* libWeChatSDK.a in Frameworks */,
				D2393D1D1F0250A700D3EE17 /* libWeiboSDK.a in Frameworks */,
				D2575C7D1E76A4F300E3A8FC /* NHGiftAnimtionSDK.a in Frameworks */,
				D2393D071F02505400D3EE17 /* TencentOpenAPI.framework in Frameworks */,
				D2EBC8A21F034F3C00F198FB /* CNLivePlayerSDK.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		D2029B971E6EAAA50027CD92 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		D2029BA21E6EAAA50027CD92 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		4B45CE421EB86A590079AFB7 /* mySections */ = {
			isa = PBXGroup;
			children = (
				4B45CE431EB86A590079AFB7 /* Controllers */,
				4B45CE551EB86A590079AFB7 /* Login */,
				4B45CE601EB86A590079AFB7 /* Model */,
				4B45CE651EB86A590079AFB7 /* Views */,
			);
			name = mySections;
			path = Mine;
			sourceTree = "<group>";
		};
		4B45CE431EB86A590079AFB7 /* Controllers */ = {
			isa = PBXGroup;
			children = (
				4B45CE481EB86A590079AFB7 /* LVCMineViewController.h */,
				4B45CE491EB86A590079AFB7 /* LVCMineViewController.m */,
				D2393CFF1F020D5700D3EE17 /* FeedbackViewController.h */,
				D2393D001F020D5700D3EE17 /* FeedbackViewController.m */,
				D209AD691EC580F100D82E3B /* LVCWebViewController.h */,
				D209AD6A1EC580F100D82E3B /* LVCWebViewController.m */,
				4B45CE441EB86A590079AFB7 /* BeingAnchorController.h */,
				4B45CE451EB86A590079AFB7 /* BeingAnchorController.m */,
				4B45CE461EB86A590079AFB7 /* IDViewController.h */,
				4B45CE471EB86A590079AFB7 /* IDViewController.m */,
				4B45CE4A1EB86A590079AFB7 /* MineAboutUsController.h */,
				4B45CE4B1EB86A590079AFB7 /* MineAboutUsController.m */,
				4B45CE4C1EB86A590079AFB7 /* MineLiveController.h */,
				4B45CE4D1EB86A590079AFB7 /* MineLiveController.m */,
				4B45CE4E1EB86A590079AFB7 /* MinePersonalDataController.h */,
				4B45CE4F1EB86A590079AFB7 /* MinePersonalDataController.m */,
				4B45CE501EB86A590079AFB7 /* MineSettingViewController.h */,
				4B45CE511EB86A590079AFB7 /* MineSettingViewController.m */,
				4B45CE521EB86A590079AFB7 /* ModifyInfomationController.h */,
				4B45CE531EB86A590079AFB7 /* ModifyInfomationController.m */,
				D209AD6C1EC583B700D82E3B /* MineMessageController.h */,
				D209AD6D1EC583B700D82E3B /* MineMessageController.m */,
				D209AD6F1EC583D100D82E3B /* MineAccountController.h */,
				D209AD701EC583D100D82E3B /* MineAccountController.m */,
			);
			path = Controllers;
			sourceTree = "<group>";
		};
		4B45CE551EB86A590079AFB7 /* Login */ = {
			isa = PBXGroup;
			children = (
				D209AD721EC585A600D82E3B /* Model */,
				4B45CE561EB86A590079AFB7 /* Controller */,
				4B45CE5B1EB86A590079AFB7 /* View */,
			);
			path = Login;
			sourceTree = "<group>";
		};
		4B45CE561EB86A590079AFB7 /* Controller */ = {
			isa = PBXGroup;
			children = (
				4B45CE571EB86A590079AFB7 /* LoginViewController.h */,
				4B45CE581EB86A590079AFB7 /* LoginViewController.m */,
				4B45CE591EB86A590079AFB7 /* RegisterCommonController.h */,
				4B45CE5A1EB86A590079AFB7 /* RegisterCommonController.m */,
			);
			path = Controller;
			sourceTree = "<group>";
		};
		4B45CE5B1EB86A590079AFB7 /* View */ = {
			isa = PBXGroup;
			children = (
				4B45CE5C1EB86A590079AFB7 /* idAndPwdView.h */,
				4B45CE5D1EB86A590079AFB7 /* idAndPwdView.m */,
				4B45CE5E1EB86A590079AFB7 /* RegistBasicInformationView.h */,
				4B45CE5F1EB86A590079AFB7 /* RegistBasicInformationView.m */,
			);
			path = View;
			sourceTree = "<group>";
		};
		4B45CE601EB86A590079AFB7 /* Model */ = {
			isa = PBXGroup;
			children = (
				4BD856101EBAD2640082061D /* ProgramModel.h */,
				4BD856111EBAD2640082061D /* ProgramModel.m */,
				4B45CE611EB86A590079AFB7 /* LVCMineCommonModel.h */,
				4B45CE621EB86A590079AFB7 /* LVCMineCommonModel.m */,
				4B45CE631EB86A590079AFB7 /* LVCMineModel.h */,
				4B45CE641EB86A590079AFB7 /* LVCMineModel.m */,
			);
			path = Model;
			sourceTree = "<group>";
		};
		4B45CE651EB86A590079AFB7 /* Views */ = {
			isa = PBXGroup;
			children = (
				4B45CE661EB86A590079AFB7 /* ModifyCommonView.h */,
				4B45CE671EB86A590079AFB7 /* ModifyCommonView.m */,
				4B45CE681EB86A590079AFB7 /* LVCClearCachesCell.h */,
				4B45CE691EB86A590079AFB7 /* LVCClearCachesCell.m */,
				4B45CE6A1EB86A590079AFB7 /* LVCLoginShowView.h */,
				4B45CE6B1EB86A590079AFB7 /* LVCLoginShowView.m */,
				4B45CE6C1EB86A590079AFB7 /* LVCMineCommonCell.h */,
				4B45CE6D1EB86A590079AFB7 /* LVCMineCommonCell.m */,
				4B45CE6E1EB86A590079AFB7 /* LVCMineShowCell.h */,
				4B45CE6F1EB86A590079AFB7 /* LVCMineShowCell.m */,
				4B45CE721EB86A590079AFB7 /* LVCPersonCommonCell.h */,
				4B45CE731EB86A590079AFB7 /* LVCPersonCommonCell.m */,
				4B45CE741EB86A590079AFB7 /* LVCTextField.h */,
				4B45CE751EB86A590079AFB7 /* LVCTextField.m */,
				4B42A6C51EC0171800DA09D7 /* PlayRecordCell.h */,
				4B42A6C61EC0171800DA09D7 /* PlayRecordCell.m */,
			);
			path = Views;
			sourceTree = "<group>";
		};
		4B45CE8C1EB86A760079AFB7 /* UIKit */ = {
			isa = PBXGroup;
			children = (
				4B45CE8D1EB86A760079AFB7 /* UIButton+createButton.h */,
				4B45CE8E1EB86A760079AFB7 /* UIButton+createButton.m */,
				4B45CE8F1EB86A760079AFB7 /* UILabel+createLabel.h */,
				4B45CE901EB86A760079AFB7 /* UILabel+createLabel.m */,
				4B45CE911EB86A760079AFB7 /* UITextField+createTextField.h */,
				4B45CE921EB86A760079AFB7 /* UITextField+createTextField.m */,
				4B45CE931EB86A760079AFB7 /* ZXLabel.h */,
				4B45CE941EB86A760079AFB7 /* ZXLabel.m */,
				4B45CE951EB86A760079AFB7 /* ZXUIKit.h */,
				4B45CE961EB86A760079AFB7 /* ZXUIKit.m */,
			);
			path = UIKit;
			sourceTree = "<group>";
		};
		4B45CE9C1EB86B9E0079AFB7 /* UserTools */ = {
			isa = PBXGroup;
			children = (
				4B45CE9D1EB86B9E0079AFB7 /* CNLiveThirdLoginManager.h */,
				4B45CE9E1EB86B9E0079AFB7 /* CNLiveThirdLoginManager.m */,
				4B45CE9F1EB86B9E0079AFB7 /* NSNumber+ScaleHeight.h */,
				4B45CEA01EB86B9E0079AFB7 /* NSNumber+ScaleHeight.m */,
				4B45CEA11EB86B9E0079AFB7 /* NSObject+UserModel.h */,
				4B45CEA21EB86B9F0079AFB7 /* NSObject+UserModel.m */,
				4B45CEA31EB86B9F0079AFB7 /* UserTools.h */,
				4B45CEA41EB86B9F0079AFB7 /* UserTools.m */,
			);
			path = UserTools;
			sourceTree = "<group>";
		};
		4BD855D41EBACD530082061D /* AFNetworking */ = {
			isa = PBXGroup;
			children = (
				4BD855D51EBACD530082061D /* AFHTTPRequestOperation.h */,
				4BD855D61EBACD530082061D /* AFHTTPRequestOperation.m */,
				4BD855D71EBACD530082061D /* AFHTTPRequestOperationManager.h */,
				4BD855D81EBACD530082061D /* AFHTTPRequestOperationManager.m */,
				4BD855D91EBACD530082061D /* AFHTTPSessionManager.h */,
				4BD855DA1EBACD530082061D /* AFHTTPSessionManager.m */,
				4BD855DB1EBACD530082061D /* AFNetworking.h */,
				4BD855DC1EBACD530082061D /* AFNetworkReachabilityManager.h */,
				4BD855DD1EBACD530082061D /* AFNetworkReachabilityManager.m */,
				4BD855DE1EBACD530082061D /* AFSecurityPolicy.h */,
				4BD855DF1EBACD530082061D /* AFSecurityPolicy.m */,
				4BD855E01EBACD530082061D /* AFURLConnectionOperation.h */,
				4BD855E11EBACD530082061D /* AFURLConnectionOperation.m */,
				4BD855E21EBACD530082061D /* AFURLRequestSerialization.h */,
				4BD855E31EBACD530082061D /* AFURLRequestSerialization.m */,
				4BD855E41EBACD530082061D /* AFURLResponseSerialization.h */,
				4BD855E51EBACD530082061D /* AFURLResponseSerialization.m */,
				4BD855E61EBACD530082061D /* AFURLSessionManager.h */,
				4BD855E71EBACD530082061D /* AFURLSessionManager.m */,
				4BD855E81EBACD530082061D /* UIKit+AFNetworking */,
			);
			path = AFNetworking;
			sourceTree = "<group>";
		};
		4BD855E81EBACD530082061D /* UIKit+AFNetworking */ = {
			isa = PBXGroup;
			children = (
				4BD855E91EBACD530082061D /* AFNetworkActivityIndicatorManager.h */,
				4BD855EA1EBACD530082061D /* AFNetworkActivityIndicatorManager.m */,
				4BD855EB1EBACD530082061D /* UIActivityIndicatorView+AFNetworking.h */,
				4BD855EC1EBACD530082061D /* UIActivityIndicatorView+AFNetworking.m */,
				4BD855ED1EBACD530082061D /* UIAlertView+AFNetworking.h */,
				4BD855EE1EBACD530082061D /* UIAlertView+AFNetworking.m */,
				4BD855EF1EBACD530082061D /* UIButton+AFNetworking.h */,
				4BD855F01EBACD530082061D /* UIButton+AFNetworking.m */,
				4BD855F11EBACD530082061D /* UIImageView+AFNetworking.h */,
				4BD855F21EBACD530082061D /* UIImageView+AFNetworking.m */,
				4BD855F31EBACD530082061D /* UIKit+AFNetworking.h */,
				4BD855F41EBACD530082061D /* UIProgressView+AFNetworking.h */,
				4BD855F51EBACD530082061D /* UIProgressView+AFNetworking.m */,
				4BD855F61EBACD530082061D /* UIRefreshControl+AFNetworking.h */,
				4BD855F71EBACD530082061D /* UIRefreshControl+AFNetworking.m */,
				4BD855F81EBACD530082061D /* UIWebView+AFNetworking.h */,
				4BD855F91EBACD530082061D /* UIWebView+AFNetworking.m */,
			);
			path = "UIKit+AFNetworking";
			sourceTree = "<group>";
		};
		4BD8560D1EBACEF80082061D /* webView */ = {
			isa = PBXGroup;
			children = (
				4BD8560B1EBACEF80082061D /* CNLiveWebView.h */,
				4BD8560C1EBACEF80082061D /* CNLiveWebView.m */,
				4BD8560E1EBACEF80082061D /* CNLiveMacro.h */,
			);
			path = webView;
			sourceTree = "<group>";
		};
		810B64E41E779B1F00133E15 /* Masonry */ = {
			isa = PBXGroup;
			children = (
				810B64E51E779B1F00133E15 /* MASCompositeConstraint.h */,
				810B64E61E779B1F00133E15 /* MASCompositeConstraint.m */,
				810B64E71E779B1F00133E15 /* MASConstraint+Private.h */,
				810B64E81E779B1F00133E15 /* MASConstraint.h */,
				810B64E91E779B1F00133E15 /* MASConstraint.m */,
				810B64EA1E779B1F00133E15 /* MASConstraintMaker.h */,
				810B64EB1E779B1F00133E15 /* MASConstraintMaker.m */,
				810B64EC1E779B1F00133E15 /* MASLayoutConstraint.h */,
				810B64ED1E779B1F00133E15 /* MASLayoutConstraint.m */,
				810B64EE1E779B1F00133E15 /* Masonry.h */,
				810B64EF1E779B1F00133E15 /* MASUtilities.h */,
				810B64F01E779B1F00133E15 /* MASViewAttribute.h */,
				810B64F11E779B1F00133E15 /* MASViewAttribute.m */,
				810B64F21E779B1F00133E15 /* MASViewConstraint.h */,
				810B64F31E779B1F00133E15 /* MASViewConstraint.m */,
				810B64F41E779B1F00133E15 /* NSArray+MASAdditions.h */,
				810B64F51E779B1F00133E15 /* NSArray+MASAdditions.m */,
				810B64F61E779B1F00133E15 /* NSArray+MASShorthandAdditions.h */,
				810B64F71E779B1F00133E15 /* NSLayoutConstraint+MASDebugAdditions.h */,
				810B64F81E779B1F00133E15 /* NSLayoutConstraint+MASDebugAdditions.m */,
				810B64F91E779B1F00133E15 /* View+MASAdditions.h */,
				810B64FA1E779B1F00133E15 /* View+MASAdditions.m */,
				810B64FB1E779B1F00133E15 /* View+MASShorthandAdditions.h */,
				810B64FC1E779B1F00133E15 /* ViewController+MASAdditions.h */,
				810B64FD1E779B1F00133E15 /* ViewController+MASAdditions.m */,
			);
			path = Masonry;
			sourceTree = "<group>";
		};
		812E504E1E7699B9004F5FCD /* CNLiveSDK */ = {
			isa = PBXGroup;
			children = (
				D2EBC8A51F03926E00F198FB /* CNLiveChatManager.framework */,
				D2EBC8A11F034F3C00F198FB /* CNLivePlayerSDK.framework */,
				D2EBC88F1F0241AD00F198FB /* CNLiveMsgTools.framework */,
				D2393D2B1F02682000D3EE17 /* CNLiveUserSystemSDK.framework */,
				D25BF87C1E7B8C78007FB138 /* KSYGPUResource.bundle */,
			);
			path = CNLiveSDK;
			sourceTree = "<group>";
		};
		8178D41A1F02030500AA78A4 /* PGCSections */ = {
			isa = PBXGroup;
			children = (
				8178D41B1F02036200AA78A4 /* Controller */,
				8178D41C1F02036200AA78A4 /* Model */,
				8178D41D1F02036200AA78A4 /* View */,
			);
			path = PGCSections;
			sourceTree = "<group>";
		};
		8178D41B1F02036200AA78A4 /* Controller */ = {
			isa = PBXGroup;
			children = (
				8178D4551F0204D600AA78A4 /* LVCTelevisioController.h */,
				8178D4561F0204D600AA78A4 /* LVCTelevisioController.m */,
				8178D4201F02043500AA78A4 /* LVCLivePlayerController.h */,
				8178D4211F02043500AA78A4 /* LVCLivePlayerController.m */,
				8178D41E1F02043500AA78A4 /* LVCFullScreenPlayerController.h */,
				8178D41F1F02043500AA78A4 /* LVCFullScreenPlayerController.m */,
			);
			path = Controller;
			sourceTree = "<group>";
		};
		8178D41C1F02036200AA78A4 /* Model */ = {
			isa = PBXGroup;
			children = (
				8178D42B1F02044300AA78A4 /* LVCChatRoomModel.h */,
				8178D42C1F02044300AA78A4 /* LVCChatRoomModel.m */,
				8178D4691F021ED800AA78A4 /* LVCTelevisionModel.h */,
				8178D46A1F021ED800AA78A4 /* LVCTelevisionModel.m */,
			);
			path = Model;
			sourceTree = "<group>";
		};
		8178D41D1F02036200AA78A4 /* View */ = {
			isa = PBXGroup;
			children = (
				8178D4581F02060B00AA78A4 /* ChatView */,
				8178D4331F02045500AA78A4 /* Barrage */,
				8178D4421F02045500AA78A4 /* LVCPlayer.h */,
				8178D4431F02045500AA78A4 /* LVCPlayer.m */,
				8178D46C1F0225E500AA78A4 /* LVCTelevisionCell.h */,
				8178D46D1F0225E500AA78A4 /* LVCTelevisionCell.m */,
				8178D46F1F0239AD00AA78A4 /* LVCPlayerLoadingView.h */,
				8178D4701F0239AD00AA78A4 /* LVCPlayerLoadingView.m */,
				8178D4461F02045500AA78A4 /* LVCRequestFailedView.h */,
				8178D4471F02045500AA78A4 /* LVCRequestFailedView.m */,
			);
			path = View;
			sourceTree = "<group>";
		};
		8178D4331F02045500AA78A4 /* Barrage */ = {
			isa = PBXGroup;
			children = (
				8178D4341F02045500AA78A4 /* CNBarrageManager.h */,
				8178D4351F02045500AA78A4 /* CNBarrageManager.m */,
				8178D4361F02045500AA78A4 /* CNBarrageView.h */,
				8178D4371F02045500AA78A4 /* CNBarrageView.m */,
			);
			path = Barrage;
			sourceTree = "<group>";
		};
		8178D4581F02060B00AA78A4 /* ChatView */ = {
			isa = PBXGroup;
			children = (
				8178D4591F02060B00AA78A4 /* LVCChatView.h */,
				8178D45A1F02060B00AA78A4 /* LVCChatView.m */,
				8178D45B1F02060B00AA78A4 /* LVCChatViewTableViewCell.h */,
				8178D45C1F02060B00AA78A4 /* LVCChatViewTableViewCell.m */,
				8178D45D1F02060B00AA78A4 /* LVCInputView.h */,
				8178D45E1F02060B00AA78A4 /* LVCInputView.m */,
				8178D45F1F02060B00AA78A4 /* LVCMessage.h */,
				8178D4601F02060B00AA78A4 /* LVCMessage.m */,
			);
			path = ChatView;
			sourceTree = "<group>";
		};
		81A482FC1E88B0130097A80A /* Model */ = {
			isa = PBXGroup;
			children = (
				D2C6A8BD1F04998D00543EFA /* LVCVodListModel.h */,
				D2C6A8BE1F04998D00543EFA /* LVCVodListModel.m */,
			);
			path = Model;
			sourceTree = "<group>";
		};
		81FB5B391E7A6FFC00F98E1D /* SevenSwitch */ = {
			isa = PBXGroup;
			children = (
				81FB5B3A1E7A6FFC00F98E1D /* SevenSwitch.h */,
				81FB5B3B1E7A6FFC00F98E1D /* SevenSwitch.m */,
			);
			path = SevenSwitch;
			sourceTree = "<group>";
		};
		D2029B781E6EAAA50027CD92 = {
			isa = PBXGroup;
			children = (
				D2029B831E6EAAA50027CD92 /* LiveVideoCloud */,
				D2029B9D1E6EAAA50027CD92 /* LiveVideoCloudTests */,
				D2029BA81E6EAAA50027CD92 /* LiveVideoCloudUITests */,
				D2029B821E6EAAA50027CD92 /* Products */,
				D25BF8A11E80C4FC007FB138 /* Frameworks */,
			);
			sourceTree = "<group>";
		};
		D2029B821E6EAAA50027CD92 /* Products */ = {
			isa = PBXGroup;
			children = (
				D2029B811E6EAAA50027CD92 /* LiveVideoCloud.app */,
				D2029B9A1E6EAAA50027CD92 /* LiveVideoCloudTests.xctest */,
				D2029BA51E6EAAA50027CD92 /* LiveVideoCloudUITests.xctest */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		D2029B831E6EAAA50027CD92 /* LiveVideoCloud */ = {
			isa = PBXGroup;
			children = (
				D2029D0E1E6EAF510027CD92 /* AppDelegate */,
				D2029BBB1E6EADD70027CD92 /* AppCustoms */,
				D2029CDC1E6EAE2E0027CD92 /* UtilKits */,
				D2029BD01E6EADE10027CD92 /* Classes */,
				D2029CD11E6EADE70027CD92 /* HttpService */,
				D25BF88A1E7F7F77007FB138 /* Resource */,
				D2029B901E6EAAA50027CD92 /* animation.xcassets */,
				D2029CD61E6EADFB0027CD92 /* PrefixHeader.pch */,
				D2029B841E6EAAA50027CD92 /* Supporting Files */,
			);
			path = LiveVideoCloud;
			sourceTree = "<group>";
		};
		D2029B841E6EAAA50027CD92 /* Supporting Files */ = {
			isa = PBXGroup;
			children = (
				D2029B921E6EAAA50027CD92 /* LaunchScreen.storyboard */,
				D2029B851E6EAAA50027CD92 /* main.m */,
				D2029B951E6EAAA50027CD92 /* Info.plist */,
			);
			name = "Supporting Files";
			sourceTree = "<group>";
		};
		D2029B9D1E6EAAA50027CD92 /* LiveVideoCloudTests */ = {
			isa = PBXGroup;
			children = (
				D2029B9E1E6EAAA50027CD92 /* LiveVideoCloudTests.m */,
				D2029BA01E6EAAA50027CD92 /* Info.plist */,
			);
			path = LiveVideoCloudTests;
			sourceTree = "<group>";
		};
		D2029BA81E6EAAA50027CD92 /* LiveVideoCloudUITests */ = {
			isa = PBXGroup;
			children = (
				D2029BA91E6EAAA50027CD92 /* LiveVideoCloudUITests.m */,
				D2029BAB1E6EAAA50027CD92 /* Info.plist */,
			);
			path = LiveVideoCloudUITests;
			sourceTree = "<group>";
		};
		D2029BBB1E6EADD70027CD92 /* AppCustoms */ = {
			isa = PBXGroup;
			children = (
				D2029BBC1E6EADD70027CD92 /* Base */,
				D2029BC51E6EADD70027CD92 /* Main */,
			);
			path = AppCustoms;
			sourceTree = "<group>";
		};
		D2029BBC1E6EADD70027CD92 /* Base */ = {
			isa = PBXGroup;
			children = (
				D2029BBD1E6EADD70027CD92 /* BaseModel.h */,
				D2029BBE1E6EADD70027CD92 /* BaseModel.m */,
				D2029BBF1E6EADD70027CD92 /* BaseTableViewCell.h */,
				D2029BC01E6EADD70027CD92 /* BaseTableViewCell.m */,
				D2029BC11E6EADD70027CD92 /* BaseView.h */,
				D2029BC21E6EADD70027CD92 /* BaseView.m */,
				D2029BC31E6EADD70027CD92 /* BaseViewController.h */,
				D2029BC41E6EADD70027CD92 /* BaseViewController.m */,
			);
			path = Base;
			sourceTree = "<group>";
		};
		D2029BC51E6EADD70027CD92 /* Main */ = {
			isa = PBXGroup;
			children = (
				D2029BC61E6EADD70027CD92 /* ZXNavigationController.h */,
				D2029BC71E6EADD70027CD92 /* ZXNavigationController.m */,
				D2029BC81E6EADD70027CD92 /* ZXTabBarController.h */,
				D2029BC91E6EADD70027CD92 /* ZXTabBarController.m */,
				D2888D911E6EB897003A77C8 /* View */,
			);
			path = Main;
			sourceTree = "<group>";
		};
		D2029BD01E6EADE10027CD92 /* Classes */ = {
			isa = PBXGroup;
			children = (
				D2029C741E6EADE10027CD92 /* Sections */,
				D2029BD11E6EADE10027CD92 /* Helpers */,
				812E504E1E7699B9004F5FCD /* CNLiveSDK */,
				D2029BD41E6EADE10027CD92 /* SDK */,
			);
			path = Classes;
			sourceTree = "<group>";
		};
		D2029BD11E6EADE10027CD92 /* Helpers */ = {
			isa = PBXGroup;
			children = (
				D2029BD21E6EADE10027CD92 /* Tools.h */,
				D2029BD31E6EADE10027CD92 /* Tools.m */,
			);
			path = Helpers;
			sourceTree = "<group>";
		};
		D2029BD41E6EADE10027CD92 /* SDK */ = {
			isa = PBXGroup;
			children = (
				D2393D101F0250A700D3EE17 /* SinaSDK */,
				D2393D091F0250A100D3EE17 /* WeChatSDK */,
				D2393D041F02505400D3EE17 /* QQSDK */,
				4BD855D41EBACD530082061D /* AFNetworking */,
				81FB5B391E7A6FFC00F98E1D /* SevenSwitch */,
				810B64E41E779B1F00133E15 /* Masonry */,
				D2029BF81E6EADE10027CD92 /* MBProgressHUD */,
				D2029BFB1E6EADE10027CD92 /* MJExtension */,
				D2029C121E6EADE10027CD92 /* MJRefresh */,
				D2029C3F1E6EADE10027CD92 /* SDVersion */,
				D2029C441E6EADE10027CD92 /* SDWebImage */,
				D2029C661E6EADE10027CD92 /* SSKeychain */,
				D2029C691E6EADE10027CD92 /* SVProgressHUD */,
			);
			path = SDK;
			sourceTree = "<group>";
		};
		D2029BF81E6EADE10027CD92 /* MBProgressHUD */ = {
			isa = PBXGroup;
			children = (
				D2029BF91E6EADE10027CD92 /* MBProgressHUD.h */,
				D2029BFA1E6EADE10027CD92 /* MBProgressHUD.m */,
			);
			path = MBProgressHUD;
			sourceTree = "<group>";
		};
		D2029BFB1E6EADE10027CD92 /* MJExtension */ = {
			isa = PBXGroup;
			children = (
				D2029BFC1E6EADE10027CD92 /* Info.plist */,
				D2029BFD1E6EADE10027CD92 /* MJExtension.h */,
				D2029BFE1E6EADE10027CD92 /* MJExtensionConst.h */,
				D2029BFF1E6EADE10027CD92 /* MJExtensionConst.m */,
				D2029C001E6EADE10027CD92 /* MJFoundation.h */,
				D2029C011E6EADE10027CD92 /* MJFoundation.m */,
				D2029C021E6EADE10027CD92 /* MJProperty.h */,
				D2029C031E6EADE10027CD92 /* MJProperty.m */,
				D2029C041E6EADE10027CD92 /* MJPropertyKey.h */,
				D2029C051E6EADE10027CD92 /* MJPropertyKey.m */,
				D2029C061E6EADE10027CD92 /* MJPropertyType.h */,
				D2029C071E6EADE10027CD92 /* MJPropertyType.m */,
				D2029C081E6EADE10027CD92 /* NSObject+MJClass.h */,
				D2029C091E6EADE10027CD92 /* NSObject+MJClass.m */,
				D2029C0A1E6EADE10027CD92 /* NSObject+MJCoding.h */,
				D2029C0B1E6EADE10027CD92 /* NSObject+MJCoding.m */,
				D2029C0C1E6EADE10027CD92 /* NSObject+MJKeyValue.h */,
				D2029C0D1E6EADE10027CD92 /* NSObject+MJKeyValue.m */,
				D2029C0E1E6EADE10027CD92 /* NSObject+MJProperty.h */,
				D2029C0F1E6EADE10027CD92 /* NSObject+MJProperty.m */,
				D2029C101E6EADE10027CD92 /* NSString+MJExtension.h */,
				D2029C111E6EADE10027CD92 /* NSString+MJExtension.m */,
			);
			path = MJExtension;
			sourceTree = "<group>";
		};
		D2029C121E6EADE10027CD92 /* MJRefresh */ = {
			isa = PBXGroup;
			children = (
				D2029C131E6EADE10027CD92 /* Base */,
				D2029C1E1E6EADE10027CD92 /* Custom */,
				D2029C351E6EADE10027CD92 /* MJRefresh.bundle */,
				D2029C361E6EADE10027CD92 /* MJRefresh.h */,
				D2029C371E6EADE10027CD92 /* MJRefreshConst.h */,
				D2029C381E6EADE10027CD92 /* MJRefreshConst.m */,
				D2029C391E6EADE10027CD92 /* UIScrollView+MJExtension.h */,
				D2029C3A1E6EADE10027CD92 /* UIScrollView+MJExtension.m */,
				D2029C3B1E6EADE10027CD92 /* UIScrollView+MJRefresh.h */,
				D2029C3C1E6EADE10027CD92 /* UIScrollView+MJRefresh.m */,
				D2029C3D1E6EADE10027CD92 /* UIView+MJExtension.h */,
				D2029C3E1E6EADE10027CD92 /* UIView+MJExtension.m */,
			);
			path = MJRefresh;
			sourceTree = "<group>";
		};
		D2029C131E6EADE10027CD92 /* Base */ = {
			isa = PBXGroup;
			children = (
				D2029C141E6EADE10027CD92 /* MJRefreshAutoFooter.h */,
				D2029C151E6EADE10027CD92 /* MJRefreshAutoFooter.m */,
				D2029C161E6EADE10027CD92 /* MJRefreshBackFooter.h */,
				D2029C171E6EADE10027CD92 /* MJRefreshBackFooter.m */,
				D2029C181E6EADE10027CD92 /* MJRefreshComponent.h */,
				D2029C191E6EADE10027CD92 /* MJRefreshComponent.m */,
				D2029C1A1E6EADE10027CD92 /* MJRefreshFooter.h */,
				D2029C1B1E6EADE10027CD92 /* MJRefreshFooter.m */,
				D2029C1C1E6EADE10027CD92 /* MJRefreshHeader.h */,
				D2029C1D1E6EADE10027CD92 /* MJRefreshHeader.m */,
			);
			path = Base;
			sourceTree = "<group>";
		};
		D2029C1E1E6EADE10027CD92 /* Custom */ = {
			isa = PBXGroup;
			children = (
				D2029C1F1E6EADE10027CD92 /* Footer */,
				D2029C2E1E6EADE10027CD92 /* Header */,
			);
			path = Custom;
			sourceTree = "<group>";
		};
		D2029C1F1E6EADE10027CD92 /* Footer */ = {
			isa = PBXGroup;
			children = (
				D2029C201E6EADE10027CD92 /* Auto */,
				D2029C271E6EADE10027CD92 /* Back */,
			);
			path = Footer;
			sourceTree = "<group>";
		};
		D2029C201E6EADE10027CD92 /* Auto */ = {
			isa = PBXGroup;
			children = (
				D2029C211E6EADE10027CD92 /* MJRefreshAutoGifFooter.h */,
				D2029C221E6EADE10027CD92 /* MJRefreshAutoGifFooter.m */,
				D2029C231E6EADE10027CD92 /* MJRefreshAutoNormalFooter.h */,
				D2029C241E6EADE10027CD92 /* MJRefreshAutoNormalFooter.m */,
				D2029C251E6EADE10027CD92 /* MJRefreshAutoStateFooter.h */,
				D2029C261E6EADE10027CD92 /* MJRefreshAutoStateFooter.m */,
			);
			path = Auto;
			sourceTree = "<group>";
		};
		D2029C271E6EADE10027CD92 /* Back */ = {
			isa = PBXGroup;
			children = (
				D2029C281E6EADE10027CD92 /* MJRefreshBackGifFooter.h */,
				D2029C291E6EADE10027CD92 /* MJRefreshBackGifFooter.m */,
				D2029C2A1E6EADE10027CD92 /* MJRefreshBackNormalFooter.h */,
				D2029C2B1E6EADE10027CD92 /* MJRefreshBackNormalFooter.m */,
				D2029C2C1E6EADE10027CD92 /* MJRefreshBackStateFooter.h */,
				D2029C2D1E6EADE10027CD92 /* MJRefreshBackStateFooter.m */,
			);
			path = Back;
			sourceTree = "<group>";
		};
		D2029C2E1E6EADE10027CD92 /* Header */ = {
			isa = PBXGroup;
			children = (
				D2029C2F1E6EADE10027CD92 /* MJRefreshGifHeader.h */,
				D2029C301E6EADE10027CD92 /* MJRefreshGifHeader.m */,
				D2029C311E6EADE10027CD92 /* MJRefreshNormalHeader.h */,
				D2029C321E6EADE10027CD92 /* MJRefreshNormalHeader.m */,
				D2029C331E6EADE10027CD92 /* MJRefreshStateHeader.h */,
				D2029C341E6EADE10027CD92 /* MJRefreshStateHeader.m */,
			);
			path = Header;
			sourceTree = "<group>";
		};
		D2029C3F1E6EADE10027CD92 /* SDVersion */ = {
			isa = PBXGroup;
			children = (
				D2029C401E6EADE10027CD92 /* SDiOSVersion */,
				D2029C431E6EADE10027CD92 /* SDVersion.h */,
			);
			path = SDVersion;
			sourceTree = "<group>";
		};
		D2029C401E6EADE10027CD92 /* SDiOSVersion */ = {
			isa = PBXGroup;
			children = (
				D2029C411E6EADE10027CD92 /* SDiOSVersion.h */,
				D2029C421E6EADE10027CD92 /* SDiOSVersion.m */,
			);
			path = SDiOSVersion;
			sourceTree = "<group>";
		};
		D2029C441E6EADE10027CD92 /* SDWebImage */ = {
			isa = PBXGroup;
			children = (
				D2029C451E6EADE10027CD92 /* MKAnnotationView+WebCache.h */,
				D2029C461E6EADE10027CD92 /* MKAnnotationView+WebCache.m */,
				D2029C471E6EADE10027CD92 /* NSData+ImageContentType.h */,
				D2029C481E6EADE10027CD92 /* NSData+ImageContentType.m */,
				D2029C491E6EADE10027CD92 /* SDImageCache.h */,
				D2029C4A1E6EADE10027CD92 /* SDImageCache.m */,
				D2029C4B1E6EADE10027CD92 /* SDWebImageCompat.h */,
				D2029C4C1E6EADE10027CD92 /* SDWebImageCompat.m */,
				D2029C4D1E6EADE10027CD92 /* SDWebImageDecoder.h */,
				D2029C4E1E6EADE10027CD92 /* SDWebImageDecoder.m */,
				D2029C4F1E6EADE10027CD92 /* SDWebImageDownloader.h */,
				D2029C501E6EADE10027CD92 /* SDWebImageDownloader.m */,
				D2029C511E6EADE10027CD92 /* SDWebImageDownloaderOperation.h */,
				D2029C521E6EADE10027CD92 /* SDWebImageDownloaderOperation.m */,
				D2029C531E6EADE10027CD92 /* SDWebImageManager.h */,
				D2029C541E6EADE10027CD92 /* SDWebImageManager.m */,
				D2029C551E6EADE10027CD92 /* SDWebImageOperation.h */,
				D2029C561E6EADE10027CD92 /* SDWebImagePrefetcher.h */,
				D2029C571E6EADE10027CD92 /* SDWebImagePrefetcher.m */,
				D2029C581E6EADE10027CD92 /* UIButton+WebCache.h */,
				D2029C591E6EADE10027CD92 /* UIButton+WebCache.m */,
				D2029C5A1E6EADE10027CD92 /* UIImage+GIF.h */,
				D2029C5B1E6EADE10027CD92 /* UIImage+GIF.m */,
				D2029C5C1E6EADE10027CD92 /* UIImage+MultiFormat.h */,
				D2029C5D1E6EADE10027CD92 /* UIImage+MultiFormat.m */,
				D2029C5E1E6EADE10027CD92 /* UIImage+WebP.h */,
				D2029C5F1E6EADE10027CD92 /* UIImage+WebP.m */,
				D2029C601E6EADE10027CD92 /* UIImageView+HighlightedWebCache.h */,
				D2029C611E6EADE10027CD92 /* UIImageView+HighlightedWebCache.m */,
				D2029C621E6EADE10027CD92 /* UIImageView+WebCache.h */,
				D2029C631E6EADE10027CD92 /* UIImageView+WebCache.m */,
				D2029C641E6EADE10027CD92 /* UIView+WebCacheOperation.h */,
				D2029C651E6EADE10027CD92 /* UIView+WebCacheOperation.m */,
			);
			path = SDWebImage;
			sourceTree = "<group>";
		};
		D2029C661E6EADE10027CD92 /* SSKeychain */ = {
			isa = PBXGroup;
			children = (
				D2029C671E6EADE10027CD92 /* SSKeychain.h */,
				D2029C681E6EADE10027CD92 /* SSKeychain.m */,
			);
			path = SSKeychain;
			sourceTree = "<group>";
		};
		D2029C691E6EADE10027CD92 /* SVProgressHUD */ = {
			isa = PBXGroup;
			children = (
				D2029C6A1E6EADE10027CD92 /* SVIndefiniteAnimatedView.h */,
				D2029C6B1E6EADE10027CD92 /* SVIndefiniteAnimatedView.m */,
				D2029C6C1E6EADE10027CD92 /* SVProgressAnimatedView.h */,
				D2029C6D1E6EADE10027CD92 /* SVProgressAnimatedView.m */,
				D2029C6E1E6EADE10027CD92 /* SVProgressHUD-Prefix.pch */,
				D2029C6F1E6EADE10027CD92 /* SVProgressHUD.bundle */,
				D2029C701E6EADE10027CD92 /* SVProgressHUD.h */,
				D2029C711E6EADE10027CD92 /* SVProgressHUD.m */,
				D2029C721E6EADE10027CD92 /* SVRadialGradientLayer.h */,
				D2029C731E6EADE10027CD92 /* SVRadialGradientLayer.m */,
			);
			path = SVProgressHUD;
			sourceTree = "<group>";
		};
		D2029C741E6EADE10027CD92 /* Sections */ = {
			isa = PBXGroup;
			children = (
				4B45CE421EB86A590079AFB7 /* mySections */,
				D2888DA71E6EC014003A77C8 /* homeSections */,
				D2EBC85E1F020D3D00F198FB /* UGCSections */,
				8178D41A1F02030500AA78A4 /* PGCSections */,
				D2888D951E6EBAA7003A77C8 /* LiveSections */,
				D2575C431E76846900E3A8FC /* InteractionSections */,
			);
			path = Sections;
			sourceTree = "<group>";
		};
		D2029CD11E6EADE70027CD92 /* HttpService */ = {
			isa = PBXGroup;
			children = (
				D2029CD21E6EADE70027CD92 /* HttpService.h */,
				D2029CD31E6EADE70027CD92 /* HttpService.m */,
			);
			path = HttpService;
			sourceTree = "<group>";
		};
		D2029CDC1E6EAE2E0027CD92 /* UtilKits */ = {
			isa = PBXGroup;
			children = (
				4BD8560D1EBACEF80082061D /* webView */,
				4BD855CE1EBAC57A0082061D /* Common.h */,
				4B45CEAC1EB873630079AFB7 /* UserInformationModel.h */,
				4B45CEAD1EB873630079AFB7 /* UserInformationModel.m */,
				4B45CE9C1EB86B9E0079AFB7 /* UserTools */,
				4B45CE8C1EB86A760079AFB7 /* UIKit */,
				D2029CFF1E6EAE2E0027CD92 /* UtilKits.h */,
				D2029CF21E6EAE2E0027CD92 /* Foundation+Log.m */,
				D2029CDD1E6EAE2E0027CD92 /* Category */,
				D2029CEF1E6EAE2E0027CD92 /* DeviceInfo */,
				D2029CF31E6EAE2E0027CD92 /* Macro */,
				D2029CFC1E6EAE2E0027CD92 /* ServerUrl */,
			);
			path = UtilKits;
			sourceTree = "<group>";
		};
		D2029CDD1E6EAE2E0027CD92 /* Category */ = {
			isa = PBXGroup;
			children = (
				4B42A6C21EC00CC800DA09D7 /* UIAlertView+Blocks.h */,
				4B42A6C31EC00CC800DA09D7 /* UIAlertView+Blocks.m */,
				4BD856161EBAD35C0082061D /* NSDictionary+Safety.h */,
				4BD856171EBAD35C0082061D /* NSDictionary+Safety.m */,
				4BD856131EBAD31A0082061D /* NSString+UrlEncode.h */,
				4BD856141EBAD31A0082061D /* NSString+UrlEncode.m */,
				4BD855CB1EBAC4B70082061D /* CNLiveKeychainWrapper.h */,
				4BD855CC1EBAC4B70082061D /* CNLiveKeychainWrapper.m */,
				4B45CEA91EB86BFA0079AFB7 /* NSString+ZXExtension.h */,
				4B45CEAA1EB86BFA0079AFB7 /* NSString+ZXExtension.m */,
				81F1C83E1E8BC5CC0085C2B8 /* NSArray+Safety.h */,
				81F1C83F1E8BC5CC0085C2B8 /* NSArray+Safety.m */,
				81A483061E88B6140097A80A /* UIView+ViewController.h */,
				81A483071E88B6140097A80A /* UIView+ViewController.m */,
				D24571561E8393EB00AA85D6 /* UIImageView+ZXExtension.h */,
				D24571571E8393EB00AA85D6 /* UIImageView+ZXExtension.m */,
				811BB68C1E8116C8005C6291 /* NSString+StringSize.h */,
				811BB68D1E8116C8005C6291 /* NSString+StringSize.m */,
				D2029CDE1E6EAE2E0027CD92 /* NSNumber+ScaleHeight.h */,
				D2029CDF1E6EAE2E0027CD92 /* NSNumber+ScaleHeight.m */,
				D2029CE01E6EAE2E0027CD92 /* UIColor+HexString.h */,
				D2029CE11E6EAE2E0027CD92 /* UIColor+HexString.m */,
				D2029CE21E6EAE2E0027CD92 /* UIImage+ScaleImageSize.h */,
				D2029CE31E6EAE2E0027CD92 /* UIImage+ScaleImageSize.m */,
				D2029CE41E6EAE2E0027CD92 /* UIImage+ZXExtension.h */,
				D2029CE51E6EAE2E0027CD92 /* UIImage+ZXExtension.m */,
				D2029CE61E6EAE2E0027CD92 /* UILabel+ContentSize.h */,
				D2029CE71E6EAE2E0027CD92 /* UILabel+ContentSize.m */,
				D2029CE81E6EAE2E0027CD92 /* UILabel+labelFitSize.h */,
				D2029CE91E6EAE2E0027CD92 /* UILabel+labelFitSize.m */,
				D2029CEA1E6EAE2E0027CD92 /* UIView+Extension.h */,
				D2029CEB1E6EAE2E0027CD92 /* UIView+Extension.m */,
				D25BF89E1E80C4BD007FB138 /* UIImage+LVCVagueImage.h */,
				D25BF89F1E80C4BD007FB138 /* UIImage+LVCVagueImage.m */,
			);
			path = Category;
			sourceTree = "<group>";
		};
		D2029CEF1E6EAE2E0027CD92 /* DeviceInfo */ = {
			isa = PBXGroup;
			children = (
				D2029CF01E6EAE2E0027CD92 /* ZXDeviceInfo.h */,
				D2029CF11E6EAE2E0027CD92 /* ZXDeviceInfo.m */,
			);
			path = DeviceInfo;
			sourceTree = "<group>";
		};
		D2029CF31E6EAE2E0027CD92 /* Macro */ = {
			isa = PBXGroup;
			children = (
				D2029CF41E6EAE2E0027CD92 /* Macros */,
				4BD8561B1EBAD6490082061D /* ZXConst.h */,
				4BD8561C1EBAD6490082061D /* ZXConst.m */,
				D2029CFB1E6EAE2E0027CD92 /* Macros.h */,
			);
			path = Macro;
			sourceTree = "<group>";
		};
		D2029CF41E6EAE2E0027CD92 /* Macros */ = {
			isa = PBXGroup;
			children = (
				D2029CF51E6EAE2E0027CD92 /* AppMacro.h */,
				D2029CF61E6EAE2E0027CD92 /* EnumMacro.h */,
				D2029CF71E6EAE2E0027CD92 /* NotificationMacro.h */,
				D2029CF81E6EAE2E0027CD92 /* UserDefaultKeyMacro.h */,
				D2029CF91E6EAE2E0027CD92 /* UtilsMacro.h */,
				D2029CFA1E6EAE2E0027CD92 /* VenderMacro.h */,
			);
			path = Macros;
			sourceTree = "<group>";
		};
		D2029CFC1E6EAE2E0027CD92 /* ServerUrl */ = {
			isa = PBXGroup;
			children = (
				D2029CFD1E6EAE2E0027CD92 /* ZXServerUrl.h */,
				D2029CFE1E6EAE2E0027CD92 /* ZXServerUrl.m */,
			);
			path = ServerUrl;
			sourceTree = "<group>";
		};
		D2029D0E1E6EAF510027CD92 /* AppDelegate */ = {
			isa = PBXGroup;
			children = (
				D2029D121E6EAF8D0027CD92 /* AppDelegate.h */,
				D2029D151E6EB00D0027CD92 /* AppDelegate.m */,
			);
			path = AppDelegate;
			sourceTree = "<group>";
		};
		D209AD721EC585A600D82E3B /* Model */ = {
			isa = PBXGroup;
			children = (
			);
			name = Model;
			sourceTree = "<group>";
		};
		D217A2441E7B76C7003B44CB /* Present */ = {
			isa = PBXGroup;
			children = (
				D217A2451E7B76C7003B44CB /* PresentModelAble.h */,
				D217A2461E7B76C7003B44CB /* PresentView.h */,
				D217A2471E7B76C7003B44CB /* PresentView.m */,
				D217A2481E7B76C7003B44CB /* PresentViewCell.h */,
				D217A2491E7B76C7003B44CB /* PresentViewCell.m */,
			);
			path = Present;
			sourceTree = "<group>";
		};
		D22830F51E77C24900627701 /* GiftViews */ = {
			isa = PBXGroup;
			children = (
				D22830FD1E77C69E00627701 /* GiftListView.h */,
				D22830FE1E77C69E00627701 /* GiftListView.m */,
				D236967C1E7F9E4100E4BF71 /* GiftPayButton.h */,
				D236967D1E7F9E4100E4BF71 /* GiftPayButton.m */,
			);
			path = GiftViews;
			sourceTree = "<group>";
		};
		D22830F61E77C26C00627701 /* Chat */ = {
			isa = PBXGroup;
			children = (
				D2B7B24E1E8247B500ED084E /* ChatBarrageManager */,
				D236968F1E7FC83800E4BF71 /* ChatMsgModel */,
				D22830F71E77C27A00627701 /* ChatViews */,
			);
			path = Chat;
			sourceTree = "<group>";
		};
		D22830F71E77C27A00627701 /* ChatViews */ = {
			isa = PBXGroup;
			children = (
				D23696821E7FC6A900E4BF71 /* chatListCell.h */,
				D23696831E7FC6A900E4BF71 /* chatListCell.m */,
			);
			path = ChatViews;
			sourceTree = "<group>";
		};
		D22830F81E77C2A700627701 /* TopToolView */ = {
			isa = PBXGroup;
			children = (
				D2A803061E80BD6F009D6F1C /* TopToolView.h */,
				D2A803071E80BD6F009D6F1C /* TopToolView.m */,
			);
			path = TopToolView;
			sourceTree = "<group>";
		};
		D22830F91E77C2D900627701 /* BottomToolView */ = {
			isa = PBXGroup;
			children = (
				D22830FA1E77C2D900627701 /* BottomToolView.h */,
				D22830FB1E77C2D900627701 /* BottomToolView.m */,
			);
			path = BottomToolView;
			sourceTree = "<group>";
		};
		D22831061E77D8D500627701 /* GiftModel */ = {
			isa = PBXGroup;
			children = (
				D22831071E77D8D500627701 /* GiftModel.h */,
				D22831081E77D8D500627701 /* GiftModel.m */,
			);
			path = GiftModel;
			sourceTree = "<group>";
		};
		D236968F1E7FC83800E4BF71 /* ChatMsgModel */ = {
			isa = PBXGroup;
			children = (
				D23696901E7FC83800E4BF71 /* chatMsgModel.h */,
				D23696911E7FC83800E4BF71 /* chatMsgModel.m */,
			);
			path = ChatMsgModel;
			sourceTree = "<group>";
		};
		D2393D041F02505400D3EE17 /* QQSDK */ = {
			isa = PBXGroup;
			children = (
				D2393D051F02505400D3EE17 /* TencentOpenAPI.framework */,
				D2393D061F02505400D3EE17 /* TencentOpenApi_IOS_Bundle.bundle */,
			);
			path = QQSDK;
			sourceTree = "<group>";
		};
		D2393D091F0250A100D3EE17 /* WeChatSDK */ = {
			isa = PBXGroup;
			children = (
				D2393D0A1F0250A100D3EE17 /* libWeChatSDK.a */,
				D2393D0B1F0250A100D3EE17 /* read_me.txt */,
				D2393D0C1F0250A100D3EE17 /* WXApi.h */,
				D2393D0D1F0250A100D3EE17 /* WXApiObject.h */,
			);
			path = WeChatSDK;
			sourceTree = "<group>";
		};
		D2393D101F0250A700D3EE17 /* SinaSDK */ = {
			isa = PBXGroup;
			children = (
				D2393D111F0250A700D3EE17 /* libWeiboSDK.a */,
				D2393D121F0250A700D3EE17 /* WBHttpRequest+WeiboGame.h */,
				D2393D131F0250A700D3EE17 /* WBHttpRequest+WeiboShare.h */,
				D2393D141F0250A700D3EE17 /* WBHttpRequest+WeiboToken.h */,
				D2393D151F0250A700D3EE17 /* WBHttpRequest+WeiboUser.h */,
				D2393D161F0250A700D3EE17 /* WBHttpRequest.h */,
				D2393D171F0250A700D3EE17 /* WBSDKBasicButton.h */,
				D2393D181F0250A700D3EE17 /* WBSDKCommentButton.h */,
				D2393D191F0250A700D3EE17 /* WBSDKRelationshipButton.h */,
				D2393D1A1F0250A700D3EE17 /* WeiboSDK.bundle */,
				D2393D1B1F0250A700D3EE17 /* WeiboSDK.h */,
				D2393D1C1F0250A700D3EE17 /* WeiboUser.h */,
			);
			path = SinaSDK;
			sourceTree = "<group>";
		};
		D24571591E83A61E00AA85D6 /* BounceView */ = {
			isa = PBXGroup;
			children = (
				D245715A1E83A62B00AA85D6 /* BounceView.h */,
				D245715B1E83A62B00AA85D6 /* BounceView.m */,
			);
			name = BounceView;
			sourceTree = "<group>";
		};
		D24571601E83C3F900AA85D6 /* PrivateView */ = {
			isa = PBXGroup;
			children = (
				D24571611E83C40B00AA85D6 /* PrivateView.h */,
				D24571621E83C40B00AA85D6 /* PrivateView.m */,
				D29E81EB1E88DC5B008C9906 /* PriChatCell.h */,
				D29E81EC1E88DC5B008C9906 /* PriChatCell.m */,
			);
			path = PrivateView;
			sourceTree = "<group>";
		};
		D2575C431E76846900E3A8FC /* InteractionSections */ = {
			isa = PBXGroup;
			children = (
				D24571601E83C3F900AA85D6 /* PrivateView */,
				D24571591E83A61E00AA85D6 /* BounceView */,
				D22830F91E77C2D900627701 /* BottomToolView */,
				D22830F81E77C2A700627701 /* TopToolView */,
				D22830F61E77C26C00627701 /* Chat */,
				D245715D1E83B09900AA85D6 /* userInfoModel.h */,
				D245715E1E83B09900AA85D6 /* userInfoModel.m */,
				D207BE9F1E84C1EC006A0CE8 /* AnimationBaseView.h */,
				D207BEA01E84C1EC006A0CE8 /* AnimationBaseView.m */,
				D22830EF1E778C0F00627701 /* LiveBaseView.h */,
				D22830F01E778C0F00627701 /* LiveBaseView.m */,
				D2575C681E76A42B00E3A8FC /* Gift */,
				D2575C471E7685C500E3A8FC /* heartAnimation */,
			);
			path = InteractionSections;
			sourceTree = "<group>";
		};
		D2575C471E7685C500E3A8FC /* heartAnimation */ = {
			isa = PBXGroup;
			children = (
				D2575C491E7685DE00E3A8FC /* UIView+Bubbling.h */,
				D2575C481E7685DE00E3A8FC /* UIView+Bubbling.m */,
				D2575C441E76857100E3A8FC /* LVCAnimationManager.h */,
				D2575C451E76857100E3A8FC /* LVCAnimationManager.m */,
			);
			path = heartAnimation;
			sourceTree = "<group>";
		};
		D2575C681E76A42B00E3A8FC /* Gift */ = {
			isa = PBXGroup;
			children = (
				D217A2441E7B76C7003B44CB /* Present */,
				D217A24C1E7B77C7003B44CB /* ComboCell.h */,
				D217A24D1E7B77C7003B44CB /* ComboCell.m */,
				D25530041E7911A800DF38A5 /* GiftAnimationAction.h */,
				D25530051E7911A800DF38A5 /* GiftAnimationAction.m */,
				D25530011E79115100DF38A5 /* AnimQueueManager.h */,
				D25530021E79115100DF38A5 /* AnimQueueManager.m */,
				D2552FFE1E7909AC00DF38A5 /* GiftAnimOperation.h */,
				D2552FFF1E7909AC00DF38A5 /* GiftAnimOperation.m */,
				D22830F51E77C24900627701 /* GiftViews */,
				D2575C6C1E76A4F300E3A8FC /* GiftResource */,
				D22831061E77D8D500627701 /* GiftModel */,
			);
			path = Gift;
			sourceTree = "<group>";
		};
		D2575C6C1E76A4F300E3A8FC /* GiftResource */ = {
			isa = PBXGroup;
			children = (
				D255300A1E793F8200DF38A5 /* NHFighterView+animDelegagte.h */,
				D255300B1E793F8200DF38A5 /* NHFighterView+animDelegagte.m */,
				D2575C6D1E76A4F300E3A8FC /* NHCarView.h */,
				D2575C6E1E76A4F300E3A8FC /* NHCarViews.h */,
				D2575C6F1E76A4F300E3A8FC /* NHCarViews.m */,
				D2575C701E76A4F300E3A8FC /* NHCarViews.xib */,
				D2575C711E76A4F300E3A8FC /* NHFighterView.h */,
				D2575C721E76A4F300E3A8FC /* NHFighterView.nib */,
				D2575C731E76A4F300E3A8FC /* NHGiftAnimtionSDK.a */,
				D2575C741E76A4F300E3A8FC /* NHHeader.h */,
				D2575C751E76A4F300E3A8FC /* NHPlaneView.h */,
				D2575C761E76A4F300E3A8FC /* NHPlaneViews.h */,
				D2575C771E76A4F300E3A8FC /* NHPlaneViews.m */,
				D2575C781E76A4F300E3A8FC /* NHPlaneViews.xib */,
				D2575C791E76A4F300E3A8FC /* resource.bundle */,
			);
			path = GiftResource;
			sourceTree = "<group>";
		};
		D25BF8741E7B8A59007FB138 /* Model */ = {
			isa = PBXGroup;
			children = (
			);
			path = Model;
			sourceTree = "<group>";
		};
		D25BF8751E7B8A59007FB138 /* View */ = {
			isa = PBXGroup;
			children = (
				D25BF8761E7B8A82007FB138 /* FilterFunctionView.h */,
				D25BF8771E7B8A82007FB138 /* FilterFunctionView.m */,
				D25BF8781E7B8A82007FB138 /* SliderView.h */,
				D25BF8791E7B8A82007FB138 /* SliderView.m */,
				D29D88461E88C53300543A03 /* LVCUGCLivePrepareView.h */,
				D29D88471E88C53300543A03 /* LVCUGCLivePrepareView.m */,
				D2B2ED7E1E88FC5200F7538A /* LVCUGCLiveEndView.h */,
				D2B2ED7F1E88FC5200F7538A /* LVCUGCLiveEndView.m */,
			);
			path = View;
			sourceTree = "<group>";
		};
		D25BF88A1E7F7F77007FB138 /* Resource */ = {
			isa = PBXGroup;
			children = (
				8178D4671F021C4500AA78A4 /* TelevisionData.json */,
				D25BF88C1E7F7F77007FB138 /* Images */,
				D25BF88B1E7F7F77007FB138 /* Fonts */,
				D25BF88D1E7F7F77007FB138 /* Sound */,
				D25BF88E1E7F7F77007FB138 /* Videos */,
			);
			path = Resource;
			sourceTree = "<group>";
		};
		D25BF88B1E7F7F77007FB138 /* Fonts */ = {
			isa = PBXGroup;
			children = (
			);
			path = Fonts;
			sourceTree = "<group>";
		};
		D25BF88C1E7F7F77007FB138 /* Images */ = {
			isa = PBXGroup;
			children = (
				D2D7D18C1E8A581000217771 /* timg.jpeg */,
				D25BF88F1E7F7F8F007FB138 /* UGCLoading.jpeg */,
				D25BF8A41E80EC76007FB138 /* 头像.jpg */,
			);
			path = Images;
			sourceTree = "<group>";
		};
		D25BF88D1E7F7F77007FB138 /* Sound */ = {
			isa = PBXGroup;
			children = (
			);
			path = Sound;
			sourceTree = "<group>";
		};
		D25BF88E1E7F7F77007FB138 /* Videos */ = {
			isa = PBXGroup;
			children = (
			);
			path = Videos;
			sourceTree = "<group>";
		};
		D25BF8A11E80C4FC007FB138 /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				D2393D271F02572100D3EE17 /* CoreTelephony.framework */,
				D2393D251F0256FE00D3EE17 /* libstdc++.tbd */,
				D2393D231F0256E900D3EE17 /* libz.tbd */,
				D2393D211F0256DC00D3EE17 /* libc++.tbd */,
				D2393D1F1F0256AA00D3EE17 /* libsqlite3.tbd */,
				D25BF8A21E80C4FC007FB138 /* Accelerate.framework */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
		D2888D911E6EB897003A77C8 /* View */ = {
			isa = PBXGroup;
			children = (
				D2888D921E6EB8B4003A77C8 /* LVCTabBar.h */,
				D2888D931E6EB8B4003A77C8 /* LVCTabBar.m */,
			);
			path = View;
			sourceTree = "<group>";
		};
		D2888D951E6EBAA7003A77C8 /* LiveSections */ = {
			isa = PBXGroup;
			children = (
				D2888D991E6EBF1B003A77C8 /* Controller */,
				D25BF8741E7B8A59007FB138 /* Model */,
				D25BF8751E7B8A59007FB138 /* View */,
			);
			path = LiveSections;
			sourceTree = "<group>";
		};
		D2888D991E6EBF1B003A77C8 /* Controller */ = {
			isa = PBXGroup;
			children = (
				D2888D9A1E6EBF1B003A77C8 /* LVCLiveViewController.h */,
				D2888D9B1E6EBF1B003A77C8 /* LVCLiveViewController.m */,
				D23DC1531ECC41C100103B0E /* LVCVerifyViewController.h */,
				D23DC1541ECC41C100103B0E /* LVCVerifyViewController.m */,
				D2CBC1391ECC157A00E00279 /* LVCVerifyLiveAuthService.h */,
				D2CBC13A1ECC157A00E00279 /* LVCVerifyLiveAuthService.m */,
			);
			path = Controller;
			sourceTree = "<group>";
		};
		D2888DA71E6EC014003A77C8 /* homeSections */ = {
			isa = PBXGroup;
			children = (
				D2888DA81E6EC014003A77C8 /* Controller */,
				81A482FC1E88B0130097A80A /* Model */,
				D2888DAA1E6EC014003A77C8 /* View */,
			);
			path = homeSections;
			sourceTree = "<group>";
		};
		D2888DA81E6EC014003A77C8 /* Controller */ = {
			isa = PBXGroup;
			children = (
				D2EBC8861F0225D900F198FB /* LVCVodPlayerListController.h */,
				D2EBC8871F0225D900F198FB /* LVCVodPlayerListController.m */,
				D2EBC88C1F023AA400F198FB /* LVCVodPlayerController.h */,
				D2EBC88D1F023AA400F198FB /* LVCVodPlayerController.m */,
				D2EBC8971F025D4700F198FB /* LVCVodPlayerFullController.h */,
				D2EBC8981F025D4700F198FB /* LVCVodPlayerFullController.m */,
			);
			path = Controller;
			sourceTree = "<group>";
		};
		D2888DAA1E6EC014003A77C8 /* View */ = {
			isa = PBXGroup;
			children = (
				D2EBC89E1F034C5500F198FB /* LVCCommentView.h */,
				D2EBC89F1F034C5500F198FB /* LVCCommentView.m */,
				D2EBC8A91F039E8100F198FB /* LVCCommentTitleCell.h */,
				D2EBC8AA1F039E8100F198FB /* LVCCommentTitleCell.m */,
				D2EBC8AC1F03A99800F198FB /* LVCCommentCell.h */,
				D2EBC8AD1F03A99800F198FB /* LVCCommentCell.m */,
			);
			path = View;
			sourceTree = "<group>";
		};
		D2B7B24E1E8247B500ED084E /* ChatBarrageManager */ = {
			isa = PBXGroup;
			children = (
				D2B7B2551E8261EF00ED084E /* ChatBarrOperation.h */,
				D2B7B2561E8261EF00ED084E /* ChatBarrOperation.m */,
				D2B7B24F1E8247D400ED084E /* ChatBarrageManager.h */,
				D2B7B2501E8247D400ED084E /* ChatBarrageManager.m */,
				D2B7B2521E824B2D00ED084E /* ChatBarrageView.h */,
				D2B7B2531E824B2D00ED084E /* ChatBarrageView.m */,
				D224B1951E826ED800CC61D0 /* ChatBarrageAnimAction.h */,
				D224B1961E826ED800CC61D0 /* ChatBarrageAnimAction.m */,
			);
			path = ChatBarrageManager;
			sourceTree = "<group>";
		};
		D2EBC85E1F020D3D00F198FB /* UGCSections */ = {
			isa = PBXGroup;
			children = (
				D2EBC85F1F020F3C00F198FB /* Controller */,
				D2EBC8601F020F3C00F198FB /* Model */,
				D2EBC8611F020F3C00F198FB /* View */,
			);
			path = UGCSections;
			sourceTree = "<group>";
		};
		D2EBC85F1F020F3C00F198FB /* Controller */ = {
			isa = PBXGroup;
			children = (
				D2EBC86B1F02108000F198FB /* LVCUGCLiveListController.h */,
				D2EBC86C1F02108000F198FB /* LVCUGCLiveListController.m */,
				D2EBC86F1F02108000F198FB /* LVCUGCLivePlayerController.h */,
				D2EBC8701F02108000F198FB /* LVCUGCLivePlayerController.m */,
				D2EBC8651F02108000F198FB /* LiveListService.h */,
				D2EBC8661F02108000F198FB /* LiveListService.m */,
				D2EBC8671F02108000F198FB /* LVCLiveActivityInfoService.h */,
				D2EBC8681F02108000F198FB /* LVCLiveActivityInfoService.m */,
			);
			path = Controller;
			sourceTree = "<group>";
		};
		D2EBC8601F020F3C00F198FB /* Model */ = {
			isa = PBXGroup;
			children = (
				D2EBC8771F02108F00F198FB /* LVCUGCLiveListModel.h */,
				D2EBC8781F02108F00F198FB /* LVCUGCLiveListModel.m */,
				D2EBC8791F02108F00F198FB /* LVCUGCLivePlayerModel.h */,
				D2EBC87A1F02108F00F198FB /* LVCUGCLivePlayerModel.m */,
			);
			path = Model;
			sourceTree = "<group>";
		};
		D2EBC8611F020F3C00F198FB /* View */ = {
			isa = PBXGroup;
			children = (
				D2EBC8891F02361600F198FB /* LVCUGCLiveListView.h */,
				D2EBC88A1F02361600F198FB /* LVCUGCLiveListView.m */,
				D2EBC87D1F02109C00F198FB /* LVCUGCBackgroundView.h */,
				D2EBC87E1F02109C00F198FB /* LVCUGCBackgroundView.m */,
				D2EBC87F1F02109C00F198FB /* LVCUGCLivePlayerCell.h */,
				D2EBC8801F02109C00F198FB /* LVCUGCLivePlayerCell.m */,
				D2EBC8811F02109C00F198FB /* LVCUGCPlayerLoadingView.h */,
				D2EBC8821F02109C00F198FB /* LVCUGCPlayerLoadingView.m */,
			);
			path = View;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
		D2029B801E6EAAA50027CD92 /* LiveVideoCloud */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = D2029BAE1E6EAAA50027CD92 /* Build configuration list for PBXNativeTarget "LiveVideoCloud" */;
			buildPhases = (
				D2029B7D1E6EAAA50027CD92 /* Sources */,
				D2029B7E1E6EAAA50027CD92 /* Frameworks */,
				D2029B7F1E6EAAA50027CD92 /* Resources */,
				812E50591E7699E9004F5FCD /* Embed Frameworks */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = LiveVideoCloud;
			productName = LiveVideoCloud;
			productReference = D2029B811E6EAAA50027CD92 /* LiveVideoCloud.app */;
			productType = "com.apple.product-type.application";
		};
		D2029B991E6EAAA50027CD92 /* LiveVideoCloudTests */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = D2029BB11E6EAAA50027CD92 /* Build configuration list for PBXNativeTarget "LiveVideoCloudTests" */;
			buildPhases = (
				D2029B961E6EAAA50027CD92 /* Sources */,
				D2029B971E6EAAA50027CD92 /* Frameworks */,
				D2029B981E6EAAA50027CD92 /* Resources */,
			);
			buildRules = (
			);
			dependencies = (
				D2029B9C1E6EAAA50027CD92 /* PBXTargetDependency */,
			);
			name = LiveVideoCloudTests;
			productName = LiveVideoCloudTests;
			productReference = D2029B9A1E6EAAA50027CD92 /* LiveVideoCloudTests.xctest */;
			productType = "com.apple.product-type.bundle.unit-test";
		};
		D2029BA41E6EAAA50027CD92 /* LiveVideoCloudUITests */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = D2029BB41E6EAAA50027CD92 /* Build configuration list for PBXNativeTarget "LiveVideoCloudUITests" */;
			buildPhases = (
				D2029BA11E6EAAA50027CD92 /* Sources */,
				D2029BA21E6EAAA50027CD92 /* Frameworks */,
				D2029BA31E6EAAA50027CD92 /* Resources */,
			);
			buildRules = (
			);
			dependencies = (
				D2029BA71E6EAAA50027CD92 /* PBXTargetDependency */,
			);
			name = LiveVideoCloudUITests;
			productName = LiveVideoCloudUITests;
			productReference = D2029BA51E6EAAA50027CD92 /* LiveVideoCloudUITests.xctest */;
			productType = "com.apple.product-type.bundle.ui-testing";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		D2029B791E6EAAA50027CD92 /* Project object */ = {
			isa = PBXProject;
			attributes = {
				CLASSPREFIX = LVC;
				LastUpgradeCheck = 0820;
				ORGANIZATIONNAME = cnlive;
				TargetAttributes = {
					D2029B801E6EAAA50027CD92 = {
						CreatedOnToolsVersion = 8.2.1;
						DevelopmentTeam = 94X49GG3ZW;
						ProvisioningStyle = Automatic;
					};
					D2029B991E6EAAA50027CD92 = {
						CreatedOnToolsVersion = 8.2.1;
						ProvisioningStyle = Automatic;
						TestTargetID = D2029B801E6EAAA50027CD92;
					};
					D2029BA41E6EAAA50027CD92 = {
						CreatedOnToolsVersion = 8.2.1;
						ProvisioningStyle = Automatic;
						TestTargetID = D2029B801E6EAAA50027CD92;
					};
				};
			};
			buildConfigurationList = D2029B7C1E6EAAA50027CD92 /* Build configuration list for PBXProject "LiveVideoCloud" */;
			compatibilityVersion = "Xcode 3.2";
			developmentRegion = English;
			hasScannedForEncodings = 0;
			knownRegions = (
				en,
				Base,
			);
			mainGroup = D2029B781E6EAAA50027CD92;
			productRefGroup = D2029B821E6EAAA50027CD92 /* Products */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				D2029B801E6EAAA50027CD92 /* LiveVideoCloud */,
				D2029B991E6EAAA50027CD92 /* LiveVideoCloudTests */,
				D2029BA41E6EAAA50027CD92 /* LiveVideoCloudUITests */,
			);
		};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
		D2029B7F1E6EAAA50027CD92 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				D2393D081F02505400D3EE17 /* TencentOpenApi_IOS_Bundle.bundle in Resources */,
				D2029C971E6EADE10027CD92 /* Info.plist in Resources */,
				D2575C7F1E76A4F300E3A8FC /* NHPlaneViews.xib in Resources */,
				D2393D0F1F0250A100D3EE17 /* read_me.txt in Resources */,
				D2393D1E1F0250A700D3EE17 /* WeiboSDK.bundle in Resources */,
				D2575C7B1E76A4F300E3A8FC /* NHCarViews.xib in Resources */,
				D25BF8901E7F7F8F007FB138 /* UGCLoading.jpeg in Resources */,
				D25BF8A51E80EC76007FB138 /* 头像.jpg in Resources */,
				D2029CC91E6EADE10027CD92 /* SVProgressHUD.bundle in Resources */,
				D2575C801E76A4F300E3A8FC /* resource.bundle in Resources */,
				8178D4681F021C4500AA78A4 /* TelevisionData.json in Resources */,
				D2029B941E6EAAA50027CD92 /* LaunchScreen.storyboard in Resources */,
				D2029B911E6EAAA50027CD92 /* animation.xcassets in Resources */,
				D2D7D18D1E8A581000217771 /* timg.jpeg in Resources */,
				D2029CB01E6EADE10027CD92 /* MJRefresh.bundle in Resources */,
				D2575C7C1E76A4F300E3A8FC /* NHFighterView.nib in Resources */,
				D25BF87D1E7B8C78007FB138 /* KSYGPUResource.bundle in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		D2029B981E6EAAA50027CD92 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		D2029BA31E6EAAA50027CD92 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		D2029B7D1E6EAAA50027CD92 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				D2029CC31E6EADE10027CD92 /* UIImageView+HighlightedWebCache.m in Sources */,
				D22830FF1E77C69E00627701 /* GiftListView.m in Sources */,
				4B45CE8A1EB86A590079AFB7 /* LVCPersonCommonCell.m in Sources */,
				D2029CC01E6EADE10027CD92 /* UIImage+GIF.m in Sources */,
				4B45CE851EB86A590079AFB7 /* LVCClearCachesCell.m in Sources */,
				4B45CE9B1EB86A760079AFB7 /* ZXUIKit.m in Sources */,
				D2029BCF1E6EADD70027CD92 /* ZXTabBarController.m in Sources */,
				D2029CB81E6EADE10027CD92 /* SDImageCache.m in Sources */,
				D2029CBB1E6EADE10027CD92 /* SDWebImageDownloader.m in Sources */,
				D2029CA71E6EADE10027CD92 /* MJRefreshAutoGifFooter.m in Sources */,
				D2029CC11E6EADE10027CD92 /* UIImage+MultiFormat.m in Sources */,
				D245715F1E83B09900AA85D6 /* userInfoModel.m in Sources */,
				8178D4241F02043500AA78A4 /* LVCFullScreenPlayerController.m in Sources */,
				D2029C861E6EADE10027CD92 /* Tools.m in Sources */,
				D2EBC8AB1F039E8100F198FB /* LVCCommentTitleCell.m in Sources */,
				4B42A6C41EC00CC800DA09D7 /* UIAlertView+Blocks.m in Sources */,
				4B45CE861EB86A590079AFB7 /* LVCLoginShowView.m in Sources */,
				D2029CA01E6EADE10027CD92 /* NSObject+MJProperty.m in Sources */,
				4BD855FE1EBACD530082061D /* AFSecurityPolicy.m in Sources */,
				D2029CB51E6EADE10027CD92 /* SDiOSVersion.m in Sources */,
				D2C6A8BF1F04998D00543EFA /* LVCVodListModel.m in Sources */,
				4B45CE981EB86A760079AFB7 /* UILabel+createLabel.m in Sources */,
				D2029C9C1E6EADE10027CD92 /* MJPropertyType.m in Sources */,
				D22831091E77D8D500627701 /* GiftModel.m in Sources */,
				4BD8560F1EBACEF80082061D /* CNLiveWebView.m in Sources */,
				810B65051E779B1F00133E15 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */,
				D2029CCB1E6EADE10027CD92 /* SVRadialGradientLayer.m in Sources */,
				D23696841E7FC6A900E4BF71 /* chatListCell.m in Sources */,
				4B45CE7B1EB86A590079AFB7 /* MinePersonalDataController.m in Sources */,
				D2029CAF1E6EADE10027CD92 /* MJRefreshStateHeader.m in Sources */,
				4BD856091EBACD530082061D /* UIRefreshControl+AFNetworking.m in Sources */,
				81F1C8401E8BC5CC0085C2B8 /* NSArray+Safety.m in Sources */,
				D2029D011E6EAE2E0027CD92 /* UIColor+HexString.m in Sources */,
				4B45CE7D1EB86A590079AFB7 /* ModifyInfomationController.m in Sources */,
				D2029CA41E6EADE10027CD92 /* MJRefreshComponent.m in Sources */,
				D2575C7A1E76A4F300E3A8FC /* NHCarViews.m in Sources */,
				8178D44A1F02045500AA78A4 /* CNBarrageManager.m in Sources */,
				D209AD711EC583D100D82E3B /* MineAccountController.m in Sources */,
				D2029CBC1E6EADE10027CD92 /* SDWebImageDownloaderOperation.m in Sources */,
				D2029CA51E6EADE10027CD92 /* MJRefreshFooter.m in Sources */,
				D22830FC1E77C2D900627701 /* BottomToolView.m in Sources */,
				4BD856021EBACD530082061D /* AFURLSessionManager.m in Sources */,
				D2EBC87B1F02108F00F198FB /* LVCUGCLiveListModel.m in Sources */,
				4BD855FD1EBACD530082061D /* AFNetworkReachabilityManager.m in Sources */,
				810B65061E779B1F00133E15 /* View+MASAdditions.m in Sources */,
				D2029D161E6EB00D0027CD92 /* AppDelegate.m in Sources */,
				4B45CEA51EB86B9F0079AFB7 /* CNLiveThirdLoginManager.m in Sources */,
				4BD8561D1EBAD6490082061D /* ZXConst.m in Sources */,
				D2029CB71E6EADE10027CD92 /* NSData+ImageContentType.m in Sources */,
				D23DC1551ECC41C100103B0E /* LVCVerifyViewController.m in Sources */,
				D29E81ED1E88DC5B008C9906 /* PriChatCell.m in Sources */,
				D2029CBE1E6EADE10027CD92 /* SDWebImagePrefetcher.m in Sources */,
				D2EBC8991F025D4700F198FB /* LVCVodPlayerFullController.m in Sources */,
				D2A803081E80BD6F009D6F1C /* TopToolView.m in Sources */,
				D2B7B2571E8261EF00ED084E /* ChatBarrOperation.m in Sources */,
				D209AD6B1EC580F100D82E3B /* LVCWebViewController.m in Sources */,
				810B65011E779B1F00133E15 /* MASLayoutConstraint.m in Sources */,
				D2029CA11E6EADE10027CD92 /* NSString+MJExtension.m in Sources */,
				4B45CE7A1EB86A590079AFB7 /* MineLiveController.m in Sources */,
				D2029BCB1E6EADD70027CD92 /* BaseTableViewCell.m in Sources */,
				D2029CAA1E6EADE10027CD92 /* MJRefreshBackGifFooter.m in Sources */,
				8178D4531F02045500AA78A4 /* LVCRequestFailedView.m in Sources */,
				4BD855FB1EBACD530082061D /* AFHTTPRequestOperationManager.m in Sources */,
				D217A24B1E7B76C7003B44CB /* PresentViewCell.m in Sources */,
				D2029C9B1E6EADE10027CD92 /* MJPropertyKey.m in Sources */,
				4B45CE821EB86A590079AFB7 /* LVCMineCommonModel.m in Sources */,
				D2029CBF1E6EADE10027CD92 /* UIButton+WebCache.m in Sources */,
				D2575C7E1E76A4F300E3A8FC /* NHPlaneViews.m in Sources */,
				4B45CE761EB86A590079AFB7 /* BeingAnchorController.m in Sources */,
				D2029CC51E6EADE10027CD92 /* UIView+WebCacheOperation.m in Sources */,
				D2029CAB1E6EADE10027CD92 /* MJRefreshBackNormalFooter.m in Sources */,
				4B45CEA61EB86B9F0079AFB7 /* NSNumber+ScaleHeight.m in Sources */,
				810B65031E779B1F00133E15 /* MASViewConstraint.m in Sources */,
				D2029BCE1E6EADD70027CD92 /* ZXNavigationController.m in Sources */,
				D2029CA21E6EADE10027CD92 /* MJRefreshAutoFooter.m in Sources */,
				D2029CC71E6EADE10027CD92 /* SVIndefiniteAnimatedView.m in Sources */,
				D2029CA31E6EADE10027CD92 /* MJRefreshBackFooter.m in Sources */,
				4B45CE7E1EB86A590079AFB7 /* LoginViewController.m in Sources */,
				D255300C1E793F8200DF38A5 /* NHFighterView+animDelegagte.m in Sources */,
				4BD856181EBAD35C0082061D /* NSDictionary+Safety.m in Sources */,
				4BD856011EBACD530082061D /* AFURLResponseSerialization.m in Sources */,
				D2575C4A1E7685DE00E3A8FC /* UIView+Bubbling.m in Sources */,
				D2EBC88B1F02361600F198FB /* LVCUGCLiveListView.m in Sources */,
				D2029CA61E6EADE10027CD92 /* MJRefreshHeader.m in Sources */,
				D2029CC41E6EADE10027CD92 /* UIImageView+WebCache.m in Sources */,
				4B45CE801EB86A590079AFB7 /* idAndPwdView.m in Sources */,
				8178D4251F02043500AA78A4 /* LVCLivePlayerController.m in Sources */,
				D236967E1E7F9E4100E4BF71 /* GiftPayButton.m in Sources */,
				4BD8560A1EBACD530082061D /* UIWebView+AFNetworking.m in Sources */,
				D2EBC8881F0225D900F198FB /* LVCVodPlayerListController.m in Sources */,
				4B45CE831EB86A590079AFB7 /* LVCMineModel.m in Sources */,
				4B45CE791EB86A590079AFB7 /* MineAboutUsController.m in Sources */,
				81A483081E88B6140097A80A /* UIView+ViewController.m in Sources */,
				D2EBC8721F02108000F198FB /* LVCLiveActivityInfoService.m in Sources */,
				D2029CC81E6EADE10027CD92 /* SVProgressAnimatedView.m in Sources */,
				D2029C961E6EADE10027CD92 /* MBProgressHUD.m in Sources */,
				810B65071E779B1F00133E15 /* ViewController+MASAdditions.m in Sources */,
				D2EBC88E1F023AA400F198FB /* LVCVodPlayerController.m in Sources */,
				D2029C9A1E6EADE10027CD92 /* MJProperty.m in Sources */,
				4BD856031EBACD530082061D /* AFNetworkActivityIndicatorManager.m in Sources */,
				4BD855CD1EBAC4B70082061D /* CNLiveKeychainWrapper.m in Sources */,
				D2029CB91E6EADE10027CD92 /* SDWebImageCompat.m in Sources */,
				D2029CB61E6EADE10027CD92 /* MKAnnotationView+WebCache.m in Sources */,
				4BD856121EBAD2640082061D /* ProgramModel.m in Sources */,
				D2B2ED801E88FC5200F7538A /* LVCUGCLiveEndView.m in Sources */,
				810B64FE1E779B1F00133E15 /* MASCompositeConstraint.m in Sources */,
				D2029C981E6EADE10027CD92 /* MJExtensionConst.m in Sources */,
				8178D4571F0204D600AA78A4 /* LVCTelevisioController.m in Sources */,
				D2029CAE1E6EADE10027CD92 /* MJRefreshNormalHeader.m in Sources */,
				D23696921E7FC83800E4BF71 /* chatMsgModel.m in Sources */,
				4BD856071EBACD530082061D /* UIImageView+AFNetworking.m in Sources */,
				D2029CC61E6EADE10027CD92 /* SSKeychain.m in Sources */,
				4B45CE871EB86A590079AFB7 /* LVCMineCommonCell.m in Sources */,
				D2EBC87C1F02108F00F198FB /* LVCUGCLivePlayerModel.m in Sources */,
				8178D4621F02060B00AA78A4 /* LVCChatViewTableViewCell.m in Sources */,
				811BB68E1E8116C8005C6291 /* NSString+StringSize.m in Sources */,
				4BD856051EBACD530082061D /* UIAlertView+AFNetworking.m in Sources */,
				D224B1971E826ED800CC61D0 /* ChatBarrageAnimAction.m in Sources */,
				D2029C9E1E6EADE10027CD92 /* NSObject+MJCoding.m in Sources */,
				D2029C991E6EADE10027CD92 /* MJFoundation.m in Sources */,
				8178D4641F02060B00AA78A4 /* LVCMessage.m in Sources */,
				4B45CE8B1EB86A590079AFB7 /* LVCTextField.m in Sources */,
				D2575C461E76857100E3A8FC /* LVCAnimationManager.m in Sources */,
				D2CBC13B1ECC157A00E00279 /* LVCVerifyLiveAuthService.m in Sources */,
				D2029D041E6EAE2E0027CD92 /* UILabel+ContentSize.m in Sources */,
				4B45CE7C1EB86A590079AFB7 /* MineSettingViewController.m in Sources */,
				D25530031E79115100DF38A5 /* AnimQueueManager.m in Sources */,
				D2029B861E6EAAA50027CD92 /* main.m in Sources */,
				4B45CEA71EB86B9F0079AFB7 /* NSObject+UserModel.m in Sources */,
				4BD856061EBACD530082061D /* UIButton+AFNetworking.m in Sources */,
				D2029C9F1E6EADE10027CD92 /* NSObject+MJKeyValue.m in Sources */,
				D209AD6E1EC583B700D82E3B /* MineMessageController.m in Sources */,
				D25BF8A01E80C4BD007FB138 /* UIImage+LVCVagueImage.m in Sources */,
				810B65021E779B1F00133E15 /* MASViewAttribute.m in Sources */,
				8178D46B1F021ED800AA78A4 /* LVCTelevisionModel.m in Sources */,
				D2B7B2511E8247D400ED084E /* ChatBarrageManager.m in Sources */,
				D2029CAC1E6EADE10027CD92 /* MJRefreshBackStateFooter.m in Sources */,
				D2029CB11E6EADE10027CD92 /* MJRefreshConst.m in Sources */,
				D2029CAD1E6EADE10027CD92 /* MJRefreshGifHeader.m in Sources */,
				D2029CB31E6EADE10027CD92 /* UIScrollView+MJRefresh.m in Sources */,
				4BD856151EBAD31A0082061D /* NSString+UrlEncode.m in Sources */,
				8178D4631F02060B00AA78A4 /* LVCInputView.m in Sources */,
				4B45CE7F1EB86A590079AFB7 /* RegisterCommonController.m in Sources */,
				4BD855FA1EBACD530082061D /* AFHTTPRequestOperation.m in Sources */,
				D2029D051E6EAE2E0027CD92 /* UILabel+labelFitSize.m in Sources */,
				D2029CB21E6EADE10027CD92 /* UIScrollView+MJExtension.m in Sources */,
				D2393D011F020D5700D3EE17 /* FeedbackViewController.m in Sources */,
				D29D88481E88C53300543A03 /* LVCUGCLivePrepareView.m in Sources */,
				D2029D091E6EAE2E0027CD92 /* Foundation+Log.m in Sources */,
				4B45CEAB1EB86BFA0079AFB7 /* NSString+ZXExtension.m in Sources */,
				D2029BCA1E6EADD70027CD92 /* BaseModel.m in Sources */,
				D25BF87B1E7B8A82007FB138 /* SliderView.m in Sources */,
				810B65041E779B1F00133E15 /* NSArray+MASAdditions.m in Sources */,
				D2029D031E6EAE2E0027CD92 /* UIImage+ZXExtension.m in Sources */,
				4BD855FC1EBACD530082061D /* AFHTTPSessionManager.m in Sources */,
				4B45CE841EB86A590079AFB7 /* ModifyCommonView.m in Sources */,
				4BD856081EBACD530082061D /* UIProgressView+AFNetworking.m in Sources */,
				D24571581E8393EB00AA85D6 /* UIImageView+ZXExtension.m in Sources */,
				D2029D0A1E6EAE2E0027CD92 /* ZXServerUrl.m in Sources */,
				D2029CCA1E6EADE10027CD92 /* SVProgressHUD.m in Sources */,
				D2029CA81E6EADE10027CD92 /* MJRefreshAutoNormalFooter.m in Sources */,
				D2EBC8841F02109C00F198FB /* LVCUGCLivePlayerCell.m in Sources */,
				4B45CE991EB86A760079AFB7 /* UITextField+createTextField.m in Sources */,
				4B45CEA81EB86B9F0079AFB7 /* UserTools.m in Sources */,
				D217A24A1E7B76C7003B44CB /* PresentView.m in Sources */,
				D22830F11E778C0F00627701 /* LiveBaseView.m in Sources */,
				8178D44B1F02045500AA78A4 /* CNBarrageView.m in Sources */,
				8178D4311F02044300AA78A4 /* LVCChatRoomModel.m in Sources */,
				4B45CEAE1EB873630079AFB7 /* UserInformationModel.m in Sources */,
				D2EBC8741F02108000F198FB /* LVCUGCLiveListController.m in Sources */,
				D2029CBA1E6EADE10027CD92 /* SDWebImageDecoder.m in Sources */,
				4B45CE9A1EB86A760079AFB7 /* ZXLabel.m in Sources */,
				D2029D081E6EAE2E0027CD92 /* ZXDeviceInfo.m in Sources */,
				D24571631E83C40B00AA85D6 /* PrivateView.m in Sources */,
				D2029CC21E6EADE10027CD92 /* UIImage+WebP.m in Sources */,
				D2EBC8831F02109C00F198FB /* LVCUGCBackgroundView.m in Sources */,
				4BD856001EBACD530082061D /* AFURLRequestSerialization.m in Sources */,
				D2029BCD1E6EADD70027CD92 /* BaseViewController.m in Sources */,
				4B45CE811EB86A590079AFB7 /* RegistBasicInformationView.m in Sources */,
				D2EBC8851F02109C00F198FB /* LVCUGCPlayerLoadingView.m in Sources */,
				D2EBC8711F02108000F198FB /* LiveListService.m in Sources */,
				810B64FF1E779B1F00133E15 /* MASConstraint.m in Sources */,
				8178D4611F02060B00AA78A4 /* LVCChatView.m in Sources */,
				D25BF87A1E7B8A82007FB138 /* FilterFunctionView.m in Sources */,
				D207BEA11E84C1EC006A0CE8 /* AnimationBaseView.m in Sources */,
				4B45CE971EB86A760079AFB7 /* UIButton+createButton.m in Sources */,
				D2029D001E6EAE2E0027CD92 /* NSNumber+ScaleHeight.m in Sources */,
				4BD856041EBACD530082061D /* UIActivityIndicatorView+AFNetworking.m in Sources */,
				4B45CE781EB86A590079AFB7 /* LVCMineViewController.m in Sources */,
				D2EBC8AE1F03A99800F198FB /* LVCCommentCell.m in Sources */,
				D2888D9E1E6EBF1B003A77C8 /* LVCLiveViewController.m in Sources */,
				4B42A6C71EC0171800DA09D7 /* PlayRecordCell.m in Sources */,
				D217A24E1E7B77C7003B44CB /* ComboCell.m in Sources */,
				D2029CBD1E6EADE10027CD92 /* SDWebImageManager.m in Sources */,
				D2029CB41E6EADE10027CD92 /* UIView+MJExtension.m in Sources */,
				81FB5B3C1E7A6FFC00F98E1D /* SevenSwitch.m in Sources */,
				D2EBC8761F02108000F198FB /* LVCUGCLivePlayerController.m in Sources */,
				D2029CA91E6EADE10027CD92 /* MJRefreshAutoStateFooter.m in Sources */,
				8178D4511F02045500AA78A4 /* LVCPlayer.m in Sources */,
				D2029D061E6EAE2E0027CD92 /* UIView+Extension.m in Sources */,
				D25530001E7909AC00DF38A5 /* GiftAnimOperation.m in Sources */,
				D2029C9D1E6EADE10027CD92 /* NSObject+MJClass.m in Sources */,
				810B65001E779B1F00133E15 /* MASConstraintMaker.m in Sources */,
				8178D4711F0239AD00AA78A4 /* LVCPlayerLoadingView.m in Sources */,
				D2EBC8A01F034C5500F198FB /* LVCCommentView.m in Sources */,
				D245715C1E83A62B00AA85D6 /* BounceView.m in Sources */,
				D2029D021E6EAE2E0027CD92 /* UIImage+ScaleImageSize.m in Sources */,
				D2029BCC1E6EADD70027CD92 /* BaseView.m in Sources */,
				D2888D941E6EB8B4003A77C8 /* LVCTabBar.m in Sources */,
				4B45CE771EB86A590079AFB7 /* IDViewController.m in Sources */,
				4BD855FF1EBACD530082061D /* AFURLConnectionOperation.m in Sources */,
				8178D46E1F0225E500AA78A4 /* LVCTelevisionCell.m in Sources */,
				D2B7B2541E824B2D00ED084E /* ChatBarrageView.m in Sources */,
				D25530061E7911A800DF38A5 /* GiftAnimationAction.m in Sources */,
				4B45CE881EB86A590079AFB7 /* LVCMineShowCell.m in Sources */,
				D2029CD41E6EADE70027CD92 /* HttpService.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		D2029B961E6EAAA50027CD92 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				D2029B9F1E6EAAA50027CD92 /* LiveVideoCloudTests.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		D2029BA11E6EAAA50027CD92 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				D2029BAA1E6EAAA50027CD92 /* LiveVideoCloudUITests.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXTargetDependency section */
		D2029B9C1E6EAAA50027CD92 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = D2029B801E6EAAA50027CD92 /* LiveVideoCloud */;
			targetProxy = D2029B9B1E6EAAA50027CD92 /* PBXContainerItemProxy */;
		};
		D2029BA71E6EAAA50027CD92 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = D2029B801E6EAAA50027CD92 /* LiveVideoCloud */;
			targetProxy = D2029BA61E6EAAA50027CD92 /* PBXContainerItemProxy */;
		};
/* End PBXTargetDependency section */

/* Begin PBXVariantGroup section */
		D2029B921E6EAAA50027CD92 /* LaunchScreen.storyboard */ = {
			isa = PBXVariantGroup;
			children = (
				D2029B931E6EAAA50027CD92 /* Base */,
			);
			name = LaunchScreen.storyboard;
			sourceTree = "<group>";
		};
/* End PBXVariantGroup section */

/* Begin XCBuildConfiguration section */
		D2029BAC1E6EAAA50027CD92 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_ANALYZER_NONNULL = YES;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
				CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INFINITE_RECURSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN_SUSPICIOUS_MOVE = YES;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				COPY_PHASE_STRIP = NO;
				DEBUG_INFORMATION_FORMAT = dwarf;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				ENABLE_TESTABILITY = YES;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 10.2;
				MTL_ENABLE_DEBUG_INFO = YES;
				ONLY_ACTIVE_ARCH = YES;
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = "1,2";
			};
			name = Debug;
		};
		D2029BAD1E6EAAA50027CD92 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_ANALYZER_NONNULL = YES;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
				CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INFINITE_RECURSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN_SUSPICIOUS_MOVE = YES;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				COPY_PHASE_STRIP = NO;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				ENABLE_NS_ASSERTIONS = NO;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 10.2;
				MTL_ENABLE_DEBUG_INFO = NO;
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = "1,2";
				VALIDATE_PRODUCT = YES;
			};
			name = Release;
		};
		D2029BAF1E6EAAA50027CD92 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
				CLANG_ENABLE_OBJC_WEAK = YES;
				DEVELOPMENT_TEAM = 94X49GG3ZW;
				ENABLE_BITCODE = NO;
				FRAMEWORK_SEARCH_PATHS = (
					"$(inherited)",
					"$(PROJECT_DIR)/LiveVideoCloud/Classes/CNLiveSDK",
					"$(PROJECT_DIR)",
					"$(PROJECT_DIR)/LiveVideoCloud/Classes/SDK/QQSDK",
				);
				GCC_PREFIX_HEADER = "$(SRCROOT)/LiveVideoCloud/PrefixHeader.pch";
				INFOPLIST_FILE = LiveVideoCloud/Info.plist;
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
				LIBRARY_SEARCH_PATHS = (
					"$(inherited)",
					"$(PROJECT_DIR)/LiveVideoCloud/Classes/Sections/InteractionSections/Gift/GiftResource",
					"$(PROJECT_DIR)/LiveVideoCloud/Classes/SDK/WeChatSDK",
					"$(PROJECT_DIR)/LiveVideoCloud/Classes/SDK/SinaSDK",
				);
				PRODUCT_BUNDLE_IDENTIFIER = com.cnlive.shipinzhongguo;
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Debug;
		};
		D2029BB01E6EAAA50027CD92 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
				CLANG_ENABLE_OBJC_WEAK = YES;
				DEVELOPMENT_TEAM = 94X49GG3ZW;
				ENABLE_BITCODE = NO;
				FRAMEWORK_SEARCH_PATHS = (
					"$(inherited)",
					"$(PROJECT_DIR)/LiveVideoCloud/Classes/CNLiveSDK",
					"$(PROJECT_DIR)",
					"$(PROJECT_DIR)/LiveVideoCloud/Classes/SDK/QQSDK",
				);
				GCC_PREFIX_HEADER = "$(SRCROOT)/LiveVideoCloud/PrefixHeader.pch";
				INFOPLIST_FILE = LiveVideoCloud/Info.plist;
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
				LIBRARY_SEARCH_PATHS = (
					"$(inherited)",
					"$(PROJECT_DIR)/LiveVideoCloud/Classes/Sections/InteractionSections/Gift/GiftResource",
					"$(PROJECT_DIR)/LiveVideoCloud/Classes/SDK/WeChatSDK",
					"$(PROJECT_DIR)/LiveVideoCloud/Classes/SDK/SinaSDK",
				);
				PRODUCT_BUNDLE_IDENTIFIER = com.cnlive.shipinzhongguo;
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Release;
		};
		D2029BB21E6EAAA50027CD92 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				BUNDLE_LOADER = "$(TEST_HOST)";
				INFOPLIST_FILE = LiveVideoCloudTests/Info.plist;
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
				PRODUCT_BUNDLE_IDENTIFIER = com.cnlive.zhangxu.LiveVideoCloudTests;
				PRODUCT_NAME = "$(TARGET_NAME)";
				TEST_HOST = "$(BUILT_PRODUCTS_DIR)/LiveVideoCloud.app/LiveVideoCloud";
			};
			name = Debug;
		};
		D2029BB31E6EAAA50027CD92 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				BUNDLE_LOADER = "$(TEST_HOST)";
				INFOPLIST_FILE = LiveVideoCloudTests/Info.plist;
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
				PRODUCT_BUNDLE_IDENTIFIER = com.cnlive.zhangxu.LiveVideoCloudTests;
				PRODUCT_NAME = "$(TARGET_NAME)";
				TEST_HOST = "$(BUILT_PRODUCTS_DIR)/LiveVideoCloud.app/LiveVideoCloud";
			};
			name = Release;
		};
		D2029BB51E6EAAA50027CD92 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				INFOPLIST_FILE = LiveVideoCloudUITests/Info.plist;
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
				PRODUCT_BUNDLE_IDENTIFIER = com.cnlive.zhangxu.LiveVideoCloudUITests;
				PRODUCT_NAME = "$(TARGET_NAME)";
				TEST_TARGET_NAME = LiveVideoCloud;
			};
			name = Debug;
		};
		D2029BB61E6EAAA50027CD92 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				INFOPLIST_FILE = LiveVideoCloudUITests/Info.plist;
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
				PRODUCT_BUNDLE_IDENTIFIER = com.cnlive.zhangxu.LiveVideoCloudUITests;
				PRODUCT_NAME = "$(TARGET_NAME)";
				TEST_TARGET_NAME = LiveVideoCloud;
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		D2029B7C1E6EAAA50027CD92 /* Build configuration list for PBXProject "LiveVideoCloud" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				D2029BAC1E6EAAA50027CD92 /* Debug */,
				D2029BAD1E6EAAA50027CD92 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		D2029BAE1E6EAAA50027CD92 /* Build configuration list for PBXNativeTarget "LiveVideoCloud" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				D2029BAF1E6EAAA50027CD92 /* Debug */,
				D2029BB01E6EAAA50027CD92 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		D2029BB11E6EAAA50027CD92 /* Build configuration list for PBXNativeTarget "LiveVideoCloudTests" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				D2029BB21E6EAAA50027CD92 /* Debug */,
				D2029BB31E6EAAA50027CD92 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		D2029BB41E6EAAA50027CD92 /* Build configuration list for PBXNativeTarget "LiveVideoCloudUITests" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				D2029BB51E6EAAA50027CD92 /* Debug */,
				D2029BB61E6EAAA50027CD92 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = D2029B791E6EAAA50027CD92 /* Project object */;
}