project.pbxproj 154 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 46;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 3C0F4E9423BAE74F000A2FE7 /* CachedTileOverlay.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C0F4E9323BAE74F000A2FE7 /* CachedTileOverlay.m */; };
  10. 3C0F4E9723BAF594000A2FE7 /* FileCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C0F4E9623BAF594000A2FE7 /* FileCache.m */; };
  11. 3C1DEC3D239F6C42006F7E2A /* MKMapView+ZoomLevel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C1DEC3B239F6C42006F7E2A /* MKMapView+ZoomLevel.m */; };
  12. 3C2D99A2239B92F1007B759E /* ApexMapView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2D99A0239B92F1007B759E /* ApexMapView.m */; };
  13. 3C2D99A5239B93C8007B759E /* AMViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2D99A4239B93C8007B759E /* AMViewController.m */; };
  14. 3C57169D23D186A30002E9FC /* WebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C57169A23D186A30002E9FC /* WebViewController.m */; };
  15. 3C57169E23D186A30002E9FC /* wkweb.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C57169B23D186A30002E9FC /* wkweb.storyboard */; };
  16. 3CA1A2DE23A212E700639FCC /* Launch Screen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3CA1A2DD23A212E700639FCC /* Launch Screen.storyboard */; };
  17. 3CE1DD02251C87DC00630A4F /* ApexResultAirBookingCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CE1DCFC251C87DC00630A4F /* ApexResultAirBookingCell.m */; };
  18. 3CE1DD03251C87DC00630A4F /* ApexResultAirBookingCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3CE1DCFD251C87DC00630A4F /* ApexResultAirBookingCell.xib */; };
  19. 3CE1DD04251C87DC00630A4F /* ApexResultAirAwbInfoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CE1DCFE251C87DC00630A4F /* ApexResultAirAwbInfoCell.m */; };
  20. 3CE1DD05251C87DC00630A4F /* ApexResultAirAwbInfoCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3CE1DD00251C87DC00630A4F /* ApexResultAirAwbInfoCell.xib */; };
  21. 3CE1DD0B251C87F400630A4F /* ApexResultAirBookingModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CE1DD09251C87F400630A4F /* ApexResultAirBookingModel.m */; };
  22. 3CE1DD0C251C87F400630A4F /* ApexResultAirAwbInfoModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CE1DD0A251C87F400630A4F /* ApexResultAirAwbInfoModel.m */; };
  23. 420DEF2620A1898500720524 /* AMCommHeadCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 420DEF2420A1898500720524 /* AMCommHeadCell.m */; };
  24. 420DEF2720A1898500720524 /* AMCommHeadCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 420DEF2520A1898500720524 /* AMCommHeadCell.xib */; };
  25. 420DEF2B20A1899600720524 /* AMCommContentCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 420DEF2920A1899600720524 /* AMCommContentCell.m */; };
  26. 420DEF2C20A1899600720524 /* AMCommContentCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 420DEF2A20A1899600720524 /* AMCommContentCell.xib */; };
  27. 420DEF3020A189AA00720524 /* AMCommEditCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 420DEF2E20A189AA00720524 /* AMCommEditCell.m */; };
  28. 420DEF3120A189AA00720524 /* AMCommEditCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 420DEF2F20A189AA00720524 /* AMCommEditCell.xib */; };
  29. 420F0CA420901C2E005C4690 /* KPIRepeatTapGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 420F0CA320901C2E005C4690 /* KPIRepeatTapGestureRecognizer.m */; };
  30. 42253C94209C007700879B09 /* AMMapView.m in Sources */ = {isa = PBXBuildFile; fileRef = 42253C93209C007700879B09 /* AMMapView.m */; };
  31. 42253C98209C3C0F00879B09 /* AMShipMap.m in Sources */ = {isa = PBXBuildFile; fileRef = 42253C97209C3C0F00879B09 /* AMShipMap.m */; };
  32. 4225E42421E08502009D2364 /* ApexResultViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E42321E08502009D2364 /* ApexResultViewController.m */; };
  33. 4225E42621E08576009D2364 /* ApexResult.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 4225E42521E08576009D2364 /* ApexResult.storyboard */; };
  34. 4225E42D21E08895009D2364 /* ApexResultViewController+TableDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E42C21E08895009D2364 /* ApexResultViewController+TableDelegate.m */; };
  35. 4225E43021E088AA009D2364 /* ApexResultViewController+TableDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E42F21E088AA009D2364 /* ApexResultViewController+TableDataSource.m */; };
  36. 4225E43321E08A54009D2364 /* ApexResultContainerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E43221E08A54009D2364 /* ApexResultContainerCell.m */; };
  37. 4225E43921E08A8C009D2364 /* ApexResultDocumentCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E43721E08A8C009D2364 /* ApexResultDocumentCell.m */; };
  38. 4225E43A21E08A8C009D2364 /* ApexResultDocumentCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 4225E43821E08A8C009D2364 /* ApexResultDocumentCell.xib */; };
  39. 4225E43D21E08ACE009D2364 /* ApexResultContainerModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E43C21E08ACE009D2364 /* ApexResultContainerModel.m */; };
  40. 4225E44021E08AEF009D2364 /* ApexResultDocumentModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E43F21E08AEF009D2364 /* ApexResultDocumentModel.m */; };
  41. 4225E44321E08B47009D2364 /* ApexResultBaseModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E44221E08B47009D2364 /* ApexResultBaseModel.m */; };
  42. 4225E44821E099CB009D2364 /* ApexResultPresenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E44721E099CB009D2364 /* ApexResultPresenter.m */; };
  43. 4225E44F21E0A39A009D2364 /* RAProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E44B21E0A39A009D2364 /* RAProgressHUD.m */; };
  44. 4225E45021E0A39A009D2364 /* UIView+RAConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E44D21E0A39A009D2364 /* UIView+RAConstraint.m */; };
  45. 4235C30320229F7200A99D04 /* Result.xib in Resources */ = {isa = PBXBuildFile; fileRef = 4235C30220229F7200A99D04 /* Result.xib */; };
  46. 4235C3052022A60A00A99D04 /* ResultCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 4235C3042022A60A00A99D04 /* ResultCell.xib */; };
  47. 4253900E2079B7C700ECF982 /* KPIPieChartCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 4253900C2079B7C700ECF982 /* KPIPieChartCell.m */; };
  48. 4253900F2079B7C700ECF982 /* KPIPieChartCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 4253900D2079B7C700ECF982 /* KPIPieChartCell.xib */; };
  49. 425390202079B99B00ECF982 /* XYCommon.m in Sources */ = {isa = PBXBuildFile; fileRef = 425390172079B99A00ECF982 /* XYCommon.m */; };
  50. 425390212079B99B00ECF982 /* PieChart.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 425390192079B99B00ECF982 /* PieChart.xcassets */; };
  51. 425390222079B99B00ECF982 /* XYRotatedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4253901B2079B99B00ECF982 /* XYRotatedView.m */; };
  52. 425390232079B99B00ECF982 /* XYPieChartView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4253901C2079B99B00ECF982 /* XYPieChartView.m */; };
  53. 425390242079B99B00ECF982 /* XYRenderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4253901E2079B99B00ECF982 /* XYRenderView.m */; };
  54. 425390262079B9B500ECF982 /* KPI.json in Resources */ = {isa = PBXBuildFile; fileRef = 425390252079B9B400ECF982 /* KPI.json */; };
  55. 42539029207A159300ECF982 /* KPIButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 42539028207A159300ECF982 /* KPIButton.m */; };
  56. 42541ACF207C49610072BC5A /* fake_home.json in Resources */ = {isa = PBXBuildFile; fileRef = 42541ACE207C49610072BC5A /* fake_home.json */; };
  57. 425CF096201EB2B500750E32 /* JLRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 425CF08C201EB2B500750E32 /* JLRefreshFooter.m */; };
  58. 425CF097201EB2B500750E32 /* JLRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 425CF08F201EB2B500750E32 /* JLRefreshHeader.m */; };
  59. 425CF098201EB2B500750E32 /* JLRefreshBasis.m in Sources */ = {isa = PBXBuildFile; fileRef = 425CF091201EB2B500750E32 /* JLRefreshBasis.m */; };
  60. 425CF099201EB2B500750E32 /* UIScrollView+JLRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 425CF093201EB2B500750E32 /* UIScrollView+JLRefresh.m */; };
  61. 425CF09A201EB2B500750E32 /* UIView+JLExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 425CF095201EB2B500750E32 /* UIView+JLExtension.m */; };
  62. 42604122201C4B41002374A8 /* ShipingStatusCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 42604121201C4B41002374A8 /* ShipingStatusCell.m */; };
  63. 42604127201C578B002374A8 /* ShipSearchController.m in Sources */ = {isa = PBXBuildFile; fileRef = 42604126201C578B002374A8 /* ShipSearchController.m */; };
  64. 42604129201C57A7002374A8 /* ShipSearch.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 42604128201C57A7002374A8 /* ShipSearch.storyboard */; };
  65. 426E8AB9202163EC0073BA5D /* JLCustomerAlertController.m in Sources */ = {isa = PBXBuildFile; fileRef = 426E8AB6202163EC0073BA5D /* JLCustomerAlertController.m */; };
  66. 426E8ABA202163EC0073BA5D /* JLPresentationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 426E8AB8202163EC0073BA5D /* JLPresentationController.m */; };
  67. 426E8ABD2021AEC50073BA5D /* JLCustomerNavigationAlertController.m in Sources */ = {isa = PBXBuildFile; fileRef = 426E8ABC2021AEC50073BA5D /* JLCustomerNavigationAlertController.m */; };
  68. 426F397F2033CEE80025C568 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 426F397E2033CEE80025C568 /* AudioToolbox.framework */; };
  69. 426F39822033D0930025C568 /* ResultCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 426F39812033D0930025C568 /* ResultCell.m */; };
  70. 427CF5D02023F5560041472A /* NewImages.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 427CF5CF2023F5560041472A /* NewImages.xcassets */; };
  71. 427CF5E0202452460041472A /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 427CF5DF202452450041472A /* Accelerate.framework */; };
  72. 42BB7402208431DA00B9B6E4 /* KPILegendCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BB7401208431DA00B9B6E4 /* KPILegendCell.m */; };
  73. 42BB740620846B4500B9B6E4 /* KPITableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BB740420846B4500B9B6E4 /* KPITableCell.m */; };
  74. 42BB740720846B4500B9B6E4 /* KPITableCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 42BB740520846B4500B9B6E4 /* KPITableCell.xib */; };
  75. 42BB74092084732D00B9B6E4 /* KPICell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 42BB74082084732D00B9B6E4 /* KPICell.xib */; };
  76. 42BB740B2084737800B9B6E4 /* KPILegendCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 42BB740A2084737800B9B6E4 /* KPILegendCell.xib */; };
  77. 42BCACCA209AE243009DDA43 /* AMAnnotationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BCACC9209AE243009DDA43 /* AMAnnotationView.m */; };
  78. 42BCACCD209AE342009DDA43 /* AMMapAnnotaion.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BCACCC209AE342009DDA43 /* AMMapAnnotaion.m */; };
  79. 42BFD2D2207B697800DA9038 /* KPICell.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BFD2D1207B697800DA9038 /* KPICell.m */; };
  80. 42C6754E21E2F1D4001E3FF4 /* ApexResultAdditionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 42C6754D21E2F1D4001E3FF4 /* ApexResultAdditionView.m */; };
  81. 42C6755221E32654001E3FF4 /* ApexResultViewController+QuickLook.m in Sources */ = {isa = PBXBuildFile; fileRef = 42C6755121E32654001E3FF4 /* ApexResultViewController+QuickLook.m */; };
  82. 42DE626220A41907005FB582 /* AMTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 42DE626120A41907005FB582 /* AMTextField.m */; };
  83. 42E8212F21F6ED1800127705 /* ApexResultAdditionView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 42E8212E21F6ED1800127705 /* ApexResultAdditionView.xib */; };
  84. 42FB6EB921F2B9FE00F694AB /* ApexResultContainerCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 42FB6EB821F2B9FE00F694AB /* ApexResultContainerCell.xib */; };
  85. 42FB6EBD21F2BAB800F694AB /* ApexResultBLInfoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 42FB6EBB21F2BAB800F694AB /* ApexResultBLInfoCell.m */; };
  86. 42FB6EBE21F2BAB800F694AB /* ApexResultBLInfoCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 42FB6EBC21F2BAB800F694AB /* ApexResultBLInfoCell.xib */; };
  87. 42FB6EC221F2BB6400F694AB /* ApexResultBookingCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 42FB6EC021F2BB6400F694AB /* ApexResultBookingCell.m */; };
  88. 42FB6EC321F2BB6400F694AB /* ApexResultBookingCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 42FB6EC121F2BB6400F694AB /* ApexResultBookingCell.xib */; };
  89. 42FB6EC621F2BC5300F694AB /* ApexResultBookingModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 42FB6EC521F2BC5300F694AB /* ApexResultBookingModel.m */; };
  90. 42FB6EC921F2BC8600F694AB /* ApexResultAddition.m in Sources */ = {isa = PBXBuildFile; fileRef = 42FB6EC821F2BC8600F694AB /* ApexResultAddition.m */; };
  91. 42FB6ECC21F2C0E300F694AB /* ApexResultBLInfoModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 42FB6ECB21F2C0E300F694AB /* ApexResultBLInfoModel.m */; };
  92. 42FB6ECF21F3136300F694AB /* ApexResultMenuItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 42FB6ECE21F3136300F694AB /* ApexResultMenuItem.m */; };
  93. 7101BEC82031389A00CC6E3A /* DetailCellKVNew.m in Sources */ = {isa = PBXBuildFile; fileRef = 7101BEC72031389A00CC6E3A /* DetailCellKVNew.m */; };
  94. 7103C84B22549E7F00261926 /* CLLocation+Sino.m in Sources */ = {isa = PBXBuildFile; fileRef = 7103C84922549E7E00261926 /* CLLocation+Sino.m */; };
  95. 711BA6C1191E0525002EDE6F /* MessageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 711BA6C0191E0525002EDE6F /* MessageViewController.m */; };
  96. 711BA6C4191E0553002EDE6F /* MessageItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 711BA6C3191E0553002EDE6F /* MessageItem.m */; };
  97. 711DC6B218C30A4800FB1749 /* TableCellEdit.m in Sources */ = {isa = PBXBuildFile; fileRef = 711DC6B118C30A4800FB1749 /* TableCellEdit.m */; };
  98. 7120DCEB18BE25CE00E7546F /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DCEA18BE25CE00E7546F /* AVFoundation.framework */; };
  99. 7120DCED18BE25DA00E7546F /* CoreData.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DCEC18BE25DA00E7546F /* CoreData.framework */; };
  100. 7120DCEF18BE25E500E7546F /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DCEE18BE25E500E7546F /* CoreLocation.framework */; };
  101. 7120DCF118BE25F500E7546F /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DCF018BE25F500E7546F /* CoreText.framework */; };
  102. 7120DCF518BE261500E7546F /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DCF418BE261500E7546F /* ImageIO.framework */; };
  103. 7120DCF718BE262300E7546F /* libc++.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DCF618BE262300E7546F /* libc++.dylib */; };
  104. 7120DCF918BE262E00E7546F /* libicucore.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DCF818BE262E00E7546F /* libicucore.dylib */; };
  105. 7120DCFB18BE263800E7546F /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DCFA18BE263800E7546F /* libz.dylib */; };
  106. 7120DCFF18BE265100E7546F /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DCFE18BE265100E7546F /* QuartzCore.framework */; };
  107. 7120DD0118BE266000E7546F /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DD0018BE266000E7546F /* SystemConfiguration.framework */; };
  108. 7120DD0418BE273900E7546F /* LocationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7120DD0318BE273900E7546F /* LocationViewController.m */; };
  109. 712A301318CFEF550022E6E6 /* CustomizeFieldViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 712A301218CFEF550022E6E6 /* CustomizeFieldViewController.m */; };
  110. 712CBA0318CF38DB00C61394 /* RTLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 712CBA0218CF38DB00C61394 /* RTLabel.m */; };
  111. 71308AF7191E7B0E0024B2B0 /* MessageDetailItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 71308AF6191E7B0E0024B2B0 /* MessageDetailItem.m */; };
  112. 71308AFA191E7B2A0024B2B0 /* MessageDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71308AF9191E7B2A0024B2B0 /* MessageDetailViewController.m */; };
  113. 7130B3F41900FB61000610D8 /* NewsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7130B3F31900FB61000610D8 /* NewsViewController.m */; };
  114. 71330C2018BCC4DA0048956C /* FunctionSelectViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71330C1F18BCC4DA0048956C /* FunctionSelectViewController.m */; };
  115. 71375C8F18D96EDE00EBA026 /* TabBarController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71375C8E18D96EDE00EBA026 /* TabBarController.m */; };
  116. 713AA7A1191736E600B44092 /* DocumentsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 713AA7A0191736E600B44092 /* DocumentsViewController.m */; };
  117. 713AA7A41917373600B44092 /* LocalDocumentsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 713AA7A31917373600B44092 /* LocalDocumentsViewController.m */; };
  118. 71406DCE18C36A52000914C4 /* TableCellBool.m in Sources */ = {isa = PBXBuildFile; fileRef = 71406DCD18C36A52000914C4 /* TableCellBool.m */; };
  119. 71406DD118C36A6E000914C4 /* TableCellDate.m in Sources */ = {isa = PBXBuildFile; fileRef = 71406DD018C36A6E000914C4 /* TableCellDate.m */; };
  120. 714C39B81922FEE1004F045B /* NewsDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 714C39B71922FEE1004F045B /* NewsDetailViewController.m */; };
  121. 714C39BF19234065004F045B /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 714C39C119234065004F045B /* Localizable.strings */; };
  122. 71514ED2191B7E2500009C00 /* AddressBookUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71514ED1191B7E2500009C00 /* AddressBookUI.framework */; };
  123. 715643B720198A1400B04267 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 715643B620198A1400B04267 /* Main.storyboard */; };
  124. 715643BB20198A9900B04267 /* RootViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 715643BA20198A9900B04267 /* RootViewController.m */; };
  125. 715643BE2019AA9B00B04267 /* LoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 715643BD2019AA9B00B04267 /* LoginViewController.m */; };
  126. 715643C12019B27500B04267 /* HomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 715643C02019B27500B04267 /* HomeViewController.m */; };
  127. 715643C42019B58400B04267 /* OrderHistoryViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 715643C32019B58400B04267 /* OrderHistoryViewController.m */; };
  128. 715643C72019BB6700B04267 /* StaticModelistViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 715643C62019BB6700B04267 /* StaticModelistViewController.m */; };
  129. 715643CA2019BC4C00B04267 /* SearchlistViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 715643C92019BC4C00B04267 /* SearchlistViewController.m */; };
  130. 715643CD2019BC6C00B04267 /* ToolslistViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 715643CC2019BC6C00B04267 /* ToolslistViewController.m */; };
  131. 715643D02019BCCE00B04267 /* MylistViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 715643CF2019BCCE00B04267 /* MylistViewController.m */; };
  132. 715643D3201ACB1700B04267 /* StaticModeTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 715643D2201ACB1700B04267 /* StaticModeTableViewCell.m */; };
  133. 715643D5201AD2AB00B04267 /* StaticModelistViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 715643D4201AD2AB00B04267 /* StaticModelistViewController.xib */; };
  134. 715643D7201AD99300B04267 /* StaticModeTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 715643D6201AD99300B04267 /* StaticModeTableViewCell.xib */; };
  135. 715643DA201C079F00B04267 /* tools.json in Resources */ = {isa = PBXBuildFile; fileRef = 715643D9201C079F00B04267 /* tools.json */; };
  136. 715643DC201C117300B04267 /* search.json in Resources */ = {isa = PBXBuildFile; fileRef = 715643DB201C117300B04267 /* search.json */; };
  137. 715643DE201C1AE600B04267 /* my.json in Resources */ = {isa = PBXBuildFile; fileRef = 715643DD201C1AE600B04267 /* my.json */; };
  138. 7157098E2021572600EFE5C5 /* NetworkUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 7157098C2021572600EFE5C5 /* NetworkUtils.m */; };
  139. 715709922021574D00EFE5C5 /* RAConvertor.m in Sources */ = {isa = PBXBuildFile; fileRef = 715709912021574D00EFE5C5 /* RAConvertor.m */; };
  140. 71570996202157A600EFE5C5 /* RAUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 71570995202157A600EFE5C5 /* RAUtils.m */; };
  141. 71570999202157BD00EFE5C5 /* RANetworkTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 71570997202157BC00EFE5C5 /* RANetworkTaskDelegate.m */; };
  142. 715709A520215B5100EFE5C5 /* zip.c in Sources */ = {isa = PBXBuildFile; fileRef = 7157099C20215B5000EFE5C5 /* zip.c */; };
  143. 715709A620215B5100EFE5C5 /* unzip.c in Sources */ = {isa = PBXBuildFile; fileRef = 7157099E20215B5000EFE5C5 /* unzip.c */; };
  144. 715709A720215B5100EFE5C5 /* ioapi.c in Sources */ = {isa = PBXBuildFile; fileRef = 715709A020215B5000EFE5C5 /* ioapi.c */; };
  145. 715709A820215B5100EFE5C5 /* mztools.c in Sources */ = {isa = PBXBuildFile; fileRef = 715709A420215B5100EFE5C5 /* mztools.c */; };
  146. 715709AB20215B6200EFE5C5 /* ZipArchive.mm in Sources */ = {isa = PBXBuildFile; fileRef = 715709AA20215B6200EFE5C5 /* ZipArchive.mm */; };
  147. 715709AE20215CB000EFE5C5 /* RANetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 715709AD20215CB000EFE5C5 /* RANetwork.m */; };
  148. 715709B920215E0000EFE5C5 /* NSData+CommonCrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = 715709B020215DFF00EFE5C5 /* NSData+CommonCrypto.m */; };
  149. 715709BA20215E0000EFE5C5 /* NSString+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = 715709B220215DFF00EFE5C5 /* NSString+Base64.m */; };
  150. 715709BB20215E0000EFE5C5 /* NSData+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = 715709B320215DFF00EFE5C5 /* NSData+Base64.m */; };
  151. 715709BC20215E0000EFE5C5 /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = 715709B620215DFF00EFE5C5 /* LICENSE */; };
  152. 715709BD20215E0000EFE5C5 /* AESCrypt.m in Sources */ = {isa = PBXBuildFile; fileRef = 715709B820215DFF00EFE5C5 /* AESCrypt.m */; };
  153. 716027D1204D334A003CA085 /* DetailShareItemProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 716027D0204D334A003CA085 /* DetailShareItemProvider.m */; };
  154. 716027D4204D3D15003CA085 /* LPShareActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 716027D2204D3D15003CA085 /* LPShareActivity.m */; };
  155. 7162546B201C3AF1009E3A41 /* readme.txt in Resources */ = {isa = PBXBuildFile; fileRef = 7162546A201C3AF1009E3A41 /* readme.txt */; };
  156. 7162546D201C412E009E3A41 /* ShippingStatusCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7162546C201C412E009E3A41 /* ShippingStatusCell.xib */; };
  157. 71625470201C5205009E3A41 /* fake_container_list.json in Resources */ = {isa = PBXBuildFile; fileRef = 7162546F201C5205009E3A41 /* fake_container_list.json */; };
  158. 716FF7921904ED2600ED6C3D /* NewsData.m in Sources */ = {isa = PBXBuildFile; fileRef = 716FF7911904ED2600ED6C3D /* NewsData.m */; };
  159. 716FF7951904FBC600ED6C3D /* NewsTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 716FF7941904FBC600ED6C3D /* NewsTableViewCell.m */; };
  160. 717D76EB18C7F8120070302D /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 717D76EA18C7F8120070302D /* Reachability.m */; };
  161. 717D772F18C84E3F0070302D /* PageData.m in Sources */ = {isa = PBXBuildFile; fileRef = 717D772E18C84E3F0070302D /* PageData.m */; };
  162. 71807B982021965B00E1F1DD /* fake_tracking.json in Resources */ = {isa = PBXBuildFile; fileRef = 71807B972021965B00E1F1DD /* fake_tracking.json */; };
  163. 71807B9C2021979A00E1F1DD /* DetailCellTracking.m in Sources */ = {isa = PBXBuildFile; fileRef = 71807B9B2021979A00E1F1DD /* DetailCellTracking.m */; };
  164. 71807B9E2021ACE500E1F1DD /* fake_search.json in Resources */ = {isa = PBXBuildFile; fileRef = 71807B9D2021ACE500E1F1DD /* fake_search.json */; };
  165. 718BE8B0190F9D970046EA6A /* MyAutocompleteView.m in Sources */ = {isa = PBXBuildFile; fileRef = 718BE8A7190F9D970046EA6A /* MyAutocompleteView.m */; };
  166. 718BE8B2190F9D970046EA6A /* MyAutocompleteItemsSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 718BE8AB190F9D970046EA6A /* MyAutocompleteItemsSource.m */; };
  167. 718BE8B3190F9D970046EA6A /* MyAutocompletionCellFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 718BE8AD190F9D970046EA6A /* MyAutocompletionCellFactory.m */; };
  168. 718BE8B4190F9D970046EA6A /* MySuggestion.m in Sources */ = {isa = PBXBuildFile; fileRef = 718BE8AF190F9D970046EA6A /* MySuggestion.m */; };
  169. 71951E6F18C6A9A5005024BD /* TouchLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 71951E6E18C6A9A5005024BD /* TouchLabel.m */; };
  170. 719A51A518C5A4AF0080C075 /* SimpleGrid.m in Sources */ = {isa = PBXBuildFile; fileRef = 719A51A418C5A4AF0080C075 /* SimpleGrid.m */; };
  171. 719A51A918C5A5D30080C075 /* SimpleGridDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 719A51A818C5A5D30080C075 /* SimpleGridDataSource.m */; };
  172. 719A51BA18C5AB7B0080C075 /* SimpleGridComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 719A51B918C5AB7B0080C075 /* SimpleGridComponent.m */; };
  173. 719BEC1718FFAB7B00DFE987 /* ToolsPanelViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 719BEC1618FFAB7B00DFE987 /* ToolsPanelViewController.m */; };
  174. 719E7E3318C0368A003408FF /* ApexMobileDB.m in Sources */ = {isa = PBXBuildFile; fileRef = 719E7E3218C0368A003408FF /* ApexMobileDB.m */; };
  175. 719E7E3518C0395E003408FF /* libsqlite3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 719E7E3418C0395E003408FF /* libsqlite3.dylib */; };
  176. 719EF8E118BB839F00EFFF5F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 719EF8E018BB839F00EFFF5F /* Foundation.framework */; };
  177. 719EF8E318BB839F00EFFF5F /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 719EF8E218BB839F00EFFF5F /* CoreGraphics.framework */; };
  178. 719EF8E518BB839F00EFFF5F /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 719EF8E418BB839F00EFFF5F /* UIKit.framework */; };
  179. 719EF8EB18BB839F00EFFF5F /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 719EF8E918BB839F00EFFF5F /* InfoPlist.strings */; };
  180. 719EF8ED18BB839F00EFFF5F /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 719EF8EC18BB839F00EFFF5F /* main.m */; };
  181. 719EF8F118BB839F00EFFF5F /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 719EF8F018BB839F00EFFF5F /* AppDelegate.m */; };
  182. 719EF8FA18BB839F00EFFF5F /* ApexMobileFirstViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 719EF8F918BB839F00EFFF5F /* ApexMobileFirstViewController.m */; };
  183. 719EF8FD18BB839F00EFFF5F /* ApexMobileSecondViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 719EF8FC18BB839F00EFFF5F /* ApexMobileSecondViewController.m */; };
  184. 71A003FC18D680560057CDFD /* RetrievePasswordViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A003FB18D680560057CDFD /* RetrievePasswordViewController.m */; };
  185. 71A003FF18D6BFB40057CDFD /* ChangePasswordViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A003FE18D6BFB40057CDFD /* ChangePasswordViewController.m */; };
  186. 71A01D7918C9AE77003307A9 /* DetailCellKV.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A01D7818C9AE77003307A9 /* DetailCellKV.m */; };
  187. 71A01D7C18C9AE97003307A9 /* DetailCellList.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A01D7B18C9AE97003307A9 /* DetailCellList.m */; };
  188. 71A01D7F18C9AEC8003307A9 /* DetailCellWeb.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A01D7E18C9AEC8003307A9 /* DetailCellWeb.m */; };
  189. 71A01D8218C9BA67003307A9 /* DetailContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A01D8118C9BA67003307A9 /* DetailContent.m */; };
  190. 71A01D8518C9BDC8003307A9 /* DetailTabBarController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A01D8418C9BDC8003307A9 /* DetailTabBarController.m */; };
  191. 71A2D76218DC3895001C380A /* LineView.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A2D76118DC3895001C380A /* LineView.m */; };
  192. 71A565D918C20F5900CDAC07 /* SearchTableAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A565D818C20F5900CDAC07 /* SearchTableAdapter.m */; };
  193. 71A565DF18C212EA00CDAC07 /* Constant.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A565DE18C212EA00CDAC07 /* Constant.m */; };
  194. 71AE427318C47AF900B8EC3D /* SearchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71AE427218C47AF900B8EC3D /* SearchViewController.m */; };
  195. 71B7998D2021AE7400F8685E /* MDHTMLLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 71B7998C2021AE7400F8685E /* MDHTMLLabel.m */; };
  196. 71B7999B2021B22D00F8685E /* AMResultViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71B7999A2021B22D00F8685E /* AMResultViewController.m */; };
  197. 71BA502E1908ED5700D0BD31 /* CellItemHistory.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BA502D1908ED5700D0BD31 /* CellItemHistory.m */; };
  198. 71BA50311908ED9100D0BD31 /* HistoryViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BA50301908ED9100D0BD31 /* HistoryViewController.m */; };
  199. 71BA50341908EDCF00D0BD31 /* HistoryTabBarController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BA50331908EDCF00D0BD31 /* HistoryTabBarController.m */; };
  200. 71BA50371908F21500D0BD31 /* HistoryData.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BA50361908F21500D0BD31 /* HistoryData.m */; };
  201. 71CEE38A18CB749E00052C63 /* DetailPageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71CEE38918CB749E00052C63 /* DetailPageViewController.m */; };
  202. 71CEE3D718CC559B00052C63 /* ApexMobileNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71CEE3D618CC559B00052C63 /* ApexMobileNavigationController.m */; };
  203. 71DA6047190A00F600683003 /* FavoritesData.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DA6046190A00F600683003 /* FavoritesData.m */; };
  204. 71DA604A190A02CE00683003 /* FavoritesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DA6049190A02CE00683003 /* FavoritesViewController.m */; };
  205. 71DA74A618BDDD31003B46A6 /* AboutViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DA74A518BDDD30003B46A6 /* AboutViewController.m */; };
  206. 71DA74A818BDDFB5003B46A6 /* about.htm in Resources */ = {isa = PBXBuildFile; fileRef = 71DA74A718BDDFB5003B46A6 /* about.htm */; };
  207. 71E0D1D72022AB7E009A08EB /* FullyShowViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71E0D1D22022AB7E009A08EB /* FullyShowViewController.m */; };
  208. 71E0D1D82022AB7E009A08EB /* ResultViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71E0D1D32022AB7E009A08EB /* ResultViewController.m */; };
  209. 71E0D1D92022AB7E009A08EB /* Result.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 71E0D1D52022AB7E009A08EB /* Result.storyboard */; };
  210. 71F67CF619063612004E8462 /* ApexHistoryViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71F67CF519063612004E8462 /* ApexHistoryViewController.m */; };
  211. 71F67CF919065EA8004E8462 /* SimpleMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 71F67CF819065EA8004E8462 /* SimpleMenu.m */; };
  212. 71F67CFC19066375004E8462 /* PulldownMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 71F67CFB19066375004E8462 /* PulldownMenu.m */; };
  213. 71FCDE0720492B5E00B0746B /* MyQLPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71FCDE0620492B5E00B0746B /* MyQLPreviewController.m */; };
  214. /* End PBXBuildFile section */
  215. /* Begin PBXFileReference section */
  216. 3C0F4E9223BAE74F000A2FE7 /* CachedTileOverlay.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CachedTileOverlay.h; path = ../../common/ApexMap/CachedTileOverlay.h; sourceTree = "<group>"; };
  217. 3C0F4E9323BAE74F000A2FE7 /* CachedTileOverlay.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CachedTileOverlay.m; path = ../../common/ApexMap/CachedTileOverlay.m; sourceTree = "<group>"; };
  218. 3C0F4E9523BAF594000A2FE7 /* FileCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FileCache.h; path = ../../common/FileCache.h; sourceTree = "<group>"; };
  219. 3C0F4E9623BAF594000A2FE7 /* FileCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FileCache.m; path = ../../common/FileCache.m; sourceTree = "<group>"; };
  220. 3C1DEC3B239F6C42006F7E2A /* MKMapView+ZoomLevel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "MKMapView+ZoomLevel.m"; path = "../../common/ApexMap/MKMapView+ZoomLevel.m"; sourceTree = "<group>"; };
  221. 3C1DEC3C239F6C42006F7E2A /* MKMapView+ZoomLevel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "MKMapView+ZoomLevel.h"; path = "../../common/ApexMap/MKMapView+ZoomLevel.h"; sourceTree = "<group>"; };
  222. 3C2D99A0239B92F1007B759E /* ApexMapView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ApexMapView.m; path = ../../common/ApexMap/ApexMapView.m; sourceTree = "<group>"; };
  223. 3C2D99A1239B92F1007B759E /* ApexMapView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ApexMapView.h; path = ../../common/ApexMap/ApexMapView.h; sourceTree = "<group>"; };
  224. 3C2D99A3239B93C8007B759E /* AMViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMViewController.h; sourceTree = "<group>"; };
  225. 3C2D99A4239B93C8007B759E /* AMViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMViewController.m; sourceTree = "<group>"; };
  226. 3C57169A23D186A30002E9FC /* WebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WebViewController.m; path = "../../common/WK PDF+Web/WebViewController.m"; sourceTree = "<group>"; };
  227. 3C57169B23D186A30002E9FC /* wkweb.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = wkweb.storyboard; path = "../../common/WK PDF+Web/wkweb.storyboard"; sourceTree = "<group>"; };
  228. 3C57169C23D186A30002E9FC /* WebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WebViewController.h; path = "../../common/WK PDF+Web/WebViewController.h"; sourceTree = "<group>"; };
  229. 3CA1A2DD23A212E700639FCC /* Launch Screen.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = "Launch Screen.storyboard"; sourceTree = "<group>"; };
  230. 3CE1DCFC251C87DC00630A4F /* ApexResultAirBookingCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApexResultAirBookingCell.m; sourceTree = "<group>"; };
  231. 3CE1DCFD251C87DC00630A4F /* ApexResultAirBookingCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ApexResultAirBookingCell.xib; sourceTree = "<group>"; };
  232. 3CE1DCFE251C87DC00630A4F /* ApexResultAirAwbInfoCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApexResultAirAwbInfoCell.m; sourceTree = "<group>"; };
  233. 3CE1DCFF251C87DC00630A4F /* ApexResultAirAwbInfoCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApexResultAirAwbInfoCell.h; sourceTree = "<group>"; };
  234. 3CE1DD00251C87DC00630A4F /* ApexResultAirAwbInfoCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ApexResultAirAwbInfoCell.xib; sourceTree = "<group>"; };
  235. 3CE1DD01251C87DC00630A4F /* ApexResultAirBookingCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApexResultAirBookingCell.h; sourceTree = "<group>"; };
  236. 3CE1DD07251C87F400630A4F /* ApexResultAirAwbInfoModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApexResultAirAwbInfoModel.h; sourceTree = "<group>"; };
  237. 3CE1DD08251C87F400630A4F /* ApexResultAirBookingModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApexResultAirBookingModel.h; sourceTree = "<group>"; };
  238. 3CE1DD09251C87F400630A4F /* ApexResultAirBookingModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApexResultAirBookingModel.m; sourceTree = "<group>"; };
  239. 3CE1DD0A251C87F400630A4F /* ApexResultAirAwbInfoModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApexResultAirAwbInfoModel.m; sourceTree = "<group>"; };
  240. 420DEF2320A1898500720524 /* AMCommHeadCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMCommHeadCell.h; sourceTree = "<group>"; };
  241. 420DEF2420A1898500720524 /* AMCommHeadCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMCommHeadCell.m; sourceTree = "<group>"; };
  242. 420DEF2520A1898500720524 /* AMCommHeadCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = AMCommHeadCell.xib; sourceTree = "<group>"; };
  243. 420DEF2820A1899600720524 /* AMCommContentCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMCommContentCell.h; sourceTree = "<group>"; };
  244. 420DEF2920A1899600720524 /* AMCommContentCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMCommContentCell.m; sourceTree = "<group>"; };
  245. 420DEF2A20A1899600720524 /* AMCommContentCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = AMCommContentCell.xib; sourceTree = "<group>"; };
  246. 420DEF2D20A189AA00720524 /* AMCommEditCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMCommEditCell.h; sourceTree = "<group>"; };
  247. 420DEF2E20A189AA00720524 /* AMCommEditCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMCommEditCell.m; sourceTree = "<group>"; };
  248. 420DEF2F20A189AA00720524 /* AMCommEditCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = AMCommEditCell.xib; sourceTree = "<group>"; };
  249. 420F0CA220901C2E005C4690 /* KPIRepeatTapGestureRecognizer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KPIRepeatTapGestureRecognizer.h; sourceTree = "<group>"; };
  250. 420F0CA320901C2E005C4690 /* KPIRepeatTapGestureRecognizer.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KPIRepeatTapGestureRecognizer.m; sourceTree = "<group>"; };
  251. 42253C92209C007700879B09 /* AMMapView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMMapView.h; sourceTree = "<group>"; };
  252. 42253C93209C007700879B09 /* AMMapView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMMapView.m; sourceTree = "<group>"; };
  253. 42253C96209C3C0F00879B09 /* AMShipMap.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMShipMap.h; sourceTree = "<group>"; };
  254. 42253C97209C3C0F00879B09 /* AMShipMap.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMShipMap.m; sourceTree = "<group>"; };
  255. 4225E42221E08502009D2364 /* ApexResultViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultViewController.h; sourceTree = "<group>"; };
  256. 4225E42321E08502009D2364 /* ApexResultViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultViewController.m; sourceTree = "<group>"; };
  257. 4225E42521E08576009D2364 /* ApexResult.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = ApexResult.storyboard; sourceTree = "<group>"; };
  258. 4225E42B21E08895009D2364 /* ApexResultViewController+TableDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "ApexResultViewController+TableDelegate.h"; sourceTree = "<group>"; };
  259. 4225E42C21E08895009D2364 /* ApexResultViewController+TableDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "ApexResultViewController+TableDelegate.m"; sourceTree = "<group>"; };
  260. 4225E42E21E088AA009D2364 /* ApexResultViewController+TableDataSource.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "ApexResultViewController+TableDataSource.h"; sourceTree = "<group>"; };
  261. 4225E42F21E088AA009D2364 /* ApexResultViewController+TableDataSource.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "ApexResultViewController+TableDataSource.m"; sourceTree = "<group>"; };
  262. 4225E43121E08A54009D2364 /* ApexResultContainerCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultContainerCell.h; sourceTree = "<group>"; };
  263. 4225E43221E08A54009D2364 /* ApexResultContainerCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultContainerCell.m; sourceTree = "<group>"; };
  264. 4225E43621E08A8C009D2364 /* ApexResultDocumentCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultDocumentCell.h; sourceTree = "<group>"; };
  265. 4225E43721E08A8C009D2364 /* ApexResultDocumentCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultDocumentCell.m; sourceTree = "<group>"; };
  266. 4225E43821E08A8C009D2364 /* ApexResultDocumentCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ApexResultDocumentCell.xib; sourceTree = "<group>"; };
  267. 4225E43B21E08ACE009D2364 /* ApexResultContainerModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultContainerModel.h; sourceTree = "<group>"; };
  268. 4225E43C21E08ACE009D2364 /* ApexResultContainerModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultContainerModel.m; sourceTree = "<group>"; };
  269. 4225E43E21E08AEF009D2364 /* ApexResultDocumentModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultDocumentModel.h; sourceTree = "<group>"; };
  270. 4225E43F21E08AEF009D2364 /* ApexResultDocumentModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultDocumentModel.m; sourceTree = "<group>"; };
  271. 4225E44121E08B47009D2364 /* ApexResultBaseModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultBaseModel.h; sourceTree = "<group>"; };
  272. 4225E44221E08B47009D2364 /* ApexResultBaseModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultBaseModel.m; sourceTree = "<group>"; };
  273. 4225E44421E0989D009D2364 /* ApexResultProtocol.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultProtocol.h; sourceTree = "<group>"; };
  274. 4225E44621E099CB009D2364 /* ApexResultPresenter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultPresenter.h; sourceTree = "<group>"; };
  275. 4225E44721E099CB009D2364 /* ApexResultPresenter.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultPresenter.m; sourceTree = "<group>"; };
  276. 4225E44A21E0A39A009D2364 /* RAProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RAProgressHUD.h; sourceTree = "<group>"; };
  277. 4225E44B21E0A39A009D2364 /* RAProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RAProgressHUD.m; sourceTree = "<group>"; };
  278. 4225E44D21E0A39A009D2364 /* UIView+RAConstraint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+RAConstraint.m"; sourceTree = "<group>"; };
  279. 4225E44E21E0A39A009D2364 /* UIView+RAConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+RAConstraint.h"; sourceTree = "<group>"; };
  280. 4235C30220229F7200A99D04 /* Result.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Result.xib; path = ../../common/customUI/Result.xib; sourceTree = "<group>"; };
  281. 4235C3042022A60A00A99D04 /* ResultCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = ResultCell.xib; path = ../../common/customUI/ResultCell.xib; sourceTree = "<group>"; };
  282. 4253900B2079B7C700ECF982 /* KPIPieChartCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KPIPieChartCell.h; sourceTree = "<group>"; };
  283. 4253900C2079B7C700ECF982 /* KPIPieChartCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KPIPieChartCell.m; sourceTree = "<group>"; };
  284. 4253900D2079B7C700ECF982 /* KPIPieChartCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = KPIPieChartCell.xib; sourceTree = "<group>"; };
  285. 425390172079B99A00ECF982 /* XYCommon.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XYCommon.m; sourceTree = "<group>"; };
  286. 425390182079B99A00ECF982 /* XYRotatedView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XYRotatedView.h; sourceTree = "<group>"; };
  287. 425390192079B99B00ECF982 /* PieChart.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = PieChart.xcassets; sourceTree = "<group>"; };
  288. 4253901A2079B99B00ECF982 /* XYPieChartView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XYPieChartView.h; sourceTree = "<group>"; };
  289. 4253901B2079B99B00ECF982 /* XYRotatedView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XYRotatedView.m; sourceTree = "<group>"; };
  290. 4253901C2079B99B00ECF982 /* XYPieChartView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XYPieChartView.m; sourceTree = "<group>"; };
  291. 4253901D2079B99B00ECF982 /* XYRenderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XYRenderView.h; sourceTree = "<group>"; };
  292. 4253901E2079B99B00ECF982 /* XYRenderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XYRenderView.m; sourceTree = "<group>"; };
  293. 4253901F2079B99B00ECF982 /* XYCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XYCommon.h; sourceTree = "<group>"; };
  294. 425390252079B9B400ECF982 /* KPI.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = KPI.json; sourceTree = "<group>"; };
  295. 42539027207A159300ECF982 /* KPIButton.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KPIButton.h; sourceTree = "<group>"; };
  296. 42539028207A159300ECF982 /* KPIButton.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KPIButton.m; sourceTree = "<group>"; };
  297. 42541ACE207C49610072BC5A /* fake_home.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = fake_home.json; sourceTree = "<group>"; };
  298. 425CF08B201EB2B500750E32 /* JLRefreshFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JLRefreshFooter.h; sourceTree = "<group>"; };
  299. 425CF08C201EB2B500750E32 /* JLRefreshFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JLRefreshFooter.m; sourceTree = "<group>"; };
  300. 425CF08E201EB2B500750E32 /* JLRefreshHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JLRefreshHeader.h; sourceTree = "<group>"; };
  301. 425CF08F201EB2B500750E32 /* JLRefreshHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JLRefreshHeader.m; sourceTree = "<group>"; };
  302. 425CF090201EB2B500750E32 /* JLRefreshBasis.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JLRefreshBasis.h; sourceTree = "<group>"; };
  303. 425CF091201EB2B500750E32 /* JLRefreshBasis.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JLRefreshBasis.m; sourceTree = "<group>"; };
  304. 425CF092201EB2B500750E32 /* UIScrollView+JLRefresh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+JLRefresh.h"; sourceTree = "<group>"; };
  305. 425CF093201EB2B500750E32 /* UIScrollView+JLRefresh.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+JLRefresh.m"; sourceTree = "<group>"; };
  306. 425CF094201EB2B500750E32 /* UIView+JLExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+JLExtension.h"; sourceTree = "<group>"; };
  307. 425CF095201EB2B500750E32 /* UIView+JLExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+JLExtension.m"; sourceTree = "<group>"; };
  308. 42604120201C4B41002374A8 /* ShipingStatusCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ShipingStatusCell.h; sourceTree = "<group>"; };
  309. 42604121201C4B41002374A8 /* ShipingStatusCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ShipingStatusCell.m; sourceTree = "<group>"; };
  310. 42604125201C578B002374A8 /* ShipSearchController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ShipSearchController.h; sourceTree = "<group>"; };
  311. 42604126201C578B002374A8 /* ShipSearchController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ShipSearchController.m; sourceTree = "<group>"; };
  312. 42604128201C57A7002374A8 /* ShipSearch.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = ShipSearch.storyboard; sourceTree = "<group>"; };
  313. 426E8AB5202163EC0073BA5D /* JLCustomerAlertController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JLCustomerAlertController.h; sourceTree = "<group>"; };
  314. 426E8AB6202163EC0073BA5D /* JLCustomerAlertController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JLCustomerAlertController.m; sourceTree = "<group>"; };
  315. 426E8AB7202163EC0073BA5D /* JLPresentationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JLPresentationController.h; sourceTree = "<group>"; };
  316. 426E8AB8202163EC0073BA5D /* JLPresentationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JLPresentationController.m; sourceTree = "<group>"; };
  317. 426E8ABB2021AEC50073BA5D /* JLCustomerNavigationAlertController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = JLCustomerNavigationAlertController.h; sourceTree = "<group>"; };
  318. 426E8ABC2021AEC50073BA5D /* JLCustomerNavigationAlertController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = JLCustomerNavigationAlertController.m; sourceTree = "<group>"; };
  319. 426F397E2033CEE80025C568 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
  320. 426F39802033D0930025C568 /* ResultCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ResultCell.h; path = ../../common/customUI/ResultCell.h; sourceTree = "<group>"; };
  321. 426F39812033D0930025C568 /* ResultCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = ResultCell.m; path = ../../common/customUI/ResultCell.m; sourceTree = "<group>"; };
  322. 427994B120300E7300746EDC /* Apex Mobile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; name = "Apex Mobile.entitlements"; path = "Apex Mobile/Apex Mobile.entitlements"; sourceTree = "<group>"; };
  323. 427CF5CF2023F5560041472A /* NewImages.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = NewImages.xcassets; sourceTree = "<group>"; };
  324. 427CF5DF202452450041472A /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; };
  325. 42BB7400208431DA00B9B6E4 /* KPILegendCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KPILegendCell.h; sourceTree = "<group>"; };
  326. 42BB7401208431DA00B9B6E4 /* KPILegendCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KPILegendCell.m; sourceTree = "<group>"; };
  327. 42BB740320846B4500B9B6E4 /* KPITableCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KPITableCell.h; sourceTree = "<group>"; };
  328. 42BB740420846B4500B9B6E4 /* KPITableCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KPITableCell.m; sourceTree = "<group>"; };
  329. 42BB740520846B4500B9B6E4 /* KPITableCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = KPITableCell.xib; sourceTree = "<group>"; };
  330. 42BB74082084732D00B9B6E4 /* KPICell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = KPICell.xib; sourceTree = "<group>"; };
  331. 42BB740A2084737800B9B6E4 /* KPILegendCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = KPILegendCell.xib; sourceTree = "<group>"; };
  332. 42BCACC8209AE243009DDA43 /* AMAnnotationView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMAnnotationView.h; sourceTree = "<group>"; };
  333. 42BCACC9209AE243009DDA43 /* AMAnnotationView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMAnnotationView.m; sourceTree = "<group>"; };
  334. 42BCACCB209AE342009DDA43 /* AMMapAnnotaion.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMMapAnnotaion.h; sourceTree = "<group>"; };
  335. 42BCACCC209AE342009DDA43 /* AMMapAnnotaion.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMMapAnnotaion.m; sourceTree = "<group>"; };
  336. 42BFD2D0207B697800DA9038 /* KPICell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KPICell.h; sourceTree = "<group>"; };
  337. 42BFD2D1207B697800DA9038 /* KPICell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KPICell.m; sourceTree = "<group>"; };
  338. 42C6754C21E2F1D4001E3FF4 /* ApexResultAdditionView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultAdditionView.h; sourceTree = "<group>"; };
  339. 42C6754D21E2F1D4001E3FF4 /* ApexResultAdditionView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultAdditionView.m; sourceTree = "<group>"; };
  340. 42C6755021E32654001E3FF4 /* ApexResultViewController+QuickLook.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "ApexResultViewController+QuickLook.h"; sourceTree = "<group>"; };
  341. 42C6755121E32654001E3FF4 /* ApexResultViewController+QuickLook.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "ApexResultViewController+QuickLook.m"; sourceTree = "<group>"; };
  342. 42DE626020A41907005FB582 /* AMTextField.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMTextField.h; sourceTree = "<group>"; };
  343. 42DE626120A41907005FB582 /* AMTextField.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMTextField.m; sourceTree = "<group>"; };
  344. 42E8212E21F6ED1800127705 /* ApexResultAdditionView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ApexResultAdditionView.xib; sourceTree = "<group>"; };
  345. 42FB6EB821F2B9FE00F694AB /* ApexResultContainerCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ApexResultContainerCell.xib; sourceTree = "<group>"; };
  346. 42FB6EBA21F2BAB800F694AB /* ApexResultBLInfoCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultBLInfoCell.h; sourceTree = "<group>"; };
  347. 42FB6EBB21F2BAB800F694AB /* ApexResultBLInfoCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultBLInfoCell.m; sourceTree = "<group>"; };
  348. 42FB6EBC21F2BAB800F694AB /* ApexResultBLInfoCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ApexResultBLInfoCell.xib; sourceTree = "<group>"; };
  349. 42FB6EBF21F2BB6400F694AB /* ApexResultBookingCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultBookingCell.h; sourceTree = "<group>"; };
  350. 42FB6EC021F2BB6400F694AB /* ApexResultBookingCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultBookingCell.m; sourceTree = "<group>"; };
  351. 42FB6EC121F2BB6400F694AB /* ApexResultBookingCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ApexResultBookingCell.xib; sourceTree = "<group>"; };
  352. 42FB6EC421F2BC5300F694AB /* ApexResultBookingModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultBookingModel.h; sourceTree = "<group>"; };
  353. 42FB6EC521F2BC5300F694AB /* ApexResultBookingModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultBookingModel.m; sourceTree = "<group>"; };
  354. 42FB6EC721F2BC8600F694AB /* ApexResultAddition.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultAddition.h; sourceTree = "<group>"; };
  355. 42FB6EC821F2BC8600F694AB /* ApexResultAddition.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultAddition.m; sourceTree = "<group>"; };
  356. 42FB6ECA21F2C0E300F694AB /* ApexResultBLInfoModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultBLInfoModel.h; sourceTree = "<group>"; };
  357. 42FB6ECB21F2C0E300F694AB /* ApexResultBLInfoModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultBLInfoModel.m; sourceTree = "<group>"; };
  358. 42FB6ECD21F3136300F694AB /* ApexResultMenuItem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultMenuItem.h; sourceTree = "<group>"; };
  359. 42FB6ECE21F3136300F694AB /* ApexResultMenuItem.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultMenuItem.m; sourceTree = "<group>"; };
  360. 7101BEC62031389A00CC6E3A /* DetailCellKVNew.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DetailCellKVNew.h; sourceTree = "<group>"; };
  361. 7101BEC72031389A00CC6E3A /* DetailCellKVNew.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DetailCellKVNew.m; sourceTree = "<group>"; };
  362. 7103C84922549E7E00261926 /* CLLocation+Sino.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "CLLocation+Sino.m"; path = "../../common/MapNavigation/CLLocation+Sino.m"; sourceTree = "<group>"; };
  363. 7103C84A22549E7E00261926 /* CLLocation+Sino.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "CLLocation+Sino.h"; path = "../../common/MapNavigation/CLLocation+Sino.h"; sourceTree = "<group>"; };
  364. 711BA6BF191E0525002EDE6F /* MessageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageViewController.h; sourceTree = "<group>"; };
  365. 711BA6C0191E0525002EDE6F /* MessageViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MessageViewController.m; sourceTree = "<group>"; };
  366. 711BA6C2191E0553002EDE6F /* MessageItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageItem.h; sourceTree = "<group>"; };
  367. 711BA6C3191E0553002EDE6F /* MessageItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MessageItem.m; sourceTree = "<group>"; };
  368. 711DC6B018C30A4800FB1749 /* TableCellEdit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TableCellEdit.h; sourceTree = "<group>"; };
  369. 711DC6B118C30A4800FB1749 /* TableCellEdit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TableCellEdit.m; sourceTree = "<group>"; };
  370. 7120DCEA18BE25CE00E7546F /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
  371. 7120DCEC18BE25DA00E7546F /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
  372. 7120DCEE18BE25E500E7546F /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = System/Library/Frameworks/CoreLocation.framework; sourceTree = SDKROOT; };
  373. 7120DCF018BE25F500E7546F /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; };
  374. 7120DCF218BE260700E7546F /* GLKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLKit.framework; path = System/Library/Frameworks/GLKit.framework; sourceTree = SDKROOT; };
  375. 7120DCF418BE261500E7546F /* ImageIO.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ImageIO.framework; path = System/Library/Frameworks/ImageIO.framework; sourceTree = SDKROOT; };
  376. 7120DCF618BE262300E7546F /* libc++.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libc++.dylib"; path = "usr/lib/libc++.dylib"; sourceTree = SDKROOT; };
  377. 7120DCF818BE262E00E7546F /* libicucore.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libicucore.dylib; path = usr/lib/libicucore.dylib; sourceTree = SDKROOT; };
  378. 7120DCFA18BE263800E7546F /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; };
  379. 7120DCFC18BE264300E7546F /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
  380. 7120DCFE18BE265100E7546F /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
  381. 7120DD0018BE266000E7546F /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
  382. 7120DD0218BE273900E7546F /* LocationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LocationViewController.h; sourceTree = "<group>"; };
  383. 7120DD0318BE273900E7546F /* LocationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LocationViewController.m; sourceTree = "<group>"; };
  384. 712A301118CFEF550022E6E6 /* CustomizeFieldViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomizeFieldViewController.h; sourceTree = "<group>"; };
  385. 712A301218CFEF550022E6E6 /* CustomizeFieldViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomizeFieldViewController.m; sourceTree = "<group>"; };
  386. 712CBA0118CF38DB00C61394 /* RTLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RTLabel.h; sourceTree = "<group>"; };
  387. 712CBA0218CF38DB00C61394 /* RTLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RTLabel.m; sourceTree = "<group>"; };
  388. 71308AF5191E7B0E0024B2B0 /* MessageDetailItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageDetailItem.h; sourceTree = "<group>"; };
  389. 71308AF6191E7B0E0024B2B0 /* MessageDetailItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MessageDetailItem.m; sourceTree = "<group>"; };
  390. 71308AF8191E7B2A0024B2B0 /* MessageDetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageDetailViewController.h; sourceTree = "<group>"; };
  391. 71308AF9191E7B2A0024B2B0 /* MessageDetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MessageDetailViewController.m; sourceTree = "<group>"; };
  392. 7130B3F21900FB61000610D8 /* NewsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NewsViewController.h; sourceTree = "<group>"; };
  393. 7130B3F31900FB61000610D8 /* NewsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NewsViewController.m; sourceTree = "<group>"; };
  394. 71330C1E18BCC4DA0048956C /* FunctionSelectViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FunctionSelectViewController.h; sourceTree = "<group>"; };
  395. 71330C1F18BCC4DA0048956C /* FunctionSelectViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FunctionSelectViewController.m; sourceTree = "<group>"; };
  396. 71375C8D18D96EDE00EBA026 /* TabBarController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TabBarController.h; sourceTree = "<group>"; };
  397. 71375C8E18D96EDE00EBA026 /* TabBarController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TabBarController.m; sourceTree = "<group>"; };
  398. 713AA79F191736E600B44092 /* DocumentsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DocumentsViewController.h; sourceTree = "<group>"; };
  399. 713AA7A0191736E600B44092 /* DocumentsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DocumentsViewController.m; sourceTree = "<group>"; };
  400. 713AA7A21917373600B44092 /* LocalDocumentsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LocalDocumentsViewController.h; sourceTree = "<group>"; };
  401. 713AA7A31917373600B44092 /* LocalDocumentsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LocalDocumentsViewController.m; sourceTree = "<group>"; };
  402. 71406DCC18C36A52000914C4 /* TableCellBool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TableCellBool.h; sourceTree = "<group>"; };
  403. 71406DCD18C36A52000914C4 /* TableCellBool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TableCellBool.m; sourceTree = "<group>"; };
  404. 71406DCF18C36A6E000914C4 /* TableCellDate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TableCellDate.h; sourceTree = "<group>"; };
  405. 71406DD018C36A6E000914C4 /* TableCellDate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TableCellDate.m; sourceTree = "<group>"; };
  406. 714C39B61922FEE1004F045B /* NewsDetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NewsDetailViewController.h; sourceTree = "<group>"; };
  407. 714C39B71922FEE1004F045B /* NewsDetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NewsDetailViewController.m; sourceTree = "<group>"; };
  408. 714C39C019234065004F045B /* Base */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Base; path = Base.lproj/Localizable.strings; sourceTree = "<group>"; };
  409. 71514ED1191B7E2500009C00 /* AddressBookUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AddressBookUI.framework; path = System/Library/Frameworks/AddressBookUI.framework; sourceTree = SDKROOT; };
  410. 715643B620198A1400B04267 /* Main.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = "<group>"; };
  411. 715643B920198A9900B04267 /* RootViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RootViewController.h; sourceTree = "<group>"; };
  412. 715643BA20198A9900B04267 /* RootViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RootViewController.m; sourceTree = "<group>"; };
  413. 715643BC2019AA9B00B04267 /* LoginViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LoginViewController.h; sourceTree = "<group>"; };
  414. 715643BD2019AA9B00B04267 /* LoginViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LoginViewController.m; sourceTree = "<group>"; };
  415. 715643BF2019B27500B04267 /* HomeViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeViewController.h; sourceTree = "<group>"; };
  416. 715643C02019B27500B04267 /* HomeViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeViewController.m; sourceTree = "<group>"; };
  417. 715643C22019B58400B04267 /* OrderHistoryViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OrderHistoryViewController.h; sourceTree = "<group>"; };
  418. 715643C32019B58400B04267 /* OrderHistoryViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = OrderHistoryViewController.m; sourceTree = "<group>"; };
  419. 715643C52019BB6700B04267 /* StaticModelistViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StaticModelistViewController.h; sourceTree = "<group>"; };
  420. 715643C62019BB6700B04267 /* StaticModelistViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = StaticModelistViewController.m; sourceTree = "<group>"; };
  421. 715643C82019BC4C00B04267 /* SearchlistViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SearchlistViewController.h; sourceTree = "<group>"; };
  422. 715643C92019BC4C00B04267 /* SearchlistViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SearchlistViewController.m; sourceTree = "<group>"; };
  423. 715643CB2019BC6C00B04267 /* ToolslistViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ToolslistViewController.h; sourceTree = "<group>"; };
  424. 715643CC2019BC6C00B04267 /* ToolslistViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ToolslistViewController.m; sourceTree = "<group>"; };
  425. 715643CE2019BCCE00B04267 /* MylistViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MylistViewController.h; sourceTree = "<group>"; };
  426. 715643CF2019BCCE00B04267 /* MylistViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MylistViewController.m; sourceTree = "<group>"; };
  427. 715643D1201ACB1700B04267 /* StaticModeTableViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StaticModeTableViewCell.h; sourceTree = "<group>"; };
  428. 715643D2201ACB1700B04267 /* StaticModeTableViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = StaticModeTableViewCell.m; sourceTree = "<group>"; };
  429. 715643D4201AD2AB00B04267 /* StaticModelistViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = StaticModelistViewController.xib; sourceTree = "<group>"; };
  430. 715643D6201AD99300B04267 /* StaticModeTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = StaticModeTableViewCell.xib; sourceTree = "<group>"; };
  431. 715643D9201C079F00B04267 /* tools.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = tools.json; sourceTree = "<group>"; };
  432. 715643DB201C117300B04267 /* search.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = search.json; sourceTree = "<group>"; };
  433. 715643DD201C1AE600B04267 /* my.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = my.json; sourceTree = "<group>"; };
  434. 7157098C2021572600EFE5C5 /* NetworkUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NetworkUtils.m; path = ../../common/NetworkUtils.m; sourceTree = "<group>"; };
  435. 7157098D2021572600EFE5C5 /* NetworkUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NetworkUtils.h; path = ../../common/NetworkUtils.h; sourceTree = "<group>"; };
  436. 715709902021574D00EFE5C5 /* RAConvertor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RAConvertor.h; path = ../../common/RAConvertor.h; sourceTree = "<group>"; };
  437. 715709912021574D00EFE5C5 /* RAConvertor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAConvertor.m; path = ../../common/RAConvertor.m; sourceTree = "<group>"; };
  438. 715709932021576A00EFE5C5 /* const.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = const.h; sourceTree = "<group>"; };
  439. 71570994202157A600EFE5C5 /* RAUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RAUtils.h; path = "../../RedAnt ERP Mobile/common/RAUtils.h"; sourceTree = "<group>"; };
  440. 71570995202157A600EFE5C5 /* RAUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAUtils.m; path = "../../RedAnt ERP Mobile/common/RAUtils.m"; sourceTree = "<group>"; };
  441. 71570997202157BC00EFE5C5 /* RANetworkTaskDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RANetworkTaskDelegate.m; path = ../../common/upload/RANetworkTaskDelegate.m; sourceTree = "<group>"; };
  442. 71570998202157BC00EFE5C5 /* RANetworkTaskDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RANetworkTaskDelegate.h; path = ../../common/upload/RANetworkTaskDelegate.h; sourceTree = "<group>"; };
  443. 7157099A2021591F00EFE5C5 /* config.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = config.h; sourceTree = "<group>"; };
  444. 7157099C20215B5000EFE5C5 /* zip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = zip.c; path = "../../RedAnt ERP Mobile/common/zip/minizip/zip.c"; sourceTree = "<group>"; };
  445. 7157099D20215B5000EFE5C5 /* crypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = crypt.h; path = "../../RedAnt ERP Mobile/common/zip/minizip/crypt.h"; sourceTree = "<group>"; };
  446. 7157099E20215B5000EFE5C5 /* unzip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = unzip.c; path = "../../RedAnt ERP Mobile/common/zip/minizip/unzip.c"; sourceTree = "<group>"; };
  447. 7157099F20215B5000EFE5C5 /* zip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = zip.h; path = "../../RedAnt ERP Mobile/common/zip/minizip/zip.h"; sourceTree = "<group>"; };
  448. 715709A020215B5000EFE5C5 /* ioapi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ioapi.c; path = "../../RedAnt ERP Mobile/common/zip/minizip/ioapi.c"; sourceTree = "<group>"; };
  449. 715709A120215B5000EFE5C5 /* ioapi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ioapi.h; path = "../../RedAnt ERP Mobile/common/zip/minizip/ioapi.h"; sourceTree = "<group>"; };
  450. 715709A220215B5100EFE5C5 /* mztools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mztools.h; path = "../../RedAnt ERP Mobile/common/zip/minizip/mztools.h"; sourceTree = "<group>"; };
  451. 715709A320215B5100EFE5C5 /* unzip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = unzip.h; path = "../../RedAnt ERP Mobile/common/zip/minizip/unzip.h"; sourceTree = "<group>"; };
  452. 715709A420215B5100EFE5C5 /* mztools.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mztools.c; path = "../../RedAnt ERP Mobile/common/zip/minizip/mztools.c"; sourceTree = "<group>"; };
  453. 715709A920215B6200EFE5C5 /* ZipArchive.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ZipArchive.h; path = "../../RedAnt ERP Mobile/common/zip/ZipArchive.h"; sourceTree = "<group>"; };
  454. 715709AA20215B6200EFE5C5 /* ZipArchive.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = ZipArchive.mm; path = "../../RedAnt ERP Mobile/common/zip/ZipArchive.mm"; sourceTree = "<group>"; };
  455. 715709AC20215CB000EFE5C5 /* RANetwork.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RANetwork.h; sourceTree = "<group>"; };
  456. 715709AD20215CB000EFE5C5 /* RANetwork.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RANetwork.m; sourceTree = "<group>"; };
  457. 715709B020215DFF00EFE5C5 /* NSData+CommonCrypto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSData+CommonCrypto.m"; path = "../../RedAnt ERP Mobile/common/AES/NSData+CommonCrypto.m"; sourceTree = "<group>"; };
  458. 715709B120215DFF00EFE5C5 /* NSString+Base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSString+Base64.h"; path = "../../RedAnt ERP Mobile/common/AES/NSString+Base64.h"; sourceTree = "<group>"; };
  459. 715709B220215DFF00EFE5C5 /* NSString+Base64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSString+Base64.m"; path = "../../RedAnt ERP Mobile/common/AES/NSString+Base64.m"; sourceTree = "<group>"; };
  460. 715709B320215DFF00EFE5C5 /* NSData+Base64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSData+Base64.m"; path = "../../RedAnt ERP Mobile/common/AES/NSData+Base64.m"; sourceTree = "<group>"; };
  461. 715709B420215DFF00EFE5C5 /* AESCrypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AESCrypt.h; path = "../../RedAnt ERP Mobile/common/AES/AESCrypt.h"; sourceTree = "<group>"; };
  462. 715709B520215DFF00EFE5C5 /* NSData+Base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSData+Base64.h"; path = "../../RedAnt ERP Mobile/common/AES/NSData+Base64.h"; sourceTree = "<group>"; };
  463. 715709B620215DFF00EFE5C5 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = LICENSE; path = "../../RedAnt ERP Mobile/common/AES/LICENSE"; sourceTree = "<group>"; };
  464. 715709B720215DFF00EFE5C5 /* NSData+CommonCrypto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSData+CommonCrypto.h"; path = "../../RedAnt ERP Mobile/common/AES/NSData+CommonCrypto.h"; sourceTree = "<group>"; };
  465. 715709B820215DFF00EFE5C5 /* AESCrypt.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AESCrypt.m; path = "../../RedAnt ERP Mobile/common/AES/AESCrypt.m"; sourceTree = "<group>"; };
  466. 716027CF204D334A003CA085 /* DetailShareItemProvider.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DetailShareItemProvider.h; sourceTree = "<group>"; };
  467. 716027D0204D334A003CA085 /* DetailShareItemProvider.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DetailShareItemProvider.m; sourceTree = "<group>"; };
  468. 716027D2204D3D15003CA085 /* LPShareActivity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LPShareActivity.m; sourceTree = "<group>"; };
  469. 716027D3204D3D15003CA085 /* LPShareActivity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LPShareActivity.h; sourceTree = "<group>"; };
  470. 7162546A201C3AF1009E3A41 /* readme.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = readme.txt; sourceTree = "<group>"; };
  471. 7162546C201C412E009E3A41 /* ShippingStatusCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ShippingStatusCell.xib; sourceTree = "<group>"; };
  472. 7162546F201C5205009E3A41 /* fake_container_list.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = fake_container_list.json; sourceTree = "<group>"; };
  473. 716FF7901904ED2600ED6C3D /* NewsData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NewsData.h; sourceTree = "<group>"; };
  474. 716FF7911904ED2600ED6C3D /* NewsData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NewsData.m; sourceTree = "<group>"; };
  475. 716FF7931904FBC600ED6C3D /* NewsTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NewsTableViewCell.h; sourceTree = "<group>"; };
  476. 716FF7941904FBC600ED6C3D /* NewsTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NewsTableViewCell.m; sourceTree = "<group>"; };
  477. 717D76E918C7F8120070302D /* Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Reachability.h; sourceTree = "<group>"; };
  478. 717D76EA18C7F8120070302D /* Reachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Reachability.m; sourceTree = "<group>"; };
  479. 717D772D18C84E3F0070302D /* PageData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PageData.h; sourceTree = "<group>"; };
  480. 717D772E18C84E3F0070302D /* PageData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PageData.m; sourceTree = "<group>"; };
  481. 71807B972021965B00E1F1DD /* fake_tracking.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = fake_tracking.json; sourceTree = "<group>"; };
  482. 71807B9A2021979A00E1F1DD /* DetailCellTracking.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DetailCellTracking.h; sourceTree = "<group>"; };
  483. 71807B9B2021979A00E1F1DD /* DetailCellTracking.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DetailCellTracking.m; sourceTree = "<group>"; };
  484. 71807B9D2021ACE500E1F1DD /* fake_search.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = fake_search.json; sourceTree = "<group>"; };
  485. 718BE8A6190F9D970046EA6A /* MyAutocompleteView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyAutocompleteView.h; sourceTree = "<group>"; };
  486. 718BE8A7190F9D970046EA6A /* MyAutocompleteView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyAutocompleteView.m; sourceTree = "<group>"; };
  487. 718BE8AA190F9D970046EA6A /* MyAutocompleteItemsSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyAutocompleteItemsSource.h; sourceTree = "<group>"; };
  488. 718BE8AB190F9D970046EA6A /* MyAutocompleteItemsSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyAutocompleteItemsSource.m; sourceTree = "<group>"; };
  489. 718BE8AC190F9D970046EA6A /* MyAutocompletionCellFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyAutocompletionCellFactory.h; sourceTree = "<group>"; };
  490. 718BE8AD190F9D970046EA6A /* MyAutocompletionCellFactory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyAutocompletionCellFactory.m; sourceTree = "<group>"; };
  491. 718BE8AE190F9D970046EA6A /* MySuggestion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MySuggestion.h; sourceTree = "<group>"; };
  492. 718BE8AF190F9D970046EA6A /* MySuggestion.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MySuggestion.m; sourceTree = "<group>"; };
  493. 71951E6D18C6A9A5005024BD /* TouchLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TouchLabel.h; sourceTree = "<group>"; };
  494. 71951E6E18C6A9A5005024BD /* TouchLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TouchLabel.m; sourceTree = "<group>"; };
  495. 719A51A318C5A4AF0080C075 /* SimpleGrid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SimpleGrid.h; path = ../SimpleGrid.h; sourceTree = "<group>"; };
  496. 719A51A418C5A4AF0080C075 /* SimpleGrid.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SimpleGrid.m; path = ../SimpleGrid.m; sourceTree = "<group>"; };
  497. 719A51A718C5A5D30080C075 /* SimpleGridDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SimpleGridDataSource.h; sourceTree = "<group>"; };
  498. 719A51A818C5A5D30080C075 /* SimpleGridDataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SimpleGridDataSource.m; sourceTree = "<group>"; };
  499. 719A51B818C5AB7B0080C075 /* SimpleGridComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SimpleGridComponent.h; sourceTree = "<group>"; };
  500. 719A51B918C5AB7B0080C075 /* SimpleGridComponent.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SimpleGridComponent.m; sourceTree = "<group>"; };
  501. 719BEC1518FFAB7B00DFE987 /* ToolsPanelViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ToolsPanelViewController.h; sourceTree = "<group>"; };
  502. 719BEC1618FFAB7B00DFE987 /* ToolsPanelViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ToolsPanelViewController.m; sourceTree = "<group>"; };
  503. 719E7E3118C0368A003408FF /* ApexMobileDB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApexMobileDB.h; sourceTree = "<group>"; };
  504. 719E7E3218C0368A003408FF /* ApexMobileDB.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApexMobileDB.m; sourceTree = "<group>"; };
  505. 719E7E3418C0395E003408FF /* libsqlite3.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libsqlite3.dylib; path = usr/lib/libsqlite3.dylib; sourceTree = SDKROOT; };
  506. 719EF8DD18BB839F00EFFF5F /* Apex Mobile.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Apex Mobile.app"; sourceTree = BUILT_PRODUCTS_DIR; };
  507. 719EF8E018BB839F00EFFF5F /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
  508. 719EF8E218BB839F00EFFF5F /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
  509. 719EF8E418BB839F00EFFF5F /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
  510. 719EF8E818BB839F00EFFF5F /* Apex Mobile-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Apex Mobile-Info.plist"; sourceTree = "<group>"; };
  511. 719EF8EA18BB839F00EFFF5F /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  512. 719EF8EC18BB839F00EFFF5F /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  513. 719EF8EE18BB839F00EFFF5F /* Apex Mobile-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Apex Mobile-Prefix.pch"; sourceTree = "<group>"; };
  514. 719EF8EF18BB839F00EFFF5F /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
  515. 719EF8F018BB839F00EFFF5F /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
  516. 719EF8F818BB839F00EFFF5F /* ApexMobileFirstViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexMobileFirstViewController.h; sourceTree = "<group>"; };
  517. 719EF8F918BB839F00EFFF5F /* ApexMobileFirstViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexMobileFirstViewController.m; sourceTree = "<group>"; };
  518. 719EF8FB18BB839F00EFFF5F /* ApexMobileSecondViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexMobileSecondViewController.h; sourceTree = "<group>"; };
  519. 719EF8FC18BB839F00EFFF5F /* ApexMobileSecondViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexMobileSecondViewController.m; sourceTree = "<group>"; };
  520. 719EF90518BB839F00EFFF5F /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
  521. 719EF90D18BB839F00EFFF5F /* Apex MobileTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Apex MobileTests-Info.plist"; sourceTree = "<group>"; };
  522. 719EF90F18BB839F00EFFF5F /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  523. 719EF91118BB839F00EFFF5F /* Apex_MobileTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Apex_MobileTests.m; sourceTree = "<group>"; };
  524. 71A003FA18D680560057CDFD /* RetrievePasswordViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RetrievePasswordViewController.h; sourceTree = "<group>"; };
  525. 71A003FB18D680560057CDFD /* RetrievePasswordViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RetrievePasswordViewController.m; sourceTree = "<group>"; };
  526. 71A003FD18D6BFB40057CDFD /* ChangePasswordViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChangePasswordViewController.h; sourceTree = "<group>"; };
  527. 71A003FE18D6BFB40057CDFD /* ChangePasswordViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChangePasswordViewController.m; sourceTree = "<group>"; };
  528. 71A01D7718C9AE77003307A9 /* DetailCellKV.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailCellKV.h; sourceTree = "<group>"; };
  529. 71A01D7818C9AE77003307A9 /* DetailCellKV.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailCellKV.m; sourceTree = "<group>"; };
  530. 71A01D7A18C9AE97003307A9 /* DetailCellList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailCellList.h; sourceTree = "<group>"; };
  531. 71A01D7B18C9AE97003307A9 /* DetailCellList.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailCellList.m; sourceTree = "<group>"; };
  532. 71A01D7D18C9AEC8003307A9 /* DetailCellWeb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailCellWeb.h; sourceTree = "<group>"; };
  533. 71A01D7E18C9AEC8003307A9 /* DetailCellWeb.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailCellWeb.m; sourceTree = "<group>"; };
  534. 71A01D8018C9BA67003307A9 /* DetailContent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailContent.h; sourceTree = "<group>"; };
  535. 71A01D8118C9BA67003307A9 /* DetailContent.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailContent.m; sourceTree = "<group>"; };
  536. 71A01D8318C9BDC8003307A9 /* DetailTabBarController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailTabBarController.h; sourceTree = "<group>"; };
  537. 71A01D8418C9BDC8003307A9 /* DetailTabBarController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailTabBarController.m; sourceTree = "<group>"; };
  538. 71A2D76018DC3895001C380A /* LineView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LineView.h; sourceTree = "<group>"; };
  539. 71A2D76118DC3895001C380A /* LineView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LineView.m; sourceTree = "<group>"; };
  540. 71A565D718C20F5900CDAC07 /* SearchTableAdapter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SearchTableAdapter.h; sourceTree = "<group>"; };
  541. 71A565D818C20F5900CDAC07 /* SearchTableAdapter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SearchTableAdapter.m; sourceTree = "<group>"; };
  542. 71A565DD18C212EA00CDAC07 /* Constant.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Constant.h; sourceTree = "<group>"; };
  543. 71A565DE18C212EA00CDAC07 /* Constant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Constant.m; sourceTree = "<group>"; };
  544. 71AE427118C47AF900B8EC3D /* SearchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SearchViewController.h; sourceTree = "<group>"; };
  545. 71AE427218C47AF900B8EC3D /* SearchViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SearchViewController.m; sourceTree = "<group>"; };
  546. 71B7998B2021AE7400F8685E /* MDHTMLLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MDHTMLLabel.h; path = "../../RedAnt ERP Mobile/common/customUI/MDHTMLLabel.h"; sourceTree = "<group>"; };
  547. 71B7998C2021AE7400F8685E /* MDHTMLLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MDHTMLLabel.m; path = "../../RedAnt ERP Mobile/common/customUI/MDHTMLLabel.m"; sourceTree = "<group>"; };
  548. 71B799992021B22D00F8685E /* AMResultViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMResultViewController.h; sourceTree = "<group>"; };
  549. 71B7999A2021B22D00F8685E /* AMResultViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMResultViewController.m; sourceTree = "<group>"; };
  550. 71BA502C1908ED5700D0BD31 /* CellItemHistory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CellItemHistory.h; sourceTree = "<group>"; };
  551. 71BA502D1908ED5700D0BD31 /* CellItemHistory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CellItemHistory.m; sourceTree = "<group>"; };
  552. 71BA502F1908ED9100D0BD31 /* HistoryViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HistoryViewController.h; sourceTree = "<group>"; };
  553. 71BA50301908ED9100D0BD31 /* HistoryViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HistoryViewController.m; sourceTree = "<group>"; };
  554. 71BA50321908EDCF00D0BD31 /* HistoryTabBarController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HistoryTabBarController.h; sourceTree = "<group>"; };
  555. 71BA50331908EDCF00D0BD31 /* HistoryTabBarController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HistoryTabBarController.m; sourceTree = "<group>"; };
  556. 71BA50351908F21500D0BD31 /* HistoryData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HistoryData.h; sourceTree = "<group>"; };
  557. 71BA50361908F21500D0BD31 /* HistoryData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HistoryData.m; sourceTree = "<group>"; };
  558. 71CEE38818CB749E00052C63 /* DetailPageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailPageViewController.h; sourceTree = "<group>"; };
  559. 71CEE38918CB749E00052C63 /* DetailPageViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailPageViewController.m; sourceTree = "<group>"; };
  560. 71CEE3D518CC559B00052C63 /* ApexMobileNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApexMobileNavigationController.h; sourceTree = "<group>"; };
  561. 71CEE3D618CC559B00052C63 /* ApexMobileNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApexMobileNavigationController.m; sourceTree = "<group>"; };
  562. 71DA6045190A00F600683003 /* FavoritesData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FavoritesData.h; sourceTree = "<group>"; };
  563. 71DA6046190A00F600683003 /* FavoritesData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FavoritesData.m; sourceTree = "<group>"; };
  564. 71DA6048190A02CE00683003 /* FavoritesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FavoritesViewController.h; path = ../FavoritesViewController.h; sourceTree = "<group>"; };
  565. 71DA6049190A02CE00683003 /* FavoritesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FavoritesViewController.m; path = ../FavoritesViewController.m; sourceTree = "<group>"; };
  566. 71DA74A418BDDD30003B46A6 /* AboutViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AboutViewController.h; path = ../AboutViewController.h; sourceTree = "<group>"; };
  567. 71DA74A518BDDD30003B46A6 /* AboutViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AboutViewController.m; path = ../AboutViewController.m; sourceTree = "<group>"; };
  568. 71DA74A718BDDFB5003B46A6 /* about.htm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = about.htm; sourceTree = "<group>"; };
  569. 71E0D1D22022AB7E009A08EB /* FullyShowViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FullyShowViewController.m; path = ../../common/customUI/FullyShowViewController.m; sourceTree = "<group>"; };
  570. 71E0D1D32022AB7E009A08EB /* ResultViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ResultViewController.m; path = ../../common/customUI/ResultViewController.m; sourceTree = "<group>"; };
  571. 71E0D1D42022AB7E009A08EB /* ResultViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ResultViewController.h; path = ../../common/customUI/ResultViewController.h; sourceTree = "<group>"; };
  572. 71E0D1D52022AB7E009A08EB /* Result.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = Result.storyboard; path = ../../common/customUI/Result.storyboard; sourceTree = "<group>"; };
  573. 71E0D1D62022AB7E009A08EB /* FullyShowViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FullyShowViewController.h; path = ../../common/customUI/FullyShowViewController.h; sourceTree = "<group>"; };
  574. 71F67CF419063612004E8462 /* ApexHistoryViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApexHistoryViewController.h; sourceTree = "<group>"; };
  575. 71F67CF519063612004E8462 /* ApexHistoryViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApexHistoryViewController.m; sourceTree = "<group>"; };
  576. 71F67CF719065EA8004E8462 /* SimpleMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SimpleMenu.h; sourceTree = "<group>"; };
  577. 71F67CF819065EA8004E8462 /* SimpleMenu.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SimpleMenu.m; sourceTree = "<group>"; };
  578. 71F67CFA19066375004E8462 /* PulldownMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PulldownMenu.h; sourceTree = "<group>"; };
  579. 71F67CFB19066375004E8462 /* PulldownMenu.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PulldownMenu.m; sourceTree = "<group>"; };
  580. 71FCDE0520492B5E00B0746B /* MyQLPreviewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MyQLPreviewController.h; path = ../../common/customUI/MyQLPreviewController.h; sourceTree = "<group>"; };
  581. 71FCDE0620492B5E00B0746B /* MyQLPreviewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = MyQLPreviewController.m; path = ../../common/customUI/MyQLPreviewController.m; sourceTree = "<group>"; };
  582. /* End PBXFileReference section */
  583. /* Begin PBXFrameworksBuildPhase section */
  584. 719EF8DA18BB839F00EFFF5F /* Frameworks */ = {
  585. isa = PBXFrameworksBuildPhase;
  586. buildActionMask = 2147483647;
  587. files = (
  588. 426F397F2033CEE80025C568 /* AudioToolbox.framework in Frameworks */,
  589. 427CF5E0202452460041472A /* Accelerate.framework in Frameworks */,
  590. 71514ED2191B7E2500009C00 /* AddressBookUI.framework in Frameworks */,
  591. 719E7E3518C0395E003408FF /* libsqlite3.dylib in Frameworks */,
  592. 7120DD0118BE266000E7546F /* SystemConfiguration.framework in Frameworks */,
  593. 7120DCFF18BE265100E7546F /* QuartzCore.framework in Frameworks */,
  594. 7120DCFB18BE263800E7546F /* libz.dylib in Frameworks */,
  595. 7120DCF918BE262E00E7546F /* libicucore.dylib in Frameworks */,
  596. 7120DCF718BE262300E7546F /* libc++.dylib in Frameworks */,
  597. 7120DCF518BE261500E7546F /* ImageIO.framework in Frameworks */,
  598. 7120DCF118BE25F500E7546F /* CoreText.framework in Frameworks */,
  599. 7120DCEF18BE25E500E7546F /* CoreLocation.framework in Frameworks */,
  600. 7120DCED18BE25DA00E7546F /* CoreData.framework in Frameworks */,
  601. 7120DCEB18BE25CE00E7546F /* AVFoundation.framework in Frameworks */,
  602. 719EF8E318BB839F00EFFF5F /* CoreGraphics.framework in Frameworks */,
  603. 719EF8E518BB839F00EFFF5F /* UIKit.framework in Frameworks */,
  604. 719EF8E118BB839F00EFFF5F /* Foundation.framework in Frameworks */,
  605. );
  606. runOnlyForDeploymentPostprocessing = 0;
  607. };
  608. /* End PBXFrameworksBuildPhase section */
  609. /* Begin PBXGroup section */
  610. 420DEF1C20A1889F00720524 /* Communication */ = {
  611. isa = PBXGroup;
  612. children = (
  613. 420DEF2320A1898500720524 /* AMCommHeadCell.h */,
  614. 420DEF2420A1898500720524 /* AMCommHeadCell.m */,
  615. 420DEF2520A1898500720524 /* AMCommHeadCell.xib */,
  616. 420DEF2820A1899600720524 /* AMCommContentCell.h */,
  617. 420DEF2920A1899600720524 /* AMCommContentCell.m */,
  618. 420DEF2A20A1899600720524 /* AMCommContentCell.xib */,
  619. 420DEF2D20A189AA00720524 /* AMCommEditCell.h */,
  620. 420DEF2E20A189AA00720524 /* AMCommEditCell.m */,
  621. 420DEF2F20A189AA00720524 /* AMCommEditCell.xib */,
  622. 42DE626020A41907005FB582 /* AMTextField.h */,
  623. 42DE626120A41907005FB582 /* AMTextField.m */,
  624. );
  625. name = Communication;
  626. sourceTree = "<group>";
  627. };
  628. 42253C95209C3BF300879B09 /* ShipMap */ = {
  629. isa = PBXGroup;
  630. children = (
  631. 42253C96209C3C0F00879B09 /* AMShipMap.h */,
  632. 42253C97209C3C0F00879B09 /* AMShipMap.m */,
  633. );
  634. path = ShipMap;
  635. sourceTree = "<group>";
  636. };
  637. 4225E42121E084A4009D2364 /* Result */ = {
  638. isa = PBXGroup;
  639. children = (
  640. 4225E44421E0989D009D2364 /* ApexResultProtocol.h */,
  641. 42FB6ECD21F3136300F694AB /* ApexResultMenuItem.h */,
  642. 42FB6ECE21F3136300F694AB /* ApexResultMenuItem.m */,
  643. 4225E42221E08502009D2364 /* ApexResultViewController.h */,
  644. 4225E42321E08502009D2364 /* ApexResultViewController.m */,
  645. 4225E42521E08576009D2364 /* ApexResult.storyboard */,
  646. 4225E44521E099B7009D2364 /* Presenter */,
  647. 42C6754F21E3262D001E3FF4 /* QuickLook */,
  648. 4225E42A21E08858009D2364 /* TableDelegate */,
  649. 4225E42921E0884E009D2364 /* TableDataSource */,
  650. 4225E42821E085E3009D2364 /* Model */,
  651. 4225E42721E085CE009D2364 /* Cell */,
  652. );
  653. path = Result;
  654. sourceTree = "<group>";
  655. };
  656. 4225E42721E085CE009D2364 /* Cell */ = {
  657. isa = PBXGroup;
  658. children = (
  659. 3CE1DCFF251C87DC00630A4F /* ApexResultAirAwbInfoCell.h */,
  660. 3CE1DCFE251C87DC00630A4F /* ApexResultAirAwbInfoCell.m */,
  661. 3CE1DD00251C87DC00630A4F /* ApexResultAirAwbInfoCell.xib */,
  662. 3CE1DD01251C87DC00630A4F /* ApexResultAirBookingCell.h */,
  663. 3CE1DCFC251C87DC00630A4F /* ApexResultAirBookingCell.m */,
  664. 3CE1DCFD251C87DC00630A4F /* ApexResultAirBookingCell.xib */,
  665. 4225E43121E08A54009D2364 /* ApexResultContainerCell.h */,
  666. 4225E43221E08A54009D2364 /* ApexResultContainerCell.m */,
  667. 42FB6EB821F2B9FE00F694AB /* ApexResultContainerCell.xib */,
  668. 4225E43621E08A8C009D2364 /* ApexResultDocumentCell.h */,
  669. 4225E43721E08A8C009D2364 /* ApexResultDocumentCell.m */,
  670. 4225E43821E08A8C009D2364 /* ApexResultDocumentCell.xib */,
  671. 42FB6EBA21F2BAB800F694AB /* ApexResultBLInfoCell.h */,
  672. 42FB6EBB21F2BAB800F694AB /* ApexResultBLInfoCell.m */,
  673. 42FB6EBC21F2BAB800F694AB /* ApexResultBLInfoCell.xib */,
  674. 42FB6EBF21F2BB6400F694AB /* ApexResultBookingCell.h */,
  675. 42FB6EC021F2BB6400F694AB /* ApexResultBookingCell.m */,
  676. 42FB6EC121F2BB6400F694AB /* ApexResultBookingCell.xib */,
  677. 42C6754C21E2F1D4001E3FF4 /* ApexResultAdditionView.h */,
  678. 42C6754D21E2F1D4001E3FF4 /* ApexResultAdditionView.m */,
  679. 42E8212E21F6ED1800127705 /* ApexResultAdditionView.xib */,
  680. );
  681. path = Cell;
  682. sourceTree = "<group>";
  683. };
  684. 4225E42821E085E3009D2364 /* Model */ = {
  685. isa = PBXGroup;
  686. children = (
  687. 3CE1DD07251C87F400630A4F /* ApexResultAirAwbInfoModel.h */,
  688. 3CE1DD0A251C87F400630A4F /* ApexResultAirAwbInfoModel.m */,
  689. 3CE1DD08251C87F400630A4F /* ApexResultAirBookingModel.h */,
  690. 3CE1DD09251C87F400630A4F /* ApexResultAirBookingModel.m */,
  691. 4225E44121E08B47009D2364 /* ApexResultBaseModel.h */,
  692. 4225E44221E08B47009D2364 /* ApexResultBaseModel.m */,
  693. 42FB6EC721F2BC8600F694AB /* ApexResultAddition.h */,
  694. 42FB6EC821F2BC8600F694AB /* ApexResultAddition.m */,
  695. 4225E43B21E08ACE009D2364 /* ApexResultContainerModel.h */,
  696. 4225E43C21E08ACE009D2364 /* ApexResultContainerModel.m */,
  697. 4225E43E21E08AEF009D2364 /* ApexResultDocumentModel.h */,
  698. 4225E43F21E08AEF009D2364 /* ApexResultDocumentModel.m */,
  699. 42FB6EC421F2BC5300F694AB /* ApexResultBookingModel.h */,
  700. 42FB6EC521F2BC5300F694AB /* ApexResultBookingModel.m */,
  701. 42FB6ECA21F2C0E300F694AB /* ApexResultBLInfoModel.h */,
  702. 42FB6ECB21F2C0E300F694AB /* ApexResultBLInfoModel.m */,
  703. );
  704. path = Model;
  705. sourceTree = "<group>";
  706. };
  707. 4225E42921E0884E009D2364 /* TableDataSource */ = {
  708. isa = PBXGroup;
  709. children = (
  710. 4225E42E21E088AA009D2364 /* ApexResultViewController+TableDataSource.h */,
  711. 4225E42F21E088AA009D2364 /* ApexResultViewController+TableDataSource.m */,
  712. );
  713. path = TableDataSource;
  714. sourceTree = "<group>";
  715. };
  716. 4225E42A21E08858009D2364 /* TableDelegate */ = {
  717. isa = PBXGroup;
  718. children = (
  719. 4225E42B21E08895009D2364 /* ApexResultViewController+TableDelegate.h */,
  720. 4225E42C21E08895009D2364 /* ApexResultViewController+TableDelegate.m */,
  721. );
  722. path = TableDelegate;
  723. sourceTree = "<group>";
  724. };
  725. 4225E44521E099B7009D2364 /* Presenter */ = {
  726. isa = PBXGroup;
  727. children = (
  728. 4225E44621E099CB009D2364 /* ApexResultPresenter.h */,
  729. 4225E44721E099CB009D2364 /* ApexResultPresenter.m */,
  730. );
  731. path = Presenter;
  732. sourceTree = "<group>";
  733. };
  734. 4225E44921E0A39A009D2364 /* HUD */ = {
  735. isa = PBXGroup;
  736. children = (
  737. 4225E44A21E0A39A009D2364 /* RAProgressHUD.h */,
  738. 4225E44B21E0A39A009D2364 /* RAProgressHUD.m */,
  739. );
  740. name = HUD;
  741. path = ../../common/HUD;
  742. sourceTree = "<group>";
  743. };
  744. 4225E44C21E0A39A009D2364 /* LayoutConstraint */ = {
  745. isa = PBXGroup;
  746. children = (
  747. 4225E44E21E0A39A009D2364 /* UIView+RAConstraint.h */,
  748. 4225E44D21E0A39A009D2364 /* UIView+RAConstraint.m */,
  749. );
  750. name = LayoutConstraint;
  751. path = ../../common/LayoutConstraint;
  752. sourceTree = "<group>";
  753. };
  754. 425390072079B73800ECF982 /* KPI */ = {
  755. isa = PBXGroup;
  756. children = (
  757. 425390152079B7EA00ECF982 /* Cell */,
  758. 420F0CA220901C2E005C4690 /* KPIRepeatTapGestureRecognizer.h */,
  759. 420F0CA320901C2E005C4690 /* KPIRepeatTapGestureRecognizer.m */,
  760. );
  761. name = KPI;
  762. sourceTree = "<group>";
  763. };
  764. 425390152079B7EA00ECF982 /* Cell */ = {
  765. isa = PBXGroup;
  766. children = (
  767. 4253900B2079B7C700ECF982 /* KPIPieChartCell.h */,
  768. 4253900C2079B7C700ECF982 /* KPIPieChartCell.m */,
  769. 4253900D2079B7C700ECF982 /* KPIPieChartCell.xib */,
  770. 42539027207A159300ECF982 /* KPIButton.h */,
  771. 42539028207A159300ECF982 /* KPIButton.m */,
  772. 42BFD2D0207B697800DA9038 /* KPICell.h */,
  773. 42BFD2D1207B697800DA9038 /* KPICell.m */,
  774. 42BB74082084732D00B9B6E4 /* KPICell.xib */,
  775. 42BB7400208431DA00B9B6E4 /* KPILegendCell.h */,
  776. 42BB7401208431DA00B9B6E4 /* KPILegendCell.m */,
  777. 42BB740A2084737800B9B6E4 /* KPILegendCell.xib */,
  778. 42BB740320846B4500B9B6E4 /* KPITableCell.h */,
  779. 42BB740420846B4500B9B6E4 /* KPITableCell.m */,
  780. 42BB740520846B4500B9B6E4 /* KPITableCell.xib */,
  781. );
  782. name = Cell;
  783. sourceTree = "<group>";
  784. };
  785. 425390162079B94300ECF982 /* PieChart */ = {
  786. isa = PBXGroup;
  787. children = (
  788. 425390192079B99B00ECF982 /* PieChart.xcassets */,
  789. 4253901F2079B99B00ECF982 /* XYCommon.h */,
  790. 425390172079B99A00ECF982 /* XYCommon.m */,
  791. 4253901A2079B99B00ECF982 /* XYPieChartView.h */,
  792. 4253901C2079B99B00ECF982 /* XYPieChartView.m */,
  793. 4253901D2079B99B00ECF982 /* XYRenderView.h */,
  794. 4253901E2079B99B00ECF982 /* XYRenderView.m */,
  795. 425390182079B99A00ECF982 /* XYRotatedView.h */,
  796. 4253901B2079B99B00ECF982 /* XYRotatedView.m */,
  797. );
  798. path = PieChart;
  799. sourceTree = "<group>";
  800. };
  801. 425CF088201EAF8800750E32 /* History */ = {
  802. isa = PBXGroup;
  803. children = (
  804. 715643C22019B58400B04267 /* OrderHistoryViewController.h */,
  805. 715643C32019B58400B04267 /* OrderHistoryViewController.m */,
  806. );
  807. name = History;
  808. sourceTree = "<group>";
  809. };
  810. 425CF089201EB2B500750E32 /* Refresh */ = {
  811. isa = PBXGroup;
  812. children = (
  813. 425CF08A201EB2B500750E32 /* Footer */,
  814. 425CF08D201EB2B500750E32 /* Header */,
  815. 425CF090201EB2B500750E32 /* JLRefreshBasis.h */,
  816. 425CF091201EB2B500750E32 /* JLRefreshBasis.m */,
  817. 425CF092201EB2B500750E32 /* UIScrollView+JLRefresh.h */,
  818. 425CF093201EB2B500750E32 /* UIScrollView+JLRefresh.m */,
  819. 425CF094201EB2B500750E32 /* UIView+JLExtension.h */,
  820. 425CF095201EB2B500750E32 /* UIView+JLExtension.m */,
  821. );
  822. name = Refresh;
  823. path = ../../common/customUI/Refresh;
  824. sourceTree = "<group>";
  825. };
  826. 425CF08A201EB2B500750E32 /* Footer */ = {
  827. isa = PBXGroup;
  828. children = (
  829. 425CF08B201EB2B500750E32 /* JLRefreshFooter.h */,
  830. 425CF08C201EB2B500750E32 /* JLRefreshFooter.m */,
  831. );
  832. path = Footer;
  833. sourceTree = "<group>";
  834. };
  835. 425CF08D201EB2B500750E32 /* Header */ = {
  836. isa = PBXGroup;
  837. children = (
  838. 425CF08E201EB2B500750E32 /* JLRefreshHeader.h */,
  839. 425CF08F201EB2B500750E32 /* JLRefreshHeader.m */,
  840. );
  841. path = Header;
  842. sourceTree = "<group>";
  843. };
  844. 42604123201C53DB002374A8 /* Home */ = {
  845. isa = PBXGroup;
  846. children = (
  847. 715643BF2019B27500B04267 /* HomeViewController.h */,
  848. 715643C02019B27500B04267 /* HomeViewController.m */,
  849. 42604125201C578B002374A8 /* ShipSearchController.h */,
  850. 42604126201C578B002374A8 /* ShipSearchController.m */,
  851. 42604128201C57A7002374A8 /* ShipSearch.storyboard */,
  852. );
  853. name = Home;
  854. sourceTree = "<group>";
  855. };
  856. 42604124201C53ED002374A8 /* ShipStatusCell */ = {
  857. isa = PBXGroup;
  858. children = (
  859. 7162546C201C412E009E3A41 /* ShippingStatusCell.xib */,
  860. 42604120201C4B41002374A8 /* ShipingStatusCell.h */,
  861. 42604121201C4B41002374A8 /* ShipingStatusCell.m */,
  862. );
  863. name = ShipStatusCell;
  864. sourceTree = "<group>";
  865. };
  866. 426E8AB4202163EB0073BA5D /* Alert */ = {
  867. isa = PBXGroup;
  868. children = (
  869. 426E8AB5202163EC0073BA5D /* JLCustomerAlertController.h */,
  870. 426E8AB6202163EC0073BA5D /* JLCustomerAlertController.m */,
  871. 426E8AB7202163EC0073BA5D /* JLPresentationController.h */,
  872. 426E8AB8202163EC0073BA5D /* JLPresentationController.m */,
  873. 426E8ABB2021AEC50073BA5D /* JLCustomerNavigationAlertController.h */,
  874. 426E8ABC2021AEC50073BA5D /* JLCustomerNavigationAlertController.m */,
  875. );
  876. name = Alert;
  877. path = ../../common/customUI/Alert;
  878. sourceTree = "<group>";
  879. };
  880. 42C6754F21E3262D001E3FF4 /* QuickLook */ = {
  881. isa = PBXGroup;
  882. children = (
  883. 42C6755021E32654001E3FF4 /* ApexResultViewController+QuickLook.h */,
  884. 42C6755121E32654001E3FF4 /* ApexResultViewController+QuickLook.m */,
  885. );
  886. path = QuickLook;
  887. sourceTree = "<group>";
  888. };
  889. 713AA79E1917366A00B44092 /* documents */ = {
  890. isa = PBXGroup;
  891. children = (
  892. 713AA79F191736E600B44092 /* DocumentsViewController.h */,
  893. 713AA7A0191736E600B44092 /* DocumentsViewController.m */,
  894. 713AA7A21917373600B44092 /* LocalDocumentsViewController.h */,
  895. 713AA7A31917373600B44092 /* LocalDocumentsViewController.m */,
  896. );
  897. name = documents;
  898. sourceTree = "<group>";
  899. };
  900. 715643B820198A6000B04267 /* new */ = {
  901. isa = PBXGroup;
  902. children = (
  903. 42253C95209C3BF300879B09 /* ShipMap */,
  904. 425390162079B94300ECF982 /* PieChart */,
  905. 425390072079B73800ECF982 /* KPI */,
  906. 716027CE204D3302003CA085 /* share */,
  907. 7162546A201C3AF1009E3A41 /* readme.txt */,
  908. 7157099A2021591F00EFE5C5 /* config.h */,
  909. 715709932021576A00EFE5C5 /* const.h */,
  910. 7157098F2021573600EFE5C5 /* utils */,
  911. 71B7998E2021AE7F00F8685E /* customUI */,
  912. 7157098B202156EC00EFE5C5 /* network */,
  913. 71B799822021AE3200F8685E /* result */,
  914. 71807B992021976000E1F1DD /* detail */,
  915. 42604124201C53ED002374A8 /* ShipStatusCell */,
  916. 425CF088201EAF8800750E32 /* History */,
  917. 42604123201C53DB002374A8 /* Home */,
  918. 7162546E201C51DC009E3A41 /* fake data */,
  919. 715643D8201C057E00B04267 /* ModeList */,
  920. 715643B920198A9900B04267 /* RootViewController.h */,
  921. 715643BA20198A9900B04267 /* RootViewController.m */,
  922. 715643BC2019AA9B00B04267 /* LoginViewController.h */,
  923. 715643BD2019AA9B00B04267 /* LoginViewController.m */,
  924. 715643C52019BB6700B04267 /* StaticModelistViewController.h */,
  925. 715643C62019BB6700B04267 /* StaticModelistViewController.m */,
  926. 715643D4201AD2AB00B04267 /* StaticModelistViewController.xib */,
  927. 715643D1201ACB1700B04267 /* StaticModeTableViewCell.h */,
  928. 715643D2201ACB1700B04267 /* StaticModeTableViewCell.m */,
  929. 715643D6201AD99300B04267 /* StaticModeTableViewCell.xib */,
  930. 715643C82019BC4C00B04267 /* SearchlistViewController.h */,
  931. 715643C92019BC4C00B04267 /* SearchlistViewController.m */,
  932. 715643CB2019BC6C00B04267 /* ToolslistViewController.h */,
  933. 715643CC2019BC6C00B04267 /* ToolslistViewController.m */,
  934. 715643CE2019BCCE00B04267 /* MylistViewController.h */,
  935. 715643CF2019BCCE00B04267 /* MylistViewController.m */,
  936. );
  937. name = new;
  938. sourceTree = "<group>";
  939. };
  940. 715643D8201C057E00B04267 /* ModeList */ = {
  941. isa = PBXGroup;
  942. children = (
  943. 715643D9201C079F00B04267 /* tools.json */,
  944. 715643DB201C117300B04267 /* search.json */,
  945. 715643DD201C1AE600B04267 /* my.json */,
  946. );
  947. name = ModeList;
  948. sourceTree = "<group>";
  949. };
  950. 7157098B202156EC00EFE5C5 /* network */ = {
  951. isa = PBXGroup;
  952. children = (
  953. 71570998202157BC00EFE5C5 /* RANetworkTaskDelegate.h */,
  954. 71570997202157BC00EFE5C5 /* RANetworkTaskDelegate.m */,
  955. 7157098D2021572600EFE5C5 /* NetworkUtils.h */,
  956. 7157098C2021572600EFE5C5 /* NetworkUtils.m */,
  957. 715709AC20215CB000EFE5C5 /* RANetwork.h */,
  958. 715709AD20215CB000EFE5C5 /* RANetwork.m */,
  959. 717D76E918C7F8120070302D /* Reachability.h */,
  960. 717D76EA18C7F8120070302D /* Reachability.m */,
  961. );
  962. name = network;
  963. sourceTree = "<group>";
  964. };
  965. 7157098F2021573600EFE5C5 /* utils */ = {
  966. isa = PBXGroup;
  967. children = (
  968. 715709AF20215DEC00EFE5C5 /* AES */,
  969. 7157099B20215B4100EFE5C5 /* zip */,
  970. 71570994202157A600EFE5C5 /* RAUtils.h */,
  971. 71570995202157A600EFE5C5 /* RAUtils.m */,
  972. 715709902021574D00EFE5C5 /* RAConvertor.h */,
  973. 715709912021574D00EFE5C5 /* RAConvertor.m */,
  974. );
  975. name = utils;
  976. sourceTree = "<group>";
  977. };
  978. 7157099B20215B4100EFE5C5 /* zip */ = {
  979. isa = PBXGroup;
  980. children = (
  981. 715709A920215B6200EFE5C5 /* ZipArchive.h */,
  982. 715709AA20215B6200EFE5C5 /* ZipArchive.mm */,
  983. 7157099D20215B5000EFE5C5 /* crypt.h */,
  984. 715709A020215B5000EFE5C5 /* ioapi.c */,
  985. 715709A120215B5000EFE5C5 /* ioapi.h */,
  986. 715709A420215B5100EFE5C5 /* mztools.c */,
  987. 715709A220215B5100EFE5C5 /* mztools.h */,
  988. 7157099E20215B5000EFE5C5 /* unzip.c */,
  989. 715709A320215B5100EFE5C5 /* unzip.h */,
  990. 7157099C20215B5000EFE5C5 /* zip.c */,
  991. 7157099F20215B5000EFE5C5 /* zip.h */,
  992. );
  993. name = zip;
  994. sourceTree = "<group>";
  995. };
  996. 715709AF20215DEC00EFE5C5 /* AES */ = {
  997. isa = PBXGroup;
  998. children = (
  999. 715709B420215DFF00EFE5C5 /* AESCrypt.h */,
  1000. 715709B820215DFF00EFE5C5 /* AESCrypt.m */,
  1001. 715709B620215DFF00EFE5C5 /* LICENSE */,
  1002. 715709B520215DFF00EFE5C5 /* NSData+Base64.h */,
  1003. 715709B320215DFF00EFE5C5 /* NSData+Base64.m */,
  1004. 715709B720215DFF00EFE5C5 /* NSData+CommonCrypto.h */,
  1005. 715709B020215DFF00EFE5C5 /* NSData+CommonCrypto.m */,
  1006. 715709B120215DFF00EFE5C5 /* NSString+Base64.h */,
  1007. 715709B220215DFF00EFE5C5 /* NSString+Base64.m */,
  1008. );
  1009. name = AES;
  1010. sourceTree = "<group>";
  1011. };
  1012. 716027CE204D3302003CA085 /* share */ = {
  1013. isa = PBXGroup;
  1014. children = (
  1015. 716027D3204D3D15003CA085 /* LPShareActivity.h */,
  1016. 716027D2204D3D15003CA085 /* LPShareActivity.m */,
  1017. 716027CF204D334A003CA085 /* DetailShareItemProvider.h */,
  1018. 716027D0204D334A003CA085 /* DetailShareItemProvider.m */,
  1019. );
  1020. name = share;
  1021. sourceTree = "<group>";
  1022. };
  1023. 7162546E201C51DC009E3A41 /* fake data */ = {
  1024. isa = PBXGroup;
  1025. children = (
  1026. 42541ACE207C49610072BC5A /* fake_home.json */,
  1027. 425390252079B9B400ECF982 /* KPI.json */,
  1028. 7162546F201C5205009E3A41 /* fake_container_list.json */,
  1029. 71807B972021965B00E1F1DD /* fake_tracking.json */,
  1030. 71807B9D2021ACE500E1F1DD /* fake_search.json */,
  1031. );
  1032. name = "fake data";
  1033. sourceTree = "<group>";
  1034. };
  1035. 71807B992021976000E1F1DD /* detail */ = {
  1036. isa = PBXGroup;
  1037. children = (
  1038. 71807B9A2021979A00E1F1DD /* DetailCellTracking.h */,
  1039. 71807B9B2021979A00E1F1DD /* DetailCellTracking.m */,
  1040. 7101BEC62031389A00CC6E3A /* DetailCellKVNew.h */,
  1041. 7101BEC72031389A00CC6E3A /* DetailCellKVNew.m */,
  1042. );
  1043. name = detail;
  1044. sourceTree = "<group>";
  1045. };
  1046. 719A51A618C5A4E40080C075 /* CustomUI */ = {
  1047. isa = PBXGroup;
  1048. children = (
  1049. 718BE8A6190F9D970046EA6A /* MyAutocompleteView.h */,
  1050. 718BE8A7190F9D970046EA6A /* MyAutocompleteView.m */,
  1051. 718BE8AA190F9D970046EA6A /* MyAutocompleteItemsSource.h */,
  1052. 718BE8AB190F9D970046EA6A /* MyAutocompleteItemsSource.m */,
  1053. 718BE8AC190F9D970046EA6A /* MyAutocompletionCellFactory.h */,
  1054. 718BE8AD190F9D970046EA6A /* MyAutocompletionCellFactory.m */,
  1055. 718BE8AE190F9D970046EA6A /* MySuggestion.h */,
  1056. 718BE8AF190F9D970046EA6A /* MySuggestion.m */,
  1057. 71F67CFA19066375004E8462 /* PulldownMenu.h */,
  1058. 71F67CFB19066375004E8462 /* PulldownMenu.m */,
  1059. 712CBA0118CF38DB00C61394 /* RTLabel.h */,
  1060. 712CBA0218CF38DB00C61394 /* RTLabel.m */,
  1061. 71951E6D18C6A9A5005024BD /* TouchLabel.h */,
  1062. 71951E6E18C6A9A5005024BD /* TouchLabel.m */,
  1063. 71F67CF719065EA8004E8462 /* SimpleMenu.h */,
  1064. 71F67CF819065EA8004E8462 /* SimpleMenu.m */,
  1065. );
  1066. name = CustomUI;
  1067. sourceTree = "<group>";
  1068. };
  1069. 719A51AA18C5A60C0080C075 /* unused */ = {
  1070. isa = PBXGroup;
  1071. children = (
  1072. 71B799992021B22D00F8685E /* AMResultViewController.h */,
  1073. 71B7999A2021B22D00F8685E /* AMResultViewController.m */,
  1074. 719A51A318C5A4AF0080C075 /* SimpleGrid.h */,
  1075. 719A51A418C5A4AF0080C075 /* SimpleGrid.m */,
  1076. 719EF8F818BB839F00EFFF5F /* ApexMobileFirstViewController.h */,
  1077. 719EF8F918BB839F00EFFF5F /* ApexMobileFirstViewController.m */,
  1078. 719EF8FB18BB839F00EFFF5F /* ApexMobileSecondViewController.h */,
  1079. 719EF8FC18BB839F00EFFF5F /* ApexMobileSecondViewController.m */,
  1080. 719A51A718C5A5D30080C075 /* SimpleGridDataSource.h */,
  1081. 719A51A818C5A5D30080C075 /* SimpleGridDataSource.m */,
  1082. 719A51B818C5AB7B0080C075 /* SimpleGridComponent.h */,
  1083. 719A51B918C5AB7B0080C075 /* SimpleGridComponent.m */,
  1084. );
  1085. name = unused;
  1086. sourceTree = "<group>";
  1087. };
  1088. 719A51AB18C5A66A0080C075 /* Search */ = {
  1089. isa = PBXGroup;
  1090. children = (
  1091. 71AE427118C47AF900B8EC3D /* SearchViewController.h */,
  1092. 71AE427218C47AF900B8EC3D /* SearchViewController.m */,
  1093. 71A565D718C20F5900CDAC07 /* SearchTableAdapter.h */,
  1094. 71A565D818C20F5900CDAC07 /* SearchTableAdapter.m */,
  1095. 711DC6B018C30A4800FB1749 /* TableCellEdit.h */,
  1096. 711DC6B118C30A4800FB1749 /* TableCellEdit.m */,
  1097. 71406DCC18C36A52000914C4 /* TableCellBool.h */,
  1098. 71406DCD18C36A52000914C4 /* TableCellBool.m */,
  1099. 71406DCF18C36A6E000914C4 /* TableCellDate.h */,
  1100. 71406DD018C36A6E000914C4 /* TableCellDate.m */,
  1101. );
  1102. name = Search;
  1103. sourceTree = "<group>";
  1104. };
  1105. 719A51AC18C5A6A80080C075 /* Location */ = {
  1106. isa = PBXGroup;
  1107. children = (
  1108. 3C0F4E9223BAE74F000A2FE7 /* CachedTileOverlay.h */,
  1109. 3C0F4E9323BAE74F000A2FE7 /* CachedTileOverlay.m */,
  1110. 3C2D99A1239B92F1007B759E /* ApexMapView.h */,
  1111. 3C2D99A0239B92F1007B759E /* ApexMapView.m */,
  1112. 3C1DEC3C239F6C42006F7E2A /* MKMapView+ZoomLevel.h */,
  1113. 3C1DEC3B239F6C42006F7E2A /* MKMapView+ZoomLevel.m */,
  1114. 7103C84A22549E7E00261926 /* CLLocation+Sino.h */,
  1115. 7103C84922549E7E00261926 /* CLLocation+Sino.m */,
  1116. 7120DD0218BE273900E7546F /* LocationViewController.h */,
  1117. 7120DD0318BE273900E7546F /* LocationViewController.m */,
  1118. 42BCACC8209AE243009DDA43 /* AMAnnotationView.h */,
  1119. 42BCACC9209AE243009DDA43 /* AMAnnotationView.m */,
  1120. 42BCACCB209AE342009DDA43 /* AMMapAnnotaion.h */,
  1121. 42BCACCC209AE342009DDA43 /* AMMapAnnotaion.m */,
  1122. 42253C92209C007700879B09 /* AMMapView.h */,
  1123. 42253C93209C007700879B09 /* AMMapView.m */,
  1124. 3C2D99A3239B93C8007B759E /* AMViewController.h */,
  1125. 3C2D99A4239B93C8007B759E /* AMViewController.m */,
  1126. );
  1127. name = Location;
  1128. sourceTree = "<group>";
  1129. };
  1130. 719A51AD18C5A6D00080C075 /* About */ = {
  1131. isa = PBXGroup;
  1132. children = (
  1133. 71DA74A418BDDD30003B46A6 /* AboutViewController.h */,
  1134. 71DA74A518BDDD30003B46A6 /* AboutViewController.m */,
  1135. );
  1136. name = About;
  1137. sourceTree = "<group>";
  1138. };
  1139. 719A51AE18C5A7230080C075 /* FunctionSelect */ = {
  1140. isa = PBXGroup;
  1141. children = (
  1142. 71330C1E18BCC4DA0048956C /* FunctionSelectViewController.h */,
  1143. 71330C1F18BCC4DA0048956C /* FunctionSelectViewController.m */,
  1144. );
  1145. name = FunctionSelect;
  1146. sourceTree = "<group>";
  1147. };
  1148. 719A51AF18C5A75A0080C075 /* Result */ = {
  1149. isa = PBXGroup;
  1150. children = (
  1151. 717D772D18C84E3F0070302D /* PageData.h */,
  1152. 717D772E18C84E3F0070302D /* PageData.m */,
  1153. );
  1154. name = Result;
  1155. sourceTree = "<group>";
  1156. };
  1157. 719A51B018C5A7680080C075 /* Detail */ = {
  1158. isa = PBXGroup;
  1159. children = (
  1160. 71A01D7718C9AE77003307A9 /* DetailCellKV.h */,
  1161. 71A01D7818C9AE77003307A9 /* DetailCellKV.m */,
  1162. 71A01D7A18C9AE97003307A9 /* DetailCellList.h */,
  1163. 71A01D7B18C9AE97003307A9 /* DetailCellList.m */,
  1164. 71A01D7D18C9AEC8003307A9 /* DetailCellWeb.h */,
  1165. 71A01D7E18C9AEC8003307A9 /* DetailCellWeb.m */,
  1166. 71A01D8018C9BA67003307A9 /* DetailContent.h */,
  1167. 71A01D8118C9BA67003307A9 /* DetailContent.m */,
  1168. 71A01D8318C9BDC8003307A9 /* DetailTabBarController.h */,
  1169. 71A01D8418C9BDC8003307A9 /* DetailTabBarController.m */,
  1170. 71CEE38818CB749E00052C63 /* DetailPageViewController.h */,
  1171. 71CEE38918CB749E00052C63 /* DetailPageViewController.m */,
  1172. 71A2D76018DC3895001C380A /* LineView.h */,
  1173. 71A2D76118DC3895001C380A /* LineView.m */,
  1174. 420DEF1C20A1889F00720524 /* Communication */,
  1175. );
  1176. name = Detail;
  1177. sourceTree = "<group>";
  1178. };
  1179. 719A51B118C5A7740080C075 /* FieldsSetting */ = {
  1180. isa = PBXGroup;
  1181. children = (
  1182. 712A301118CFEF550022E6E6 /* CustomizeFieldViewController.h */,
  1183. 712A301218CFEF550022E6E6 /* CustomizeFieldViewController.m */,
  1184. );
  1185. name = FieldsSetting;
  1186. sourceTree = "<group>";
  1187. };
  1188. 719BEC1418FFA60800DFE987 /* tools */ = {
  1189. isa = PBXGroup;
  1190. children = (
  1191. 719BEC1518FFAB7B00DFE987 /* ToolsPanelViewController.h */,
  1192. 719BEC1618FFAB7B00DFE987 /* ToolsPanelViewController.m */,
  1193. 7130B3F21900FB61000610D8 /* NewsViewController.h */,
  1194. 7130B3F31900FB61000610D8 /* NewsViewController.m */,
  1195. 716FF7901904ED2600ED6C3D /* NewsData.h */,
  1196. 716FF7911904ED2600ED6C3D /* NewsData.m */,
  1197. 716FF7931904FBC600ED6C3D /* NewsTableViewCell.h */,
  1198. 716FF7941904FBC600ED6C3D /* NewsTableViewCell.m */,
  1199. 71F67CF419063612004E8462 /* ApexHistoryViewController.h */,
  1200. 71F67CF519063612004E8462 /* ApexHistoryViewController.m */,
  1201. 71BA50321908EDCF00D0BD31 /* HistoryTabBarController.h */,
  1202. 71BA50331908EDCF00D0BD31 /* HistoryTabBarController.m */,
  1203. 71BA502F1908ED9100D0BD31 /* HistoryViewController.h */,
  1204. 71BA50301908ED9100D0BD31 /* HistoryViewController.m */,
  1205. 71BA50351908F21500D0BD31 /* HistoryData.h */,
  1206. 71BA50361908F21500D0BD31 /* HistoryData.m */,
  1207. 71DA6048190A02CE00683003 /* FavoritesViewController.h */,
  1208. 71DA6049190A02CE00683003 /* FavoritesViewController.m */,
  1209. 71DA6045190A00F600683003 /* FavoritesData.h */,
  1210. 71DA6046190A00F600683003 /* FavoritesData.m */,
  1211. 71BA502C1908ED5700D0BD31 /* CellItemHistory.h */,
  1212. 71BA502D1908ED5700D0BD31 /* CellItemHistory.m */,
  1213. 714C39B61922FEE1004F045B /* NewsDetailViewController.h */,
  1214. 714C39B71922FEE1004F045B /* NewsDetailViewController.m */,
  1215. );
  1216. name = tools;
  1217. sourceTree = "<group>";
  1218. };
  1219. 719E7E2D18C01555003408FF /* utils */ = {
  1220. isa = PBXGroup;
  1221. children = (
  1222. 3C57169C23D186A30002E9FC /* WebViewController.h */,
  1223. 3C57169A23D186A30002E9FC /* WebViewController.m */,
  1224. 3C57169B23D186A30002E9FC /* wkweb.storyboard */,
  1225. 3C0F4E9523BAF594000A2FE7 /* FileCache.h */,
  1226. 3C0F4E9623BAF594000A2FE7 /* FileCache.m */,
  1227. 719E7E3118C0368A003408FF /* ApexMobileDB.h */,
  1228. 719E7E3218C0368A003408FF /* ApexMobileDB.m */,
  1229. 71A565DD18C212EA00CDAC07 /* Constant.h */,
  1230. 71A565DE18C212EA00CDAC07 /* Constant.m */,
  1231. );
  1232. name = utils;
  1233. sourceTree = "<group>";
  1234. };
  1235. 719EF8D418BB839F00EFFF5F = {
  1236. isa = PBXGroup;
  1237. children = (
  1238. 3CA1A2DD23A212E700639FCC /* Launch Screen.storyboard */,
  1239. 427994B120300E7300746EDC /* Apex Mobile.entitlements */,
  1240. 719EF8E618BB839F00EFFF5F /* Apex Mobile */,
  1241. 719EF90B18BB839F00EFFF5F /* Apex MobileTests */,
  1242. 719EF8DF18BB839F00EFFF5F /* Frameworks */,
  1243. 719EF8DE18BB839F00EFFF5F /* Products */,
  1244. );
  1245. sourceTree = "<group>";
  1246. };
  1247. 719EF8DE18BB839F00EFFF5F /* Products */ = {
  1248. isa = PBXGroup;
  1249. children = (
  1250. 719EF8DD18BB839F00EFFF5F /* Apex Mobile.app */,
  1251. );
  1252. name = Products;
  1253. sourceTree = "<group>";
  1254. };
  1255. 719EF8DF18BB839F00EFFF5F /* Frameworks */ = {
  1256. isa = PBXGroup;
  1257. children = (
  1258. 426F397E2033CEE80025C568 /* AudioToolbox.framework */,
  1259. 427CF5DF202452450041472A /* Accelerate.framework */,
  1260. 71514ED1191B7E2500009C00 /* AddressBookUI.framework */,
  1261. 719E7E3418C0395E003408FF /* libsqlite3.dylib */,
  1262. 7120DD0018BE266000E7546F /* SystemConfiguration.framework */,
  1263. 7120DCFE18BE265100E7546F /* QuartzCore.framework */,
  1264. 7120DCFC18BE264300E7546F /* OpenGLES.framework */,
  1265. 7120DCFA18BE263800E7546F /* libz.dylib */,
  1266. 7120DCF818BE262E00E7546F /* libicucore.dylib */,
  1267. 7120DCF618BE262300E7546F /* libc++.dylib */,
  1268. 7120DCF418BE261500E7546F /* ImageIO.framework */,
  1269. 7120DCF218BE260700E7546F /* GLKit.framework */,
  1270. 7120DCF018BE25F500E7546F /* CoreText.framework */,
  1271. 7120DCEE18BE25E500E7546F /* CoreLocation.framework */,
  1272. 7120DCEC18BE25DA00E7546F /* CoreData.framework */,
  1273. 7120DCEA18BE25CE00E7546F /* AVFoundation.framework */,
  1274. 719EF8E018BB839F00EFFF5F /* Foundation.framework */,
  1275. 719EF8E218BB839F00EFFF5F /* CoreGraphics.framework */,
  1276. 719EF8E418BB839F00EFFF5F /* UIKit.framework */,
  1277. 719EF90518BB839F00EFFF5F /* XCTest.framework */,
  1278. );
  1279. name = Frameworks;
  1280. sourceTree = "<group>";
  1281. };
  1282. 719EF8E618BB839F00EFFF5F /* Apex Mobile */ = {
  1283. isa = PBXGroup;
  1284. children = (
  1285. 4225E44921E0A39A009D2364 /* HUD */,
  1286. 4225E44C21E0A39A009D2364 /* LayoutConstraint */,
  1287. 4225E42121E084A4009D2364 /* Result */,
  1288. 426E8AB4202163EB0073BA5D /* Alert */,
  1289. 425CF089201EB2B500750E32 /* Refresh */,
  1290. 715643B820198A6000B04267 /* new */,
  1291. 71C72714191CFF11001127E0 /* message */,
  1292. 713AA79E1917366A00B44092 /* documents */,
  1293. 719BEC1418FFA60800DFE987 /* tools */,
  1294. 71A003F918D680250057CDFD /* password */,
  1295. 719A51B118C5A7740080C075 /* FieldsSetting */,
  1296. 719A51B018C5A7680080C075 /* Detail */,
  1297. 719A51AF18C5A75A0080C075 /* Result */,
  1298. 719A51AE18C5A7230080C075 /* FunctionSelect */,
  1299. 719A51AD18C5A6D00080C075 /* About */,
  1300. 719A51AC18C5A6A80080C075 /* Location */,
  1301. 719A51AB18C5A66A0080C075 /* Search */,
  1302. 719A51AA18C5A60C0080C075 /* unused */,
  1303. 719A51A618C5A4E40080C075 /* CustomUI */,
  1304. 71A565E018C2141C00CDAC07 /* resource */,
  1305. 719E7E2D18C01555003408FF /* utils */,
  1306. 719EF8EF18BB839F00EFFF5F /* AppDelegate.h */,
  1307. 719EF8F018BB839F00EFFF5F /* AppDelegate.m */,
  1308. 715643B620198A1400B04267 /* Main.storyboard */,
  1309. 71CEE3D518CC559B00052C63 /* ApexMobileNavigationController.h */,
  1310. 71CEE3D618CC559B00052C63 /* ApexMobileNavigationController.m */,
  1311. 427CF5CF2023F5560041472A /* NewImages.xcassets */,
  1312. 719EF8E718BB839F00EFFF5F /* Supporting Files */,
  1313. 71375C8D18D96EDE00EBA026 /* TabBarController.h */,
  1314. 71375C8E18D96EDE00EBA026 /* TabBarController.m */,
  1315. );
  1316. path = "Apex Mobile";
  1317. sourceTree = "<group>";
  1318. };
  1319. 719EF8E718BB839F00EFFF5F /* Supporting Files */ = {
  1320. isa = PBXGroup;
  1321. children = (
  1322. 719EF8E818BB839F00EFFF5F /* Apex Mobile-Info.plist */,
  1323. 719EF8E918BB839F00EFFF5F /* InfoPlist.strings */,
  1324. 719EF8EC18BB839F00EFFF5F /* main.m */,
  1325. 719EF8EE18BB839F00EFFF5F /* Apex Mobile-Prefix.pch */,
  1326. );
  1327. name = "Supporting Files";
  1328. sourceTree = "<group>";
  1329. };
  1330. 719EF90B18BB839F00EFFF5F /* Apex MobileTests */ = {
  1331. isa = PBXGroup;
  1332. children = (
  1333. 719EF91118BB839F00EFFF5F /* Apex_MobileTests.m */,
  1334. 719EF90C18BB839F00EFFF5F /* Supporting Files */,
  1335. );
  1336. path = "Apex MobileTests";
  1337. sourceTree = "<group>";
  1338. };
  1339. 719EF90C18BB839F00EFFF5F /* Supporting Files */ = {
  1340. isa = PBXGroup;
  1341. children = (
  1342. 719EF90D18BB839F00EFFF5F /* Apex MobileTests-Info.plist */,
  1343. 719EF90E18BB839F00EFFF5F /* InfoPlist.strings */,
  1344. );
  1345. name = "Supporting Files";
  1346. sourceTree = "<group>";
  1347. };
  1348. 71A003F918D680250057CDFD /* password */ = {
  1349. isa = PBXGroup;
  1350. children = (
  1351. 71A003FA18D680560057CDFD /* RetrievePasswordViewController.h */,
  1352. 71A003FB18D680560057CDFD /* RetrievePasswordViewController.m */,
  1353. 71A003FD18D6BFB40057CDFD /* ChangePasswordViewController.h */,
  1354. 71A003FE18D6BFB40057CDFD /* ChangePasswordViewController.m */,
  1355. );
  1356. name = password;
  1357. sourceTree = "<group>";
  1358. };
  1359. 71A565E018C2141C00CDAC07 /* resource */ = {
  1360. isa = PBXGroup;
  1361. children = (
  1362. 71DA74A718BDDFB5003B46A6 /* about.htm */,
  1363. 714C39C119234065004F045B /* Localizable.strings */,
  1364. );
  1365. name = resource;
  1366. sourceTree = "<group>";
  1367. };
  1368. 71B799822021AE3200F8685E /* result */ = {
  1369. isa = PBXGroup;
  1370. children = (
  1371. 71E0D1D62022AB7E009A08EB /* FullyShowViewController.h */,
  1372. 71E0D1D22022AB7E009A08EB /* FullyShowViewController.m */,
  1373. 71E0D1D52022AB7E009A08EB /* Result.storyboard */,
  1374. 426F39802033D0930025C568 /* ResultCell.h */,
  1375. 426F39812033D0930025C568 /* ResultCell.m */,
  1376. 71E0D1D42022AB7E009A08EB /* ResultViewController.h */,
  1377. 71E0D1D32022AB7E009A08EB /* ResultViewController.m */,
  1378. 4235C30220229F7200A99D04 /* Result.xib */,
  1379. 4235C3042022A60A00A99D04 /* ResultCell.xib */,
  1380. 71FCDE0520492B5E00B0746B /* MyQLPreviewController.h */,
  1381. 71FCDE0620492B5E00B0746B /* MyQLPreviewController.m */,
  1382. );
  1383. name = result;
  1384. sourceTree = "<group>";
  1385. };
  1386. 71B7998E2021AE7F00F8685E /* customUI */ = {
  1387. isa = PBXGroup;
  1388. children = (
  1389. 71B7998B2021AE7400F8685E /* MDHTMLLabel.h */,
  1390. 71B7998C2021AE7400F8685E /* MDHTMLLabel.m */,
  1391. );
  1392. name = customUI;
  1393. sourceTree = "<group>";
  1394. };
  1395. 71C72714191CFF11001127E0 /* message */ = {
  1396. isa = PBXGroup;
  1397. children = (
  1398. 711BA6BF191E0525002EDE6F /* MessageViewController.h */,
  1399. 711BA6C0191E0525002EDE6F /* MessageViewController.m */,
  1400. 711BA6C2191E0553002EDE6F /* MessageItem.h */,
  1401. 711BA6C3191E0553002EDE6F /* MessageItem.m */,
  1402. 71308AF5191E7B0E0024B2B0 /* MessageDetailItem.h */,
  1403. 71308AF6191E7B0E0024B2B0 /* MessageDetailItem.m */,
  1404. 71308AF8191E7B2A0024B2B0 /* MessageDetailViewController.h */,
  1405. 71308AF9191E7B2A0024B2B0 /* MessageDetailViewController.m */,
  1406. );
  1407. name = message;
  1408. sourceTree = "<group>";
  1409. };
  1410. /* End PBXGroup section */
  1411. /* Begin PBXNativeTarget section */
  1412. 719EF8DC18BB839F00EFFF5F /* Apex Mobile */ = {
  1413. isa = PBXNativeTarget;
  1414. buildConfigurationList = 719EF91518BB839F00EFFF5F /* Build configuration list for PBXNativeTarget "Apex Mobile" */;
  1415. buildPhases = (
  1416. 719EF8D918BB839F00EFFF5F /* Sources */,
  1417. 719EF8DA18BB839F00EFFF5F /* Frameworks */,
  1418. 719EF8DB18BB839F00EFFF5F /* Resources */,
  1419. );
  1420. buildRules = (
  1421. );
  1422. dependencies = (
  1423. );
  1424. name = "Apex Mobile";
  1425. productName = "Apex Mobile";
  1426. productReference = 719EF8DD18BB839F00EFFF5F /* Apex Mobile.app */;
  1427. productType = "com.apple.product-type.application";
  1428. };
  1429. /* End PBXNativeTarget section */
  1430. /* Begin PBXProject section */
  1431. 719EF8D518BB839F00EFFF5F /* Project object */ = {
  1432. isa = PBXProject;
  1433. attributes = {
  1434. CLASSPREFIX = ApexMobile;
  1435. LastUpgradeCheck = 0930;
  1436. ORGANIZATIONNAME = "United Software Applications, Inc";
  1437. TargetAttributes = {
  1438. 719EF8DC18BB839F00EFFF5F = {
  1439. DevelopmentTeam = HXWLAA5YN5;
  1440. ProvisioningStyle = Automatic;
  1441. SystemCapabilities = {
  1442. com.apple.Push = {
  1443. enabled = 1;
  1444. };
  1445. };
  1446. };
  1447. };
  1448. };
  1449. buildConfigurationList = 719EF8D818BB839F00EFFF5F /* Build configuration list for PBXProject "Apex Mobile" */;
  1450. compatibilityVersion = "Xcode 3.2";
  1451. developmentRegion = en;
  1452. hasScannedForEncodings = 0;
  1453. knownRegions = (
  1454. en,
  1455. Base,
  1456. "zh-Hans",
  1457. );
  1458. mainGroup = 719EF8D418BB839F00EFFF5F;
  1459. productRefGroup = 719EF8DE18BB839F00EFFF5F /* Products */;
  1460. projectDirPath = "";
  1461. projectRoot = "";
  1462. targets = (
  1463. 719EF8DC18BB839F00EFFF5F /* Apex Mobile */,
  1464. );
  1465. };
  1466. /* End PBXProject section */
  1467. /* Begin PBXResourcesBuildPhase section */
  1468. 719EF8DB18BB839F00EFFF5F /* Resources */ = {
  1469. isa = PBXResourcesBuildPhase;
  1470. buildActionMask = 2147483647;
  1471. files = (
  1472. 42541ACF207C49610072BC5A /* fake_home.json in Resources */,
  1473. 71625470201C5205009E3A41 /* fake_container_list.json in Resources */,
  1474. 7162546B201C3AF1009E3A41 /* readme.txt in Resources */,
  1475. 42604129201C57A7002374A8 /* ShipSearch.storyboard in Resources */,
  1476. 715643DC201C117300B04267 /* search.json in Resources */,
  1477. 420DEF3120A189AA00720524 /* AMCommEditCell.xib in Resources */,
  1478. 4235C30320229F7200A99D04 /* Result.xib in Resources */,
  1479. 425390212079B99B00ECF982 /* PieChart.xcassets in Resources */,
  1480. 3CA1A2DE23A212E700639FCC /* Launch Screen.storyboard in Resources */,
  1481. 715709BC20215E0000EFE5C5 /* LICENSE in Resources */,
  1482. 4225E43A21E08A8C009D2364 /* ApexResultDocumentCell.xib in Resources */,
  1483. 4253900F2079B7C700ECF982 /* KPIPieChartCell.xib in Resources */,
  1484. 42FB6EBE21F2BAB800F694AB /* ApexResultBLInfoCell.xib in Resources */,
  1485. 71E0D1D92022AB7E009A08EB /* Result.storyboard in Resources */,
  1486. 715643DE201C1AE600B04267 /* my.json in Resources */,
  1487. 71807B982021965B00E1F1DD /* fake_tracking.json in Resources */,
  1488. 715643D7201AD99300B04267 /* StaticModeTableViewCell.xib in Resources */,
  1489. 71DA74A818BDDFB5003B46A6 /* about.htm in Resources */,
  1490. 42FB6EB921F2B9FE00F694AB /* ApexResultContainerCell.xib in Resources */,
  1491. 714C39BF19234065004F045B /* Localizable.strings in Resources */,
  1492. 427CF5D02023F5560041472A /* NewImages.xcassets in Resources */,
  1493. 4225E42621E08576009D2364 /* ApexResult.storyboard in Resources */,
  1494. 42E8212F21F6ED1800127705 /* ApexResultAdditionView.xib in Resources */,
  1495. 420DEF2720A1898500720524 /* AMCommHeadCell.xib in Resources */,
  1496. 42BB740B2084737800B9B6E4 /* KPILegendCell.xib in Resources */,
  1497. 3CE1DD03251C87DC00630A4F /* ApexResultAirBookingCell.xib in Resources */,
  1498. 3C57169E23D186A30002E9FC /* wkweb.storyboard in Resources */,
  1499. 425390262079B9B500ECF982 /* KPI.json in Resources */,
  1500. 715643DA201C079F00B04267 /* tools.json in Resources */,
  1501. 715643D5201AD2AB00B04267 /* StaticModelistViewController.xib in Resources */,
  1502. 71807B9E2021ACE500E1F1DD /* fake_search.json in Resources */,
  1503. 715643B720198A1400B04267 /* Main.storyboard in Resources */,
  1504. 7162546D201C412E009E3A41 /* ShippingStatusCell.xib in Resources */,
  1505. 420DEF2C20A1899600720524 /* AMCommContentCell.xib in Resources */,
  1506. 42FB6EC321F2BB6400F694AB /* ApexResultBookingCell.xib in Resources */,
  1507. 42BB74092084732D00B9B6E4 /* KPICell.xib in Resources */,
  1508. 3CE1DD05251C87DC00630A4F /* ApexResultAirAwbInfoCell.xib in Resources */,
  1509. 42BB740720846B4500B9B6E4 /* KPITableCell.xib in Resources */,
  1510. 719EF8EB18BB839F00EFFF5F /* InfoPlist.strings in Resources */,
  1511. 4235C3052022A60A00A99D04 /* ResultCell.xib in Resources */,
  1512. );
  1513. runOnlyForDeploymentPostprocessing = 0;
  1514. };
  1515. /* End PBXResourcesBuildPhase section */
  1516. /* Begin PBXSourcesBuildPhase section */
  1517. 719EF8D918BB839F00EFFF5F /* Sources */ = {
  1518. isa = PBXSourcesBuildPhase;
  1519. buildActionMask = 2147483647;
  1520. files = (
  1521. 715709A620215B5100EFE5C5 /* unzip.c in Sources */,
  1522. 4225E44821E099CB009D2364 /* ApexResultPresenter.m in Sources */,
  1523. 715643D3201ACB1700B04267 /* StaticModeTableViewCell.m in Sources */,
  1524. 718BE8B2190F9D970046EA6A /* MyAutocompleteItemsSource.m in Sources */,
  1525. 71406DCE18C36A52000914C4 /* TableCellBool.m in Sources */,
  1526. 426E8ABD2021AEC50073BA5D /* JLCustomerNavigationAlertController.m in Sources */,
  1527. 3C0F4E9423BAE74F000A2FE7 /* CachedTileOverlay.m in Sources */,
  1528. 71A01D7F18C9AEC8003307A9 /* DetailCellWeb.m in Sources */,
  1529. 3C0F4E9723BAF594000A2FE7 /* FileCache.m in Sources */,
  1530. 71A01D8518C9BDC8003307A9 /* DetailTabBarController.m in Sources */,
  1531. 71F67CFC19066375004E8462 /* PulldownMenu.m in Sources */,
  1532. 71406DD118C36A6E000914C4 /* TableCellDate.m in Sources */,
  1533. 717D772F18C84E3F0070302D /* PageData.m in Sources */,
  1534. 425390202079B99B00ECF982 /* XYCommon.m in Sources */,
  1535. 715709BB20215E0000EFE5C5 /* NSData+Base64.m in Sources */,
  1536. 71375C8F18D96EDE00EBA026 /* TabBarController.m in Sources */,
  1537. 42BB7402208431DA00B9B6E4 /* KPILegendCell.m in Sources */,
  1538. 42FB6EC921F2BC8600F694AB /* ApexResultAddition.m in Sources */,
  1539. 42253C98209C3C0F00879B09 /* AMShipMap.m in Sources */,
  1540. 71951E6F18C6A9A5005024BD /* TouchLabel.m in Sources */,
  1541. 71DA6047190A00F600683003 /* FavoritesData.m in Sources */,
  1542. 425CF099201EB2B500750E32 /* UIScrollView+JLRefresh.m in Sources */,
  1543. 4225E44F21E0A39A009D2364 /* RAProgressHUD.m in Sources */,
  1544. 71A01D7C18C9AE97003307A9 /* DetailCellList.m in Sources */,
  1545. 4225E44021E08AEF009D2364 /* ApexResultDocumentModel.m in Sources */,
  1546. 4225E45021E0A39A009D2364 /* UIView+RAConstraint.m in Sources */,
  1547. 71807B9C2021979A00E1F1DD /* DetailCellTracking.m in Sources */,
  1548. 42539029207A159300ECF982 /* KPIButton.m in Sources */,
  1549. 71DA74A618BDDD31003B46A6 /* AboutViewController.m in Sources */,
  1550. 420DEF2620A1898500720524 /* AMCommHeadCell.m in Sources */,
  1551. 715643C42019B58400B04267 /* OrderHistoryViewController.m in Sources */,
  1552. 712CBA0318CF38DB00C61394 /* RTLabel.m in Sources */,
  1553. 425390242079B99B00ECF982 /* XYRenderView.m in Sources */,
  1554. 3C2D99A2239B92F1007B759E /* ApexMapView.m in Sources */,
  1555. 71CEE3D718CC559B00052C63 /* ApexMobileNavigationController.m in Sources */,
  1556. 426F39822033D0930025C568 /* ResultCell.m in Sources */,
  1557. 715709922021574D00EFE5C5 /* RAConvertor.m in Sources */,
  1558. 71BA50371908F21500D0BD31 /* HistoryData.m in Sources */,
  1559. 71330C2018BCC4DA0048956C /* FunctionSelectViewController.m in Sources */,
  1560. 716027D4204D3D15003CA085 /* LPShareActivity.m in Sources */,
  1561. 715643D02019BCCE00B04267 /* MylistViewController.m in Sources */,
  1562. 715709B920215E0000EFE5C5 /* NSData+CommonCrypto.m in Sources */,
  1563. 718BE8B4190F9D970046EA6A /* MySuggestion.m in Sources */,
  1564. 715709A520215B5100EFE5C5 /* zip.c in Sources */,
  1565. 715709AE20215CB000EFE5C5 /* RANetwork.m in Sources */,
  1566. 42FB6ECF21F3136300F694AB /* ApexResultMenuItem.m in Sources */,
  1567. 425390222079B99B00ECF982 /* XYRotatedView.m in Sources */,
  1568. 719EF8FD18BB839F00EFFF5F /* ApexMobileSecondViewController.m in Sources */,
  1569. 4225E44321E08B47009D2364 /* ApexResultBaseModel.m in Sources */,
  1570. 42253C94209C007700879B09 /* AMMapView.m in Sources */,
  1571. 715709BA20215E0000EFE5C5 /* NSString+Base64.m in Sources */,
  1572. 71AE427318C47AF900B8EC3D /* SearchViewController.m in Sources */,
  1573. 715643BE2019AA9B00B04267 /* LoginViewController.m in Sources */,
  1574. 4225E43321E08A54009D2364 /* ApexResultContainerCell.m in Sources */,
  1575. 7103C84B22549E7F00261926 /* CLLocation+Sino.m in Sources */,
  1576. 71308AF7191E7B0E0024B2B0 /* MessageDetailItem.m in Sources */,
  1577. 71A565D918C20F5900CDAC07 /* SearchTableAdapter.m in Sources */,
  1578. 719EF8FA18BB839F00EFFF5F /* ApexMobileFirstViewController.m in Sources */,
  1579. 3CE1DD0C251C87F400630A4F /* ApexResultAirAwbInfoModel.m in Sources */,
  1580. 4225E42421E08502009D2364 /* ApexResultViewController.m in Sources */,
  1581. 719BEC1718FFAB7B00DFE987 /* ToolsPanelViewController.m in Sources */,
  1582. 71BA502E1908ED5700D0BD31 /* CellItemHistory.m in Sources */,
  1583. 719A51A518C5A4AF0080C075 /* SimpleGrid.m in Sources */,
  1584. 426E8AB9202163EC0073BA5D /* JLCustomerAlertController.m in Sources */,
  1585. 71A003FF18D6BFB40057CDFD /* ChangePasswordViewController.m in Sources */,
  1586. 42604122201C4B41002374A8 /* ShipingStatusCell.m in Sources */,
  1587. 71CEE38A18CB749E00052C63 /* DetailPageViewController.m in Sources */,
  1588. 719E7E3318C0368A003408FF /* ApexMobileDB.m in Sources */,
  1589. 425CF096201EB2B500750E32 /* JLRefreshFooter.m in Sources */,
  1590. 715643C12019B27500B04267 /* HomeViewController.m in Sources */,
  1591. 420DEF2B20A1899600720524 /* AMCommContentCell.m in Sources */,
  1592. 715643C72019BB6700B04267 /* StaticModelistViewController.m in Sources */,
  1593. 7101BEC82031389A00CC6E3A /* DetailCellKVNew.m in Sources */,
  1594. 71E0D1D82022AB7E009A08EB /* ResultViewController.m in Sources */,
  1595. 42BFD2D2207B697800DA9038 /* KPICell.m in Sources */,
  1596. 7157098E2021572600EFE5C5 /* NetworkUtils.m in Sources */,
  1597. 420F0CA420901C2E005C4690 /* KPIRepeatTapGestureRecognizer.m in Sources */,
  1598. 719EF8F118BB839F00EFFF5F /* AppDelegate.m in Sources */,
  1599. 714C39B81922FEE1004F045B /* NewsDetailViewController.m in Sources */,
  1600. 4225E43921E08A8C009D2364 /* ApexResultDocumentCell.m in Sources */,
  1601. 425CF098201EB2B500750E32 /* JLRefreshBasis.m in Sources */,
  1602. 715643CD2019BC6C00B04267 /* ToolslistViewController.m in Sources */,
  1603. 3C2D99A5239B93C8007B759E /* AMViewController.m in Sources */,
  1604. 712A301318CFEF550022E6E6 /* CustomizeFieldViewController.m in Sources */,
  1605. 715709BD20215E0000EFE5C5 /* AESCrypt.m in Sources */,
  1606. 716FF7921904ED2600ED6C3D /* NewsData.m in Sources */,
  1607. 42DE626220A41907005FB582 /* AMTextField.m in Sources */,
  1608. 71F67CF619063612004E8462 /* ApexHistoryViewController.m in Sources */,
  1609. 7130B3F41900FB61000610D8 /* NewsViewController.m in Sources */,
  1610. 711BA6C1191E0525002EDE6F /* MessageViewController.m in Sources */,
  1611. 3CE1DD02251C87DC00630A4F /* ApexResultAirBookingCell.m in Sources */,
  1612. 711BA6C4191E0553002EDE6F /* MessageItem.m in Sources */,
  1613. 71BA50311908ED9100D0BD31 /* HistoryViewController.m in Sources */,
  1614. 71A2D76218DC3895001C380A /* LineView.m in Sources */,
  1615. 71B7999B2021B22D00F8685E /* AMResultViewController.m in Sources */,
  1616. 425CF097201EB2B500750E32 /* JLRefreshHeader.m in Sources */,
  1617. 42BCACCD209AE342009DDA43 /* AMMapAnnotaion.m in Sources */,
  1618. 3CE1DD0B251C87F400630A4F /* ApexResultAirBookingModel.m in Sources */,
  1619. 42FB6EC221F2BB6400F694AB /* ApexResultBookingCell.m in Sources */,
  1620. 3C1DEC3D239F6C42006F7E2A /* MKMapView+ZoomLevel.m in Sources */,
  1621. 711DC6B218C30A4800FB1749 /* TableCellEdit.m in Sources */,
  1622. 716027D1204D334A003CA085 /* DetailShareItemProvider.m in Sources */,
  1623. 4225E43021E088AA009D2364 /* ApexResultViewController+TableDataSource.m in Sources */,
  1624. 420DEF3020A189AA00720524 /* AMCommEditCell.m in Sources */,
  1625. 71A01D8218C9BA67003307A9 /* DetailContent.m in Sources */,
  1626. 71A003FC18D680560057CDFD /* RetrievePasswordViewController.m in Sources */,
  1627. 71FCDE0720492B5E00B0746B /* MyQLPreviewController.m in Sources */,
  1628. 42FB6EC621F2BC5300F694AB /* ApexResultBookingModel.m in Sources */,
  1629. 71F67CF919065EA8004E8462 /* SimpleMenu.m in Sources */,
  1630. 719A51BA18C5AB7B0080C075 /* SimpleGridComponent.m in Sources */,
  1631. 42C6754E21E2F1D4001E3FF4 /* ApexResultAdditionView.m in Sources */,
  1632. 71570996202157A600EFE5C5 /* RAUtils.m in Sources */,
  1633. 715643BB20198A9900B04267 /* RootViewController.m in Sources */,
  1634. 4225E42D21E08895009D2364 /* ApexResultViewController+TableDelegate.m in Sources */,
  1635. 426E8ABA202163EC0073BA5D /* JLPresentationController.m in Sources */,
  1636. 71B7998D2021AE7400F8685E /* MDHTMLLabel.m in Sources */,
  1637. 71E0D1D72022AB7E009A08EB /* FullyShowViewController.m in Sources */,
  1638. 719EF8ED18BB839F00EFFF5F /* main.m in Sources */,
  1639. 42FB6ECC21F2C0E300F694AB /* ApexResultBLInfoModel.m in Sources */,
  1640. 717D76EB18C7F8120070302D /* Reachability.m in Sources */,
  1641. 42FB6EBD21F2BAB800F694AB /* ApexResultBLInfoCell.m in Sources */,
  1642. 715709A720215B5100EFE5C5 /* ioapi.c in Sources */,
  1643. 3CE1DD04251C87DC00630A4F /* ApexResultAirAwbInfoCell.m in Sources */,
  1644. 4253900E2079B7C700ECF982 /* KPIPieChartCell.m in Sources */,
  1645. 42BB740620846B4500B9B6E4 /* KPITableCell.m in Sources */,
  1646. 715643CA2019BC4C00B04267 /* SearchlistViewController.m in Sources */,
  1647. 7120DD0418BE273900E7546F /* LocationViewController.m in Sources */,
  1648. 71308AFA191E7B2A0024B2B0 /* MessageDetailViewController.m in Sources */,
  1649. 713AA7A1191736E600B44092 /* DocumentsViewController.m in Sources */,
  1650. 716FF7951904FBC600ED6C3D /* NewsTableViewCell.m in Sources */,
  1651. 715709AB20215B6200EFE5C5 /* ZipArchive.mm in Sources */,
  1652. 42BCACCA209AE243009DDA43 /* AMAnnotationView.m in Sources */,
  1653. 425CF09A201EB2B500750E32 /* UIView+JLExtension.m in Sources */,
  1654. 42C6755221E32654001E3FF4 /* ApexResultViewController+QuickLook.m in Sources */,
  1655. 71A01D7918C9AE77003307A9 /* DetailCellKV.m in Sources */,
  1656. 42604127201C578B002374A8 /* ShipSearchController.m in Sources */,
  1657. 713AA7A41917373600B44092 /* LocalDocumentsViewController.m in Sources */,
  1658. 71DA604A190A02CE00683003 /* FavoritesViewController.m in Sources */,
  1659. 71BA50341908EDCF00D0BD31 /* HistoryTabBarController.m in Sources */,
  1660. 715709A820215B5100EFE5C5 /* mztools.c in Sources */,
  1661. 719A51A918C5A5D30080C075 /* SimpleGridDataSource.m in Sources */,
  1662. 718BE8B3190F9D970046EA6A /* MyAutocompletionCellFactory.m in Sources */,
  1663. 425390232079B99B00ECF982 /* XYPieChartView.m in Sources */,
  1664. 3C57169D23D186A30002E9FC /* WebViewController.m in Sources */,
  1665. 71570999202157BD00EFE5C5 /* RANetworkTaskDelegate.m in Sources */,
  1666. 71A565DF18C212EA00CDAC07 /* Constant.m in Sources */,
  1667. 4225E43D21E08ACE009D2364 /* ApexResultContainerModel.m in Sources */,
  1668. 718BE8B0190F9D970046EA6A /* MyAutocompleteView.m in Sources */,
  1669. );
  1670. runOnlyForDeploymentPostprocessing = 0;
  1671. };
  1672. /* End PBXSourcesBuildPhase section */
  1673. /* Begin PBXVariantGroup section */
  1674. 714C39C119234065004F045B /* Localizable.strings */ = {
  1675. isa = PBXVariantGroup;
  1676. children = (
  1677. 714C39C019234065004F045B /* Base */,
  1678. );
  1679. name = Localizable.strings;
  1680. sourceTree = "<group>";
  1681. };
  1682. 719EF8E918BB839F00EFFF5F /* InfoPlist.strings */ = {
  1683. isa = PBXVariantGroup;
  1684. children = (
  1685. 719EF8EA18BB839F00EFFF5F /* en */,
  1686. );
  1687. name = InfoPlist.strings;
  1688. sourceTree = "<group>";
  1689. };
  1690. 719EF90E18BB839F00EFFF5F /* InfoPlist.strings */ = {
  1691. isa = PBXVariantGroup;
  1692. children = (
  1693. 719EF90F18BB839F00EFFF5F /* en */,
  1694. );
  1695. name = InfoPlist.strings;
  1696. sourceTree = "<group>";
  1697. };
  1698. /* End PBXVariantGroup section */
  1699. /* Begin XCBuildConfiguration section */
  1700. 719EF91318BB839F00EFFF5F /* Debug */ = {
  1701. isa = XCBuildConfiguration;
  1702. buildSettings = {
  1703. ALWAYS_SEARCH_USER_PATHS = NO;
  1704. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  1705. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  1706. CLANG_CXX_LIBRARY = "libc++";
  1707. CLANG_ENABLE_MODULES = YES;
  1708. CLANG_ENABLE_OBJC_ARC = YES;
  1709. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  1710. CLANG_WARN_BOOL_CONVERSION = YES;
  1711. CLANG_WARN_COMMA = YES;
  1712. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1713. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  1714. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1715. CLANG_WARN_EMPTY_BODY = YES;
  1716. CLANG_WARN_ENUM_CONVERSION = YES;
  1717. CLANG_WARN_INFINITE_RECURSION = YES;
  1718. CLANG_WARN_INT_CONVERSION = YES;
  1719. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  1720. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  1721. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  1722. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1723. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  1724. CLANG_WARN_STRICT_PROTOTYPES = YES;
  1725. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1726. CLANG_WARN_UNREACHABLE_CODE = YES;
  1727. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1728. CODE_SIGN_IDENTITY = "iPhone Distribution: United Software Applications, Inc (HXWLAA5YN5)";
  1729. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution: United Software Applications, Inc (HXWLAA5YN5)";
  1730. COPY_PHASE_STRIP = NO;
  1731. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1732. ENABLE_TESTABILITY = YES;
  1733. GCC_C_LANGUAGE_STANDARD = gnu99;
  1734. GCC_DYNAMIC_NO_PIC = NO;
  1735. GCC_NO_COMMON_BLOCKS = YES;
  1736. GCC_OPTIMIZATION_LEVEL = 0;
  1737. GCC_PREPROCESSOR_DEFINITIONS = (
  1738. "DEBUG=1",
  1739. "$(inherited)",
  1740. );
  1741. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  1742. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1743. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1744. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1745. GCC_WARN_UNINITIALIZED_AUTOS = YES;
  1746. GCC_WARN_UNUSED_FUNCTION = YES;
  1747. GCC_WARN_UNUSED_VARIABLE = YES;
  1748. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  1749. ONLY_ACTIVE_ARCH = YES;
  1750. SDKROOT = iphoneos;
  1751. TARGETED_DEVICE_FAMILY = 1;
  1752. };
  1753. name = Debug;
  1754. };
  1755. 719EF91418BB839F00EFFF5F /* Release */ = {
  1756. isa = XCBuildConfiguration;
  1757. buildSettings = {
  1758. ALWAYS_SEARCH_USER_PATHS = NO;
  1759. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  1760. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  1761. CLANG_CXX_LIBRARY = "libc++";
  1762. CLANG_ENABLE_MODULES = YES;
  1763. CLANG_ENABLE_OBJC_ARC = YES;
  1764. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  1765. CLANG_WARN_BOOL_CONVERSION = YES;
  1766. CLANG_WARN_COMMA = YES;
  1767. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1768. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  1769. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1770. CLANG_WARN_EMPTY_BODY = YES;
  1771. CLANG_WARN_ENUM_CONVERSION = YES;
  1772. CLANG_WARN_INFINITE_RECURSION = YES;
  1773. CLANG_WARN_INT_CONVERSION = YES;
  1774. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  1775. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  1776. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  1777. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1778. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  1779. CLANG_WARN_STRICT_PROTOTYPES = YES;
  1780. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1781. CLANG_WARN_UNREACHABLE_CODE = YES;
  1782. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1783. CODE_SIGN_IDENTITY = "iPhone Distribution: United Software Applications, Inc (HXWLAA5YN5)";
  1784. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution: United Software Applications, Inc (HXWLAA5YN5)";
  1785. COPY_PHASE_STRIP = YES;
  1786. ENABLE_NS_ASSERTIONS = NO;
  1787. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1788. GCC_C_LANGUAGE_STANDARD = gnu99;
  1789. GCC_NO_COMMON_BLOCKS = YES;
  1790. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1791. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1792. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1793. GCC_WARN_UNINITIALIZED_AUTOS = YES;
  1794. GCC_WARN_UNUSED_FUNCTION = YES;
  1795. GCC_WARN_UNUSED_VARIABLE = YES;
  1796. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  1797. SDKROOT = iphoneos;
  1798. TARGETED_DEVICE_FAMILY = 1;
  1799. VALIDATE_PRODUCT = YES;
  1800. };
  1801. name = Release;
  1802. };
  1803. 719EF91618BB839F00EFFF5F /* Debug */ = {
  1804. isa = XCBuildConfiguration;
  1805. buildSettings = {
  1806. ALWAYS_SEARCH_USER_PATHS = NO;
  1807. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  1808. CODE_SIGN_ENTITLEMENTS = "Apex Mobile/Apex Mobile.entitlements";
  1809. CODE_SIGN_IDENTITY = "iPhone Developer";
  1810. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  1811. CODE_SIGN_STYLE = Automatic;
  1812. CURRENT_PROJECT_VERSION = 200227;
  1813. DEVELOPMENT_TEAM = "";
  1814. ENABLE_BITCODE = YES;
  1815. FRAMEWORK_SEARCH_PATHS = (
  1816. "$(inherited)",
  1817. "$(PROJECT_DIR)",
  1818. );
  1819. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  1820. GCC_PREFIX_HEADER = "Apex Mobile/Apex Mobile-Prefix.pch";
  1821. GCC_PREPROCESSOR_DEFINITIONS = (
  1822. "DEBUG=1",
  1823. "$(inherited)",
  1824. );
  1825. HEADER_SEARCH_PATHS = "";
  1826. INFOPLIST_FILE = "Apex Mobile/Apex Mobile-Info.plist";
  1827. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  1828. MARKETING_VERSION = 2.92;
  1829. OTHER_LDFLAGS = "-ObjC";
  1830. PRODUCT_BUNDLE_IDENTIFIER = "usai.apex.$(PRODUCT_NAME:rfc1034identifier)";
  1831. PRODUCT_NAME = "$(TARGET_NAME)";
  1832. PROVISIONING_PROFILE = "";
  1833. "PROVISIONING_PROFILE[sdk=*]" = "";
  1834. PROVISIONING_PROFILE_SPECIFIER = "";
  1835. TARGETED_DEVICE_FAMILY = 1;
  1836. USER_HEADER_SEARCH_PATHS = "";
  1837. WRAPPER_EXTENSION = app;
  1838. };
  1839. name = Debug;
  1840. };
  1841. 719EF91718BB839F00EFFF5F /* Release */ = {
  1842. isa = XCBuildConfiguration;
  1843. buildSettings = {
  1844. ALWAYS_SEARCH_USER_PATHS = NO;
  1845. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  1846. CODE_SIGN_ENTITLEMENTS = "Apex Mobile/Apex Mobile.entitlements";
  1847. CODE_SIGN_IDENTITY = "iPhone Distribution";
  1848. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  1849. CODE_SIGN_STYLE = Automatic;
  1850. CURRENT_PROJECT_VERSION = 200227;
  1851. DEVELOPMENT_TEAM = "";
  1852. ENABLE_BITCODE = YES;
  1853. FRAMEWORK_SEARCH_PATHS = (
  1854. "$(inherited)",
  1855. "$(PROJECT_DIR)",
  1856. );
  1857. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  1858. GCC_PREFIX_HEADER = "Apex Mobile/Apex Mobile-Prefix.pch";
  1859. HEADER_SEARCH_PATHS = "";
  1860. INFOPLIST_FILE = "Apex Mobile/Apex Mobile-Info.plist";
  1861. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  1862. MARKETING_VERSION = 2.92;
  1863. OTHER_LDFLAGS = "-ObjC";
  1864. PRODUCT_BUNDLE_IDENTIFIER = "usai.apex.$(PRODUCT_NAME:rfc1034identifier)";
  1865. PRODUCT_NAME = "$(TARGET_NAME)";
  1866. PROVISIONING_PROFILE = "";
  1867. PROVISIONING_PROFILE_SPECIFIER = "";
  1868. TARGETED_DEVICE_FAMILY = 1;
  1869. USER_HEADER_SEARCH_PATHS = "";
  1870. WRAPPER_EXTENSION = app;
  1871. };
  1872. name = Release;
  1873. };
  1874. /* End XCBuildConfiguration section */
  1875. /* Begin XCConfigurationList section */
  1876. 719EF8D818BB839F00EFFF5F /* Build configuration list for PBXProject "Apex Mobile" */ = {
  1877. isa = XCConfigurationList;
  1878. buildConfigurations = (
  1879. 719EF91318BB839F00EFFF5F /* Debug */,
  1880. 719EF91418BB839F00EFFF5F /* Release */,
  1881. );
  1882. defaultConfigurationIsVisible = 0;
  1883. defaultConfigurationName = Debug;
  1884. };
  1885. 719EF91518BB839F00EFFF5F /* Build configuration list for PBXNativeTarget "Apex Mobile" */ = {
  1886. isa = XCConfigurationList;
  1887. buildConfigurations = (
  1888. 719EF91618BB839F00EFFF5F /* Debug */,
  1889. 719EF91718BB839F00EFFF5F /* Release */,
  1890. );
  1891. defaultConfigurationIsVisible = 0;
  1892. defaultConfigurationName = Debug;
  1893. };
  1894. /* End XCConfigurationList section */
  1895. };
  1896. rootObject = 719EF8D518BB839F00EFFF5F /* Project object */;
  1897. }