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

/* Begin PBXBuildFile section */
		041636BE1CF377F4008CE961 /* CameraView.m in Sources */ = {isa = PBXBuildFile; fileRef = 041636BD1CF377F4008CE961 /* CameraView.m */; };
		041636C21CF395B7008CE961 /* NSObject+UIImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 041636C11CF395B7008CE961 /* NSObject+UIImagePickerController.m */; };
		041636C51CF3986F008CE961 /* CustomUIImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 041636C41CF3986F008CE961 /* CustomUIImagePickerController.m */; };
		041843DC1CF773490081B694 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 041843DB1CF773490081B694 /* Security.framework */; };
		041843DE1CF773530081B694 /* libiconv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 041843DD1CF773530081B694 /* libiconv.tbd */; };
		041843DF1CF7735C0081B694 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 04F9EE1F1CF27AF900BD729F /* SystemConfiguration.framework */; };
		041843E11CF773710081B694 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 041843E01CF773710081B694 /* CoreGraphics.framework */; };
		041843E31CF7737E0081B694 /* libsqlite3.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 041843E21CF7737E0081B694 /* libsqlite3.tbd */; };
		041843E51CF773990081B694 /* libstdc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 041843E41CF773990081B694 /* libstdc++.tbd */; };
		041843E71CF773A00081B694 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 041843E61CF773A00081B694 /* libz.tbd */; };
		0447085E1CD7C06B00555827 /* LoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0447085D1CD7C06B00555827 /* LoginViewController.m */; };
		044708611CD7C1E800555827 /* MainSetViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 044708601CD7C1E800555827 /* MainSetViewController.m */; };
		044CD6EE1CEB771C0004A715 /* SeceneCollectionPictureCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 044CD6ED1CEB771C0004A715 /* SeceneCollectionPictureCell.m */; };
		044CD6F11CEB81350004A715 /* ProductCollectionPictureCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 044CD6F01CEB81350004A715 /* ProductCollectionPictureCell.m */; };
		0470D6111CE2936000647F0F /* SeceneLibraryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0470D6101CE2936000647F0F /* SeceneLibraryView.m */; };
		0470D6141CE2938000647F0F /* ProductLibraryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0470D6131CE2938000647F0F /* ProductLibraryView.m */; };
		04A14A251CE0FC3A00DAD5F3 /* LeftSubView.m in Sources */ = {isa = PBXBuildFile; fileRef = 04A14A241CE0FC3A00DAD5F3 /* LeftSubView.m */; };
		04A14A281CE0FC5600DAD5F3 /* RightSubView.m in Sources */ = {isa = PBXBuildFile; fileRef = 04A14A271CE0FC5600DAD5F3 /* RightSubView.m */; };
		04A14A2B1CE0FC7F00DAD5F3 /* FootSubView.m in Sources */ = {isa = PBXBuildFile; fileRef = 04A14A2A1CE0FC7F00DAD5F3 /* FootSubView.m */; };
		04F9EE181CF2235000BD729F /* ShoppingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 04F9EE171CF2235000BD729F /* ShoppingView.m */; };
		04F9EE1B1CF22B5900BD729F /* ShoppingCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 04F9EE1A1CF22B5900BD729F /* ShoppingCell.m */; };
		04F9EE1E1CF25F7300BD729F /* ShareViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 04F9EE1D1CF25F7300BD729F /* ShareViewController.m */; };
		04F9EE221CF27B1D00BD729F /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 04F9EE211CF27B1D00BD729F /* CoreTelephony.framework */; };
		04FCB1A41CF60A8F0056093B /* DeviceDirectionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 04FCB1A31CF60A8F0056093B /* DeviceDirectionManager.m */; };
		060D397C1CE45CFE0082AECD /* ImageCropperView.m in Sources */ = {isa = PBXBuildFile; fileRef = 060D39791CE45CFE0082AECD /* ImageCropperView.m */; };
		060D397D1CE45CFE0082AECD /* UIImage+Rotation.m in Sources */ = {isa = PBXBuildFile; fileRef = 060D397B1CE45CFE0082AECD /* UIImage+Rotation.m */; };
		2906B5D71CD89246000849B4 /* ClientDetailsTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2906B5D61CD89246000849B4 /* ClientDetailsTableViewCell.m */; };
		290887061CE58BC2000B7097 /* screeningButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 290887051CE58BC2000B7097 /* screeningButton.m */; };
		2908870B1CE5A308000B7097 /* DateSelectedViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 290887091CE5A308000B7097 /* DateSelectedViewController.m */; };
		2908870C1CE5A308000B7097 /* DateSelectedViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2908870A1CE5A308000B7097 /* DateSelectedViewController.xib */; };
		290887131CE5DF16000B7097 /* ShopcarModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 290887121CE5DF16000B7097 /* ShopcarModel.m */; };
		2928F7E71CD087FE0036D761 /* BaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2928F7E61CD087FE0036D761 /* BaseViewController.m */; };
		2928F8321CD09E320036D761 /* Toolview.m in Sources */ = {isa = PBXBuildFile; fileRef = 2928F8311CD09E320036D761 /* Toolview.m */; };
		2928F8381CD09E730036D761 /* CustomButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2928F8371CD09E730036D761 /* CustomButton.m */; };
		2928F83B1CD0A0CE0036D761 /* CustomTabbarController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2928F83A1CD0A0CE0036D761 /* CustomTabbarController.m */; };
		2928F83D1CD0A9CD0036D761 /* qq.png in Resources */ = {isa = PBXBuildFile; fileRef = 2928F83C1CD0A9CD0036D761 /* qq.png */; };
		2928F8421CD0ABAC0036D761 /* ShoppingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2928F8411CD0ABAC0036D761 /* ShoppingViewController.m */; };
		292A14311CE81D1D00EB4430 /* AddressModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 292A14301CE81D1D00EB4430 /* AddressModel.m */; };
		2933934F1CD3158B000D997B /* instructionsLabe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2933934E1CD3158B000D997B /* instructionsLabe.m */; };
		293393551CD3379E000D997B /* ShoppingTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 293393541CD3379E000D997B /* ShoppingTableViewCell.m */; };
		29360C2F1CDDC47E002A5D89 /* ScreeningView.m in Sources */ = {isa = PBXBuildFile; fileRef = 29360C2E1CDDC47E002A5D89 /* ScreeningView.m */; };
		29360C311CDDC487002A5D89 /* ScreeningView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 29360C301CDDC487002A5D89 /* ScreeningView.xib */; };
		2942F8A61CDD80C2005B377E /* authenticateView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2942F8A51CDD80C2005B377E /* authenticateView.m */; };
		2942F8A81CDD80CE005B377E /* authenticateView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2942F8A71CDD80CE005B377E /* authenticateView.xib */; };
		2949BABD1CD2EFA00049385A /* InformationTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2949BABC1CD2EFA00049385A /* InformationTableViewCell.m */; };
		2949BAC21CD3055A0049385A /* MMExampleDrawerVisualStateManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2949BAC11CD3055A0049385A /* MMExampleDrawerVisualStateManager.m */; };
		294CF0EC1CEDCF480055F1D8 /* PromptinformationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 294CF0EB1CEDCF480055F1D8 /* PromptinformationView.m */; };
		294CF0EE1CEDCF540055F1D8 /* PromptinformationView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 294CF0ED1CEDCF540055F1D8 /* PromptinformationView.xib */; };
		2962D06D1CD1A43A0058829D /* ClientViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2962D06C1CD1A43A0058829D /* ClientViewController.m */; };
		2962D0711CD1A58B0058829D /* RightViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2962D0701CD1A58B0058829D /* RightViewController.m */; };
		2962D0791CD1CBC60058829D /* NetworkRequestClassManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2962D0781CD1CBC60058829D /* NetworkRequestClassManager.m */; };
		2962D07D1CD1E4490058829D /* NSArray+Objectwithindex.m in Sources */ = {isa = PBXBuildFile; fileRef = 2962D07C1CD1E4490058829D /* NSArray+Objectwithindex.m */; };
		2962D0811CD1E6010058829D /* UIView+Frame.m in Sources */ = {isa = PBXBuildFile; fileRef = 2962D0801CD1E6010058829D /* UIView+Frame.m */; };
		29698D611CE2C11500D72CE7 /* SettlementViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 29698D5F1CE2C11500D72CE7 /* SettlementViewController.m */; };
		29698D621CE2C11500D72CE7 /* SettlementViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 29698D601CE2C11500D72CE7 /* SettlementViewController.xib */; };
		29706DA61CD082990003C412 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29706DA51CD082990003C412 /* main.m */; };
		29706DA91CD082990003C412 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 29706DA81CD082990003C412 /* AppDelegate.m */; };
		29706DAF1CD082990003C412 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 29706DAD1CD082990003C412 /* Main.storyboard */; };
		29706DB21CD082990003C412 /* Lighting.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = 29706DB01CD082990003C412 /* Lighting.xcdatamodeld */; };
		29706DB41CD082990003C412 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 29706DB31CD082990003C412 /* Assets.xcassets */; };
		29706DB71CD082990003C412 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 29706DB51CD082990003C412 /* LaunchScreen.storyboard */; };
		29807C621CD20C2A00F111B8 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 29807C611CD20C2A00F111B8 /* Images.xcassets */; };
		29807C651CD20F0F00F111B8 /* StoryboardwithCYX.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 29807C641CD20F0F00F111B8 /* StoryboardwithCYX.storyboard */; };
		29834EB41CDF1EAA001A484F /* screeningSecondView.m in Sources */ = {isa = PBXBuildFile; fileRef = 29834EB31CDF1EAA001A484F /* screeningSecondView.m */; };
		29834EB61CDF1EB6001A484F /* screeningSecondView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 29834EB51CDF1EB6001A484F /* screeningSecondView.xib */; };
		29834EB91CDF1FB3001A484F /* screeningFirstView.m in Sources */ = {isa = PBXBuildFile; fileRef = 29834EB81CDF1FB3001A484F /* screeningFirstView.m */; };
		29834EBB1CDF1FBC001A484F /* screeningFirstView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 29834EBA1CDF1FBC001A484F /* screeningFirstView.xib */; };
		29834EC01CDF5E4E001A484F /* ScreeningFirstCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 29834EBF1CDF5E4E001A484F /* ScreeningFirstCollectionViewCell.m */; };
		29834EC51CDF76C1001A484F /* UserViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 29834EC31CDF76C1001A484F /* UserViewController.m */; };
		29834EC61CDF76C1001A484F /* UserViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 29834EC41CDF76C1001A484F /* UserViewController.xib */; };
		2985AEA11CE72F1500704C91 /* NSArray+ ZXPUnicode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2985AE9B1CE72F1500704C91 /* NSArray+ ZXPUnicode.m */; };
		2985AEA21CE72F1500704C91 /* NSDictionary+ZXPUnicode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2985AE9E1CE72F1500704C91 /* NSDictionary+ZXPUnicode.m */; };
		2985AEA31CE72F1500704C91 /* NSObject+ZXPUnicode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2985AEA01CE72F1500704C91 /* NSObject+ZXPUnicode.m */; };
		299249371CDB3C6500786B1E /* GenerateOrdersViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 299249361CDB3C6500786B1E /* GenerateOrdersViewController.m */; };
		2992493A1CDB3E4500786B1E /* GenerateOrdersTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 299249391CDB3E4500786B1E /* GenerateOrdersTableViewCell.m */; };
		2992493D1CDB3E8900786B1E /* GenerateOrdersModifyTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2992493C1CDB3E8800786B1E /* GenerateOrdersModifyTableViewCell.m */; };
		299249401CDB4D1D00786B1E /* AddaddressViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2992493F1CDB4D1D00786B1E /* AddaddressViewController.m */; };
		299249441CDB51B100786B1E /* ModifyShippingAddressView.m in Sources */ = {isa = PBXBuildFile; fileRef = 299249431CDB51B100786B1E /* ModifyShippingAddressView.m */; };
		299249461CDB51C800786B1E /* ModifyShippingAddressView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 299249451CDB51C800786B1E /* ModifyShippingAddressView.xib */; };
		299876271CD9837C00C90D0A /* OrderTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 299876261CD9837C00C90D0A /* OrderTableViewCell.m */; };
		299876331CD997DF00C90D0A /* OrderInformationTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 299876321CD997DF00C90D0A /* OrderInformationTableViewCell.m */; };
		299876361CD997F100C90D0A /* PersonInformationTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 299876351CD997F100C90D0A /* PersonInformationTableViewCell.m */; };
		299876391CD9981800C90D0A /* GoodsInformationTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 299876381CD9981800C90D0A /* GoodsInformationTableViewCell.m */; };
		2998763C1CD9983A00C90D0A /* CommodityListTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2998763B1CD9983A00C90D0A /* CommodityListTableViewCell.m */; };
		299876421CD99E4000C90D0A /* OrderdetailsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 299876411CD99E4000C90D0A /* OrderdetailsViewController.m */; };
		299C7F5A1CE21FA800E7D7CB /* AddressViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 299C7F581CE21FA800E7D7CB /* AddressViewController.m */; };
		299C7F5B1CE21FA800E7D7CB /* AddressViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 299C7F591CE21FA800E7D7CB /* AddressViewController.xib */; };
		29A8D3981CD85A58004D558F /* ClientdetailsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 29A8D3971CD85A58004D558F /* ClientdetailsViewController.m */; };
		29A938221CDADE4700F21E54 /* ProductDetailsTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 29A938211CDADE4700F21E54 /* ProductDetailsTableViewCell.m */; };
		29A938251CDAE31200F21E54 /* ProductDetailsHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 29A938241CDAE31200F21E54 /* ProductDetailsHeaderView.m */; };
		29A938271CDAE31B00F21E54 /* ProductDetailsHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 29A938261CDAE31B00F21E54 /* ProductDetailsHeaderView.xib */; };
		29A9DCAE1CEB643C00A7567A /* PDFViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 29A9DCAC1CEB643C00A7567A /* PDFViewController.m */; };
		29BB27681CD9D38E009A0813 /* AllpriceTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 29BB27671CD9D38E009A0813 /* AllpriceTableViewCell.m */; };
		29BB276C1CD9DE74009A0813 /* FollowHeartViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 29BB276B1CD9DE74009A0813 /* FollowHeartViewController.m */; };
		29BB27741CD9DFAC009A0813 /* SceneLibraryViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 29BB27731CD9DFAC009A0813 /* SceneLibraryViewController.m */; };
		29BB27771CD9DFBA009A0813 /* ProductLibraryViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 29BB27761CD9DFBA009A0813 /* ProductLibraryViewController.m */; };
		29BB277D1CD9DFCB009A0813 /* CustomerManagementViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 29BB277C1CD9DFCB009A0813 /* CustomerManagementViewController.m */; };
		29BB27801CD9DFD7009A0813 /* AboutViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 29BB277F1CD9DFD7009A0813 /* AboutViewController.m */; };
		29BFBD871CE428B200C238FB /* Customermanager.m in Sources */ = {isa = PBXBuildFile; fileRef = 29BFBD861CE428B200C238FB /* Customermanager.m */; };
		29BFBD8F1CE44BA900C238FB /* goodsDetailsSectionview.m in Sources */ = {isa = PBXBuildFile; fileRef = 29BFBD8E1CE44BA900C238FB /* goodsDetailsSectionview.m */; };
		29BFBD911CE44BC200C238FB /* goodsDetailsSectionview.xib in Resources */ = {isa = PBXBuildFile; fileRef = 29BFBD901CE44BC200C238FB /* goodsDetailsSectionview.xib */; };
		29BFBD981CE46FDA00C238FB /* MyclientEntityModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 29BFBD971CE46FDA00C238FB /* MyclientEntityModel.m */; };
		29C584E91CDA249300C6F677 /* ProductCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 29C584E81CDA249200C6F677 /* ProductCollectionViewCell.m */; };
		29C584ED1CDA429500C6F677 /* ProductDetailsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 29C584EC1CDA429500C6F677 /* ProductDetailsViewController.m */; };
		29CCA43C1CF7ED6100BC19DD /* SelectedTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 29CCA43B1CF7ED6100BC19DD /* SelectedTableViewCell.m */; };
		29D260F51CEEAE2800A9787D /* FullScreenViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 29D260F41CEEAE2800A9787D /* FullScreenViewController.m */; };
		29D260F81CEEAF2D00A9787D /* FullScreenViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 29D260F71CEEAF2D00A9787D /* FullScreenViewCell.m */; };
		29D260FB1CEECDFF00A9787D /* goodsDetailsTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 29D260FA1CEECDFF00A9787D /* goodsDetailsTableViewCell.m */; };
		29D260FD1CEED53400A9787D /* goodsDetailsTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 29D260FC1CEED53400A9787D /* goodsDetailsTableViewCell.xib */; };
		29D261001CEEF16D00A9787D /* MjRefreshHeaderCustom.m in Sources */ = {isa = PBXBuildFile; fileRef = 29D260FF1CEEF16D00A9787D /* MjRefreshHeaderCustom.m */; };
		29E28CE81CE0B91B00812A55 /* HENLENSONG.m in Sources */ = {isa = PBXBuildFile; fileRef = 29E28CE71CE0B91B00812A55 /* HENLENSONG.m */; };
		29E384BE1CE9933300888199 /* AdditionalTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 29E384BC1CE9933300888199 /* AdditionalTableViewCell.m */; };
		29E384BF1CE9933300888199 /* AdditionalTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 29E384BD1CE9933300888199 /* AdditionalTableViewCell.xib */; };
		29E384C81CE9A8BF00888199 /* SearchCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 29E384C71CE9A8BF00888199 /* SearchCollectionViewCell.m */; };
		29E384CB1CE9B0BB00888199 /* HotCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 29E384CA1CE9B0BB00888199 /* HotCollectionViewCell.m */; };
		29E384D11CE9C65700888199 /* SearchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 29E384D01CE9C65700888199 /* SearchViewController.m */; };
		29EAAE8E1CDC3E8E00C4DBA2 /* BillingInfoView.m in Sources */ = {isa = PBXBuildFile; fileRef = 29EAAE8D1CDC3E8E00C4DBA2 /* BillingInfoView.m */; };
		29EAAE901CDC3E9700C4DBA2 /* BillingInfoView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 29EAAE8F1CDC3E9700C4DBA2 /* BillingInfoView.xib */; };
		29EAAE951CDC414C00C4DBA2 /* SeceneLibraryCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 29EAAE941CDC414C00C4DBA2 /* SeceneLibraryCollectionViewCell.m */; };
		29EAAE9C1CDC74CA00C4DBA2 /* AllCustomerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 29EAAE9B1CDC74CA00C4DBA2 /* AllCustomerViewController.m */; };
		29EAAEA01CDC79DC00C4DBA2 /* CustomerOrderViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 29EAAE9F1CDC79DC00C4DBA2 /* CustomerOrderViewController.m */; };
		29EAAEA51CDC7F7000C4DBA2 /* CustomerOrderTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 29EAAEA41CDC7F7000C4DBA2 /* CustomerOrderTableViewCell.m */; };
		29EAAEAA1CDC7FE800C4DBA2 /* AllCutomerTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 29EAAEA91CDC7FE800C4DBA2 /* AllCutomerTableViewCell.m */; };
		29EAAEAC1CDCA28300C4DBA2 /* city.json in Resources */ = {isa = PBXBuildFile; fileRef = 29EAAEAB1CDCA28300C4DBA2 /* city.json */; };
		29EC331A1CE023D5005F0C13 /* ChangePasswordViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 29EC33181CE023D5005F0C13 /* ChangePasswordViewController.m */; };
		29EC331B1CE023D5005F0C13 /* ChangePasswordViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 29EC33191CE023D5005F0C13 /* ChangePasswordViewController.xib */; };
		29EC331F1CE02AFA005F0C13 /* PopoverViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 29EC331E1CE02AFA005F0C13 /* PopoverViewController.m */; };
		29F14BA91CF6B60D0005D3E5 /* QRUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 29F14BA31CF6B60D0005D3E5 /* QRUtil.m */; };
		29F14BAA1CF6B60D0005D3E5 /* QRView.m in Sources */ = {isa = PBXBuildFile; fileRef = 29F14BA51CF6B60D0005D3E5 /* QRView.m */; };
		29F14BAB1CF6B60D0005D3E5 /* QRViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 29F14BA71CF6B60D0005D3E5 /* QRViewController.m */; };
		29F725FB1CE17B0D0072FE0E /* Shoppersmanager.m in Sources */ = {isa = PBXBuildFile; fileRef = 29F725FA1CE17B0D0072FE0E /* Shoppersmanager.m */; };
		29F725FE1CE1928F0072FE0E /* opple_objc_json_client.m in Sources */ = {isa = PBXBuildFile; fileRef = 29F725FD1CE1928F0072FE0E /* opple_objc_json_client.m */; };
		29F726011CE1D05D0072FE0E /* ScreeningCollectionReusableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 29F726001CE1D05D0072FE0E /* ScreeningCollectionReusableView.m */; };
		29F726041CE1E96E0072FE0E /* ScreeningSecondCollectionReusableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 29F726031CE1E96E0072FE0E /* ScreeningSecondCollectionReusableView.m */; };
		BF53D4B7E2EE4CFF549FF699 /* libPods.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2DB768A1F2B4AFFF8B89F1D1 /* libPods.a */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
		041636BC1CF377F4008CE961 /* CameraView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CameraView.h; sourceTree = "<group>"; };
		041636BD1CF377F4008CE961 /* CameraView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CameraView.m; sourceTree = "<group>"; };
		041636C01CF395B7008CE961 /* NSObject+UIImagePickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+UIImagePickerController.h"; sourceTree = "<group>"; };
		041636C11CF395B7008CE961 /* NSObject+UIImagePickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+UIImagePickerController.m"; sourceTree = "<group>"; };
		041636C31CF3986F008CE961 /* CustomUIImagePickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomUIImagePickerController.h; sourceTree = "<group>"; };
		041636C41CF3986F008CE961 /* CustomUIImagePickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomUIImagePickerController.m; sourceTree = "<group>"; };
		041843DB1CF773490081B694 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
		041843DD1CF773530081B694 /* libiconv.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libiconv.tbd; path = usr/lib/libiconv.tbd; sourceTree = SDKROOT; };
		041843E01CF773710081B694 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
		041843E21CF7737E0081B694 /* libsqlite3.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.tbd; path = usr/lib/libsqlite3.tbd; sourceTree = SDKROOT; };
		041843E41CF773990081B694 /* libstdc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libstdc++.tbd"; path = "usr/lib/libstdc++.tbd"; sourceTree = SDKROOT; };
		041843E61CF773A00081B694 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
		0447085C1CD7C06B00555827 /* LoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginViewController.h; sourceTree = "<group>"; };
		0447085D1CD7C06B00555827 /* LoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginViewController.m; sourceTree = "<group>"; };
		0447085F1CD7C1E800555827 /* MainSetViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MainSetViewController.h; sourceTree = "<group>"; };
		044708601CD7C1E800555827 /* MainSetViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MainSetViewController.m; sourceTree = "<group>"; };
		044CD6EC1CEB771C0004A715 /* SeceneCollectionPictureCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SeceneCollectionPictureCell.h; sourceTree = "<group>"; };
		044CD6ED1CEB771C0004A715 /* SeceneCollectionPictureCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SeceneCollectionPictureCell.m; sourceTree = "<group>"; };
		044CD6EF1CEB81350004A715 /* ProductCollectionPictureCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ProductCollectionPictureCell.h; sourceTree = "<group>"; };
		044CD6F01CEB81350004A715 /* ProductCollectionPictureCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ProductCollectionPictureCell.m; sourceTree = "<group>"; };
		0470D60F1CE2936000647F0F /* SeceneLibraryView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SeceneLibraryView.h; sourceTree = "<group>"; };
		0470D6101CE2936000647F0F /* SeceneLibraryView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SeceneLibraryView.m; sourceTree = "<group>"; };
		0470D6121CE2938000647F0F /* ProductLibraryView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ProductLibraryView.h; sourceTree = "<group>"; };
		0470D6131CE2938000647F0F /* ProductLibraryView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ProductLibraryView.m; sourceTree = "<group>"; };
		04A14A231CE0FC3A00DAD5F3 /* LeftSubView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LeftSubView.h; sourceTree = "<group>"; };
		04A14A241CE0FC3A00DAD5F3 /* LeftSubView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LeftSubView.m; sourceTree = "<group>"; };
		04A14A261CE0FC5600DAD5F3 /* RightSubView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RightSubView.h; sourceTree = "<group>"; };
		04A14A271CE0FC5600DAD5F3 /* RightSubView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RightSubView.m; sourceTree = "<group>"; };
		04A14A291CE0FC7F00DAD5F3 /* FootSubView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FootSubView.h; sourceTree = "<group>"; };
		04A14A2A1CE0FC7F00DAD5F3 /* FootSubView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FootSubView.m; sourceTree = "<group>"; };
		04F9EE161CF2235000BD729F /* ShoppingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShoppingView.h; sourceTree = "<group>"; };
		04F9EE171CF2235000BD729F /* ShoppingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShoppingView.m; sourceTree = "<group>"; };
		04F9EE191CF22B5900BD729F /* ShoppingCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShoppingCell.h; sourceTree = "<group>"; };
		04F9EE1A1CF22B5900BD729F /* ShoppingCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShoppingCell.m; sourceTree = "<group>"; };
		04F9EE1C1CF25F7300BD729F /* ShareViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShareViewController.h; sourceTree = "<group>"; };
		04F9EE1D1CF25F7300BD729F /* ShareViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShareViewController.m; sourceTree = "<group>"; };
		04F9EE1F1CF27AF900BD729F /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
		04F9EE211CF27B1D00BD729F /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; };
		04FCB1A21CF60A8F0056093B /* DeviceDirectionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceDirectionManager.h; sourceTree = "<group>"; };
		04FCB1A31CF60A8F0056093B /* DeviceDirectionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceDirectionManager.m; sourceTree = "<group>"; };
		060D39781CE45CFE0082AECD /* ImageCropperView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ImageCropperView.h; sourceTree = "<group>"; };
		060D39791CE45CFE0082AECD /* ImageCropperView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ImageCropperView.m; sourceTree = "<group>"; };
		060D397A1CE45CFE0082AECD /* UIImage+Rotation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Rotation.h"; sourceTree = "<group>"; };
		060D397B1CE45CFE0082AECD /* UIImage+Rotation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Rotation.m"; sourceTree = "<group>"; };
		2906B5D51CD89246000849B4 /* ClientDetailsTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClientDetailsTableViewCell.h; sourceTree = "<group>"; };
		2906B5D61CD89246000849B4 /* ClientDetailsTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClientDetailsTableViewCell.m; sourceTree = "<group>"; };
		290887041CE58BC2000B7097 /* screeningButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = screeningButton.h; sourceTree = "<group>"; };
		290887051CE58BC2000B7097 /* screeningButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = screeningButton.m; sourceTree = "<group>"; };
		290887081CE5A308000B7097 /* DateSelectedViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DateSelectedViewController.h; sourceTree = "<group>"; };
		290887091CE5A308000B7097 /* DateSelectedViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DateSelectedViewController.m; sourceTree = "<group>"; };
		2908870A1CE5A308000B7097 /* DateSelectedViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DateSelectedViewController.xib; sourceTree = "<group>"; };
		290887111CE5DF16000B7097 /* ShopcarModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShopcarModel.h; sourceTree = "<group>"; };
		290887121CE5DF16000B7097 /* ShopcarModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShopcarModel.m; sourceTree = "<group>"; };
		2928F7E21CD085F40036D761 /* PrefixHeader.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PrefixHeader.pch; sourceTree = "<group>"; };
		2928F7E51CD087FE0036D761 /* BaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseViewController.h; sourceTree = "<group>"; };
		2928F7E61CD087FE0036D761 /* BaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BaseViewController.m; sourceTree = "<group>"; };
		2928F8301CD09E320036D761 /* Toolview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Toolview.h; sourceTree = "<group>"; };
		2928F8311CD09E320036D761 /* Toolview.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Toolview.m; sourceTree = "<group>"; };
		2928F8361CD09E730036D761 /* CustomButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomButton.h; sourceTree = "<group>"; };
		2928F8371CD09E730036D761 /* CustomButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomButton.m; sourceTree = "<group>"; };
		2928F8391CD0A0CE0036D761 /* CustomTabbarController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomTabbarController.h; sourceTree = "<group>"; };
		2928F83A1CD0A0CE0036D761 /* CustomTabbarController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomTabbarController.m; sourceTree = "<group>"; };
		2928F83C1CD0A9CD0036D761 /* qq.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = qq.png; sourceTree = "<group>"; };
		2928F8401CD0ABAC0036D761 /* ShoppingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShoppingViewController.h; sourceTree = "<group>"; };
		2928F8411CD0ABAC0036D761 /* ShoppingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShoppingViewController.m; sourceTree = "<group>"; };
		292A142F1CE81D1D00EB4430 /* AddressModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AddressModel.h; sourceTree = "<group>"; };
		292A14301CE81D1D00EB4430 /* AddressModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AddressModel.m; sourceTree = "<group>"; };
		2933934D1CD3158B000D997B /* instructionsLabe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = instructionsLabe.h; sourceTree = "<group>"; };
		2933934E1CD3158B000D997B /* instructionsLabe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = instructionsLabe.m; sourceTree = "<group>"; };
		293393531CD3379E000D997B /* ShoppingTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShoppingTableViewCell.h; sourceTree = "<group>"; };
		293393541CD3379E000D997B /* ShoppingTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShoppingTableViewCell.m; sourceTree = "<group>"; };
		29360C2D1CDDC47E002A5D89 /* ScreeningView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScreeningView.h; sourceTree = "<group>"; };
		29360C2E1CDDC47E002A5D89 /* ScreeningView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ScreeningView.m; sourceTree = "<group>"; };
		29360C301CDDC487002A5D89 /* ScreeningView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ScreeningView.xib; sourceTree = "<group>"; };
		2942F8A41CDD80C2005B377E /* authenticateView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = authenticateView.h; sourceTree = "<group>"; };
		2942F8A51CDD80C2005B377E /* authenticateView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = authenticateView.m; sourceTree = "<group>"; };
		2942F8A71CDD80CE005B377E /* authenticateView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = authenticateView.xib; sourceTree = "<group>"; };
		2949BABB1CD2EFA00049385A /* InformationTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InformationTableViewCell.h; sourceTree = "<group>"; };
		2949BABC1CD2EFA00049385A /* InformationTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InformationTableViewCell.m; sourceTree = "<group>"; };
		2949BAC01CD3055A0049385A /* MMExampleDrawerVisualStateManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MMExampleDrawerVisualStateManager.h; sourceTree = "<group>"; };
		2949BAC11CD3055A0049385A /* MMExampleDrawerVisualStateManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MMExampleDrawerVisualStateManager.m; sourceTree = "<group>"; };
		294CF0EA1CEDCF480055F1D8 /* PromptinformationView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PromptinformationView.h; sourceTree = "<group>"; };
		294CF0EB1CEDCF480055F1D8 /* PromptinformationView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PromptinformationView.m; sourceTree = "<group>"; };
		294CF0ED1CEDCF540055F1D8 /* PromptinformationView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PromptinformationView.xib; sourceTree = "<group>"; };
		2962D06B1CD1A43A0058829D /* ClientViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClientViewController.h; sourceTree = "<group>"; };
		2962D06C1CD1A43A0058829D /* ClientViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClientViewController.m; sourceTree = "<group>"; };
		2962D06F1CD1A58B0058829D /* RightViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RightViewController.h; sourceTree = "<group>"; };
		2962D0701CD1A58B0058829D /* RightViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RightViewController.m; sourceTree = "<group>"; };
		2962D0771CD1CBC60058829D /* NetworkRequestClassManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetworkRequestClassManager.h; sourceTree = "<group>"; };
		2962D0781CD1CBC60058829D /* NetworkRequestClassManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NetworkRequestClassManager.m; sourceTree = "<group>"; };
		2962D07B1CD1E4490058829D /* NSArray+Objectwithindex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+Objectwithindex.h"; sourceTree = "<group>"; };
		2962D07C1CD1E4490058829D /* NSArray+Objectwithindex.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+Objectwithindex.m"; sourceTree = "<group>"; };
		2962D07F1CD1E6010058829D /* UIView+Frame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Frame.h"; sourceTree = "<group>"; };
		2962D0801CD1E6010058829D /* UIView+Frame.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Frame.m"; sourceTree = "<group>"; };
		29698D5E1CE2C11500D72CE7 /* SettlementViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SettlementViewController.h; sourceTree = "<group>"; };
		29698D5F1CE2C11500D72CE7 /* SettlementViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SettlementViewController.m; sourceTree = "<group>"; };
		29698D601CE2C11500D72CE7 /* SettlementViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = SettlementViewController.xib; sourceTree = "<group>"; };
		29706DA11CD082990003C412 /* Lighting.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Lighting.app; sourceTree = BUILT_PRODUCTS_DIR; };
		29706DA51CD082990003C412 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
		29706DA71CD082990003C412 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
		29706DA81CD082990003C412 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
		29706DAE1CD082990003C412 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
		29706DB11CD082990003C412 /* Lighting.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = Lighting.xcdatamodel; sourceTree = "<group>"; };
		29706DB31CD082990003C412 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
		29706DB61CD082990003C412 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
		29706DB81CD082990003C412 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
		29807C611CD20C2A00F111B8 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
		29807C641CD20F0F00F111B8 /* StoryboardwithCYX.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = StoryboardwithCYX.storyboard; sourceTree = "<group>"; };
		29834EB21CDF1EAA001A484F /* screeningSecondView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = screeningSecondView.h; sourceTree = "<group>"; };
		29834EB31CDF1EAA001A484F /* screeningSecondView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = screeningSecondView.m; sourceTree = "<group>"; };
		29834EB51CDF1EB6001A484F /* screeningSecondView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = screeningSecondView.xib; sourceTree = "<group>"; };
		29834EB71CDF1FB3001A484F /* screeningFirstView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = screeningFirstView.h; sourceTree = "<group>"; };
		29834EB81CDF1FB3001A484F /* screeningFirstView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = screeningFirstView.m; sourceTree = "<group>"; };
		29834EBA1CDF1FBC001A484F /* screeningFirstView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = screeningFirstView.xib; sourceTree = "<group>"; };
		29834EBE1CDF5E4E001A484F /* ScreeningFirstCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScreeningFirstCollectionViewCell.h; sourceTree = "<group>"; };
		29834EBF1CDF5E4E001A484F /* ScreeningFirstCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ScreeningFirstCollectionViewCell.m; sourceTree = "<group>"; };
		29834EC21CDF76C1001A484F /* UserViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserViewController.h; sourceTree = "<group>"; };
		29834EC31CDF76C1001A484F /* UserViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserViewController.m; sourceTree = "<group>"; };
		29834EC41CDF76C1001A484F /* UserViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = UserViewController.xib; sourceTree = "<group>"; };
		2985AE9B1CE72F1500704C91 /* NSArray+ ZXPUnicode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+ ZXPUnicode.m"; sourceTree = "<group>"; };
		2985AE9C1CE72F1500704C91 /* NSArray+ZXPUnicode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+ZXPUnicode.h"; sourceTree = "<group>"; };
		2985AE9D1CE72F1500704C91 /* NSDictionary+ZXPUnicode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+ZXPUnicode.h"; sourceTree = "<group>"; };
		2985AE9E1CE72F1500704C91 /* NSDictionary+ZXPUnicode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+ZXPUnicode.m"; sourceTree = "<group>"; };
		2985AE9F1CE72F1500704C91 /* NSObject+ZXPUnicode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+ZXPUnicode.h"; sourceTree = "<group>"; };
		2985AEA01CE72F1500704C91 /* NSObject+ZXPUnicode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+ZXPUnicode.m"; sourceTree = "<group>"; };
		299249351CDB3C6500786B1E /* GenerateOrdersViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GenerateOrdersViewController.h; sourceTree = "<group>"; };
		299249361CDB3C6500786B1E /* GenerateOrdersViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GenerateOrdersViewController.m; sourceTree = "<group>"; };
		299249381CDB3E4500786B1E /* GenerateOrdersTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GenerateOrdersTableViewCell.h; sourceTree = "<group>"; };
		299249391CDB3E4500786B1E /* GenerateOrdersTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GenerateOrdersTableViewCell.m; sourceTree = "<group>"; };
		2992493B1CDB3E8800786B1E /* GenerateOrdersModifyTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GenerateOrdersModifyTableViewCell.h; sourceTree = "<group>"; };
		2992493C1CDB3E8800786B1E /* GenerateOrdersModifyTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GenerateOrdersModifyTableViewCell.m; sourceTree = "<group>"; };
		2992493E1CDB4D1D00786B1E /* AddaddressViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AddaddressViewController.h; sourceTree = "<group>"; };
		2992493F1CDB4D1D00786B1E /* AddaddressViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AddaddressViewController.m; sourceTree = "<group>"; };
		299249421CDB51B100786B1E /* ModifyShippingAddressView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyShippingAddressView.h; sourceTree = "<group>"; };
		299249431CDB51B100786B1E /* ModifyShippingAddressView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifyShippingAddressView.m; sourceTree = "<group>"; };
		299249451CDB51C800786B1E /* ModifyShippingAddressView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ModifyShippingAddressView.xib; sourceTree = "<group>"; };
		299876251CD9837C00C90D0A /* OrderTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OrderTableViewCell.h; sourceTree = "<group>"; };
		299876261CD9837C00C90D0A /* OrderTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OrderTableViewCell.m; sourceTree = "<group>"; };
		299876311CD997DF00C90D0A /* OrderInformationTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OrderInformationTableViewCell.h; sourceTree = "<group>"; };
		299876321CD997DF00C90D0A /* OrderInformationTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OrderInformationTableViewCell.m; sourceTree = "<group>"; };
		299876341CD997F100C90D0A /* PersonInformationTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PersonInformationTableViewCell.h; sourceTree = "<group>"; };
		299876351CD997F100C90D0A /* PersonInformationTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PersonInformationTableViewCell.m; sourceTree = "<group>"; };
		299876371CD9981800C90D0A /* GoodsInformationTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GoodsInformationTableViewCell.h; sourceTree = "<group>"; };
		299876381CD9981800C90D0A /* GoodsInformationTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GoodsInformationTableViewCell.m; sourceTree = "<group>"; };
		2998763A1CD9983A00C90D0A /* CommodityListTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommodityListTableViewCell.h; sourceTree = "<group>"; };
		2998763B1CD9983A00C90D0A /* CommodityListTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CommodityListTableViewCell.m; sourceTree = "<group>"; };
		299876401CD99E4000C90D0A /* OrderdetailsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OrderdetailsViewController.h; sourceTree = "<group>"; };
		299876411CD99E4000C90D0A /* OrderdetailsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OrderdetailsViewController.m; sourceTree = "<group>"; };
		299C7F571CE21FA800E7D7CB /* AddressViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AddressViewController.h; sourceTree = "<group>"; };
		299C7F581CE21FA800E7D7CB /* AddressViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AddressViewController.m; sourceTree = "<group>"; };
		299C7F591CE21FA800E7D7CB /* AddressViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AddressViewController.xib; sourceTree = "<group>"; };
		29A8D3961CD85A58004D558F /* ClientdetailsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClientdetailsViewController.h; sourceTree = "<group>"; };
		29A8D3971CD85A58004D558F /* ClientdetailsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClientdetailsViewController.m; sourceTree = "<group>"; };
		29A938201CDADE4700F21E54 /* ProductDetailsTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ProductDetailsTableViewCell.h; sourceTree = "<group>"; };
		29A938211CDADE4700F21E54 /* ProductDetailsTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ProductDetailsTableViewCell.m; sourceTree = "<group>"; };
		29A938231CDAE31200F21E54 /* ProductDetailsHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ProductDetailsHeaderView.h; sourceTree = "<group>"; };
		29A938241CDAE31200F21E54 /* ProductDetailsHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ProductDetailsHeaderView.m; sourceTree = "<group>"; };
		29A938261CDAE31B00F21E54 /* ProductDetailsHeaderView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ProductDetailsHeaderView.xib; sourceTree = "<group>"; };
		29A9DCAB1CEB643C00A7567A /* PDFViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PDFViewController.h; sourceTree = "<group>"; };
		29A9DCAC1CEB643C00A7567A /* PDFViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PDFViewController.m; sourceTree = "<group>"; };
		29BB27661CD9D38E009A0813 /* AllpriceTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AllpriceTableViewCell.h; sourceTree = "<group>"; };
		29BB27671CD9D38E009A0813 /* AllpriceTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllpriceTableViewCell.m; sourceTree = "<group>"; };
		29BB276A1CD9DE74009A0813 /* FollowHeartViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FollowHeartViewController.h; sourceTree = "<group>"; };
		29BB276B1CD9DE74009A0813 /* FollowHeartViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FollowHeartViewController.m; sourceTree = "<group>"; };
		29BB27721CD9DFAC009A0813 /* SceneLibraryViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SceneLibraryViewController.h; sourceTree = "<group>"; };
		29BB27731CD9DFAC009A0813 /* SceneLibraryViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SceneLibraryViewController.m; sourceTree = "<group>"; };
		29BB27751CD9DFBA009A0813 /* ProductLibraryViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ProductLibraryViewController.h; sourceTree = "<group>"; };
		29BB27761CD9DFBA009A0813 /* ProductLibraryViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ProductLibraryViewController.m; sourceTree = "<group>"; };
		29BB277B1CD9DFCB009A0813 /* CustomerManagementViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomerManagementViewController.h; sourceTree = "<group>"; };
		29BB277C1CD9DFCB009A0813 /* CustomerManagementViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomerManagementViewController.m; sourceTree = "<group>"; };
		29BB277E1CD9DFD7009A0813 /* AboutViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AboutViewController.h; sourceTree = "<group>"; };
		29BB277F1CD9DFD7009A0813 /* AboutViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AboutViewController.m; sourceTree = "<group>"; };
		29BFBD851CE428B200C238FB /* Customermanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Customermanager.h; sourceTree = "<group>"; };
		29BFBD861CE428B200C238FB /* Customermanager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Customermanager.m; sourceTree = "<group>"; };
		29BFBD8D1CE44BA900C238FB /* goodsDetailsSectionview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = goodsDetailsSectionview.h; sourceTree = "<group>"; };
		29BFBD8E1CE44BA900C238FB /* goodsDetailsSectionview.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = goodsDetailsSectionview.m; sourceTree = "<group>"; };
		29BFBD901CE44BC200C238FB /* goodsDetailsSectionview.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = goodsDetailsSectionview.xib; sourceTree = "<group>"; };
		29BFBD961CE46FDA00C238FB /* MyclientEntityModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyclientEntityModel.h; sourceTree = "<group>"; };
		29BFBD971CE46FDA00C238FB /* MyclientEntityModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyclientEntityModel.m; sourceTree = "<group>"; };
		29C584E71CDA249200C6F677 /* ProductCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ProductCollectionViewCell.h; sourceTree = "<group>"; };
		29C584E81CDA249200C6F677 /* ProductCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ProductCollectionViewCell.m; sourceTree = "<group>"; };
		29C584EB1CDA429500C6F677 /* ProductDetailsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ProductDetailsViewController.h; sourceTree = "<group>"; };
		29C584EC1CDA429500C6F677 /* ProductDetailsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ProductDetailsViewController.m; sourceTree = "<group>"; };
		29CCA43A1CF7ED6100BC19DD /* SelectedTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SelectedTableViewCell.h; sourceTree = "<group>"; };
		29CCA43B1CF7ED6100BC19DD /* SelectedTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SelectedTableViewCell.m; sourceTree = "<group>"; };
		29D260F31CEEAE2800A9787D /* FullScreenViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FullScreenViewController.h; sourceTree = "<group>"; };
		29D260F41CEEAE2800A9787D /* FullScreenViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FullScreenViewController.m; sourceTree = "<group>"; };
		29D260F61CEEAF2D00A9787D /* FullScreenViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FullScreenViewCell.h; sourceTree = "<group>"; };
		29D260F71CEEAF2D00A9787D /* FullScreenViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FullScreenViewCell.m; sourceTree = "<group>"; };
		29D260F91CEECDFF00A9787D /* goodsDetailsTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = goodsDetailsTableViewCell.h; sourceTree = "<group>"; };
		29D260FA1CEECDFF00A9787D /* goodsDetailsTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = goodsDetailsTableViewCell.m; sourceTree = "<group>"; };
		29D260FC1CEED53400A9787D /* goodsDetailsTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = goodsDetailsTableViewCell.xib; sourceTree = "<group>"; };
		29D260FE1CEEF16D00A9787D /* MjRefreshHeaderCustom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MjRefreshHeaderCustom.h; sourceTree = "<group>"; };
		29D260FF1CEEF16D00A9787D /* MjRefreshHeaderCustom.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MjRefreshHeaderCustom.m; sourceTree = "<group>"; };
		29E28CE61CE0B91B00812A55 /* HENLENSONG.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HENLENSONG.h; sourceTree = "<group>"; };
		29E28CE71CE0B91B00812A55 /* HENLENSONG.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HENLENSONG.m; sourceTree = "<group>"; };
		29E384BB1CE9933300888199 /* AdditionalTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AdditionalTableViewCell.h; sourceTree = "<group>"; };
		29E384BC1CE9933300888199 /* AdditionalTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AdditionalTableViewCell.m; sourceTree = "<group>"; };
		29E384BD1CE9933300888199 /* AdditionalTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AdditionalTableViewCell.xib; sourceTree = "<group>"; };
		29E384C61CE9A8BF00888199 /* SearchCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SearchCollectionViewCell.h; sourceTree = "<group>"; };
		29E384C71CE9A8BF00888199 /* SearchCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SearchCollectionViewCell.m; sourceTree = "<group>"; };
		29E384C91CE9B0BB00888199 /* HotCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HotCollectionViewCell.h; sourceTree = "<group>"; };
		29E384CA1CE9B0BB00888199 /* HotCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HotCollectionViewCell.m; sourceTree = "<group>"; };
		29E384CF1CE9C65700888199 /* SearchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SearchViewController.h; sourceTree = "<group>"; };
		29E384D01CE9C65700888199 /* SearchViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SearchViewController.m; sourceTree = "<group>"; };
		29EAAE8C1CDC3E8E00C4DBA2 /* BillingInfoView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BillingInfoView.h; sourceTree = "<group>"; };
		29EAAE8D1CDC3E8E00C4DBA2 /* BillingInfoView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BillingInfoView.m; sourceTree = "<group>"; };
		29EAAE8F1CDC3E9700C4DBA2 /* BillingInfoView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = BillingInfoView.xib; sourceTree = "<group>"; };
		29EAAE931CDC414C00C4DBA2 /* SeceneLibraryCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SeceneLibraryCollectionViewCell.h; sourceTree = "<group>"; };
		29EAAE941CDC414C00C4DBA2 /* SeceneLibraryCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SeceneLibraryCollectionViewCell.m; sourceTree = "<group>"; };
		29EAAE9A1CDC74CA00C4DBA2 /* AllCustomerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AllCustomerViewController.h; sourceTree = "<group>"; };
		29EAAE9B1CDC74CA00C4DBA2 /* AllCustomerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllCustomerViewController.m; sourceTree = "<group>"; };
		29EAAE9E1CDC79DC00C4DBA2 /* CustomerOrderViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomerOrderViewController.h; sourceTree = "<group>"; };
		29EAAE9F1CDC79DC00C4DBA2 /* CustomerOrderViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomerOrderViewController.m; sourceTree = "<group>"; };
		29EAAEA31CDC7F7000C4DBA2 /* CustomerOrderTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomerOrderTableViewCell.h; sourceTree = "<group>"; };
		29EAAEA41CDC7F7000C4DBA2 /* CustomerOrderTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomerOrderTableViewCell.m; sourceTree = "<group>"; };
		29EAAEA81CDC7FE800C4DBA2 /* AllCutomerTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AllCutomerTableViewCell.h; sourceTree = "<group>"; };
		29EAAEA91CDC7FE800C4DBA2 /* AllCutomerTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllCutomerTableViewCell.m; sourceTree = "<group>"; };
		29EAAEAB1CDCA28300C4DBA2 /* city.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = city.json; sourceTree = "<group>"; };
		29EC33171CE023D5005F0C13 /* ChangePasswordViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChangePasswordViewController.h; sourceTree = "<group>"; };
		29EC33181CE023D5005F0C13 /* ChangePasswordViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChangePasswordViewController.m; sourceTree = "<group>"; };
		29EC33191CE023D5005F0C13 /* ChangePasswordViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ChangePasswordViewController.xib; sourceTree = "<group>"; };
		29EC331D1CE02AFA005F0C13 /* PopoverViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PopoverViewController.h; sourceTree = "<group>"; };
		29EC331E1CE02AFA005F0C13 /* PopoverViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PopoverViewController.m; sourceTree = "<group>"; };
		29F14BA21CF6B60D0005D3E5 /* QRUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QRUtil.h; sourceTree = "<group>"; };
		29F14BA31CF6B60D0005D3E5 /* QRUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QRUtil.m; sourceTree = "<group>"; };
		29F14BA41CF6B60D0005D3E5 /* QRView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QRView.h; sourceTree = "<group>"; };
		29F14BA51CF6B60D0005D3E5 /* QRView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QRView.m; sourceTree = "<group>"; };
		29F14BA61CF6B60D0005D3E5 /* QRViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QRViewController.h; sourceTree = "<group>"; };
		29F14BA71CF6B60D0005D3E5 /* QRViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QRViewController.m; sourceTree = "<group>"; };
		29F725F91CE17B0D0072FE0E /* Shoppersmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Shoppersmanager.h; sourceTree = "<group>"; };
		29F725FA1CE17B0D0072FE0E /* Shoppersmanager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Shoppersmanager.m; sourceTree = "<group>"; };
		29F725FC1CE1928F0072FE0E /* opple_objc_json_client.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opple_objc_json_client.h; sourceTree = "<group>"; };
		29F725FD1CE1928F0072FE0E /* opple_objc_json_client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = opple_objc_json_client.m; sourceTree = "<group>"; };
		29F725FF1CE1D05D0072FE0E /* ScreeningCollectionReusableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScreeningCollectionReusableView.h; sourceTree = "<group>"; };
		29F726001CE1D05D0072FE0E /* ScreeningCollectionReusableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ScreeningCollectionReusableView.m; sourceTree = "<group>"; };
		29F726021CE1E96E0072FE0E /* ScreeningSecondCollectionReusableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScreeningSecondCollectionReusableView.h; sourceTree = "<group>"; };
		29F726031CE1E96E0072FE0E /* ScreeningSecondCollectionReusableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ScreeningSecondCollectionReusableView.m; sourceTree = "<group>"; };
		2DB768A1F2B4AFFF8B89F1D1 /* libPods.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libPods.a; sourceTree = BUILT_PRODUCTS_DIR; };
		CA5ED00287EA4EE622158E3C /* Pods.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.release.xcconfig; path = "Pods/Target Support Files/Pods/Pods.release.xcconfig"; sourceTree = "<group>"; };
		D537F80EFAB9298B3ADA241A /* Pods.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.debug.xcconfig; path = "Pods/Target Support Files/Pods/Pods.debug.xcconfig"; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		29706D9E1CD082980003C412 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				041843E71CF773A00081B694 /* libz.tbd in Frameworks */,
				041843E51CF773990081B694 /* libstdc++.tbd in Frameworks */,
				04F9EE221CF27B1D00BD729F /* CoreTelephony.framework in Frameworks */,
				041843E31CF7737E0081B694 /* libsqlite3.tbd in Frameworks */,
				041843E11CF773710081B694 /* CoreGraphics.framework in Frameworks */,
				041843DF1CF7735C0081B694 /* SystemConfiguration.framework in Frameworks */,
				041843DE1CF773530081B694 /* libiconv.tbd in Frameworks */,
				041843DC1CF773490081B694 /* Security.framework in Frameworks */,
				BF53D4B7E2EE4CFF549FF699 /* libPods.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		041636BF1CF39568008CE961 /* category */ = {
			isa = PBXGroup;
			children = (
				041636C01CF395B7008CE961 /* NSObject+UIImagePickerController.h */,
				041636C11CF395B7008CE961 /* NSObject+UIImagePickerController.m */,
				041636C31CF3986F008CE961 /* CustomUIImagePickerController.h */,
				041636C41CF3986F008CE961 /* CustomUIImagePickerController.m */,
			);
			name = category;
			sourceTree = "<group>";
		};
		044708571CD7C06B00555827 /* MainSet */ = {
			isa = PBXGroup;
			children = (
				0447085F1CD7C1E800555827 /* MainSetViewController.h */,
				044708601CD7C1E800555827 /* MainSetViewController.m */,
				044708581CD7C06B00555827 /* Followheart */,
				044708591CD7C06B00555827 /* Productlibrary */,
				0447085A1CD7C06B00555827 /* SceneLibrary */,
			);
			path = MainSet;
			sourceTree = "<group>";
		};
		044708581CD7C06B00555827 /* Followheart */ = {
			isa = PBXGroup;
			children = (
			);
			path = Followheart;
			sourceTree = "<group>";
		};
		044708591CD7C06B00555827 /* Productlibrary */ = {
			isa = PBXGroup;
			children = (
			);
			path = Productlibrary;
			sourceTree = "<group>";
		};
		0447085A1CD7C06B00555827 /* SceneLibrary */ = {
			isa = PBXGroup;
			children = (
			);
			path = SceneLibrary;
			sourceTree = "<group>";
		};
		0447085B1CD7C06B00555827 /* Login */ = {
			isa = PBXGroup;
			children = (
				2942F8A31CDD7EDB005B377E /* view */,
				2942F8A21CDD7ECD005B377E /* controller */,
			);
			path = Login;
			sourceTree = "<group>";
		};
		0470D60E1CE292EF00647F0F /* subView */ = {
			isa = PBXGroup;
			children = (
				0470D60F1CE2936000647F0F /* SeceneLibraryView.h */,
				0470D6101CE2936000647F0F /* SeceneLibraryView.m */,
				0470D6121CE2938000647F0F /* ProductLibraryView.h */,
				0470D6131CE2938000647F0F /* ProductLibraryView.m */,
				04F9EE161CF2235000BD729F /* ShoppingView.h */,
				04F9EE171CF2235000BD729F /* ShoppingView.m */,
				04F9EE1C1CF25F7300BD729F /* ShareViewController.h */,
				04F9EE1D1CF25F7300BD729F /* ShareViewController.m */,
				041636BC1CF377F4008CE961 /* CameraView.h */,
				041636BD1CF377F4008CE961 /* CameraView.m */,
			);
			name = subView;
			sourceTree = "<group>";
		};
		04A14A221CE0FB8400DAD5F3 /* views */ = {
			isa = PBXGroup;
			children = (
				04A14A231CE0FC3A00DAD5F3 /* LeftSubView.h */,
				04A14A241CE0FC3A00DAD5F3 /* LeftSubView.m */,
				04A14A261CE0FC5600DAD5F3 /* RightSubView.h */,
				04A14A271CE0FC5600DAD5F3 /* RightSubView.m */,
				04A14A291CE0FC7F00DAD5F3 /* FootSubView.h */,
				04A14A2A1CE0FC7F00DAD5F3 /* FootSubView.m */,
			);
			name = views;
			sourceTree = "<group>";
		};
		04A5203D1CE90ADB001D4520 /* controller */ = {
			isa = PBXGroup;
			children = (
			);
			name = controller;
			sourceTree = "<group>";
		};
		04A5203E1CE93604001D4520 /* customCell */ = {
			isa = PBXGroup;
			children = (
				044CD6EC1CEB771C0004A715 /* SeceneCollectionPictureCell.h */,
				044CD6ED1CEB771C0004A715 /* SeceneCollectionPictureCell.m */,
				044CD6EF1CEB81350004A715 /* ProductCollectionPictureCell.h */,
				044CD6F01CEB81350004A715 /* ProductCollectionPictureCell.m */,
				04F9EE191CF22B5900BD729F /* ShoppingCell.h */,
				04F9EE1A1CF22B5900BD729F /* ShoppingCell.m */,
			);
			name = customCell;
			sourceTree = "<group>";
		};
		060D39771CE45CFE0082AECD /* tools */ = {
			isa = PBXGroup;
			children = (
				060D39781CE45CFE0082AECD /* ImageCropperView.h */,
				060D39791CE45CFE0082AECD /* ImageCropperView.m */,
				060D397A1CE45CFE0082AECD /* UIImage+Rotation.h */,
				060D397B1CE45CFE0082AECD /* UIImage+Rotation.m */,
				04FCB1A21CF60A8F0056093B /* DeviceDirectionManager.h */,
				04FCB1A31CF60A8F0056093B /* DeviceDirectionManager.m */,
			);
			path = tools;
			sourceTree = "<group>";
		};
		2902E1301CF2907200268161 /* RefreshHeader */ = {
			isa = PBXGroup;
			children = (
				29D260FE1CEEF16D00A9787D /* MjRefreshHeaderCustom.h */,
				29D260FF1CEEF16D00A9787D /* MjRefreshHeaderCustom.m */,
			);
			name = RefreshHeader;
			sourceTree = "<group>";
		};
		2906B5D31CD8920F000849B4 /* Controller */ = {
			isa = PBXGroup;
			children = (
				29A8D3961CD85A58004D558F /* ClientdetailsViewController.h */,
				29A8D3971CD85A58004D558F /* ClientdetailsViewController.m */,
			);
			name = Controller;
			sourceTree = "<group>";
		};
		2906B5D41CD89220000849B4 /* view */ = {
			isa = PBXGroup;
			children = (
				2906B5D51CD89246000849B4 /* ClientDetailsTableViewCell.h */,
				2906B5D61CD89246000849B4 /* ClientDetailsTableViewCell.m */,
				299876251CD9837C00C90D0A /* OrderTableViewCell.h */,
				299876261CD9837C00C90D0A /* OrderTableViewCell.m */,
				29EAAE8C1CDC3E8E00C4DBA2 /* BillingInfoView.h */,
				29EAAE8D1CDC3E8E00C4DBA2 /* BillingInfoView.m */,
				29EAAE8F1CDC3E9700C4DBA2 /* BillingInfoView.xib */,
			);
			name = view;
			sourceTree = "<group>";
		};
		290887071CE5A2BE000B7097 /* dateSelectedVC */ = {
			isa = PBXGroup;
			children = (
				290887081CE5A308000B7097 /* DateSelectedViewController.h */,
				290887091CE5A308000B7097 /* DateSelectedViewController.m */,
				2908870A1CE5A308000B7097 /* DateSelectedViewController.xib */,
			);
			name = dateSelectedVC;
			sourceTree = "<group>";
		};
		2908870D1CE5D900000B7097 /* shopCarmodel */ = {
			isa = PBXGroup;
			children = (
				290887111CE5DF16000B7097 /* ShopcarModel.h */,
				290887121CE5DF16000B7097 /* ShopcarModel.m */,
			);
			name = shopCarmodel;
			sourceTree = "<group>";
		};
		2928F7DD1CD085430036D761 /* Class */ = {
			isa = PBXGroup;
			children = (
				29D260EF1CEEAA5000A9787D /* FullScreen */,
				29E384C01CE9A68F00888199 /* SearchController */,
				29834EC11CDF768C001A484F /* XXuserController */,
				2962D06E1CD1A56B0058829D /* RIghtVC */,
				2962D06A1CD1A3FE0058829D /* MyClient */,
				2928F83F1CD0AB830036D761 /* Shoppingcart */,
				2928F8251CD09BC10036D761 /* Tabbar */,
				0447085B1CD7C06B00555827 /* Login */,
				044708571CD7C06B00555827 /* MainSet */,
			);
			path = Class;
			sourceTree = "<group>";
		};
		2928F7DE1CD085430036D761 /* Tools */ = {
			isa = PBXGroup;
			children = (
				29F14B931CF6A4B50005D3E5 /* Scanner */,
				2902E1301CF2907200268161 /* RefreshHeader */,
				294CF0E91CEDCF250055F1D8 /* PromptinformationView */,
				29A9DCAA1CEB63BD00A7567A /* PreviewPDF */,
				2985AE9A1CE72F1500704C91 /* ZXPUnicode */,
				29BFBD841CE4288A00C238FB /* Customercenter */,
				29F725F81CE17AE40072FE0E /* Shopperscenter */,
				29E28CE51CE0B90600812A55 /* Regularexpressions */,
				29EC33241CE06FD1005F0C13 /* Jastor */,
				29EC331C1CE02ADC005F0C13 /* popoverController */,
				29EAAEAB1CDCA28300C4DBA2 /* city.json */,
				2949BABF1CD305340049385A /* MMDrawerManager */,
				2962D07E1CD1E5DD0058829D /* UIView+Frame */,
				2962D07A1CD1E3CC0058829D /* NSarray+category */,
				2962D0761CD1CB860058829D /* NetworkRequest */,
				2928F8351CD09E500036D761 /* CustomButton */,
				2928F7E41CD087C20036D761 /* parentclass */,
				2928F7E31CD087B60036D761 /* pch */,
			);
			path = Tools;
			sourceTree = "<group>";
		};
		2928F7E31CD087B60036D761 /* pch */ = {
			isa = PBXGroup;
			children = (
				2928F7E21CD085F40036D761 /* PrefixHeader.pch */,
			);
			name = pch;
			sourceTree = "<group>";
		};
		2928F7E41CD087C20036D761 /* parentclass */ = {
			isa = PBXGroup;
			children = (
				2928F7E51CD087FE0036D761 /* BaseViewController.h */,
				2928F7E61CD087FE0036D761 /* BaseViewController.m */,
			);
			name = parentclass;
			sourceTree = "<group>";
		};
		2928F8251CD09BC10036D761 /* Tabbar */ = {
			isa = PBXGroup;
			children = (
				2928F82F1CD09E220036D761 /* Toolview */,
				2928F8391CD0A0CE0036D761 /* CustomTabbarController.h */,
				2928F83A1CD0A0CE0036D761 /* CustomTabbarController.m */,
			);
			path = Tabbar;
			sourceTree = "<group>";
		};
		2928F82F1CD09E220036D761 /* Toolview */ = {
			isa = PBXGroup;
			children = (
				2928F8301CD09E320036D761 /* Toolview.h */,
				2928F8311CD09E320036D761 /* Toolview.m */,
			);
			name = Toolview;
			sourceTree = "<group>";
		};
		2928F8351CD09E500036D761 /* CustomButton */ = {
			isa = PBXGroup;
			children = (
				2928F8361CD09E730036D761 /* CustomButton.h */,
				2928F8371CD09E730036D761 /* CustomButton.m */,
				2928F83C1CD0A9CD0036D761 /* qq.png */,
				2933934D1CD3158B000D997B /* instructionsLabe.h */,
				2933934E1CD3158B000D997B /* instructionsLabe.m */,
			);
			name = CustomButton;
			sourceTree = "<group>";
		};
		2928F83F1CD0AB830036D761 /* Shoppingcart */ = {
			isa = PBXGroup;
			children = (
				292A142E1CE81CF200EB4430 /* addressSelectedModel */,
				2908870D1CE5D900000B7097 /* shopCarmodel */,
				293393521CD3377E000D997B /* view */,
				293393501CD329EC000D997B /* controller */,
			);
			path = Shoppingcart;
			sourceTree = "<group>";
		};
		292A142E1CE81CF200EB4430 /* addressSelectedModel */ = {
			isa = PBXGroup;
			children = (
				292A142F1CE81D1D00EB4430 /* AddressModel.h */,
				292A14301CE81D1D00EB4430 /* AddressModel.m */,
			);
			name = addressSelectedModel;
			sourceTree = "<group>";
		};
		293393501CD329EC000D997B /* controller */ = {
			isa = PBXGroup;
			children = (
				2928F8401CD0ABAC0036D761 /* ShoppingViewController.h */,
				2928F8411CD0ABAC0036D761 /* ShoppingViewController.m */,
				299249351CDB3C6500786B1E /* GenerateOrdersViewController.h */,
				299249361CDB3C6500786B1E /* GenerateOrdersViewController.m */,
				299C7F571CE21FA800E7D7CB /* AddressViewController.h */,
				299C7F581CE21FA800E7D7CB /* AddressViewController.m */,
				299C7F591CE21FA800E7D7CB /* AddressViewController.xib */,
			);
			name = controller;
			sourceTree = "<group>";
		};
		293393521CD3377E000D997B /* view */ = {
			isa = PBXGroup;
			children = (
				299249411CDB517A00786B1E /* ModifytheShippingAddressView */,
				293393531CD3379E000D997B /* ShoppingTableViewCell.h */,
				293393541CD3379E000D997B /* ShoppingTableViewCell.m */,
				299249381CDB3E4500786B1E /* GenerateOrdersTableViewCell.h */,
				299249391CDB3E4500786B1E /* GenerateOrdersTableViewCell.m */,
				2992493B1CDB3E8800786B1E /* GenerateOrdersModifyTableViewCell.h */,
				2992493C1CDB3E8800786B1E /* GenerateOrdersModifyTableViewCell.m */,
			);
			name = view;
			sourceTree = "<group>";
		};
		2942F8A21CDD7ECD005B377E /* controller */ = {
			isa = PBXGroup;
			children = (
				0447085C1CD7C06B00555827 /* LoginViewController.h */,
				0447085D1CD7C06B00555827 /* LoginViewController.m */,
			);
			name = controller;
			sourceTree = "<group>";
		};
		2942F8A31CDD7EDB005B377E /* view */ = {
			isa = PBXGroup;
			children = (
				2942F8A41CDD80C2005B377E /* authenticateView.h */,
				2942F8A51CDD80C2005B377E /* authenticateView.m */,
				2942F8A71CDD80CE005B377E /* authenticateView.xib */,
			);
			name = view;
			sourceTree = "<group>";
		};
		2949BABA1CD2EF800049385A /* view */ = {
			isa = PBXGroup;
			children = (
				2949BABB1CD2EFA00049385A /* InformationTableViewCell.h */,
				2949BABC1CD2EFA00049385A /* InformationTableViewCell.m */,
			);
			name = view;
			sourceTree = "<group>";
		};
		2949BABE1CD2F1FE0049385A /* Rightcontroller */ = {
			isa = PBXGroup;
			children = (
				2962D06F1CD1A58B0058829D /* RightViewController.h */,
				2962D0701CD1A58B0058829D /* RightViewController.m */,
			);
			name = Rightcontroller;
			sourceTree = "<group>";
		};
		2949BABF1CD305340049385A /* MMDrawerManager */ = {
			isa = PBXGroup;
			children = (
				2949BAC01CD3055A0049385A /* MMExampleDrawerVisualStateManager.h */,
				2949BAC11CD3055A0049385A /* MMExampleDrawerVisualStateManager.m */,
			);
			name = MMDrawerManager;
			sourceTree = "<group>";
		};
		294CF0E91CEDCF250055F1D8 /* PromptinformationView */ = {
			isa = PBXGroup;
			children = (
				294CF0EA1CEDCF480055F1D8 /* PromptinformationView.h */,
				294CF0EB1CEDCF480055F1D8 /* PromptinformationView.m */,
				294CF0ED1CEDCF540055F1D8 /* PromptinformationView.xib */,
			);
			name = PromptinformationView;
			sourceTree = "<group>";
		};
		2962D06A1CD1A3FE0058829D /* MyClient */ = {
			isa = PBXGroup;
			children = (
				29BFBD951CE46D7900C238FB /* model */,
				299876281CD9962800C90D0A /* Orderdetails */,
				29A8D3951CD85A3C004D558F /* Clientdetails */,
				2949BABA1CD2EF800049385A /* view */,
				29807C661CD20F3100F111B8 /* Controller */,
			);
			name = MyClient;
			sourceTree = "<group>";
		};
		2962D06E1CD1A56B0058829D /* RIghtVC */ = {
			isa = PBXGroup;
			children = (
				29BB27691CD9DDF3009A0813 /* FollowHeartVC */,
				29BB276D1CD9DEA8009A0813 /* SceneLibraryVC */,
				29BB276E1CD9DEDA009A0813 /* ProductLibraryVC */,
				29BB27701CD9DF0B009A0813 /* CustomerManagementVC */,
				29BB27711CD9DF24009A0813 /* AboutVC */,
				2949BABE1CD2F1FE0049385A /* Rightcontroller */,
			);
			name = RIghtVC;
			sourceTree = "<group>";
		};
		2962D0761CD1CB860058829D /* NetworkRequest */ = {
			isa = PBXGroup;
			children = (
				2962D0771CD1CBC60058829D /* NetworkRequestClassManager.h */,
				2962D0781CD1CBC60058829D /* NetworkRequestClassManager.m */,
			);
			name = NetworkRequest;
			sourceTree = "<group>";
		};
		2962D07A1CD1E3CC0058829D /* NSarray+category */ = {
			isa = PBXGroup;
			children = (
				2962D07B1CD1E4490058829D /* NSArray+Objectwithindex.h */,
				2962D07C1CD1E4490058829D /* NSArray+Objectwithindex.m */,
			);
			name = "NSarray+category";
			sourceTree = "<group>";
		};
		2962D07E1CD1E5DD0058829D /* UIView+Frame */ = {
			isa = PBXGroup;
			children = (
				2962D07F1CD1E6010058829D /* UIView+Frame.h */,
				2962D0801CD1E6010058829D /* UIView+Frame.m */,
			);
			name = "UIView+Frame";
			sourceTree = "<group>";
		};
		29706D981CD082980003C412 = {
			isa = PBXGroup;
			children = (
				2928F7DD1CD085430036D761 /* Class */,
				2928F7DE1CD085430036D761 /* Tools */,
				29706DA31CD082990003C412 /* Lighting */,
				29706DA21CD082990003C412 /* Products */,
				99C9049F2B2C8B9E92F5DFCC /* Pods */,
				4333C4B25549A396FC0CD944 /* Frameworks */,
			);
			sourceTree = "<group>";
		};
		29706DA21CD082990003C412 /* Products */ = {
			isa = PBXGroup;
			children = (
				29706DA11CD082990003C412 /* Lighting.app */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		29706DA31CD082990003C412 /* Lighting */ = {
			isa = PBXGroup;
			children = (
				29706DA71CD082990003C412 /* AppDelegate.h */,
				29706DA81CD082990003C412 /* AppDelegate.m */,
				29706DAD1CD082990003C412 /* Main.storyboard */,
				29807C641CD20F0F00F111B8 /* StoryboardwithCYX.storyboard */,
				29706DB31CD082990003C412 /* Assets.xcassets */,
				29706DB51CD082990003C412 /* LaunchScreen.storyboard */,
				29706DB81CD082990003C412 /* Info.plist */,
				29706DB01CD082990003C412 /* Lighting.xcdatamodeld */,
				29807C611CD20C2A00F111B8 /* Images.xcassets */,
				29706DA41CD082990003C412 /* Supporting Files */,
			);
			path = Lighting;
			sourceTree = "<group>";
		};
		29706DA41CD082990003C412 /* Supporting Files */ = {
			isa = PBXGroup;
			children = (
				29706DA51CD082990003C412 /* main.m */,
			);
			name = "Supporting Files";
			sourceTree = "<group>";
		};
		29807C661CD20F3100F111B8 /* Controller */ = {
			isa = PBXGroup;
			children = (
				2962D06B1CD1A43A0058829D /* ClientViewController.h */,
				2962D06C1CD1A43A0058829D /* ClientViewController.m */,
			);
			name = Controller;
			sourceTree = "<group>";
		};
		29834EBC1CDF21D8001A484F /* screeningSecondView */ = {
			isa = PBXGroup;
			children = (
				29834EB21CDF1EAA001A484F /* screeningSecondView.h */,
				29834EB31CDF1EAA001A484F /* screeningSecondView.m */,
				29834EB51CDF1EB6001A484F /* screeningSecondView.xib */,
				29F726021CE1E96E0072FE0E /* ScreeningSecondCollectionReusableView.h */,
				29F726031CE1E96E0072FE0E /* ScreeningSecondCollectionReusableView.m */,
				29CCA43A1CF7ED6100BC19DD /* SelectedTableViewCell.h */,
				29CCA43B1CF7ED6100BC19DD /* SelectedTableViewCell.m */,
			);
			name = screeningSecondView;
			sourceTree = "<group>";
		};
		29834EBD1CDF21EF001A484F /* screeningFirstView */ = {
			isa = PBXGroup;
			children = (
				29834EB71CDF1FB3001A484F /* screeningFirstView.h */,
				29834EB81CDF1FB3001A484F /* screeningFirstView.m */,
				29834EBA1CDF1FBC001A484F /* screeningFirstView.xib */,
				29834EBE1CDF5E4E001A484F /* ScreeningFirstCollectionViewCell.h */,
				29834EBF1CDF5E4E001A484F /* ScreeningFirstCollectionViewCell.m */,
				29F725FF1CE1D05D0072FE0E /* ScreeningCollectionReusableView.h */,
				29F726001CE1D05D0072FE0E /* ScreeningCollectionReusableView.m */,
			);
			name = screeningFirstView;
			sourceTree = "<group>";
		};
		29834EC11CDF768C001A484F /* XXuserController */ = {
			isa = PBXGroup;
			children = (
				29834EC21CDF76C1001A484F /* UserViewController.h */,
				29834EC31CDF76C1001A484F /* UserViewController.m */,
				29834EC41CDF76C1001A484F /* UserViewController.xib */,
				29EC33171CE023D5005F0C13 /* ChangePasswordViewController.h */,
				29EC33181CE023D5005F0C13 /* ChangePasswordViewController.m */,
				29EC33191CE023D5005F0C13 /* ChangePasswordViewController.xib */,
			);
			name = XXuserController;
			sourceTree = "<group>";
		};
		2985AE9A1CE72F1500704C91 /* ZXPUnicode */ = {
			isa = PBXGroup;
			children = (
				2985AE9B1CE72F1500704C91 /* NSArray+ ZXPUnicode.m */,
				2985AE9C1CE72F1500704C91 /* NSArray+ZXPUnicode.h */,
				2985AE9D1CE72F1500704C91 /* NSDictionary+ZXPUnicode.h */,
				2985AE9E1CE72F1500704C91 /* NSDictionary+ZXPUnicode.m */,
				2985AE9F1CE72F1500704C91 /* NSObject+ZXPUnicode.h */,
				2985AEA01CE72F1500704C91 /* NSObject+ZXPUnicode.m */,
			);
			path = ZXPUnicode;
			sourceTree = "<group>";
		};
		299249411CDB517A00786B1E /* ModifytheShippingAddressView */ = {
			isa = PBXGroup;
			children = (
				299249421CDB51B100786B1E /* ModifyShippingAddressView.h */,
				299249431CDB51B100786B1E /* ModifyShippingAddressView.m */,
				299249451CDB51C800786B1E /* ModifyShippingAddressView.xib */,
			);
			name = ModifytheShippingAddressView;
			sourceTree = "<group>";
		};
		299876281CD9962800C90D0A /* Orderdetails */ = {
			isa = PBXGroup;
			children = (
				299876301CD997A300C90D0A /* view */,
				2998762F1CD9979300C90D0A /* controller */,
			);
			name = Orderdetails;
			sourceTree = "<group>";
		};
		2998762F1CD9979300C90D0A /* controller */ = {
			isa = PBXGroup;
			children = (
				299876401CD99E4000C90D0A /* OrderdetailsViewController.h */,
				299876411CD99E4000C90D0A /* OrderdetailsViewController.m */,
				29698D5E1CE2C11500D72CE7 /* SettlementViewController.h */,
				29698D5F1CE2C11500D72CE7 /* SettlementViewController.m */,
				29698D601CE2C11500D72CE7 /* SettlementViewController.xib */,
			);
			name = controller;
			sourceTree = "<group>";
		};
		299876301CD997A300C90D0A /* view */ = {
			isa = PBXGroup;
			children = (
				299876311CD997DF00C90D0A /* OrderInformationTableViewCell.h */,
				299876321CD997DF00C90D0A /* OrderInformationTableViewCell.m */,
				299876341CD997F100C90D0A /* PersonInformationTableViewCell.h */,
				299876351CD997F100C90D0A /* PersonInformationTableViewCell.m */,
				299876371CD9981800C90D0A /* GoodsInformationTableViewCell.h */,
				299876381CD9981800C90D0A /* GoodsInformationTableViewCell.m */,
				2998763A1CD9983A00C90D0A /* CommodityListTableViewCell.h */,
				2998763B1CD9983A00C90D0A /* CommodityListTableViewCell.m */,
				29BB27661CD9D38E009A0813 /* AllpriceTableViewCell.h */,
				29BB27671CD9D38E009A0813 /* AllpriceTableViewCell.m */,
				29E384BB1CE9933300888199 /* AdditionalTableViewCell.h */,
				29E384BC1CE9933300888199 /* AdditionalTableViewCell.m */,
				29E384BD1CE9933300888199 /* AdditionalTableViewCell.xib */,
			);
			name = view;
			sourceTree = "<group>";
		};
		29A8D3951CD85A3C004D558F /* Clientdetails */ = {
			isa = PBXGroup;
			children = (
				2906B5D41CD89220000849B4 /* view */,
				2906B5D31CD8920F000849B4 /* Controller */,
			);
			name = Clientdetails;
			sourceTree = "<group>";
		};
		29A9DCAA1CEB63BD00A7567A /* PreviewPDF */ = {
			isa = PBXGroup;
			children = (
				29A9DCAB1CEB643C00A7567A /* PDFViewController.h */,
				29A9DCAC1CEB643C00A7567A /* PDFViewController.m */,
			);
			name = PreviewPDF;
			sourceTree = "<group>";
		};
		29BB27691CD9DDF3009A0813 /* FollowHeartVC */ = {
			isa = PBXGroup;
			children = (
				041636BF1CF39568008CE961 /* category */,
				04A5203E1CE93604001D4520 /* customCell */,
				04A5203D1CE90ADB001D4520 /* controller */,
				060D39771CE45CFE0082AECD /* tools */,
				0470D60E1CE292EF00647F0F /* subView */,
				04A14A221CE0FB8400DAD5F3 /* views */,
				29BB276A1CD9DE74009A0813 /* FollowHeartViewController.h */,
				29BB276B1CD9DE74009A0813 /* FollowHeartViewController.m */,
			);
			name = FollowHeartVC;
			sourceTree = "<group>";
		};
		29BB276D1CD9DEA8009A0813 /* SceneLibraryVC */ = {
			isa = PBXGroup;
			children = (
				29EAAE921CDC412C00C4DBA2 /* view */,
				29EAAE911CDC412100C4DBA2 /* controller */,
			);
			name = SceneLibraryVC;
			sourceTree = "<group>";
		};
		29BB276E1CD9DEDA009A0813 /* ProductLibraryVC */ = {
			isa = PBXGroup;
			children = (
				29C584E61CDA247500C6F677 /* view */,
				29C584E51CDA246900C6F677 /* controller */,
			);
			name = ProductLibraryVC;
			sourceTree = "<group>";
		};
		29BB27701CD9DF0B009A0813 /* CustomerManagementVC */ = {
			isa = PBXGroup;
			children = (
				29EAAE9D1CDC79C500C4DBA2 /* CustomerOrder */,
				29EAAE991CDC74A700C4DBA2 /* AllCustomer */,
				29EAAE981CDC749E00C4DBA2 /* controller */,
			);
			name = CustomerManagementVC;
			sourceTree = "<group>";
		};
		29BB27711CD9DF24009A0813 /* AboutVC */ = {
			isa = PBXGroup;
			children = (
				29BB277E1CD9DFD7009A0813 /* AboutViewController.h */,
				29BB277F1CD9DFD7009A0813 /* AboutViewController.m */,
			);
			name = AboutVC;
			sourceTree = "<group>";
		};
		29BFBD841CE4288A00C238FB /* Customercenter */ = {
			isa = PBXGroup;
			children = (
				29BFBD851CE428B200C238FB /* Customermanager.h */,
				29BFBD861CE428B200C238FB /* Customermanager.m */,
			);
			name = Customercenter;
			sourceTree = "<group>";
		};
		29BFBD951CE46D7900C238FB /* model */ = {
			isa = PBXGroup;
			children = (
				29BFBD961CE46FDA00C238FB /* MyclientEntityModel.h */,
				29BFBD971CE46FDA00C238FB /* MyclientEntityModel.m */,
			);
			name = model;
			sourceTree = "<group>";
		};
		29C584E51CDA246900C6F677 /* controller */ = {
			isa = PBXGroup;
			children = (
				29BB27751CD9DFBA009A0813 /* ProductLibraryViewController.h */,
				29BB27761CD9DFBA009A0813 /* ProductLibraryViewController.m */,
				29C584EB1CDA429500C6F677 /* ProductDetailsViewController.h */,
				29C584EC1CDA429500C6F677 /* ProductDetailsViewController.m */,
			);
			name = controller;
			sourceTree = "<group>";
		};
		29C584E61CDA247500C6F677 /* view */ = {
			isa = PBXGroup;
			children = (
				29C584E71CDA249200C6F677 /* ProductCollectionViewCell.h */,
				29C584E81CDA249200C6F677 /* ProductCollectionViewCell.m */,
				29A938201CDADE4700F21E54 /* ProductDetailsTableViewCell.h */,
				29A938211CDADE4700F21E54 /* ProductDetailsTableViewCell.m */,
				29A938231CDAE31200F21E54 /* ProductDetailsHeaderView.h */,
				29A938241CDAE31200F21E54 /* ProductDetailsHeaderView.m */,
				29A938261CDAE31B00F21E54 /* ProductDetailsHeaderView.xib */,
				29D260F91CEECDFF00A9787D /* goodsDetailsTableViewCell.h */,
				29D260FA1CEECDFF00A9787D /* goodsDetailsTableViewCell.m */,
				29D260FC1CEED53400A9787D /* goodsDetailsTableViewCell.xib */,
				2992493E1CDB4D1D00786B1E /* AddaddressViewController.h */,
				2992493F1CDB4D1D00786B1E /* AddaddressViewController.m */,
				29360C2D1CDDC47E002A5D89 /* ScreeningView.h */,
				29360C2E1CDDC47E002A5D89 /* ScreeningView.m */,
				29360C301CDDC487002A5D89 /* ScreeningView.xib */,
				29BFBD8D1CE44BA900C238FB /* goodsDetailsSectionview.h */,
				29BFBD8E1CE44BA900C238FB /* goodsDetailsSectionview.m */,
				29BFBD901CE44BC200C238FB /* goodsDetailsSectionview.xib */,
				29834EBD1CDF21EF001A484F /* screeningFirstView */,
				29834EBC1CDF21D8001A484F /* screeningSecondView */,
			);
			name = view;
			sourceTree = "<group>";
		};
		29D260EF1CEEAA5000A9787D /* FullScreen */ = {
			isa = PBXGroup;
			children = (
				29D260F31CEEAE2800A9787D /* FullScreenViewController.h */,
				29D260F41CEEAE2800A9787D /* FullScreenViewController.m */,
				29D260F61CEEAF2D00A9787D /* FullScreenViewCell.h */,
				29D260F71CEEAF2D00A9787D /* FullScreenViewCell.m */,
			);
			name = FullScreen;
			sourceTree = "<group>";
		};
		29E28CE51CE0B90600812A55 /* Regularexpressions */ = {
			isa = PBXGroup;
			children = (
				29E28CE61CE0B91B00812A55 /* HENLENSONG.h */,
				29E28CE71CE0B91B00812A55 /* HENLENSONG.m */,
			);
			name = Regularexpressions;
			sourceTree = "<group>";
		};
		29E384C01CE9A68F00888199 /* SearchController */ = {
			isa = PBXGroup;
			children = (
				29E384C51CE9A89F00888199 /* view */,
				29E384C41CE9A89500888199 /* controller */,
			);
			name = SearchController;
			sourceTree = "<group>";
		};
		29E384C41CE9A89500888199 /* controller */ = {
			isa = PBXGroup;
			children = (
				29E384CF1CE9C65700888199 /* SearchViewController.h */,
				29E384D01CE9C65700888199 /* SearchViewController.m */,
			);
			name = controller;
			sourceTree = "<group>";
		};
		29E384C51CE9A89F00888199 /* view */ = {
			isa = PBXGroup;
			children = (
				29E384C61CE9A8BF00888199 /* SearchCollectionViewCell.h */,
				29E384C71CE9A8BF00888199 /* SearchCollectionViewCell.m */,
				29E384C91CE9B0BB00888199 /* HotCollectionViewCell.h */,
				29E384CA1CE9B0BB00888199 /* HotCollectionViewCell.m */,
			);
			name = view;
			sourceTree = "<group>";
		};
		29EAAE911CDC412100C4DBA2 /* controller */ = {
			isa = PBXGroup;
			children = (
				29BB27721CD9DFAC009A0813 /* SceneLibraryViewController.h */,
				29BB27731CD9DFAC009A0813 /* SceneLibraryViewController.m */,
			);
			name = controller;
			sourceTree = "<group>";
		};
		29EAAE921CDC412C00C4DBA2 /* view */ = {
			isa = PBXGroup;
			children = (
				29EAAE931CDC414C00C4DBA2 /* SeceneLibraryCollectionViewCell.h */,
				29EAAE941CDC414C00C4DBA2 /* SeceneLibraryCollectionViewCell.m */,
				290887041CE58BC2000B7097 /* screeningButton.h */,
				290887051CE58BC2000B7097 /* screeningButton.m */,
			);
			name = view;
			sourceTree = "<group>";
		};
		29EAAE981CDC749E00C4DBA2 /* controller */ = {
			isa = PBXGroup;
			children = (
				29BB277B1CD9DFCB009A0813 /* CustomerManagementViewController.h */,
				29BB277C1CD9DFCB009A0813 /* CustomerManagementViewController.m */,
			);
			name = controller;
			sourceTree = "<group>";
		};
		29EAAE991CDC74A700C4DBA2 /* AllCustomer */ = {
			isa = PBXGroup;
			children = (
				290887071CE5A2BE000B7097 /* dateSelectedVC */,
				29EAAEA71CDC7FCF00C4DBA2 /* view */,
				29EAAEA61CDC7FC500C4DBA2 /* controller */,
			);
			name = AllCustomer;
			sourceTree = "<group>";
		};
		29EAAE9D1CDC79C500C4DBA2 /* CustomerOrder */ = {
			isa = PBXGroup;
			children = (
				29EAAEA21CDC7F4500C4DBA2 /* view */,
				29EAAEA11CDC7F3900C4DBA2 /* controller */,
			);
			name = CustomerOrder;
			sourceTree = "<group>";
		};
		29EAAEA11CDC7F3900C4DBA2 /* controller */ = {
			isa = PBXGroup;
			children = (
				29EAAE9E1CDC79DC00C4DBA2 /* CustomerOrderViewController.h */,
				29EAAE9F1CDC79DC00C4DBA2 /* CustomerOrderViewController.m */,
			);
			name = controller;
			sourceTree = "<group>";
		};
		29EAAEA21CDC7F4500C4DBA2 /* view */ = {
			isa = PBXGroup;
			children = (
				29EAAEA31CDC7F7000C4DBA2 /* CustomerOrderTableViewCell.h */,
				29EAAEA41CDC7F7000C4DBA2 /* CustomerOrderTableViewCell.m */,
			);
			name = view;
			sourceTree = "<group>";
		};
		29EAAEA61CDC7FC500C4DBA2 /* controller */ = {
			isa = PBXGroup;
			children = (
				29EAAE9A1CDC74CA00C4DBA2 /* AllCustomerViewController.h */,
				29EAAE9B1CDC74CA00C4DBA2 /* AllCustomerViewController.m */,
			);
			name = controller;
			sourceTree = "<group>";
		};
		29EAAEA71CDC7FCF00C4DBA2 /* view */ = {
			isa = PBXGroup;
			children = (
				29EAAEA81CDC7FE800C4DBA2 /* AllCutomerTableViewCell.h */,
				29EAAEA91CDC7FE800C4DBA2 /* AllCutomerTableViewCell.m */,
			);
			name = view;
			sourceTree = "<group>";
		};
		29EC331C1CE02ADC005F0C13 /* popoverController */ = {
			isa = PBXGroup;
			children = (
				29EC331D1CE02AFA005F0C13 /* PopoverViewController.h */,
				29EC331E1CE02AFA005F0C13 /* PopoverViewController.m */,
			);
			name = popoverController;
			sourceTree = "<group>";
		};
		29EC33241CE06FD1005F0C13 /* Jastor */ = {
			isa = PBXGroup;
			children = (
				29F725FC1CE1928F0072FE0E /* opple_objc_json_client.h */,
				29F725FD1CE1928F0072FE0E /* opple_objc_json_client.m */,
			);
			name = Jastor;
			sourceTree = "<group>";
		};
		29F14B931CF6A4B50005D3E5 /* Scanner */ = {
			isa = PBXGroup;
			children = (
				29F14BA21CF6B60D0005D3E5 /* QRUtil.h */,
				29F14BA31CF6B60D0005D3E5 /* QRUtil.m */,
				29F14BA41CF6B60D0005D3E5 /* QRView.h */,
				29F14BA51CF6B60D0005D3E5 /* QRView.m */,
				29F14BA61CF6B60D0005D3E5 /* QRViewController.h */,
				29F14BA71CF6B60D0005D3E5 /* QRViewController.m */,
			);
			name = Scanner;
			sourceTree = "<group>";
		};
		29F725F81CE17AE40072FE0E /* Shopperscenter */ = {
			isa = PBXGroup;
			children = (
				29F725F91CE17B0D0072FE0E /* Shoppersmanager.h */,
				29F725FA1CE17B0D0072FE0E /* Shoppersmanager.m */,
			);
			name = Shopperscenter;
			sourceTree = "<group>";
		};
		4333C4B25549A396FC0CD944 /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				041843E61CF773A00081B694 /* libz.tbd */,
				041843E41CF773990081B694 /* libstdc++.tbd */,
				041843E21CF7737E0081B694 /* libsqlite3.tbd */,
				041843E01CF773710081B694 /* CoreGraphics.framework */,
				041843DD1CF773530081B694 /* libiconv.tbd */,
				041843DB1CF773490081B694 /* Security.framework */,
				04F9EE211CF27B1D00BD729F /* CoreTelephony.framework */,
				04F9EE1F1CF27AF900BD729F /* SystemConfiguration.framework */,
				2DB768A1F2B4AFFF8B89F1D1 /* libPods.a */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
		99C9049F2B2C8B9E92F5DFCC /* Pods */ = {
			isa = PBXGroup;
			children = (
				D537F80EFAB9298B3ADA241A /* Pods.debug.xcconfig */,
				CA5ED00287EA4EE622158E3C /* Pods.release.xcconfig */,
			);
			name = Pods;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
		29706DA01CD082980003C412 /* Lighting */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 29706DBB1CD082990003C412 /* Build configuration list for PBXNativeTarget "Lighting" */;
			buildPhases = (
				675779B6521946A2B132AAD2 /* Check Pods Manifest.lock */,
				29706D9D1CD082980003C412 /* Sources */,
				29706D9E1CD082980003C412 /* Frameworks */,
				29706D9F1CD082980003C412 /* Resources */,
				C8FDABE3FCB7CA558CB818DE /* Embed Pods Frameworks */,
				218E27B34ECAAB613035E724 /* Copy Pods Resources */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = Lighting;
			productName = Lighting;
			productReference = 29706DA11CD082990003C412 /* Lighting.app */;
			productType = "com.apple.product-type.application";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		29706D991CD082980003C412 /* Project object */ = {
			isa = PBXProject;
			attributes = {
				LastUpgradeCheck = 0730;
				ORGANIZATIONNAME = "上海勾芒科技有限公司";
				TargetAttributes = {
					29706DA01CD082980003C412 = {
						CreatedOnToolsVersion = 7.3;
						DevelopmentTeam = W54V2VB863;
					};
				};
			};
			buildConfigurationList = 29706D9C1CD082980003C412 /* Build configuration list for PBXProject "Lighting" */;
			compatibilityVersion = "Xcode 3.2";
			developmentRegion = English;
			hasScannedForEncodings = 0;
			knownRegions = (
				en,
				Base,
				"zh-Hans",
			);
			mainGroup = 29706D981CD082980003C412;
			productRefGroup = 29706DA21CD082990003C412 /* Products */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				29706DA01CD082980003C412 /* Lighting */,
			);
		};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
		29706D9F1CD082980003C412 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				29A938271CDAE31B00F21E54 /* ProductDetailsHeaderView.xib in Resources */,
				2908870C1CE5A308000B7097 /* DateSelectedViewController.xib in Resources */,
				2942F8A81CDD80CE005B377E /* authenticateView.xib in Resources */,
				29E384BF1CE9933300888199 /* AdditionalTableViewCell.xib in Resources */,
				29807C651CD20F0F00F111B8 /* StoryboardwithCYX.storyboard in Resources */,
				29EAAE901CDC3E9700C4DBA2 /* BillingInfoView.xib in Resources */,
				29706DB71CD082990003C412 /* LaunchScreen.storyboard in Resources */,
				29698D621CE2C11500D72CE7 /* SettlementViewController.xib in Resources */,
				29BFBD911CE44BC200C238FB /* goodsDetailsSectionview.xib in Resources */,
				29D260FD1CEED53400A9787D /* goodsDetailsTableViewCell.xib in Resources */,
				29807C621CD20C2A00F111B8 /* Images.xcassets in Resources */,
				29834EB61CDF1EB6001A484F /* screeningSecondView.xib in Resources */,
				299249461CDB51C800786B1E /* ModifyShippingAddressView.xib in Resources */,
				294CF0EE1CEDCF540055F1D8 /* PromptinformationView.xib in Resources */,
				29834EBB1CDF1FBC001A484F /* screeningFirstView.xib in Resources */,
				29EAAEAC1CDCA28300C4DBA2 /* city.json in Resources */,
				2928F83D1CD0A9CD0036D761 /* qq.png in Resources */,
				29834EC61CDF76C1001A484F /* UserViewController.xib in Resources */,
				299C7F5B1CE21FA800E7D7CB /* AddressViewController.xib in Resources */,
				29706DB41CD082990003C412 /* Assets.xcassets in Resources */,
				29706DAF1CD082990003C412 /* Main.storyboard in Resources */,
				29EC331B1CE023D5005F0C13 /* ChangePasswordViewController.xib in Resources */,
				29360C311CDDC487002A5D89 /* ScreeningView.xib in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXShellScriptBuildPhase section */
		218E27B34ECAAB613035E724 /* Copy Pods Resources */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			name = "Copy Pods Resources";
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods/Pods-resources.sh\"\n";
			showEnvVarsInLog = 0;
		};
		675779B6521946A2B132AAD2 /* Check Pods Manifest.lock */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			name = "Check Pods Manifest.lock";
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n    cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n    exit 1\nfi\n";
			showEnvVarsInLog = 0;
		};
		C8FDABE3FCB7CA558CB818DE /* Embed Pods Frameworks */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			name = "Embed Pods Frameworks";
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods/Pods-frameworks.sh\"\n";
			showEnvVarsInLog = 0;
		};
/* End PBXShellScriptBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		29706D9D1CD082980003C412 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				29BFBD981CE46FDA00C238FB /* MyclientEntityModel.m in Sources */,
				29F726041CE1E96E0072FE0E /* ScreeningSecondCollectionReusableView.m in Sources */,
				2985AEA11CE72F1500704C91 /* NSArray+ ZXPUnicode.m in Sources */,
				04A14A281CE0FC5600DAD5F3 /* RightSubView.m in Sources */,
				29EC331F1CE02AFA005F0C13 /* PopoverViewController.m in Sources */,
				29BFBD871CE428B200C238FB /* Customermanager.m in Sources */,
				299C7F5A1CE21FA800E7D7CB /* AddressViewController.m in Sources */,
				29BB276C1CD9DE74009A0813 /* FollowHeartViewController.m in Sources */,
				041636C51CF3986F008CE961 /* CustomUIImagePickerController.m in Sources */,
				2928F8381CD09E730036D761 /* CustomButton.m in Sources */,
				0470D6111CE2936000647F0F /* SeceneLibraryView.m in Sources */,
				293393551CD3379E000D997B /* ShoppingTableViewCell.m in Sources */,
				29D260F51CEEAE2800A9787D /* FullScreenViewController.m in Sources */,
				2985AEA31CE72F1500704C91 /* NSObject+ZXPUnicode.m in Sources */,
				29EAAE951CDC414C00C4DBA2 /* SeceneLibraryCollectionViewCell.m in Sources */,
				060D397C1CE45CFE0082AECD /* ImageCropperView.m in Sources */,
				2949BAC21CD3055A0049385A /* MMExampleDrawerVisualStateManager.m in Sources */,
				29D261001CEEF16D00A9787D /* MjRefreshHeaderCustom.m in Sources */,
				292A14311CE81D1D00EB4430 /* AddressModel.m in Sources */,
				29A938221CDADE4700F21E54 /* ProductDetailsTableViewCell.m in Sources */,
				29E384BE1CE9933300888199 /* AdditionalTableViewCell.m in Sources */,
				29E384C81CE9A8BF00888199 /* SearchCollectionViewCell.m in Sources */,
				2992493D1CDB3E8900786B1E /* GenerateOrdersModifyTableViewCell.m in Sources */,
				29BB27741CD9DFAC009A0813 /* SceneLibraryViewController.m in Sources */,
				29E384D11CE9C65700888199 /* SearchViewController.m in Sources */,
				2928F8421CD0ABAC0036D761 /* ShoppingViewController.m in Sources */,
				29698D611CE2C11500D72CE7 /* SettlementViewController.m in Sources */,
				299876331CD997DF00C90D0A /* OrderInformationTableViewCell.m in Sources */,
				2928F7E71CD087FE0036D761 /* BaseViewController.m in Sources */,
				2908870B1CE5A308000B7097 /* DateSelectedViewController.m in Sources */,
				299876271CD9837C00C90D0A /* OrderTableViewCell.m in Sources */,
				2998763C1CD9983A00C90D0A /* CommodityListTableViewCell.m in Sources */,
				2962D0791CD1CBC60058829D /* NetworkRequestClassManager.m in Sources */,
				29F725FB1CE17B0D0072FE0E /* Shoppersmanager.m in Sources */,
				29F14BA91CF6B60D0005D3E5 /* QRUtil.m in Sources */,
				29EAAEA01CDC79DC00C4DBA2 /* CustomerOrderViewController.m in Sources */,
				04F9EE1E1CF25F7300BD729F /* ShareViewController.m in Sources */,
				2928F8321CD09E320036D761 /* Toolview.m in Sources */,
				2942F8A61CDD80C2005B377E /* authenticateView.m in Sources */,
				041636C21CF395B7008CE961 /* NSObject+UIImagePickerController.m in Sources */,
				044CD6F11CEB81350004A715 /* ProductCollectionPictureCell.m in Sources */,
				29BFBD8F1CE44BA900C238FB /* goodsDetailsSectionview.m in Sources */,
				29CCA43C1CF7ED6100BC19DD /* SelectedTableViewCell.m in Sources */,
				294CF0EC1CEDCF480055F1D8 /* PromptinformationView.m in Sources */,
				290887131CE5DF16000B7097 /* ShopcarModel.m in Sources */,
				04FCB1A41CF60A8F0056093B /* DeviceDirectionManager.m in Sources */,
				29BB27681CD9D38E009A0813 /* AllpriceTableViewCell.m in Sources */,
				29BB27771CD9DFBA009A0813 /* ProductLibraryViewController.m in Sources */,
				04F9EE181CF2235000BD729F /* ShoppingView.m in Sources */,
				29EAAEAA1CDC7FE800C4DBA2 /* AllCutomerTableViewCell.m in Sources */,
				04F9EE1B1CF22B5900BD729F /* ShoppingCell.m in Sources */,
				29360C2F1CDDC47E002A5D89 /* ScreeningView.m in Sources */,
				2985AEA21CE72F1500704C91 /* NSDictionary+ZXPUnicode.m in Sources */,
				29EAAE9C1CDC74CA00C4DBA2 /* AllCustomerViewController.m in Sources */,
				04A14A2B1CE0FC7F00DAD5F3 /* FootSubView.m in Sources */,
				2933934F1CD3158B000D997B /* instructionsLabe.m in Sources */,
				29F726011CE1D05D0072FE0E /* ScreeningCollectionReusableView.m in Sources */,
				041636BE1CF377F4008CE961 /* CameraView.m in Sources */,
				29C584E91CDA249300C6F677 /* ProductCollectionViewCell.m in Sources */,
				299876361CD997F100C90D0A /* PersonInformationTableViewCell.m in Sources */,
				2962D0711CD1A58B0058829D /* RightViewController.m in Sources */,
				29EAAEA51CDC7F7000C4DBA2 /* CustomerOrderTableViewCell.m in Sources */,
				29706DA91CD082990003C412 /* AppDelegate.m in Sources */,
				29834EB41CDF1EAA001A484F /* screeningSecondView.m in Sources */,
				29706DA61CD082990003C412 /* main.m in Sources */,
				044CD6EE1CEB771C0004A715 /* SeceneCollectionPictureCell.m in Sources */,
				29A938251CDAE31200F21E54 /* ProductDetailsHeaderView.m in Sources */,
				299876421CD99E4000C90D0A /* OrderdetailsViewController.m in Sources */,
				29EC331A1CE023D5005F0C13 /* ChangePasswordViewController.m in Sources */,
				29D260FB1CEECDFF00A9787D /* goodsDetailsTableViewCell.m in Sources */,
				2962D07D1CD1E4490058829D /* NSArray+Objectwithindex.m in Sources */,
				04A14A251CE0FC3A00DAD5F3 /* LeftSubView.m in Sources */,
				299876391CD9981800C90D0A /* GoodsInformationTableViewCell.m in Sources */,
				2949BABD1CD2EFA00049385A /* InformationTableViewCell.m in Sources */,
				29706DB21CD082990003C412 /* Lighting.xcdatamodeld in Sources */,
				29E384CB1CE9B0BB00888199 /* HotCollectionViewCell.m in Sources */,
				29834EB91CDF1FB3001A484F /* screeningFirstView.m in Sources */,
				299249401CDB4D1D00786B1E /* AddaddressViewController.m in Sources */,
				060D397D1CE45CFE0082AECD /* UIImage+Rotation.m in Sources */,
				299249371CDB3C6500786B1E /* GenerateOrdersViewController.m in Sources */,
				2992493A1CDB3E4500786B1E /* GenerateOrdersTableViewCell.m in Sources */,
				2962D0811CD1E6010058829D /* UIView+Frame.m in Sources */,
				29C584ED1CDA429500C6F677 /* ProductDetailsViewController.m in Sources */,
				0447085E1CD7C06B00555827 /* LoginViewController.m in Sources */,
				2928F83B1CD0A0CE0036D761 /* CustomTabbarController.m in Sources */,
				29A9DCAE1CEB643C00A7567A /* PDFViewController.m in Sources */,
				29EAAE8E1CDC3E8E00C4DBA2 /* BillingInfoView.m in Sources */,
				0470D6141CE2938000647F0F /* ProductLibraryView.m in Sources */,
				29F14BAB1CF6B60D0005D3E5 /* QRViewController.m in Sources */,
				29D260F81CEEAF2D00A9787D /* FullScreenViewCell.m in Sources */,
				290887061CE58BC2000B7097 /* screeningButton.m in Sources */,
				044708611CD7C1E800555827 /* MainSetViewController.m in Sources */,
				29E28CE81CE0B91B00812A55 /* HENLENSONG.m in Sources */,
				299249441CDB51B100786B1E /* ModifyShippingAddressView.m in Sources */,
				2906B5D71CD89246000849B4 /* ClientDetailsTableViewCell.m in Sources */,
				29BB27801CD9DFD7009A0813 /* AboutViewController.m in Sources */,
				29F14BAA1CF6B60D0005D3E5 /* QRView.m in Sources */,
				29F725FE1CE1928F0072FE0E /* opple_objc_json_client.m in Sources */,
				29834EC01CDF5E4E001A484F /* ScreeningFirstCollectionViewCell.m in Sources */,
				29834EC51CDF76C1001A484F /* UserViewController.m in Sources */,
				29BB277D1CD9DFCB009A0813 /* CustomerManagementViewController.m in Sources */,
				2962D06D1CD1A43A0058829D /* ClientViewController.m in Sources */,
				29A8D3981CD85A58004D558F /* ClientdetailsViewController.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXVariantGroup section */
		29706DAD1CD082990003C412 /* Main.storyboard */ = {
			isa = PBXVariantGroup;
			children = (
				29706DAE1CD082990003C412 /* Base */,
			);
			name = Main.storyboard;
			sourceTree = "<group>";
		};
		29706DB51CD082990003C412 /* LaunchScreen.storyboard */ = {
			isa = PBXVariantGroup;
			children = (
				29706DB61CD082990003C412 /* Base */,
			);
			name = LaunchScreen.storyboard;
			sourceTree = "<group>";
		};
/* End PBXVariantGroup section */

/* Begin XCBuildConfiguration section */
		29706DB91CD082990003C412 /* 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_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				CODE_SIGN_IDENTITY = "iPhone Developer: 超级 朱 (SXSQ6S5D55)";
				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 = 9.3;
				MTL_ENABLE_DEBUG_INFO = YES;
				ONLY_ACTIVE_ARCH = YES;
				PROVISIONING_PROFILE = "d25ba75f-c4da-4bef-b966-3a998dcbffbe";
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = 2;
			};
			name = Debug;
		};
		29706DBA1CD082990003C412 /* 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_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				CODE_SIGN_IDENTITY = "iPhone Developer: 超级 朱 (SXSQ6S5D55)";
				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 = 9.3;
				MTL_ENABLE_DEBUG_INFO = NO;
				PROVISIONING_PROFILE = "d25ba75f-c4da-4bef-b966-3a998dcbffbe";
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = 2;
				VALIDATE_PRODUCT = YES;
			};
			name = Release;
		};
		29706DBC1CD082990003C412 /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = D537F80EFAB9298B3ADA241A /* Pods.debug.xcconfig */;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Brand Assets";
				CLANG_ENABLE_OBJC_WEAK = YES;
				CODE_SIGN_IDENTITY = "iPhone Developer: 超级 朱 (SXSQ6S5D55)";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer: 超级 朱 (SXSQ6S5D55)";
				COMPRESS_PNG_FILES = NO;
				ENABLE_BITCODE = NO;
				FRAMEWORK_SEARCH_PATHS = "$(inherited)";
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "$(SRCROOT)/Tools/PrefixHeader.pch";
				INFOPLIST_FILE = Lighting/Info.plist;
				IPHONEOS_DEPLOYMENT_TARGET = 9.0;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
				LIBRARY_SEARCH_PATHS = "$(inherited)";
				ONLY_ACTIVE_ARCH = YES;
				OTHER_LDFLAGS = (
					"$(inherited)",
					"-ObjC",
					"-l\"AFNetworking\"",
					"-l\"IQKeyboardManager\"",
					"-l\"MBProgressHUD\"",
					"-l\"MJExtension\"",
					"-l\"MJRefresh\"",
					"-l\"MMDrawerController\"",
					"-l\"Masonry\"",
					"-l\"SDWebImage\"",
					"-framework",
					"\"CoreGraphics\"",
					"-framework",
					"\"Foundation\"",
					"-framework",
					"\"ImageIO\"",
					"-framework",
					"\"MobileCoreServices\"",
					"-framework",
					"\"QuartzCore\"",
					"-framework",
					"\"Security\"",
					"-framework",
					"\"SystemConfiguration\"",
					"-framework",
					"\"UIKit\"",
					"$(inherited)",
				);
				PRODUCT_BUNDLE_IDENTIFIER = com.gomore.opple;
				PRODUCT_NAME = "$(TARGET_NAME)";
				PROVISIONING_PROFILE = "d25ba75f-c4da-4bef-b966-3a998dcbffbe";
				STRIP_PNG_TEXT = NO;
				USER_HEADER_SEARCH_PATHS = "$(PODS_ROOT)/**";
			};
			name = Debug;
		};
		29706DBD1CD082990003C412 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = CA5ED00287EA4EE622158E3C /* Pods.release.xcconfig */;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Brand Assets";
				CLANG_ENABLE_OBJC_WEAK = YES;
				CODE_SIGN_IDENTITY = "iPhone Developer: 超级 朱 (SXSQ6S5D55)";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer: 超级 朱 (SXSQ6S5D55)";
				COMPRESS_PNG_FILES = NO;
				ENABLE_BITCODE = NO;
				FRAMEWORK_SEARCH_PATHS = "$(inherited)";
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "$(SRCROOT)/Tools/PrefixHeader.pch";
				INFOPLIST_FILE = Lighting/Info.plist;
				IPHONEOS_DEPLOYMENT_TARGET = 9.0;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
				LIBRARY_SEARCH_PATHS = "$(inherited)";
				ONLY_ACTIVE_ARCH = NO;
				OTHER_LDFLAGS = (
					"$(inherited)",
					"-ObjC",
					"-l\"AFNetworking\"",
					"-l\"IQKeyboardManager\"",
					"-l\"MBProgressHUD\"",
					"-l\"MJExtension\"",
					"-l\"MJRefresh\"",
					"-l\"MMDrawerController\"",
					"-l\"Masonry\"",
					"-l\"SDWebImage\"",
					"-framework",
					"\"CoreGraphics\"",
					"-framework",
					"\"Foundation\"",
					"-framework",
					"\"ImageIO\"",
					"-framework",
					"\"MobileCoreServices\"",
					"-framework",
					"\"QuartzCore\"",
					"-framework",
					"\"Security\"",
					"-framework",
					"\"SystemConfiguration\"",
					"-framework",
					"\"UIKit\"",
					"$(inherited)",
				);
				PRODUCT_BUNDLE_IDENTIFIER = com.gomore.opple;
				PRODUCT_NAME = "$(TARGET_NAME)";
				PROVISIONING_PROFILE = "d25ba75f-c4da-4bef-b966-3a998dcbffbe";
				STRIP_PNG_TEXT = NO;
				USER_HEADER_SEARCH_PATHS = "$(PODS_ROOT)/**";
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		29706D9C1CD082980003C412 /* Build configuration list for PBXProject "Lighting" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				29706DB91CD082990003C412 /* Debug */,
				29706DBA1CD082990003C412 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		29706DBB1CD082990003C412 /* Build configuration list for PBXNativeTarget "Lighting" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				29706DBC1CD082990003C412 /* Debug */,
				29706DBD1CD082990003C412 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */

/* Begin XCVersionGroup section */
		29706DB01CD082990003C412 /* Lighting.xcdatamodeld */ = {
			isa = XCVersionGroup;
			children = (
				29706DB11CD082990003C412 /* Lighting.xcdatamodel */,
			);
			currentVersion = 29706DB11CD082990003C412 /* Lighting.xcdatamodel */;
			path = Lighting.xcdatamodeld;
			sourceTree = "<group>";
			versionGroupType = wrapper.xcdatamodel;
		};
/* End XCVersionGroup section */
	};
	rootObject = 29706D991CD082980003C412 /* Project object */;
}