project.pbxproj 235 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 54;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 3C2F99BB237BE1880000808F /* PortfolioListTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2F99BA237BE1880000808F /* PortfolioListTableViewCell.m */; };
  10. 3C2F99BF237BE7190000808F /* NPD_Mobile.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C2F99BE237BE7190000808F /* NPD_Mobile.storyboard */; };
  11. 3C3E26B527CDF87000EF6F5C /* UIView+Toast.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C3E26B327CDF87000EF6F5C /* UIView+Toast.m */; };
  12. 3C57169923CEA4120002E9FC /* Launch Screen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C57169823CEA4120002E9FC /* Launch Screen.storyboard */; };
  13. 3C6831A72397884A00AD5BD7 /* iPadCommonEditorCellSignature.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C68319C2397884A00AD5BD7 /* iPadCommonEditorCellSignature.xib */; };
  14. 3C6831A82397884A00AD5BD7 /* iPadCommonEditorCellTextView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C68319D2397884A00AD5BD7 /* iPadCommonEditorCellTextView.xib */; };
  15. 3C6831A92397884A00AD5BD7 /* iPadCommonEditorCellEnum.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C68319E2397884A00AD5BD7 /* iPadCommonEditorCellEnum.xib */; };
  16. 3C6831AA2397884A00AD5BD7 /* iPadCommonEditorCellSwitch.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C68319F2397884A00AD5BD7 /* iPadCommonEditorCellSwitch.xib */; };
  17. 3C6831AB2397884A00AD5BD7 /* CommonEditor.iPad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831A02397884A00AD5BD7 /* CommonEditor.iPad.xib */; };
  18. 3C6831AC2397884A00AD5BD7 /* iPadCommonEditorCellAction.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831A12397884A00AD5BD7 /* iPadCommonEditorCellAction.xib */; };
  19. 3C6831AD2397884A00AD5BD7 /* iPadCommonEditorCellImg.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831A22397884A00AD5BD7 /* iPadCommonEditorCellImg.xib */; };
  20. 3C6831AE2397884A00AD5BD7 /* iPadCommonEditorCellMAction.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831A32397884A00AD5BD7 /* iPadCommonEditorCellMAction.xib */; };
  21. 3C6831AF2397884A00AD5BD7 /* iPadCommonEditorCellModel.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831A42397884A00AD5BD7 /* iPadCommonEditorCellModel.xib */; };
  22. 3C6831B02397884A00AD5BD7 /* iPadCommonEditorCellEdit.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831A52397884A00AD5BD7 /* iPadCommonEditorCellEdit.xib */; };
  23. 3C6831B12397884A00AD5BD7 /* iPadCommonEditorCellLabel.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831A62397884A00AD5BD7 /* iPadCommonEditorCellLabel.xib */; };
  24. 3C6831B52397887800AD5BD7 /* RAYTPlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C6831B22397887800AD5BD7 /* RAYTPlayer.m */; };
  25. 3C6831B62397887800AD5BD7 /* ytplayer.html in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831B42397887800AD5BD7 /* ytplayer.html */; };
  26. 3C6831BE239788C100AD5BD7 /* ERP_Mobile_Model.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831B7239788C000AD5BD7 /* ERP_Mobile_Model.storyboard */; };
  27. 3C6831BF239788C100AD5BD7 /* ERP_Mobile_Discard.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831B8239788C100AD5BD7 /* ERP_Mobile_Discard.storyboard */; };
  28. 3C6831C0239788C100AD5BD7 /* ERP_Mobile_Order.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831B9239788C100AD5BD7 /* ERP_Mobile_Order.storyboard */; };
  29. 3C6831C1239788C100AD5BD7 /* ERP_Mobile_Portfolio.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831BA239788C100AD5BD7 /* ERP_Mobile_Portfolio.storyboard */; };
  30. 3C6831C2239788C100AD5BD7 /* ERP_Mobile_Contact.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831BB239788C100AD5BD7 /* ERP_Mobile_Contact.storyboard */; };
  31. 3C6831C3239788C100AD5BD7 /* ERP_Mobile_Search.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831BC239788C100AD5BD7 /* ERP_Mobile_Search.storyboard */; };
  32. 3C6831C4239788C100AD5BD7 /* ERP_Mobile_Cart.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831BD239788C100AD5BD7 /* ERP_Mobile_Cart.storyboard */; };
  33. 3C70C07F2A2DC244008C2400 /* PopWaitAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C70C07C2A2DC244008C2400 /* PopWaitAlert.m */; };
  34. 3C70C0802A2DC244008C2400 /* MessageBox.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C70C07D2A2DC244008C2400 /* MessageBox.m */; };
  35. 3C70C0812A2DC244008C2400 /* RAPopviewContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C70C07E2A2DC244008C2400 /* RAPopviewContainer.m */; };
  36. 3C7E5A91237BDB26006D0105 /* PortfolioListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C7E5A8F237BDB26006D0105 /* PortfolioListViewController.m */; };
  37. 3C97F3042EBB4E6D00BD9260 /* SceneDelegateBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C97F3032EBB4E6D00BD9260 /* SceneDelegateBase.m */; };
  38. 3C97F3072EBB501600BD9260 /* SceneDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C97F3062EBB501600BD9260 /* SceneDelegate.m */; };
  39. 3CA210A82761DA66000FC2F3 /* PhotoList.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3CA2109F2761DA66000FC2F3 /* PhotoList.storyboard */; };
  40. 3CA210A92761DA66000FC2F3 /* ContentPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA210A12761DA66000FC2F3 /* ContentPreviewController.m */; };
  41. 3CA210AA2761DA66000FC2F3 /* VideoPreviewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA210A42761DA66000FC2F3 /* VideoPreviewCell.m */; };
  42. 3CA210AB2761DA66000FC2F3 /* PhotoPreviewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA210A62761DA66000FC2F3 /* PhotoPreviewCell.m */; };
  43. 3CA210AE2761DA8B000FC2F3 /* DefaultTableHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA210AC2761DA8B000FC2F3 /* DefaultTableHeaderView.m */; };
  44. 3CA210B12761DAAC000FC2F3 /* RASingleton.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA210AF2761DAAB000FC2F3 /* RASingleton.m */; };
  45. 3CA210B42761DAF2000FC2F3 /* RAUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA210B32761DAF2000FC2F3 /* RAUtils.m */; };
  46. 3CA210BD2761DB42000FC2F3 /* TouchImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA210B52761DB42000FC2F3 /* TouchImageView.m */; };
  47. 3CA210BF2761DB42000FC2F3 /* StrikethroughLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA210B92761DB42000FC2F3 /* StrikethroughLabel.m */; };
  48. 3CA210C02761DB42000FC2F3 /* RTLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA210BB2761DB42000FC2F3 /* RTLabel.m */; };
  49. 3CA210C92761DBC2000FC2F3 /* EnumModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA210C22761DBC2000FC2F3 /* EnumModel.m */; };
  50. 3CA210CA2761DBC2000FC2F3 /* EnumSelectAndSort.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3CA210C32761DBC2000FC2F3 /* EnumSelectAndSort.storyboard */; };
  51. 3CA210CB2761DBC2000FC2F3 /* EnumSelectAndSortViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA210C72761DBC2000FC2F3 /* EnumSelectAndSortViewController.m */; };
  52. 3CA210CC2761DBC2000FC2F3 /* EnumSelectAndSortCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA210C82761DBC2000FC2F3 /* EnumSelectAndSortCell.m */; };
  53. 3CA210E32761DC2C000FC2F3 /* CommonEditorCellAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA210CD2761DC2A000FC2F3 /* CommonEditorCellAction.m */; };
  54. 3CA210E42761DC2C000FC2F3 /* CommonEditorCellEnum.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA210CE2761DC2A000FC2F3 /* CommonEditorCellEnum.m */; };
  55. 3CA210E52761DC2C000FC2F3 /* CommonEditorCellEditor.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA210D32761DC2A000FC2F3 /* CommonEditorCellEditor.m */; };
  56. 3CA210E62761DC2C000FC2F3 /* CommonEditorCellSignature.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA210D52761DC2B000FC2F3 /* CommonEditorCellSignature.m */; };
  57. 3CA210E72761DC2C000FC2F3 /* CommonEditorCellTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA210D62761DC2B000FC2F3 /* CommonEditorCellTextView.m */; };
  58. 3CA210E82761DC2C000FC2F3 /* CommonEditorCellLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA210D72761DC2B000FC2F3 /* CommonEditorCellLabel.m */; };
  59. 3CA210E92761DC2C000FC2F3 /* CommonEditorCellEdit.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA210D82761DC2B000FC2F3 /* CommonEditorCellEdit.m */; };
  60. 3CA210EA2761DC2C000FC2F3 /* CommonEditorCellImg.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA210D92761DC2B000FC2F3 /* CommonEditorCellImg.m */; };
  61. 3CA210EB2761DC2C000FC2F3 /* CommonEditorCellMAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA210DB2761DC2B000FC2F3 /* CommonEditorCellMAction.m */; };
  62. 3CA210EC2761DC2C000FC2F3 /* CommonEditorCellSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA210DE2761DC2B000FC2F3 /* CommonEditorCellSwitch.m */; };
  63. 3CA210ED2761DC2C000FC2F3 /* CommonEditorCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA210E22761DC2C000FC2F3 /* CommonEditorCellModel.m */; };
  64. 3CA210F02761DC38000FC2F3 /* CommonEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA210EE2761DC38000FC2F3 /* CommonEditorViewController.m */; };
  65. 3CA210FE2761DC95000FC2F3 /* SRMonthPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA210F42761DC94000FC2F3 /* SRMonthPicker.m */; };
  66. 3CA210FF2761DC95000FC2F3 /* DatePickerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA210F52761DC94000FC2F3 /* DatePickerViewController.m */; };
  67. 3CA211002761DC95000FC2F3 /* EnumSelectViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA210F62761DC94000FC2F3 /* EnumSelectViewController.m */; };
  68. 3CA211012761DC95000FC2F3 /* CommonEditorTableContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA210F72761DC94000FC2F3 /* CommonEditorTableContainerView.m */; };
  69. 3CA211022761DC95000FC2F3 /* MonthPickerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA210FB2761DC94000FC2F3 /* MonthPickerViewController.m */; };
  70. 3CA211032761DC95000FC2F3 /* EnumSelectorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA210FC2761DC94000FC2F3 /* EnumSelectorCell.m */; };
  71. 3CA211042761DC95000FC2F3 /* CommonEditor.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3CA210FD2761DC95000FC2F3 /* CommonEditor.storyboard */; };
  72. 3CA211072761E9F8000FC2F3 /* DBUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA211052761E9F8000FC2F3 /* DBUtil.m */; };
  73. 3CA2110A2761EA31000FC2F3 /* RADataProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA211082761EA31000FC2F3 /* RADataProvider.m */; };
  74. 3CC7E72E23BEDA5000BE5561 /* WebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CC7E72B23BEDA4F00BE5561 /* WebViewController.m */; };
  75. 3CC7E72F23BEDA5000BE5561 /* RAPDFViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CC7E72C23BEDA4F00BE5561 /* RAPDFViewController.m */; };
  76. 3CC7E73123BEDA7B00BE5561 /* wkweb.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3CC7E73023BEDA7B00BE5561 /* wkweb.storyboard */; };
  77. 423A4ADC1D503A53005ECE4A /* createContact.json in Resources */ = {isa = PBXBuildFile; fileRef = 423A4ADB1D503A53005ECE4A /* createContact.json */; };
  78. 423B49EF1DAC8071004181C2 /* CUL.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 423B49EE1DAC8071004181C2 /* CUL.storyboard */; };
  79. 424A02D11FFB3A0B0088DC56 /* RABackOrderSubmitAlertController.m in Sources */ = {isa = PBXBuildFile; fileRef = 424A02D01FFB3A0B0088DC56 /* RABackOrderSubmitAlertController.m */; };
  80. 4254CCDE1FB1AC2B00C8B4B6 /* RAOrderEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4254CCDD1FB1AC2B00C8B4B6 /* RAOrderEditorViewController.m */; };
  81. 426438B721A2998300411DF7 /* AppDelegateBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 426438B621A2998300411DF7 /* AppDelegateBase.m */; };
  82. 428980041E2490C1005F1BD8 /* NotificationNameCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980031E2490C1005F1BD8 /* NotificationNameCenter.m */; };
  83. 4289800A1E24918F005F1BD8 /* CartUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980091E24918F005F1BD8 /* CartUtils.m */; };
  84. 428980151E24924D005F1BD8 /* SortButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980101E24924D005F1BD8 /* SortButton.m */; };
  85. 428980161E24924D005F1BD8 /* SortItemCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980121E24924D005F1BD8 /* SortItemCell.m */; };
  86. 428980171E24924D005F1BD8 /* SortItemViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980141E24924D005F1BD8 /* SortItemViewController.m */; };
  87. 4289802B1E2492D2005F1BD8 /* CategoryPriceCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980241E2492D2005F1BD8 /* CategoryPriceCell.m */; };
  88. 4289802C1E2492D2005F1BD8 /* CategoryPriceViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980261E2492D2005F1BD8 /* CategoryPriceViewController.m */; };
  89. 4289802D1E2492D2005F1BD8 /* PriceSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980281E2492D2005F1BD8 /* PriceSettingViewController.m */; };
  90. 4289802E1E2492D2005F1BD8 /* SetCategoryPriceController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4289802A1E2492D2005F1BD8 /* SetCategoryPriceController.m */; };
  91. 428980451E249339005F1BD8 /* JKDotView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4289803E1E249339005F1BD8 /* JKDotView.m */; };
  92. 428980461E249339005F1BD8 /* JKLockButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980401E249339005F1BD8 /* JKLockButton.m */; };
  93. 428980471E249339005F1BD8 /* JKLockController.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980421E249339005F1BD8 /* JKLockController.m */; };
  94. 428980481E249339005F1BD8 /* JKMessageBoxController.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980441E249339005F1BD8 /* JKMessageBoxController.m */; };
  95. 4289805D1E249375005F1BD8 /* UIColor+JK_HEX.m in Sources */ = {isa = PBXBuildFile; fileRef = 4289805C1E249375005F1BD8 /* UIColor+JK_HEX.m */; };
  96. 4289809E1E24B526005F1BD8 /* JKTimerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4289809D1E24B526005F1BD8 /* JKTimerManager.m */; };
  97. 4295AE1C1FE74D46007BE365 /* CommonEditorAutoCompleteView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4295AE1A1FE74D46007BE365 /* CommonEditorAutoCompleteView.m */; };
  98. 4295AE1D1FE74D46007BE365 /* CommonEditorAutoCompleteView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 4295AE1B1FE74D46007BE365 /* CommonEditorAutoCompleteView.xib */; };
  99. 42969C021D52F31C00FF190A /* editContact.json in Resources */ = {isa = PBXBuildFile; fileRef = 42969C011D52F31C00FF190A /* editContact.json */; };
  100. 42A225331D6E7D1D00235B62 /* placeOrderTemplate.json in Resources */ = {isa = PBXBuildFile; fileRef = 42A225321D6E7D1D00235B62 /* placeOrderTemplate.json */; };
  101. 42A51BF41D62F60300F13667 /* more_info.html in Resources */ = {isa = PBXBuildFile; fileRef = 42A51BF31D62F60300F13667 /* more_info.html */; };
  102. 42A51BF61D62F9AB00F13667 /* orderDetail.json in Resources */ = {isa = PBXBuildFile; fileRef = 42A51BF51D62F9AB00F13667 /* orderDetail.json */; };
  103. 42B309791E45BA32007AFC62 /* status_filter_cadedate_po.json in Resources */ = {isa = PBXBuildFile; fileRef = 42B309781E45BA32007AFC62 /* status_filter_cadedate_po.json */; };
  104. 42B3C9BB1D642C880053985C /* order_info.html in Resources */ = {isa = PBXBuildFile; fileRef = 42B3C9BA1D642C880053985C /* order_info.html */; };
  105. 42BEF35D1E89FECD00632AB6 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 42BEF35C1E89FECD00632AB6 /* SystemConfiguration.framework */; };
  106. 42BEF35F1E89FEE300632AB6 /* CoreData.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 42BEF35E1E89FEE300632AB6 /* CoreData.framework */; };
  107. 42BEF3A61E8A57F600632AB6 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 42BEF3A51E8A57F600632AB6 /* GoogleService-Info.plist */; };
  108. 42BF67CC1E5179970081F90A /* ERPUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BF67CB1E5179970081F90A /* ERPUtils.m */; };
  109. 42C2E8BC1DB49D02006C0495 /* TearSheet.json in Resources */ = {isa = PBXBuildFile; fileRef = 42C2E8BB1DB49D02006C0495 /* TearSheet.json */; };
  110. 42C9FB151D5B28FA001DCA8B /* contactAdvanceSearch.json in Resources */ = {isa = PBXBuildFile; fileRef = 42C9FB141D5B28FA001DCA8B /* contactAdvanceSearch.json */; };
  111. 42DC12F11F0CD98E00A4C011 /* OrderDetailPickInfoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 42DC12F01F0CD98E00A4C011 /* OrderDetailPickInfoCell.m */; };
  112. 42DC31131D546FBE00BCD1C6 /* category.json in Resources */ = {isa = PBXBuildFile; fileRef = 42DC31121D546FBE00BCD1C6 /* category.json */; };
  113. 42E489611EE63F4E007256A0 /* more_color_64.png in Resources */ = {isa = PBXBuildFile; fileRef = 42E489601EE63F4E007256A0 /* more_color_64.png */; };
  114. 42FD1A031FBD1A3000C5D9A8 /* RAOrderPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 42FD1A021FBD1A3000C5D9A8 /* RAOrderPreviewController.m */; };
  115. 710274251CC606C4009FD219 /* UserListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 710274241CC606C4009FD219 /* UserListViewController.m */; };
  116. 71073AE61DD41DD8001BC653 /* so_thumb.json in Resources */ = {isa = PBXBuildFile; fileRef = 71073AE51DD41DD8001BC653 /* so_thumb.json */; };
  117. 7111E5721C76C557004763B3 /* customer_info_template_edit.json in Resources */ = {isa = PBXBuildFile; fileRef = 7111E5711C76C557004763B3 /* customer_info_template_edit.json */; };
  118. 71131F921CA1372300DBF6E2 /* SimplifiedBuyingProgramViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71131F911CA1372300DBF6E2 /* SimplifiedBuyingProgramViewController.m */; };
  119. 712AFED71DBA050200254965 /* BasicDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFEC61DBA050200254965 /* BasicDrawable.m */; };
  120. 712AFED81DBA050200254965 /* GridDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFEC81DBA050200254965 /* GridDrawable.m */; };
  121. 712AFED91DBA050200254965 /* GroupDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFECA1DBA050200254965 /* GroupDrawable.m */; };
  122. 712AFEDA1DBA050200254965 /* ImageDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFECC1DBA050200254965 /* ImageDrawable.m */; };
  123. 712AFEDB1DBA050200254965 /* LineDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFECE1DBA050200254965 /* LineDrawable.m */; };
  124. 712AFEDC1DBA050200254965 /* PDFDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFED01DBA050200254965 /* PDFDrawable.m */; };
  125. 712AFEDD1DBA050200254965 /* RAPDFPage.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFED21DBA050200254965 /* RAPDFPage.m */; };
  126. 712AFEDE1DBA050200254965 /* TableDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFED41DBA050200254965 /* TableDrawable.m */; };
  127. 712AFEDF1DBA050200254965 /* TextDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFED61DBA050200254965 /* TextDrawable.m */; };
  128. 712AFEE21DBA077F00254965 /* pdfCreator.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFEE11DBA077F00254965 /* pdfCreator.m */; };
  129. 712AFEE51DBDAF0300254965 /* pdfcreator.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 712AFEE41DBDAF0300254965 /* pdfcreator.xcassets */; };
  130. 712AFEE71DBDB48000254965 /* portfolio_3x2.json in Resources */ = {isa = PBXBuildFile; fileRef = 712AFEE61DBDB48000254965 /* portfolio_3x2.json */; };
  131. 712BABF31C897E3A0007466B /* CategorySearchFilterViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 712BABF21C897E3A0007466B /* CategorySearchFilterViewController.m */; };
  132. 712C40B61C7310F4000E6831 /* CartGeneralNotesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 712C40B51C7310F4000E6831 /* CartGeneralNotesViewController.m */; };
  133. 712C40B91C731126000E6831 /* ItemNotesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 712C40B81C731126000E6831 /* ItemNotesViewController.m */; };
  134. 713F76AA1929F4A7006A7305 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 713F76A91929F4A7006A7305 /* Foundation.framework */; };
  135. 713F76AC1929F4A7006A7305 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 713F76AB1929F4A7006A7305 /* CoreGraphics.framework */; };
  136. 713F76AE1929F4A7006A7305 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 713F76AD1929F4A7006A7305 /* UIKit.framework */; };
  137. 713F76B41929F4A7006A7305 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 713F76B21929F4A7006A7305 /* InfoPlist.strings */; };
  138. 713F76B61929F4A7006A7305 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 713F76B51929F4A7006A7305 /* main.m */; };
  139. 713F76BA1929F4A7006A7305 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 713F76B91929F4A7006A7305 /* AppDelegate.m */; };
  140. 713F76BD1929F4A7006A7305 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 713F76BB1929F4A7006A7305 /* Main.storyboard */; };
  141. 713F76C21929F4A7006A7305 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 713F76C11929F4A7006A7305 /* Images.xcassets */; };
  142. 7141DD341C57269B00F7DF59 /* include in Resources */ = {isa = PBXBuildFile; fileRef = 7141DD331C57269B00F7DF59 /* include */; };
  143. 7141DD3B1C5726B700F7DF59 /* DeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD361C5726B700F7DF59 /* DeviceInfo.m */; };
  144. 7141DD3C1C5726B700F7DF59 /* ScanApiHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD381C5726B700F7DF59 /* ScanApiHelper.mm */; };
  145. 7141DD3D1C5726B700F7DF59 /* softScanBeep.wav in Resources */ = {isa = PBXBuildFile; fileRef = 7141DD3A1C5726B700F7DF59 /* softScanBeep.wav */; };
  146. 7141DD4E1C57459B00F7DF59 /* bitstream.c in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD3E1C57459B00F7DF59 /* bitstream.c */; };
  147. 7141DD4F1C57459B00F7DF59 /* mask.c in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD401C57459B00F7DF59 /* mask.c */; };
  148. 7141DD501C57459B00F7DF59 /* QRCodeGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD431C57459B00F7DF59 /* QRCodeGenerator.m */; };
  149. 7141DD511C57459B00F7DF59 /* qrencode.c in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD441C57459B00F7DF59 /* qrencode.c */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; };
  150. 7141DD521C57459B00F7DF59 /* qrinput.c in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD461C57459B00F7DF59 /* qrinput.c */; };
  151. 7141DD531C57459B00F7DF59 /* qrspec.c in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD481C57459B00F7DF59 /* qrspec.c */; };
  152. 7141DD541C57459B00F7DF59 /* rscode.c in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD4A1C57459B00F7DF59 /* rscode.c */; };
  153. 7141DD551C57459B00F7DF59 /* split.c in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD4C1C57459B00F7DF59 /* split.c */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; };
  154. 7141DD5F1C5747CE00F7DF59 /* AESCrypt.m in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD571C5747CE00F7DF59 /* AESCrypt.m */; };
  155. 7141DD611C5747CE00F7DF59 /* NSData+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD5A1C5747CE00F7DF59 /* NSData+Base64.m */; };
  156. 7141DD621C5747CE00F7DF59 /* NSData+CommonCrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD5C1C5747CE00F7DF59 /* NSData+CommonCrypto.m */; };
  157. 7141DD631C5747CE00F7DF59 /* NSString+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD5E1C5747CE00F7DF59 /* NSString+Base64.m */; };
  158. 7142E87A1DBF577A0077EFA2 /* KALINGA.TTF in Resources */ = {isa = PBXBuildFile; fileRef = 7142E8781DBF57510077EFA2 /* KALINGA.TTF */; };
  159. 7142E87B1DBF577A0077EFA2 /* KALINGAB.TTF in Resources */ = {isa = PBXBuildFile; fileRef = 7142E8791DBF57510077EFA2 /* KALINGAB.TTF */; };
  160. 7142E87E1DC300690077EFA2 /* DejaVuSans-Bold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7142E87C1DC300010077EFA2 /* DejaVuSans-Bold.ttf */; };
  161. 7142E87F1DC300690077EFA2 /* DejaVuSans.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7142E87D1DC300010077EFA2 /* DejaVuSans.ttf */; };
  162. 714B1F401C7BF74100539193 /* OrderDetailSignatureCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 714B1F3F1C7BF74100539193 /* OrderDetailSignatureCell.m */; };
  163. 715001FF1D114D9100F5927F /* BundleDetailButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 715001FE1D114D9100F5927F /* BundleDetailButton.m */; };
  164. 715671331E10A0EF006324A0 /* RectDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 715671321E10A0EF006324A0 /* RectDrawable.m */; };
  165. 715850461CF6F0E500856B20 /* DefaultAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 715850451CF6F0E500856B20 /* DefaultAppearance.m */; };
  166. 715F30BD1DAB37EB00490EED /* OfflineUnlockViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 715F30BC1DAB37EB00490EED /* OfflineUnlockViewController.m */; };
  167. 7161FEB51D61B24900157EE1 /* creditcardpayment.html in Resources */ = {isa = PBXBuildFile; fileRef = 7161FEB21D61B24900157EE1 /* creditcardpayment.html */; };
  168. 7161FEB61D61B24900157EE1 /* normalpayment.html in Resources */ = {isa = PBXBuildFile; fileRef = 7161FEB31D61B24900157EE1 /* normalpayment.html */; };
  169. 7161FEB71D61B24900157EE1 /* orderinfo.html in Resources */ = {isa = PBXBuildFile; fileRef = 7161FEB41D61B24900157EE1 /* orderinfo.html */; };
  170. 7162A5021C586F5B00AB630E /* AddressEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5011C586F5B00AB630E /* AddressEditorViewController.m */; };
  171. 7162A5091C586FC100AB630E /* CycleScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5041C586FC100AB630E /* CycleScrollView.m */; };
  172. 7162A50A1C586FC100AB630E /* NSTimer+Addition.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5061C586FC100AB630E /* NSTimer+Addition.m */; };
  173. 7162A50B1C586FC100AB630E /* SliderPage.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5081C586FC100AB630E /* SliderPage.m */; };
  174. 7162A5161C58704600AB630E /* BundleModelCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A50D1C58704600AB630E /* BundleModelCell.m */; };
  175. 7162A5171C58704600AB630E /* BundleModelViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A50F1C58704600AB630E /* BundleModelViewController.m */; };
  176. 7162A5181C58704600AB630E /* CartViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5111C58704600AB630E /* CartViewController.m */; };
  177. 7162A5191C58704600AB630E /* EditModelPriceViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5131C58704600AB630E /* EditModelPriceViewController.m */; };
  178. 7162A51A1C58704600AB630E /* ModelItemCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5151C58704600AB630E /* ModelItemCell.m */; };
  179. 7162A5251C58706C00AB630E /* CategoryCellSmall.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5201C58706C00AB630E /* CategoryCellSmall.m */; };
  180. 7162A5261C58706C00AB630E /* CategoryViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5221C58706C00AB630E /* CategoryViewController.m */; };
  181. 7162A52A1C58713200AB630E /* CategoryCellNPD.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5291C58713200AB630E /* CategoryCellNPD.m */; };
  182. 7162A5411C58719D00AB630E /* RATreeNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A52C1C58719D00AB630E /* RATreeNode.m */; };
  183. 7162A5421C58719D00AB630E /* RATreeNodeCollectionController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A52E1C58719D00AB630E /* RATreeNodeCollectionController.m */; };
  184. 7162A5431C58719D00AB630E /* RATreeNodeInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5301C58719D00AB630E /* RATreeNodeInfo.m */; };
  185. 7162A5441C58719D00AB630E /* RATreeNodeInfo+Private.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5321C58719D00AB630E /* RATreeNodeInfo+Private.m */; };
  186. 7162A5451C58719D00AB630E /* RATreeView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5341C58719D00AB630E /* RATreeView.m */; };
  187. 7162A5461C58719D00AB630E /* RATreeView+Enums.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5361C58719D00AB630E /* RATreeView+Enums.m */; };
  188. 7162A5471C58719D00AB630E /* RATreeView+Private.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5381C58719D00AB630E /* RATreeView+Private.m */; };
  189. 7162A5481C58719D00AB630E /* RATreeView+TableViewDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A53A1C58719D00AB630E /* RATreeView+TableViewDataSource.m */; };
  190. 7162A5491C58719D00AB630E /* RATreeView+TableViewDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A53C1C58719D00AB630E /* RATreeView+TableViewDelegate.m */; };
  191. 7162A54A1C58719D00AB630E /* RATreeView+UIScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A53E1C58719D00AB630E /* RATreeView+UIScrollView.m */; };
  192. 7162A54B1C58719D00AB630E /* RAViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5401C58719D00AB630E /* RAViewController.m */; };
  193. 7162A54E1C58722200AB630E /* CreditCardEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A54D1C58722200AB630E /* CreditCardEditorViewController.m */; };
  194. 7162A55B1C58724700AB630E /* ContactAdvanceSearchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5501C58724700AB630E /* ContactAdvanceSearchViewController.m */; };
  195. 7162A55C1C58724700AB630E /* ContactListTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5521C58724700AB630E /* ContactListTableViewCell.m */; };
  196. 7162A55D1C58724700AB630E /* ContactListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5541C58724700AB630E /* ContactListViewController.m */; };
  197. 7162A55E1C58724700AB630E /* customer_advanced_search.json in Resources */ = {isa = PBXBuildFile; fileRef = 7162A5551C58724700AB630E /* customer_advanced_search.json */; };
  198. 7162A55F1C58724700AB630E /* customer_info_template.json in Resources */ = {isa = PBXBuildFile; fileRef = 7162A5561C58724700AB630E /* customer_info_template.json */; };
  199. 7162A5601C58724700AB630E /* CustomerEditViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5581C58724700AB630E /* CustomerEditViewController.m */; };
  200. 7162A5611C58724700AB630E /* CustomerInfoViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A55A1C58724700AB630E /* CustomerInfoViewController.m */; };
  201. 7162A5701C58728D00AB630E /* DetailHeaderCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5631C58728D00AB630E /* DetailHeaderCell.m */; };
  202. 7162A5711C58728D00AB630E /* DetailImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5651C58728D00AB630E /* DetailImageCell.m */; };
  203. 7162A5721C58728D00AB630E /* DetailKVCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5671C58728D00AB630E /* DetailKVCell.m */; };
  204. 7162A5731C58728D00AB630E /* DetailTopicCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5691C58728D00AB630E /* DetailTopicCell.m */; };
  205. 7162A5741C58728D00AB630E /* DetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A56B1C58728D00AB630E /* DetailViewController.m */; };
  206. 7162A5751C58728D00AB630E /* LineView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A56D1C58728D00AB630E /* LineView.m */; };
  207. 7162A5811C5872EF00AB630E /* HomeTableViewCellBanner.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5781C5872EF00AB630E /* HomeTableViewCellBanner.m */; };
  208. 7162A5821C5872EF00AB630E /* HomeTableViewCellButtonBanner.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A57A1C5872EF00AB630E /* HomeTableViewCellButtonBanner.m */; };
  209. 7162A5831C5872EF00AB630E /* HomeTableViewCellSlide.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A57C1C5872EF00AB630E /* HomeTableViewCellSlide.m */; };
  210. 7162A5841C5872EF00AB630E /* HomeTableViewCellTopic.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A57E1C5872EF00AB630E /* HomeTableViewCellTopic.m */; };
  211. 7162A5851C5872EF00AB630E /* HomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5801C5872EF00AB630E /* HomeViewController.m */; };
  212. 7162A5981C58733400AB630E /* CreateOrderViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5871C58733400AB630E /* CreateOrderViewController.m */; };
  213. 7162A5991C58733400AB630E /* OrderDetailHtmlCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5891C58733400AB630E /* OrderDetailHtmlCell.m */; };
  214. 7162A59A1C58733400AB630E /* OrderDetailInfoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A58B1C58733400AB630E /* OrderDetailInfoCell.m */; };
  215. 7162A59B1C58733400AB630E /* OrderDetailModelCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A58D1C58733400AB630E /* OrderDetailModelCell.m */; };
  216. 7162A59C1C58733400AB630E /* OrderDetailPriceCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A58F1C58733400AB630E /* OrderDetailPriceCell.m */; };
  217. 7162A59D1C58733400AB630E /* OrderDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5911C58733400AB630E /* OrderDetailViewController.m */; };
  218. 7162A59E1C58733400AB630E /* OrderListTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5931C58733400AB630E /* OrderListTableViewCell.m */; };
  219. 7162A59F1C58733400AB630E /* OrderListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5951C58733400AB630E /* OrderListViewController.m */; };
  220. 7162A5A01C58733400AB630E /* status_filter_cadedate_open.json in Resources */ = {isa = PBXBuildFile; fileRef = 7162A5961C58733400AB630E /* status_filter_cadedate_open.json */; };
  221. 7162A5A11C58733400AB630E /* offline_status_filter_cadedate.json in Resources */ = {isa = PBXBuildFile; fileRef = 7162A5971C58733400AB630E /* offline_status_filter_cadedate.json */; };
  222. 7162A5AC1C58735900AB630E /* PortfolioViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5A71C58735900AB630E /* PortfolioViewController.m */; };
  223. 7162A5AD1C58735900AB630E /* TearSheetParamViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5A91C58735900AB630E /* TearSheetParamViewController.m */; };
  224. 7162A5B41C58738600AB630E /* ScannerControllerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5AF1C58738600AB630E /* ScannerControllerView.m */; };
  225. 7162A5B51C58738600AB630E /* ScannerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5B11C58738600AB630E /* ScannerViewController.m */; };
  226. 7162A5B61C58738600AB630E /* SCShapeView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5B31C58738600AB630E /* SCShapeView.m */; };
  227. 7162A5C11C5873BB00AB630E /* FilterCellCadedate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5B81C5873BB00AB630E /* FilterCellCadedate.m */; };
  228. 7162A5C21C5873BB00AB630E /* FilterCellValue.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5BA1C5873BB00AB630E /* FilterCellValue.m */; };
  229. 7162A5C31C5873BB00AB630E /* ItemSearchFilterViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5BC1C5873BB00AB630E /* ItemSearchFilterViewController.m */; };
  230. 7162A5C41C5873BB00AB630E /* ItemSearchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5BE1C5873BB00AB630E /* ItemSearchViewController.m */; };
  231. 7162A5C51C5873BB00AB630E /* SearchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5C01C5873BB00AB630E /* SearchViewController.m */; };
  232. 7162A5CA1C58761500AB630E /* SignatureView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5C71C58761500AB630E /* SignatureView.m */; };
  233. 7162A5CB1C58761500AB630E /* SignatureViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5C91C58761500AB630E /* SignatureViewController.m */; };
  234. 7162A5DA1C5876E300AB630E /* AboutViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5CD1C5876E300AB630E /* AboutViewController.m */; };
  235. 7162A5DB1C5876E300AB630E /* CacheViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5CF1C5876E300AB630E /* CacheViewController.m */; };
  236. 7162A5DC1C5876E300AB630E /* LoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5D11C5876E300AB630E /* LoginViewController.m */; };
  237. 7162A5DD1C5876E300AB630E /* PopupNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5D31C5876E300AB630E /* PopupNavigationController.m */; };
  238. 7162A5DE1C5876E300AB630E /* RetrievePassViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5D51C5876E300AB630E /* RetrievePassViewController.m */; };
  239. 7162A5DF1C5876E300AB630E /* ScannerSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5D71C5876E300AB630E /* ScannerSettingViewController.m */; };
  240. 7162A5E01C5876E300AB630E /* SettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5D91C5876E300AB630E /* SettingViewController.m */; };
  241. 7162A5E31C5877CE00AB630E /* WatchListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5E21C5877CE00AB630E /* WatchListViewController.m */; };
  242. 7162A5E61C58781000AB630E /* iSalesNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5E51C58781000AB630E /* iSalesNavigationController.m */; };
  243. 7162A5E91C5899F700AB630E /* MainViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5E81C5899F700AB630E /* MainViewController.m */; };
  244. 7165662E1EF3ACD900CB897F /* photostack_image.html in Resources */ = {isa = PBXBuildFile; fileRef = 7165662C1EF3ACD900CB897F /* photostack_image.html */; };
  245. 7165662F1EF3ACD900CB897F /* photostack_video.html in Resources */ = {isa = PBXBuildFile; fileRef = 7165662D1EF3ACD900CB897F /* photostack_video.html */; };
  246. 716961B519594E1000B19FB4 /* libsqlite3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 716961B419594E1000B19FB4 /* libsqlite3.dylib */; };
  247. 716AF8E11D7AA0E0001188E0 /* SelectUploadOrderViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 716AF8E01D7AA0E0001188E0 /* SelectUploadOrderViewController.m */; };
  248. 716AF8E71D7AA398001188E0 /* SelectOrderTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 716AF8E51D7AA398001188E0 /* SelectOrderTableViewCell.m */; };
  249. 71777FC61C8AC97300DA2511 /* debug_category_filter.json in Resources */ = {isa = PBXBuildFile; fileRef = 71777FC51C8AC97300DA2511 /* debug_category_filter.json */; };
  250. 7186C25D1C97A6EE00CB43F4 /* FunctionTestViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7186C25C1C97A6EE00CB43F4 /* FunctionTestViewController.m */; };
  251. 718716251C433D8B00F25860 /* ExternalAccessory.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 718716241C433D8B00F25860 /* ExternalAccessory.framework */; };
  252. 718716271C433D9700F25860 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 718716261C433D9700F25860 /* AudioToolbox.framework */; };
  253. 718716291C433DA400F25860 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 718716281C433DA400F25860 /* AVFoundation.framework */; };
  254. 718E71091DE7CEA20035D1FF /* so.json in Resources */ = {isa = PBXBuildFile; fileRef = 718E71081DE7CEA20035D1FF /* so.json */; };
  255. 7195623C1CF57D1800C74A49 /* CategoryHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7195623B1CF57D1800C74A49 /* CategoryHeaderView.m */; };
  256. 71BBA2271CEAC16000C91DED /* ZipArchive.mm in Sources */ = {isa = PBXBuildFile; fileRef = 71BBA2221CEAC16000C91DED /* ZipArchive.mm */; };
  257. 71BBA2291CEAC17E00C91DED /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 71BBA2281CEAC17E00C91DED /* libz.tbd */; };
  258. 71BBA2401CEAEF0700C91DED /* ioapi.c in Sources */ = {isa = PBXBuildFile; fileRef = 71BBA2381CEAEF0700C91DED /* ioapi.c */; };
  259. 71BBA2411CEAEF0700C91DED /* mztools.c in Sources */ = {isa = PBXBuildFile; fileRef = 71BBA23A1CEAEF0700C91DED /* mztools.c */; };
  260. 71BBA2421CEAEF0700C91DED /* unzip.c in Sources */ = {isa = PBXBuildFile; fileRef = 71BBA23C1CEAEF0700C91DED /* unzip.c */; settings = {COMPILER_FLAGS = "-Wno-dangling-else"; }; };
  261. 71BBA2431CEAEF0700C91DED /* zip.c in Sources */ = {isa = PBXBuildFile; fileRef = 71BBA23E1CEAEF0700C91DED /* zip.c */; };
  262. 71BF06FB1D2F3CAC00981938 /* OLDataProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BF06FA1D2F3CAC00981938 /* OLDataProvider.m */; };
  263. 71BF06FE1D2F3CBA00981938 /* OfflineSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BF06FD1D2F3CBA00981938 /* OfflineSettingViewController.m */; };
  264. 71BF07081D2F3D2800981938 /* SyncControlPanelViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BF07071D2F3D2800981938 /* SyncControlPanelViewController.m */; };
  265. 71C1D84E1F456CAA00CEA1C9 /* HWWeakTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 71C1D84D1F456CAA00CEA1C9 /* HWWeakTimer.m */; };
  266. 71C1D8541F456D2700CEA1C9 /* ModelDescriptionController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71C1D8531F456D2700CEA1C9 /* ModelDescriptionController.m */; };
  267. 71CB63E62109B8CC00DC90F9 /* MainHeaderViewColorPanel.m in Sources */ = {isa = PBXBuildFile; fileRef = 71CB63E42109B8CB00DC90F9 /* MainHeaderViewColorPanel.m */; };
  268. 71CB70751F99DF02009FDCB7 /* FileCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 71CB70731F99DF01009FDCB7 /* FileCache.m */; };
  269. 71CB70781F99E338009FDCB7 /* RAConvertor.m in Sources */ = {isa = PBXBuildFile; fileRef = 71CB70771F99E338009FDCB7 /* RAConvertor.m */; };
  270. 71D01ADD1E08CB1C006620CE /* signature.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 71D01ADC1E08CB1C006620CE /* signature.storyboard */; };
  271. 71D01B1A1E0A2055006620CE /* ImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 71D01B151E0A2055006620CE /* ImageUtils.m */; };
  272. 71D01B1B1E0A2055006620CE /* PDFUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 71D01B171E0A2055006620CE /* PDFUtils.m */; };
  273. 71D01B1C1E0A2055006620CE /* TextUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 71D01B191E0A2055006620CE /* TextUtils.m */; };
  274. 71D0344F1C9BF3C400E0F7AD /* PortfolioEditQTYViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71D0344E1C9BF3C400E0F7AD /* PortfolioEditQTYViewController.m */; };
  275. 71D30A211CFBEDC6006F9477 /* default_appearance.json in Resources */ = {isa = PBXBuildFile; fileRef = 71D30A201CFBEDC6006F9477 /* default_appearance.json */; };
  276. 71D30A2D1CFC0EF8006F9477 /* DefaultImageButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 71D30A2C1CFC0EF8006F9477 /* DefaultImageButton.m */; };
  277. 71D46D111CE1D9EF00A081AC /* OLM.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 71D46D0F1CE1D9EF00A081AC /* OLM.storyboard */; };
  278. 71D5016C1DC32C3300971FBB /* portfolio_2x3.json in Resources */ = {isa = PBXBuildFile; fileRef = 71D5016B1DC32C3300971FBB /* portfolio_2x3.json */; };
  279. 71DEE874192DE003003F645F /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71DEE873192DE003003F645F /* QuartzCore.framework */; };
  280. 71DEE876192DE00E003F645F /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71DEE875192DE00E003F645F /* Accelerate.framework */; };
  281. 71DF742B1C57560600F2789C /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF742A1C57560600F2789C /* Reachability.m */; };
  282. 71DF74341C5757DA00F2789C /* ActiveViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74331C5757DA00F2789C /* ActiveViewController.m */; };
  283. 71DF74831C57608F00F2789C /* ImageScrollerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF746C1C57608F00F2789C /* ImageScrollerView.m */; };
  284. 71DF74841C57608F00F2789C /* ImageScrollerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF746E1C57608F00F2789C /* ImageScrollerViewController.m */; };
  285. 71DF74851C57608F00F2789C /* ImageUploadViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74701C57608F00F2789C /* ImageUploadViewController.m */; };
  286. 71DF74861C57608F00F2789C /* ImageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74721C57608F00F2789C /* ImageViewController.m */; };
  287. 71DF74871C57608F00F2789C /* NIDropDown.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74741C57608F00F2789C /* NIDropDown.m */; };
  288. 71DF74891C57608F00F2789C /* RadioButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74781C57608F00F2789C /* RadioButton.m */; };
  289. 71DF748B1C57608F00F2789C /* SimpleGrid.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF747C1C57608F00F2789C /* SimpleGrid.m */; };
  290. 71DF748D1C57608F00F2789C /* TouchLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74801C57608F00F2789C /* TouchLabel.m */; };
  291. 71DF748E1C57608F00F2789C /* UILabel+FontAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74821C57608F00F2789C /* UILabel+FontAppearance.m */; };
  292. 71DF74951C57614C00F2789C /* PhotoBorder.png in Resources */ = {isa = PBXBuildFile; fileRef = 71DF748F1C57614C00F2789C /* PhotoBorder.png */; };
  293. 71DF74961C57614C00F2789C /* PhotoBorder@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 71DF74901C57614C00F2789C /* PhotoBorder@2x.png */; };
  294. 71DF74971C57614C00F2789C /* PhotoStackView.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74921C57614C00F2789C /* PhotoStackView.m */; };
  295. 71DF74981C57614C00F2789C /* PhotoStackViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74941C57614C00F2789C /* PhotoStackViewController.m */; };
  296. 71E5A0101DC99370005BF655 /* config.plist in Resources */ = {isa = PBXBuildFile; fileRef = 71E5A00F1DC99370005BF655 /* config.plist */; };
  297. 71E9F6BC1F8B52DD0052C78E /* NetworkUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 71E9F6BA1F8B52DC0052C78E /* NetworkUtils.m */; };
  298. 71E9F6C21F8B57E40052C78E /* RANetworkTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 71E9F6C01F8B57E30052C78E /* RANetworkTaskDelegate.m */; };
  299. 71FFBBE91C60894900D91DC2 /* iSalesDB.m in Sources */ = {isa = PBXBuildFile; fileRef = 71FFBBE61C60894900D91DC2 /* iSalesDB.m */; };
  300. 71FFBBEA1C60894900D91DC2 /* RANetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 71FFBBE81C60894900D91DC2 /* RANetwork.m */; };
  301. 78DD35082ED69EC3001E4BCB /* ScanApiStub.m in Sources */ = {isa = PBXBuildFile; fileRef = 78DD35072ED69EC3001E4BCB /* ScanApiStub.m */; };
  302. /* End PBXBuildFile section */
  303. /* Begin PBXFileReference section */
  304. 3C2F99B9237BE1880000808F /* PortfolioListTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PortfolioListTableViewCell.h; path = common/Functions/portfolio/PortfolioListTableViewCell.h; sourceTree = SOURCE_ROOT; };
  305. 3C2F99BA237BE1880000808F /* PortfolioListTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PortfolioListTableViewCell.m; path = common/Functions/portfolio/PortfolioListTableViewCell.m; sourceTree = SOURCE_ROOT; };
  306. 3C2F99BE237BE7190000808F /* NPD_Mobile.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NPD_Mobile.storyboard; sourceTree = "<group>"; };
  307. 3C3E26B327CDF87000EF6F5C /* UIView+Toast.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIView+Toast.m"; path = "../../common/customUI/UIView+Toast.m"; sourceTree = "<group>"; };
  308. 3C3E26B427CDF87000EF6F5C /* UIView+Toast.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIView+Toast.h"; path = "../../common/customUI/UIView+Toast.h"; sourceTree = "<group>"; };
  309. 3C57169823CEA4120002E9FC /* Launch Screen.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = "Launch Screen.storyboard"; sourceTree = "<group>"; };
  310. 3C68319C2397884A00AD5BD7 /* iPadCommonEditorCellSignature.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = iPadCommonEditorCellSignature.xib; path = ../../common/customUI/CommonEditoriPad/iPadCommonEditorCellSignature.xib; sourceTree = "<group>"; };
  311. 3C68319D2397884A00AD5BD7 /* iPadCommonEditorCellTextView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = iPadCommonEditorCellTextView.xib; path = ../../common/customUI/CommonEditoriPad/iPadCommonEditorCellTextView.xib; sourceTree = "<group>"; };
  312. 3C68319E2397884A00AD5BD7 /* iPadCommonEditorCellEnum.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = iPadCommonEditorCellEnum.xib; path = ../../common/customUI/CommonEditoriPad/iPadCommonEditorCellEnum.xib; sourceTree = "<group>"; };
  313. 3C68319F2397884A00AD5BD7 /* iPadCommonEditorCellSwitch.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = iPadCommonEditorCellSwitch.xib; path = ../../common/customUI/CommonEditoriPad/iPadCommonEditorCellSwitch.xib; sourceTree = "<group>"; };
  314. 3C6831A02397884A00AD5BD7 /* CommonEditor.iPad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = CommonEditor.iPad.xib; path = ../../common/customUI/CommonEditoriPad/CommonEditor.iPad.xib; sourceTree = "<group>"; };
  315. 3C6831A12397884A00AD5BD7 /* iPadCommonEditorCellAction.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = iPadCommonEditorCellAction.xib; path = ../../common/customUI/CommonEditoriPad/iPadCommonEditorCellAction.xib; sourceTree = "<group>"; };
  316. 3C6831A22397884A00AD5BD7 /* iPadCommonEditorCellImg.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = iPadCommonEditorCellImg.xib; path = ../../common/customUI/CommonEditoriPad/iPadCommonEditorCellImg.xib; sourceTree = "<group>"; };
  317. 3C6831A32397884A00AD5BD7 /* iPadCommonEditorCellMAction.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = iPadCommonEditorCellMAction.xib; path = ../../common/customUI/CommonEditoriPad/iPadCommonEditorCellMAction.xib; sourceTree = "<group>"; };
  318. 3C6831A42397884A00AD5BD7 /* iPadCommonEditorCellModel.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = iPadCommonEditorCellModel.xib; path = ../../common/customUI/CommonEditoriPad/iPadCommonEditorCellModel.xib; sourceTree = "<group>"; };
  319. 3C6831A52397884A00AD5BD7 /* iPadCommonEditorCellEdit.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = iPadCommonEditorCellEdit.xib; path = ../../common/customUI/CommonEditoriPad/iPadCommonEditorCellEdit.xib; sourceTree = "<group>"; };
  320. 3C6831A62397884A00AD5BD7 /* iPadCommonEditorCellLabel.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = iPadCommonEditorCellLabel.xib; path = ../../common/customUI/CommonEditoriPad/iPadCommonEditorCellLabel.xib; sourceTree = "<group>"; };
  321. 3C6831B22397887800AD5BD7 /* RAYTPlayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAYTPlayer.m; path = ../../common/Youtube/RAYTPlayer.m; sourceTree = "<group>"; };
  322. 3C6831B32397887800AD5BD7 /* RAYTPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RAYTPlayer.h; path = ../../common/Youtube/RAYTPlayer.h; sourceTree = "<group>"; };
  323. 3C6831B42397887800AD5BD7 /* ytplayer.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = ytplayer.html; path = ../../common/Youtube/ytplayer.html; sourceTree = "<group>"; };
  324. 3C6831B7239788C000AD5BD7 /* ERP_Mobile_Model.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = ERP_Mobile_Model.storyboard; path = common/ERP_Mobile_Model.storyboard; sourceTree = SOURCE_ROOT; };
  325. 3C6831B8239788C100AD5BD7 /* ERP_Mobile_Discard.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = ERP_Mobile_Discard.storyboard; path = common/ERP_Mobile_Discard.storyboard; sourceTree = SOURCE_ROOT; };
  326. 3C6831B9239788C100AD5BD7 /* ERP_Mobile_Order.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = ERP_Mobile_Order.storyboard; path = common/ERP_Mobile_Order.storyboard; sourceTree = SOURCE_ROOT; };
  327. 3C6831BA239788C100AD5BD7 /* ERP_Mobile_Portfolio.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = ERP_Mobile_Portfolio.storyboard; path = common/ERP_Mobile_Portfolio.storyboard; sourceTree = SOURCE_ROOT; };
  328. 3C6831BB239788C100AD5BD7 /* ERP_Mobile_Contact.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = ERP_Mobile_Contact.storyboard; path = common/ERP_Mobile_Contact.storyboard; sourceTree = SOURCE_ROOT; };
  329. 3C6831BC239788C100AD5BD7 /* ERP_Mobile_Search.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = ERP_Mobile_Search.storyboard; path = common/ERP_Mobile_Search.storyboard; sourceTree = SOURCE_ROOT; };
  330. 3C6831BD239788C100AD5BD7 /* ERP_Mobile_Cart.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = ERP_Mobile_Cart.storyboard; path = common/ERP_Mobile_Cart.storyboard; sourceTree = SOURCE_ROOT; };
  331. 3C70C0792A2DC244008C2400 /* MessageBox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageBox.h; sourceTree = "<group>"; };
  332. 3C70C07A2A2DC244008C2400 /* PopWaitAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PopWaitAlert.h; sourceTree = "<group>"; };
  333. 3C70C07B2A2DC244008C2400 /* RAPopviewContainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RAPopviewContainer.h; sourceTree = "<group>"; };
  334. 3C70C07C2A2DC244008C2400 /* PopWaitAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PopWaitAlert.m; sourceTree = "<group>"; };
  335. 3C70C07D2A2DC244008C2400 /* MessageBox.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MessageBox.m; sourceTree = "<group>"; };
  336. 3C70C07E2A2DC244008C2400 /* RAPopviewContainer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RAPopviewContainer.m; sourceTree = "<group>"; };
  337. 3C7E5A8F237BDB26006D0105 /* PortfolioListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PortfolioListViewController.m; path = common/Functions/portfolio/PortfolioListViewController.m; sourceTree = SOURCE_ROOT; };
  338. 3C7E5A90237BDB26006D0105 /* PortfolioListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PortfolioListViewController.h; path = common/Functions/portfolio/PortfolioListViewController.h; sourceTree = SOURCE_ROOT; };
  339. 3C97F3022EBB4E6D00BD9260 /* SceneDelegateBase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = SceneDelegateBase.h; path = common/SceneDelegateBase.h; sourceTree = SOURCE_ROOT; };
  340. 3C97F3032EBB4E6D00BD9260 /* SceneDelegateBase.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = SceneDelegateBase.m; path = common/SceneDelegateBase.m; sourceTree = SOURCE_ROOT; };
  341. 3C97F3052EBB501600BD9260 /* SceneDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SceneDelegate.h; sourceTree = "<group>"; };
  342. 3C97F3062EBB501600BD9260 /* SceneDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SceneDelegate.m; sourceTree = "<group>"; };
  343. 3CA2109F2761DA66000FC2F3 /* PhotoList.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = PhotoList.storyboard; sourceTree = "<group>"; };
  344. 3CA210A12761DA66000FC2F3 /* ContentPreviewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ContentPreviewController.m; sourceTree = "<group>"; };
  345. 3CA210A22761DA66000FC2F3 /* ContentPreviewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ContentPreviewController.h; sourceTree = "<group>"; };
  346. 3CA210A42761DA66000FC2F3 /* VideoPreviewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VideoPreviewCell.m; sourceTree = "<group>"; };
  347. 3CA210A52761DA66000FC2F3 /* PhotoPreviewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PhotoPreviewCell.h; sourceTree = "<group>"; };
  348. 3CA210A62761DA66000FC2F3 /* PhotoPreviewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PhotoPreviewCell.m; sourceTree = "<group>"; };
  349. 3CA210A72761DA66000FC2F3 /* VideoPreviewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoPreviewCell.h; sourceTree = "<group>"; };
  350. 3CA210AC2761DA8B000FC2F3 /* DefaultTableHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DefaultTableHeaderView.m; path = ../../common/customUI/commoneditor/DefaultTableHeaderView.m; sourceTree = "<group>"; };
  351. 3CA210AD2761DA8B000FC2F3 /* DefaultTableHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DefaultTableHeaderView.h; path = ../../common/customUI/commoneditor/DefaultTableHeaderView.h; sourceTree = "<group>"; };
  352. 3CA210AF2761DAAB000FC2F3 /* RASingleton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RASingleton.m; path = common/RASingleton.m; sourceTree = SOURCE_ROOT; };
  353. 3CA210B02761DAAB000FC2F3 /* RASingleton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RASingleton.h; path = common/RASingleton.h; sourceTree = SOURCE_ROOT; };
  354. 3CA210B22761DAF2000FC2F3 /* RAUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RAUtils.h; path = ../../common/RAUtils.h; sourceTree = "<group>"; };
  355. 3CA210B32761DAF2000FC2F3 /* RAUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAUtils.m; path = ../../common/RAUtils.m; sourceTree = "<group>"; };
  356. 3CA210B52761DB42000FC2F3 /* TouchImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TouchImageView.m; path = ../../common/customUI/TouchImageView.m; sourceTree = "<group>"; };
  357. 3CA210B82761DB42000FC2F3 /* StrikethroughLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = StrikethroughLabel.h; path = ../../common/customUI/StrikethroughLabel.h; sourceTree = "<group>"; };
  358. 3CA210B92761DB42000FC2F3 /* StrikethroughLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = StrikethroughLabel.m; path = ../../common/customUI/StrikethroughLabel.m; sourceTree = "<group>"; };
  359. 3CA210BA2761DB42000FC2F3 /* TouchImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TouchImageView.h; path = ../../common/customUI/TouchImageView.h; sourceTree = "<group>"; };
  360. 3CA210BB2761DB42000FC2F3 /* RTLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RTLabel.m; path = ../../common/customUI/RTLabel.m; sourceTree = "<group>"; };
  361. 3CA210BC2761DB42000FC2F3 /* RTLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RTLabel.h; path = ../../common/customUI/RTLabel.h; sourceTree = "<group>"; };
  362. 3CA210C22761DBC2000FC2F3 /* EnumModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EnumModel.m; sourceTree = "<group>"; };
  363. 3CA210C32761DBC2000FC2F3 /* EnumSelectAndSort.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = EnumSelectAndSort.storyboard; sourceTree = "<group>"; };
  364. 3CA210C42761DBC2000FC2F3 /* EnumSelectAndSortCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EnumSelectAndSortCell.h; sourceTree = "<group>"; };
  365. 3CA210C52761DBC2000FC2F3 /* EnumSelectAndSortViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EnumSelectAndSortViewController.h; sourceTree = "<group>"; };
  366. 3CA210C62761DBC2000FC2F3 /* EnumModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EnumModel.h; sourceTree = "<group>"; };
  367. 3CA210C72761DBC2000FC2F3 /* EnumSelectAndSortViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EnumSelectAndSortViewController.m; sourceTree = "<group>"; };
  368. 3CA210C82761DBC2000FC2F3 /* EnumSelectAndSortCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EnumSelectAndSortCell.m; sourceTree = "<group>"; };
  369. 3CA210CD2761DC2A000FC2F3 /* CommonEditorCellAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellAction.m; path = ../../common/customUI/commoneditor/CommonEditorCellAction.m; sourceTree = "<group>"; };
  370. 3CA210CE2761DC2A000FC2F3 /* CommonEditorCellEnum.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellEnum.m; path = ../../common/customUI/commoneditor/CommonEditorCellEnum.m; sourceTree = "<group>"; };
  371. 3CA210CF2761DC2A000FC2F3 /* CommonEditorCellModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellModel.h; path = ../../common/customUI/commoneditor/CommonEditorCellModel.h; sourceTree = "<group>"; };
  372. 3CA210D02761DC2A000FC2F3 /* CommonEditorCellEditor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellEditor.h; path = ../../common/customUI/commoneditor/CommonEditorCellEditor.h; sourceTree = "<group>"; };
  373. 3CA210D12761DC2A000FC2F3 /* CommonEditorCellLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellLabel.h; path = ../../common/customUI/commoneditor/CommonEditorCellLabel.h; sourceTree = "<group>"; };
  374. 3CA210D22761DC2A000FC2F3 /* CommonEditorCellImg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellImg.h; path = ../../common/customUI/commoneditor/CommonEditorCellImg.h; sourceTree = "<group>"; };
  375. 3CA210D32761DC2A000FC2F3 /* CommonEditorCellEditor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellEditor.m; path = ../../common/customUI/commoneditor/CommonEditorCellEditor.m; sourceTree = "<group>"; };
  376. 3CA210D42761DC2B000FC2F3 /* CommonEditorCellAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellAction.h; path = ../../common/customUI/commoneditor/CommonEditorCellAction.h; sourceTree = "<group>"; };
  377. 3CA210D52761DC2B000FC2F3 /* CommonEditorCellSignature.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellSignature.m; path = ../../common/customUI/commoneditor/CommonEditorCellSignature.m; sourceTree = "<group>"; };
  378. 3CA210D62761DC2B000FC2F3 /* CommonEditorCellTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellTextView.m; path = ../../common/customUI/commoneditor/CommonEditorCellTextView.m; sourceTree = "<group>"; };
  379. 3CA210D72761DC2B000FC2F3 /* CommonEditorCellLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellLabel.m; path = ../../common/customUI/commoneditor/CommonEditorCellLabel.m; sourceTree = "<group>"; };
  380. 3CA210D82761DC2B000FC2F3 /* CommonEditorCellEdit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellEdit.m; path = ../../common/customUI/commoneditor/CommonEditorCellEdit.m; sourceTree = "<group>"; };
  381. 3CA210D92761DC2B000FC2F3 /* CommonEditorCellImg.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellImg.m; path = ../../common/customUI/commoneditor/CommonEditorCellImg.m; sourceTree = "<group>"; };
  382. 3CA210DA2761DC2B000FC2F3 /* CommonEditorCellEdit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellEdit.h; path = ../../common/customUI/commoneditor/CommonEditorCellEdit.h; sourceTree = "<group>"; };
  383. 3CA210DB2761DC2B000FC2F3 /* CommonEditorCellMAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellMAction.m; path = ../../common/customUI/commoneditor/CommonEditorCellMAction.m; sourceTree = "<group>"; };
  384. 3CA210DC2761DC2B000FC2F3 /* CommonEditorCellSignature.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellSignature.h; path = ../../common/customUI/commoneditor/CommonEditorCellSignature.h; sourceTree = "<group>"; };
  385. 3CA210DD2761DC2B000FC2F3 /* CommonEditorCellEnum.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellEnum.h; path = ../../common/customUI/commoneditor/CommonEditorCellEnum.h; sourceTree = "<group>"; };
  386. 3CA210DE2761DC2B000FC2F3 /* CommonEditorCellSwitch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellSwitch.m; path = ../../common/customUI/commoneditor/CommonEditorCellSwitch.m; sourceTree = "<group>"; };
  387. 3CA210DF2761DC2B000FC2F3 /* CommonEditorCellTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellTextView.h; path = ../../common/customUI/commoneditor/CommonEditorCellTextView.h; sourceTree = "<group>"; };
  388. 3CA210E02761DC2B000FC2F3 /* CommonEditorCellMAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellMAction.h; path = ../../common/customUI/commoneditor/CommonEditorCellMAction.h; sourceTree = "<group>"; };
  389. 3CA210E12761DC2C000FC2F3 /* CommonEditorCellSwitch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellSwitch.h; path = ../../common/customUI/commoneditor/CommonEditorCellSwitch.h; sourceTree = "<group>"; };
  390. 3CA210E22761DC2C000FC2F3 /* CommonEditorCellModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellModel.m; path = ../../common/customUI/commoneditor/CommonEditorCellModel.m; sourceTree = "<group>"; };
  391. 3CA210EE2761DC38000FC2F3 /* CommonEditorViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorViewController.m; path = ../../common/customUI/commoneditor/CommonEditorViewController.m; sourceTree = "<group>"; };
  392. 3CA210EF2761DC38000FC2F3 /* CommonEditorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorViewController.h; path = ../../common/customUI/commoneditor/CommonEditorViewController.h; sourceTree = "<group>"; };
  393. 3CA210F12761DC94000FC2F3 /* DatePickerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DatePickerViewController.h; path = ../../common/customUI/commoneditor/DatePickerViewController.h; sourceTree = "<group>"; };
  394. 3CA210F22761DC94000FC2F3 /* EnumSelectViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EnumSelectViewController.h; path = ../../common/customUI/commoneditor/EnumSelectViewController.h; sourceTree = "<group>"; };
  395. 3CA210F32761DC94000FC2F3 /* MonthPickerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MonthPickerViewController.h; path = ../../common/customUI/commoneditor/MonthPickerViewController.h; sourceTree = "<group>"; };
  396. 3CA210F42761DC94000FC2F3 /* SRMonthPicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SRMonthPicker.m; path = ../../common/customUI/commoneditor/SRMonthPicker.m; sourceTree = "<group>"; };
  397. 3CA210F52761DC94000FC2F3 /* DatePickerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DatePickerViewController.m; path = ../../common/customUI/commoneditor/DatePickerViewController.m; sourceTree = "<group>"; };
  398. 3CA210F62761DC94000FC2F3 /* EnumSelectViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EnumSelectViewController.m; path = ../../common/customUI/commoneditor/EnumSelectViewController.m; sourceTree = "<group>"; };
  399. 3CA210F72761DC94000FC2F3 /* CommonEditorTableContainerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorTableContainerView.m; path = ../../common/customUI/commoneditor/CommonEditorTableContainerView.m; sourceTree = "<group>"; };
  400. 3CA210F82761DC94000FC2F3 /* CommonEditorTableContainerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorTableContainerView.h; path = ../../common/customUI/commoneditor/CommonEditorTableContainerView.h; sourceTree = "<group>"; };
  401. 3CA210F92761DC94000FC2F3 /* SRMonthPicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SRMonthPicker.h; path = ../../common/customUI/commoneditor/SRMonthPicker.h; sourceTree = "<group>"; };
  402. 3CA210FA2761DC94000FC2F3 /* EnumSelectorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EnumSelectorCell.h; path = ../../common/customUI/commoneditor/EnumSelectorCell.h; sourceTree = "<group>"; };
  403. 3CA210FB2761DC94000FC2F3 /* MonthPickerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MonthPickerViewController.m; path = ../../common/customUI/commoneditor/MonthPickerViewController.m; sourceTree = "<group>"; };
  404. 3CA210FC2761DC94000FC2F3 /* EnumSelectorCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EnumSelectorCell.m; path = ../../common/customUI/commoneditor/EnumSelectorCell.m; sourceTree = "<group>"; };
  405. 3CA210FD2761DC95000FC2F3 /* CommonEditor.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = CommonEditor.storyboard; path = ../../common/customUI/commoneditor/CommonEditor.storyboard; sourceTree = "<group>"; };
  406. 3CA211052761E9F8000FC2F3 /* DBUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DBUtil.m; path = common/DBUtil.m; sourceTree = SOURCE_ROOT; };
  407. 3CA211062761E9F8000FC2F3 /* DBUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DBUtil.h; path = common/DBUtil.h; sourceTree = SOURCE_ROOT; };
  408. 3CA211082761EA31000FC2F3 /* RADataProvider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RADataProvider.m; path = common/data_provider/RADataProvider.m; sourceTree = SOURCE_ROOT; };
  409. 3CA211092761EA31000FC2F3 /* RADataProvider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RADataProvider.h; path = common/data_provider/RADataProvider.h; sourceTree = SOURCE_ROOT; };
  410. 3CA2110F2761EBC8000FC2F3 /* common_const.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = common_const.h; path = ../../common/common_const.h; sourceTree = "<group>"; };
  411. 3CBC872F2A4EBF1100978758 /* ScanRefreshStock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ScanRefreshStock.h; path = common/ScanRefreshStock.h; sourceTree = SOURCE_ROOT; };
  412. 3CC7E72A23BEDA4F00BE5561 /* RAPDFViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RAPDFViewController.h; path = "../../common/WK PDF+Web/RAPDFViewController.h"; sourceTree = "<group>"; };
  413. 3CC7E72B23BEDA4F00BE5561 /* WebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WebViewController.m; path = "../../common/WK PDF+Web/WebViewController.m"; sourceTree = "<group>"; };
  414. 3CC7E72C23BEDA4F00BE5561 /* RAPDFViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAPDFViewController.m; path = "../../common/WK PDF+Web/RAPDFViewController.m"; sourceTree = "<group>"; };
  415. 3CC7E72D23BEDA4F00BE5561 /* WebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WebViewController.h; path = "../../common/WK PDF+Web/WebViewController.h"; sourceTree = "<group>"; };
  416. 3CC7E73023BEDA7B00BE5561 /* wkweb.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = wkweb.storyboard; path = "../../common/WK PDF+Web/wkweb.storyboard"; sourceTree = "<group>"; };
  417. 423A4ADB1D503A53005ECE4A /* createContact.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = createContact.json; sourceTree = "<group>"; };
  418. 423B49EE1DAC8071004181C2 /* CUL.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CUL.storyboard; sourceTree = "<group>"; };
  419. 424A02CF1FFB3A0B0088DC56 /* RABackOrderSubmitAlertController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = RABackOrderSubmitAlertController.h; path = common/Functions/order/RABackOrderSubmitAlertController.h; sourceTree = SOURCE_ROOT; };
  420. 424A02D01FFB3A0B0088DC56 /* RABackOrderSubmitAlertController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = RABackOrderSubmitAlertController.m; path = common/Functions/order/RABackOrderSubmitAlertController.m; sourceTree = SOURCE_ROOT; };
  421. 4254CCDC1FB1AC2B00C8B4B6 /* RAOrderEditorViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = RAOrderEditorViewController.h; path = common/Functions/order/RAOrderEditorViewController.h; sourceTree = SOURCE_ROOT; };
  422. 4254CCDD1FB1AC2B00C8B4B6 /* RAOrderEditorViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = RAOrderEditorViewController.m; path = common/Functions/order/RAOrderEditorViewController.m; sourceTree = SOURCE_ROOT; };
  423. 426438B521A2998300411DF7 /* AppDelegateBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegateBase.h; path = common/AppDelegateBase.h; sourceTree = SOURCE_ROOT; };
  424. 426438B621A2998300411DF7 /* AppDelegateBase.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegateBase.m; path = common/AppDelegateBase.m; sourceTree = SOURCE_ROOT; };
  425. 428980021E2490C1005F1BD8 /* NotificationNameCenter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NotificationNameCenter.h; path = common/NotificationNameCenter.h; sourceTree = SOURCE_ROOT; };
  426. 428980031E2490C1005F1BD8 /* NotificationNameCenter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NotificationNameCenter.m; path = common/NotificationNameCenter.m; sourceTree = SOURCE_ROOT; };
  427. 428980081E24918F005F1BD8 /* CartUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CartUtils.h; path = common/CartUtils.h; sourceTree = SOURCE_ROOT; };
  428. 428980091E24918F005F1BD8 /* CartUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CartUtils.m; path = common/CartUtils.m; sourceTree = SOURCE_ROOT; };
  429. 4289800F1E24924D005F1BD8 /* SortButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SortButton.h; sourceTree = "<group>"; };
  430. 428980101E24924D005F1BD8 /* SortButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SortButton.m; sourceTree = "<group>"; };
  431. 428980111E24924D005F1BD8 /* SortItemCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SortItemCell.h; sourceTree = "<group>"; };
  432. 428980121E24924D005F1BD8 /* SortItemCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SortItemCell.m; sourceTree = "<group>"; };
  433. 428980131E24924D005F1BD8 /* SortItemViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SortItemViewController.h; sourceTree = "<group>"; };
  434. 428980141E24924D005F1BD8 /* SortItemViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SortItemViewController.m; sourceTree = "<group>"; };
  435. 428980231E2492D2005F1BD8 /* CategoryPriceCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CategoryPriceCell.h; sourceTree = "<group>"; };
  436. 428980241E2492D2005F1BD8 /* CategoryPriceCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CategoryPriceCell.m; sourceTree = "<group>"; };
  437. 428980251E2492D2005F1BD8 /* CategoryPriceViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CategoryPriceViewController.h; sourceTree = "<group>"; };
  438. 428980261E2492D2005F1BD8 /* CategoryPriceViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CategoryPriceViewController.m; sourceTree = "<group>"; };
  439. 428980271E2492D2005F1BD8 /* PriceSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PriceSettingViewController.h; sourceTree = "<group>"; };
  440. 428980281E2492D2005F1BD8 /* PriceSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PriceSettingViewController.m; sourceTree = "<group>"; };
  441. 428980291E2492D2005F1BD8 /* SetCategoryPriceController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SetCategoryPriceController.h; sourceTree = "<group>"; };
  442. 4289802A1E2492D2005F1BD8 /* SetCategoryPriceController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SetCategoryPriceController.m; sourceTree = "<group>"; };
  443. 4289803D1E249339005F1BD8 /* JKDotView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JKDotView.h; sourceTree = "<group>"; };
  444. 4289803E1E249339005F1BD8 /* JKDotView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JKDotView.m; sourceTree = "<group>"; };
  445. 4289803F1E249339005F1BD8 /* JKLockButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JKLockButton.h; sourceTree = "<group>"; };
  446. 428980401E249339005F1BD8 /* JKLockButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JKLockButton.m; sourceTree = "<group>"; };
  447. 428980411E249339005F1BD8 /* JKLockController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JKLockController.h; sourceTree = "<group>"; };
  448. 428980421E249339005F1BD8 /* JKLockController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JKLockController.m; sourceTree = "<group>"; };
  449. 428980431E249339005F1BD8 /* JKMessageBoxController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JKMessageBoxController.h; sourceTree = "<group>"; };
  450. 428980441E249339005F1BD8 /* JKMessageBoxController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JKMessageBoxController.m; sourceTree = "<group>"; };
  451. 4289805B1E249375005F1BD8 /* UIColor+JK_HEX.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+JK_HEX.h"; sourceTree = "<group>"; };
  452. 4289805C1E249375005F1BD8 /* UIColor+JK_HEX.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+JK_HEX.m"; sourceTree = "<group>"; };
  453. 4289809C1E24B526005F1BD8 /* JKTimerManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JKTimerManager.h; sourceTree = "<group>"; };
  454. 4289809D1E24B526005F1BD8 /* JKTimerManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JKTimerManager.m; sourceTree = "<group>"; };
  455. 4295AE191FE74D46007BE365 /* CommonEditorAutoCompleteView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorAutoCompleteView.h; path = ../../common/customUI/commoneditor/CommonEditorAutoCompleteView.h; sourceTree = "<group>"; };
  456. 4295AE1A1FE74D46007BE365 /* CommonEditorAutoCompleteView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorAutoCompleteView.m; path = ../../common/customUI/commoneditor/CommonEditorAutoCompleteView.m; sourceTree = "<group>"; };
  457. 4295AE1B1FE74D46007BE365 /* CommonEditorAutoCompleteView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = CommonEditorAutoCompleteView.xib; path = ../../common/customUI/commoneditor/CommonEditorAutoCompleteView.xib; sourceTree = "<group>"; };
  458. 42969C011D52F31C00FF190A /* editContact.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = editContact.json; sourceTree = "<group>"; };
  459. 42A225321D6E7D1D00235B62 /* placeOrderTemplate.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = placeOrderTemplate.json; sourceTree = "<group>"; };
  460. 42A51BF31D62F60300F13667 /* more_info.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = more_info.html; sourceTree = "<group>"; };
  461. 42A51BF51D62F9AB00F13667 /* orderDetail.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = orderDetail.json; sourceTree = "<group>"; };
  462. 42B309781E45BA32007AFC62 /* status_filter_cadedate_po.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = status_filter_cadedate_po.json; path = common/Functions/order/status_filter_cadedate_po.json; sourceTree = SOURCE_ROOT; };
  463. 42B3C9BA1D642C880053985C /* order_info.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = order_info.html; sourceTree = "<group>"; };
  464. 42BEF35C1E89FECD00632AB6 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
  465. 42BEF35E1E89FEE300632AB6 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
  466. 42BEF3A51E8A57F600632AB6 /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = "<group>"; };
  467. 42BF67CA1E5179970081F90A /* ERPUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ERPUtils.h; path = common/ERPUtils.h; sourceTree = SOURCE_ROOT; };
  468. 42BF67CB1E5179970081F90A /* ERPUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ERPUtils.m; path = common/ERPUtils.m; sourceTree = SOURCE_ROOT; };
  469. 42C2E8BB1DB49D02006C0495 /* TearSheet.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = TearSheet.json; sourceTree = "<group>"; };
  470. 42C9FB141D5B28FA001DCA8B /* contactAdvanceSearch.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = contactAdvanceSearch.json; sourceTree = "<group>"; };
  471. 42DC12EF1F0CD98E00A4C011 /* OrderDetailPickInfoCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailPickInfoCell.h; path = common/Functions/order/OrderDetailPickInfoCell.h; sourceTree = SOURCE_ROOT; };
  472. 42DC12F01F0CD98E00A4C011 /* OrderDetailPickInfoCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailPickInfoCell.m; path = common/Functions/order/OrderDetailPickInfoCell.m; sourceTree = SOURCE_ROOT; };
  473. 42DC31121D546FBE00BCD1C6 /* category.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = category.json; sourceTree = "<group>"; };
  474. 42E489601EE63F4E007256A0 /* more_color_64.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = more_color_64.png; sourceTree = "<group>"; };
  475. 42FD1A011FBD1A3000C5D9A8 /* RAOrderPreviewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = RAOrderPreviewController.h; path = common/Functions/order/RAOrderPreviewController.h; sourceTree = SOURCE_ROOT; };
  476. 42FD1A021FBD1A3000C5D9A8 /* RAOrderPreviewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = RAOrderPreviewController.m; path = common/Functions/order/RAOrderPreviewController.m; sourceTree = SOURCE_ROOT; };
  477. 710274231CC606C4009FD219 /* UserListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = UserListViewController.h; path = common/Functions/sidemenu/UserListViewController.h; sourceTree = SOURCE_ROOT; };
  478. 710274241CC606C4009FD219 /* UserListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = UserListViewController.m; path = common/Functions/sidemenu/UserListViewController.m; sourceTree = SOURCE_ROOT; };
  479. 71073AE51DD41DD8001BC653 /* so_thumb.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = so_thumb.json; sourceTree = "<group>"; };
  480. 7111E5711C76C557004763B3 /* customer_info_template_edit.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = customer_info_template_edit.json; path = common/Functions/contact/customer_info_template_edit.json; sourceTree = SOURCE_ROOT; };
  481. 71131F901CA1372300DBF6E2 /* SimplifiedBuyingProgramViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SimplifiedBuyingProgramViewController.h; path = common/Functions/sidemenu/SimplifiedBuyingProgramViewController.h; sourceTree = SOURCE_ROOT; };
  482. 71131F911CA1372300DBF6E2 /* SimplifiedBuyingProgramViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SimplifiedBuyingProgramViewController.m; path = common/Functions/sidemenu/SimplifiedBuyingProgramViewController.m; sourceTree = SOURCE_ROOT; };
  483. 712AFEC51DBA050200254965 /* BasicDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BasicDrawable.h; path = common/pdfCreator/BasicDrawable.h; sourceTree = SOURCE_ROOT; };
  484. 712AFEC61DBA050200254965 /* BasicDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = BasicDrawable.m; path = common/pdfCreator/BasicDrawable.m; sourceTree = SOURCE_ROOT; };
  485. 712AFEC71DBA050200254965 /* GridDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GridDrawable.h; path = common/pdfCreator/GridDrawable.h; sourceTree = SOURCE_ROOT; };
  486. 712AFEC81DBA050200254965 /* GridDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = GridDrawable.m; path = common/pdfCreator/GridDrawable.m; sourceTree = SOURCE_ROOT; };
  487. 712AFEC91DBA050200254965 /* GroupDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GroupDrawable.h; path = common/pdfCreator/GroupDrawable.h; sourceTree = SOURCE_ROOT; };
  488. 712AFECA1DBA050200254965 /* GroupDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = GroupDrawable.m; path = common/pdfCreator/GroupDrawable.m; sourceTree = SOURCE_ROOT; };
  489. 712AFECB1DBA050200254965 /* ImageDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ImageDrawable.h; path = common/pdfCreator/ImageDrawable.h; sourceTree = SOURCE_ROOT; };
  490. 712AFECC1DBA050200254965 /* ImageDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ImageDrawable.m; path = common/pdfCreator/ImageDrawable.m; sourceTree = SOURCE_ROOT; };
  491. 712AFECD1DBA050200254965 /* LineDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LineDrawable.h; path = common/pdfCreator/LineDrawable.h; sourceTree = SOURCE_ROOT; };
  492. 712AFECE1DBA050200254965 /* LineDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = LineDrawable.m; path = common/pdfCreator/LineDrawable.m; sourceTree = SOURCE_ROOT; };
  493. 712AFECF1DBA050200254965 /* PDFDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PDFDrawable.h; path = common/pdfCreator/PDFDrawable.h; sourceTree = SOURCE_ROOT; };
  494. 712AFED01DBA050200254965 /* PDFDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PDFDrawable.m; path = common/pdfCreator/PDFDrawable.m; sourceTree = SOURCE_ROOT; };
  495. 712AFED11DBA050200254965 /* RAPDFPage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RAPDFPage.h; path = common/pdfCreator/RAPDFPage.h; sourceTree = SOURCE_ROOT; };
  496. 712AFED21DBA050200254965 /* RAPDFPage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAPDFPage.m; path = common/pdfCreator/RAPDFPage.m; sourceTree = SOURCE_ROOT; };
  497. 712AFED31DBA050200254965 /* TableDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TableDrawable.h; path = common/pdfCreator/TableDrawable.h; sourceTree = SOURCE_ROOT; };
  498. 712AFED41DBA050200254965 /* TableDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TableDrawable.m; path = common/pdfCreator/TableDrawable.m; sourceTree = SOURCE_ROOT; };
  499. 712AFED51DBA050200254965 /* TextDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TextDrawable.h; path = common/pdfCreator/TextDrawable.h; sourceTree = SOURCE_ROOT; };
  500. 712AFED61DBA050200254965 /* TextDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TextDrawable.m; path = common/pdfCreator/TextDrawable.m; sourceTree = SOURCE_ROOT; };
  501. 712AFEE01DBA077F00254965 /* pdfCreator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pdfCreator.h; path = common/pdfCreator/pdfCreator.h; sourceTree = SOURCE_ROOT; };
  502. 712AFEE11DBA077F00254965 /* pdfCreator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = pdfCreator.m; path = common/pdfCreator/pdfCreator.m; sourceTree = SOURCE_ROOT; };
  503. 712AFEE41DBDAF0300254965 /* pdfcreator.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = pdfcreator.xcassets; sourceTree = "<group>"; };
  504. 712AFEE61DBDB48000254965 /* portfolio_3x2.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = portfolio_3x2.json; sourceTree = "<group>"; };
  505. 712BABF11C897E3A0007466B /* CategorySearchFilterViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CategorySearchFilterViewController.h; path = common/Functions/category/CategorySearchFilterViewController.h; sourceTree = SOURCE_ROOT; };
  506. 712BABF21C897E3A0007466B /* CategorySearchFilterViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CategorySearchFilterViewController.m; path = common/Functions/category/CategorySearchFilterViewController.m; sourceTree = SOURCE_ROOT; };
  507. 712C40B41C7310F4000E6831 /* CartGeneralNotesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CartGeneralNotesViewController.h; path = common/Functions/cart/CartGeneralNotesViewController.h; sourceTree = SOURCE_ROOT; };
  508. 712C40B51C7310F4000E6831 /* CartGeneralNotesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CartGeneralNotesViewController.m; path = common/Functions/cart/CartGeneralNotesViewController.m; sourceTree = SOURCE_ROOT; };
  509. 712C40B71C731126000E6831 /* ItemNotesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ItemNotesViewController.h; path = common/Functions/cart/ItemNotesViewController.h; sourceTree = SOURCE_ROOT; };
  510. 712C40B81C731126000E6831 /* ItemNotesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ItemNotesViewController.m; path = common/Functions/cart/ItemNotesViewController.m; sourceTree = SOURCE_ROOT; };
  511. 713F76A61929F4A7006A7305 /* NPD Mobile.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "NPD Mobile.app"; sourceTree = BUILT_PRODUCTS_DIR; };
  512. 713F76A91929F4A7006A7305 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
  513. 713F76AB1929F4A7006A7305 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
  514. 713F76AD1929F4A7006A7305 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
  515. 713F76B11929F4A7006A7305 /* iSales-NPD-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "iSales-NPD-Info.plist"; sourceTree = "<group>"; };
  516. 713F76B31929F4A7006A7305 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  517. 713F76B51929F4A7006A7305 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  518. 713F76B71929F4A7006A7305 /* iSales-NPD-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "iSales-NPD-Prefix.pch"; sourceTree = "<group>"; };
  519. 713F76B81929F4A7006A7305 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
  520. 713F76B91929F4A7006A7305 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
  521. 713F76BC1929F4A7006A7305 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  522. 713F76C11929F4A7006A7305 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
  523. 713F76C81929F4A7006A7305 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
  524. 7141DD331C57269B00F7DF59 /* include */ = {isa = PBXFileReference; lastKnownFileType = folder; name = include; path = "ScanApiSDK-10.2.227-2/include"; sourceTree = SOURCE_ROOT; };
  525. 7141DD351C5726B700F7DF59 /* DeviceInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DeviceInfo.h; path = "ScanApiSDK-10.2.227-2/DeviceInfo.h"; sourceTree = SOURCE_ROOT; };
  526. 7141DD361C5726B700F7DF59 /* DeviceInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DeviceInfo.m; path = "ScanApiSDK-10.2.227-2/DeviceInfo.m"; sourceTree = SOURCE_ROOT; };
  527. 7141DD371C5726B700F7DF59 /* ScanApiHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ScanApiHelper.h; path = "ScanApiSDK-10.2.227-2/ScanApiHelper.h"; sourceTree = SOURCE_ROOT; };
  528. 7141DD381C5726B700F7DF59 /* ScanApiHelper.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = ScanApiHelper.mm; path = "ScanApiSDK-10.2.227-2/ScanApiHelper.mm"; sourceTree = SOURCE_ROOT; };
  529. 7141DD391C5726B700F7DF59 /* ScanApiIncludes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ScanApiIncludes.h; path = "ScanApiSDK-10.2.227-2/ScanApiIncludes.h"; sourceTree = SOURCE_ROOT; };
  530. 7141DD3A1C5726B700F7DF59 /* softScanBeep.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; name = softScanBeep.wav; path = "ScanApiSDK-10.2.227-2/softScanBeep.wav"; sourceTree = SOURCE_ROOT; };
  531. 7141DD3E1C57459B00F7DF59 /* bitstream.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = bitstream.c; path = common/qrcode/bitstream.c; sourceTree = SOURCE_ROOT; };
  532. 7141DD3F1C57459B00F7DF59 /* bitstream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = bitstream.h; path = common/qrcode/bitstream.h; sourceTree = SOURCE_ROOT; };
  533. 7141DD401C57459B00F7DF59 /* mask.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mask.c; path = common/qrcode/mask.c; sourceTree = SOURCE_ROOT; };
  534. 7141DD411C57459B00F7DF59 /* mask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mask.h; path = common/qrcode/mask.h; sourceTree = SOURCE_ROOT; };
  535. 7141DD421C57459B00F7DF59 /* QRCodeGenerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = QRCodeGenerator.h; path = common/qrcode/QRCodeGenerator.h; sourceTree = SOURCE_ROOT; };
  536. 7141DD431C57459B00F7DF59 /* QRCodeGenerator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = QRCodeGenerator.m; path = common/qrcode/QRCodeGenerator.m; sourceTree = SOURCE_ROOT; };
  537. 7141DD441C57459B00F7DF59 /* qrencode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = qrencode.c; path = common/qrcode/qrencode.c; sourceTree = SOURCE_ROOT; };
  538. 7141DD451C57459B00F7DF59 /* qrencode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = qrencode.h; path = common/qrcode/qrencode.h; sourceTree = SOURCE_ROOT; };
  539. 7141DD461C57459B00F7DF59 /* qrinput.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = qrinput.c; path = common/qrcode/qrinput.c; sourceTree = SOURCE_ROOT; };
  540. 7141DD471C57459B00F7DF59 /* qrinput.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = qrinput.h; path = common/qrcode/qrinput.h; sourceTree = SOURCE_ROOT; };
  541. 7141DD481C57459B00F7DF59 /* qrspec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = qrspec.c; path = common/qrcode/qrspec.c; sourceTree = SOURCE_ROOT; };
  542. 7141DD491C57459B00F7DF59 /* qrspec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = qrspec.h; path = common/qrcode/qrspec.h; sourceTree = SOURCE_ROOT; };
  543. 7141DD4A1C57459B00F7DF59 /* rscode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = rscode.c; path = common/qrcode/rscode.c; sourceTree = SOURCE_ROOT; };
  544. 7141DD4B1C57459B00F7DF59 /* rscode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = rscode.h; path = common/qrcode/rscode.h; sourceTree = SOURCE_ROOT; };
  545. 7141DD4C1C57459B00F7DF59 /* split.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = split.c; path = common/qrcode/split.c; sourceTree = SOURCE_ROOT; };
  546. 7141DD4D1C57459B00F7DF59 /* split.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = split.h; path = common/qrcode/split.h; sourceTree = SOURCE_ROOT; };
  547. 7141DD561C5747CE00F7DF59 /* AESCrypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AESCrypt.h; path = common/AES/AESCrypt.h; sourceTree = SOURCE_ROOT; };
  548. 7141DD571C5747CE00F7DF59 /* AESCrypt.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AESCrypt.m; path = common/AES/AESCrypt.m; sourceTree = SOURCE_ROOT; };
  549. 7141DD581C5747CE00F7DF59 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = LICENSE; path = common/AES/LICENSE; sourceTree = SOURCE_ROOT; };
  550. 7141DD591C5747CE00F7DF59 /* NSData+Base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSData+Base64.h"; path = "common/AES/NSData+Base64.h"; sourceTree = SOURCE_ROOT; };
  551. 7141DD5A1C5747CE00F7DF59 /* NSData+Base64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSData+Base64.m"; path = "common/AES/NSData+Base64.m"; sourceTree = SOURCE_ROOT; };
  552. 7141DD5B1C5747CE00F7DF59 /* NSData+CommonCrypto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSData+CommonCrypto.h"; path = "common/AES/NSData+CommonCrypto.h"; sourceTree = SOURCE_ROOT; };
  553. 7141DD5C1C5747CE00F7DF59 /* NSData+CommonCrypto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSData+CommonCrypto.m"; path = "common/AES/NSData+CommonCrypto.m"; sourceTree = SOURCE_ROOT; };
  554. 7141DD5D1C5747CE00F7DF59 /* NSString+Base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSString+Base64.h"; path = "common/AES/NSString+Base64.h"; sourceTree = SOURCE_ROOT; };
  555. 7141DD5E1C5747CE00F7DF59 /* NSString+Base64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSString+Base64.m"; path = "common/AES/NSString+Base64.m"; sourceTree = SOURCE_ROOT; };
  556. 7142E8781DBF57510077EFA2 /* KALINGA.TTF */ = {isa = PBXFileReference; lastKnownFileType = file; path = KALINGA.TTF; sourceTree = "<group>"; };
  557. 7142E8791DBF57510077EFA2 /* KALINGAB.TTF */ = {isa = PBXFileReference; lastKnownFileType = file; path = KALINGAB.TTF; sourceTree = "<group>"; };
  558. 7142E87C1DC300010077EFA2 /* DejaVuSans-Bold.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "DejaVuSans-Bold.ttf"; sourceTree = "<group>"; };
  559. 7142E87D1DC300010077EFA2 /* DejaVuSans.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = DejaVuSans.ttf; sourceTree = "<group>"; };
  560. 714B1F3E1C7BF74100539193 /* OrderDetailSignatureCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailSignatureCell.h; path = common/Functions/order/OrderDetailSignatureCell.h; sourceTree = SOURCE_ROOT; };
  561. 714B1F3F1C7BF74100539193 /* OrderDetailSignatureCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailSignatureCell.m; path = common/Functions/order/OrderDetailSignatureCell.m; sourceTree = SOURCE_ROOT; };
  562. 715001FD1D114D9100F5927F /* BundleDetailButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BundleDetailButton.h; path = common/Functions/BundleDetailButton.h; sourceTree = SOURCE_ROOT; };
  563. 715001FE1D114D9100F5927F /* BundleDetailButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = BundleDetailButton.m; path = common/Functions/BundleDetailButton.m; sourceTree = SOURCE_ROOT; };
  564. 715671311E10A0EF006324A0 /* RectDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RectDrawable.h; path = common/pdfCreator/RectDrawable.h; sourceTree = SOURCE_ROOT; };
  565. 715671321E10A0EF006324A0 /* RectDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RectDrawable.m; path = common/pdfCreator/RectDrawable.m; sourceTree = SOURCE_ROOT; };
  566. 715850441CF6F0E500856B20 /* DefaultAppearance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DefaultAppearance.h; path = common/Functions/DefaultAppearance.h; sourceTree = SOURCE_ROOT; };
  567. 715850451CF6F0E500856B20 /* DefaultAppearance.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DefaultAppearance.m; path = common/Functions/DefaultAppearance.m; sourceTree = SOURCE_ROOT; };
  568. 715F30BB1DAB37EB00490EED /* OfflineUnlockViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OfflineUnlockViewController.h; path = common/Functions/offline/OfflineUnlockViewController.h; sourceTree = SOURCE_ROOT; };
  569. 715F30BC1DAB37EB00490EED /* OfflineUnlockViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OfflineUnlockViewController.m; path = common/Functions/offline/OfflineUnlockViewController.m; sourceTree = SOURCE_ROOT; };
  570. 7161FEB21D61B24900157EE1 /* creditcardpayment.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = creditcardpayment.html; path = common/Functions/offline/creditcardpayment.html; sourceTree = SOURCE_ROOT; };
  571. 7161FEB31D61B24900157EE1 /* normalpayment.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = normalpayment.html; path = common/Functions/offline/normalpayment.html; sourceTree = SOURCE_ROOT; };
  572. 7161FEB41D61B24900157EE1 /* orderinfo.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = orderinfo.html; path = common/Functions/offline/orderinfo.html; sourceTree = SOURCE_ROOT; };
  573. 7162A5001C586F5B00AB630E /* AddressEditorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AddressEditorViewController.h; path = common/Functions/address/AddressEditorViewController.h; sourceTree = SOURCE_ROOT; };
  574. 7162A5011C586F5B00AB630E /* AddressEditorViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AddressEditorViewController.m; path = common/Functions/address/AddressEditorViewController.m; sourceTree = SOURCE_ROOT; };
  575. 7162A5031C586FC100AB630E /* CycleScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CycleScrollView.h; path = common/AutoScrollImage/CycleScrollView.h; sourceTree = SOURCE_ROOT; };
  576. 7162A5041C586FC100AB630E /* CycleScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CycleScrollView.m; path = common/AutoScrollImage/CycleScrollView.m; sourceTree = SOURCE_ROOT; };
  577. 7162A5051C586FC100AB630E /* NSTimer+Addition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSTimer+Addition.h"; path = "common/AutoScrollImage/NSTimer+Addition.h"; sourceTree = SOURCE_ROOT; };
  578. 7162A5061C586FC100AB630E /* NSTimer+Addition.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSTimer+Addition.m"; path = "common/AutoScrollImage/NSTimer+Addition.m"; sourceTree = SOURCE_ROOT; };
  579. 7162A5071C586FC100AB630E /* SliderPage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SliderPage.h; path = common/AutoScrollImage/SliderPage.h; sourceTree = SOURCE_ROOT; };
  580. 7162A5081C586FC100AB630E /* SliderPage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SliderPage.m; path = common/AutoScrollImage/SliderPage.m; sourceTree = SOURCE_ROOT; };
  581. 7162A50C1C58704600AB630E /* BundleModelCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BundleModelCell.h; path = common/Functions/cart/BundleModelCell.h; sourceTree = SOURCE_ROOT; };
  582. 7162A50D1C58704600AB630E /* BundleModelCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = BundleModelCell.m; path = common/Functions/cart/BundleModelCell.m; sourceTree = SOURCE_ROOT; };
  583. 7162A50E1C58704600AB630E /* BundleModelViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BundleModelViewController.h; path = common/Functions/cart/BundleModelViewController.h; sourceTree = SOURCE_ROOT; };
  584. 7162A50F1C58704600AB630E /* BundleModelViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = BundleModelViewController.m; path = common/Functions/cart/BundleModelViewController.m; sourceTree = SOURCE_ROOT; };
  585. 7162A5101C58704600AB630E /* CartViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CartViewController.h; path = common/Functions/cart/CartViewController.h; sourceTree = SOURCE_ROOT; };
  586. 7162A5111C58704600AB630E /* CartViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CartViewController.m; path = common/Functions/cart/CartViewController.m; sourceTree = SOURCE_ROOT; };
  587. 7162A5121C58704600AB630E /* EditModelPriceViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EditModelPriceViewController.h; path = common/Functions/cart/EditModelPriceViewController.h; sourceTree = SOURCE_ROOT; };
  588. 7162A5131C58704600AB630E /* EditModelPriceViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EditModelPriceViewController.m; path = common/Functions/cart/EditModelPriceViewController.m; sourceTree = SOURCE_ROOT; };
  589. 7162A5141C58704600AB630E /* ModelItemCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ModelItemCell.h; path = common/Functions/cart/ModelItemCell.h; sourceTree = SOURCE_ROOT; };
  590. 7162A5151C58704600AB630E /* ModelItemCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ModelItemCell.m; path = common/Functions/cart/ModelItemCell.m; sourceTree = SOURCE_ROOT; };
  591. 7162A51F1C58706C00AB630E /* CategoryCellSmall.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CategoryCellSmall.h; path = common/Functions/category/CategoryCellSmall.h; sourceTree = SOURCE_ROOT; };
  592. 7162A5201C58706C00AB630E /* CategoryCellSmall.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CategoryCellSmall.m; path = common/Functions/category/CategoryCellSmall.m; sourceTree = SOURCE_ROOT; };
  593. 7162A5211C58706C00AB630E /* CategoryViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CategoryViewController.h; path = common/Functions/category/CategoryViewController.h; sourceTree = SOURCE_ROOT; };
  594. 7162A5221C58706C00AB630E /* CategoryViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CategoryViewController.m; path = common/Functions/category/CategoryViewController.m; sourceTree = SOURCE_ROOT; };
  595. 7162A5281C58713200AB630E /* CategoryCellNPD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CategoryCellNPD.h; sourceTree = "<group>"; };
  596. 7162A5291C58713200AB630E /* CategoryCellNPD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CategoryCellNPD.m; sourceTree = "<group>"; };
  597. 7162A52B1C58719D00AB630E /* RATreeNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RATreeNode.h; path = common/categoryMenu_RATree/RATreeNode.h; sourceTree = SOURCE_ROOT; };
  598. 7162A52C1C58719D00AB630E /* RATreeNode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RATreeNode.m; path = common/categoryMenu_RATree/RATreeNode.m; sourceTree = SOURCE_ROOT; };
  599. 7162A52D1C58719D00AB630E /* RATreeNodeCollectionController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RATreeNodeCollectionController.h; path = common/categoryMenu_RATree/RATreeNodeCollectionController.h; sourceTree = SOURCE_ROOT; };
  600. 7162A52E1C58719D00AB630E /* RATreeNodeCollectionController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RATreeNodeCollectionController.m; path = common/categoryMenu_RATree/RATreeNodeCollectionController.m; sourceTree = SOURCE_ROOT; };
  601. 7162A52F1C58719D00AB630E /* RATreeNodeInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RATreeNodeInfo.h; path = common/categoryMenu_RATree/RATreeNodeInfo.h; sourceTree = SOURCE_ROOT; };
  602. 7162A5301C58719D00AB630E /* RATreeNodeInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RATreeNodeInfo.m; path = common/categoryMenu_RATree/RATreeNodeInfo.m; sourceTree = SOURCE_ROOT; };
  603. 7162A5311C58719D00AB630E /* RATreeNodeInfo+Private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "RATreeNodeInfo+Private.h"; path = "common/categoryMenu_RATree/RATreeNodeInfo+Private.h"; sourceTree = SOURCE_ROOT; };
  604. 7162A5321C58719D00AB630E /* RATreeNodeInfo+Private.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "RATreeNodeInfo+Private.m"; path = "common/categoryMenu_RATree/RATreeNodeInfo+Private.m"; sourceTree = SOURCE_ROOT; };
  605. 7162A5331C58719D00AB630E /* RATreeView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RATreeView.h; path = common/categoryMenu_RATree/RATreeView.h; sourceTree = SOURCE_ROOT; };
  606. 7162A5341C58719D00AB630E /* RATreeView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RATreeView.m; path = common/categoryMenu_RATree/RATreeView.m; sourceTree = SOURCE_ROOT; };
  607. 7162A5351C58719D00AB630E /* RATreeView+Enums.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "RATreeView+Enums.h"; path = "common/categoryMenu_RATree/RATreeView+Enums.h"; sourceTree = SOURCE_ROOT; };
  608. 7162A5361C58719D00AB630E /* RATreeView+Enums.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "RATreeView+Enums.m"; path = "common/categoryMenu_RATree/RATreeView+Enums.m"; sourceTree = SOURCE_ROOT; };
  609. 7162A5371C58719D00AB630E /* RATreeView+Private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "RATreeView+Private.h"; path = "common/categoryMenu_RATree/RATreeView+Private.h"; sourceTree = SOURCE_ROOT; };
  610. 7162A5381C58719D00AB630E /* RATreeView+Private.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "RATreeView+Private.m"; path = "common/categoryMenu_RATree/RATreeView+Private.m"; sourceTree = SOURCE_ROOT; };
  611. 7162A5391C58719D00AB630E /* RATreeView+TableViewDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "RATreeView+TableViewDataSource.h"; path = "common/categoryMenu_RATree/RATreeView+TableViewDataSource.h"; sourceTree = SOURCE_ROOT; };
  612. 7162A53A1C58719D00AB630E /* RATreeView+TableViewDataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "RATreeView+TableViewDataSource.m"; path = "common/categoryMenu_RATree/RATreeView+TableViewDataSource.m"; sourceTree = SOURCE_ROOT; };
  613. 7162A53B1C58719D00AB630E /* RATreeView+TableViewDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "RATreeView+TableViewDelegate.h"; path = "common/categoryMenu_RATree/RATreeView+TableViewDelegate.h"; sourceTree = SOURCE_ROOT; };
  614. 7162A53C1C58719D00AB630E /* RATreeView+TableViewDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "RATreeView+TableViewDelegate.m"; path = "common/categoryMenu_RATree/RATreeView+TableViewDelegate.m"; sourceTree = SOURCE_ROOT; };
  615. 7162A53D1C58719D00AB630E /* RATreeView+UIScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "RATreeView+UIScrollView.h"; path = "common/categoryMenu_RATree/RATreeView+UIScrollView.h"; sourceTree = SOURCE_ROOT; };
  616. 7162A53E1C58719D00AB630E /* RATreeView+UIScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "RATreeView+UIScrollView.m"; path = "common/categoryMenu_RATree/RATreeView+UIScrollView.m"; sourceTree = SOURCE_ROOT; };
  617. 7162A53F1C58719D00AB630E /* RAViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RAViewController.h; path = common/categoryMenu_RATree/RAViewController.h; sourceTree = SOURCE_ROOT; };
  618. 7162A5401C58719D00AB630E /* RAViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAViewController.m; path = common/categoryMenu_RATree/RAViewController.m; sourceTree = SOURCE_ROOT; };
  619. 7162A54C1C58722200AB630E /* CreditCardEditorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CreditCardEditorViewController.h; path = common/Functions/creditcard/CreditCardEditorViewController.h; sourceTree = SOURCE_ROOT; };
  620. 7162A54D1C58722200AB630E /* CreditCardEditorViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CreditCardEditorViewController.m; path = common/Functions/creditcard/CreditCardEditorViewController.m; sourceTree = SOURCE_ROOT; };
  621. 7162A54F1C58724700AB630E /* ContactAdvanceSearchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ContactAdvanceSearchViewController.h; path = common/Functions/contact/ContactAdvanceSearchViewController.h; sourceTree = SOURCE_ROOT; };
  622. 7162A5501C58724700AB630E /* ContactAdvanceSearchViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ContactAdvanceSearchViewController.m; path = common/Functions/contact/ContactAdvanceSearchViewController.m; sourceTree = SOURCE_ROOT; };
  623. 7162A5511C58724700AB630E /* ContactListTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ContactListTableViewCell.h; path = common/Functions/contact/ContactListTableViewCell.h; sourceTree = SOURCE_ROOT; };
  624. 7162A5521C58724700AB630E /* ContactListTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ContactListTableViewCell.m; path = common/Functions/contact/ContactListTableViewCell.m; sourceTree = SOURCE_ROOT; };
  625. 7162A5531C58724700AB630E /* ContactListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ContactListViewController.h; path = common/Functions/contact/ContactListViewController.h; sourceTree = SOURCE_ROOT; };
  626. 7162A5541C58724700AB630E /* ContactListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ContactListViewController.m; path = common/Functions/contact/ContactListViewController.m; sourceTree = SOURCE_ROOT; };
  627. 7162A5551C58724700AB630E /* customer_advanced_search.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = customer_advanced_search.json; path = common/Functions/contact/customer_advanced_search.json; sourceTree = SOURCE_ROOT; };
  628. 7162A5561C58724700AB630E /* customer_info_template.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = customer_info_template.json; path = common/Functions/contact/customer_info_template.json; sourceTree = SOURCE_ROOT; };
  629. 7162A5571C58724700AB630E /* CustomerEditViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CustomerEditViewController.h; path = common/Functions/contact/CustomerEditViewController.h; sourceTree = SOURCE_ROOT; };
  630. 7162A5581C58724700AB630E /* CustomerEditViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CustomerEditViewController.m; path = common/Functions/contact/CustomerEditViewController.m; sourceTree = SOURCE_ROOT; };
  631. 7162A5591C58724700AB630E /* CustomerInfoViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CustomerInfoViewController.h; path = common/Functions/contact/CustomerInfoViewController.h; sourceTree = SOURCE_ROOT; };
  632. 7162A55A1C58724700AB630E /* CustomerInfoViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CustomerInfoViewController.m; path = common/Functions/contact/CustomerInfoViewController.m; sourceTree = SOURCE_ROOT; };
  633. 7162A5621C58728D00AB630E /* DetailHeaderCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DetailHeaderCell.h; path = common/Functions/modelDetail/DetailHeaderCell.h; sourceTree = SOURCE_ROOT; };
  634. 7162A5631C58728D00AB630E /* DetailHeaderCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DetailHeaderCell.m; path = common/Functions/modelDetail/DetailHeaderCell.m; sourceTree = SOURCE_ROOT; };
  635. 7162A5641C58728D00AB630E /* DetailImageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DetailImageCell.h; path = common/Functions/modelDetail/DetailImageCell.h; sourceTree = SOURCE_ROOT; };
  636. 7162A5651C58728D00AB630E /* DetailImageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DetailImageCell.m; path = common/Functions/modelDetail/DetailImageCell.m; sourceTree = SOURCE_ROOT; };
  637. 7162A5661C58728D00AB630E /* DetailKVCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DetailKVCell.h; path = common/Functions/modelDetail/DetailKVCell.h; sourceTree = SOURCE_ROOT; };
  638. 7162A5671C58728D00AB630E /* DetailKVCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DetailKVCell.m; path = common/Functions/modelDetail/DetailKVCell.m; sourceTree = SOURCE_ROOT; };
  639. 7162A5681C58728D00AB630E /* DetailTopicCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DetailTopicCell.h; path = common/Functions/modelDetail/DetailTopicCell.h; sourceTree = SOURCE_ROOT; };
  640. 7162A5691C58728D00AB630E /* DetailTopicCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DetailTopicCell.m; path = common/Functions/modelDetail/DetailTopicCell.m; sourceTree = SOURCE_ROOT; };
  641. 7162A56A1C58728D00AB630E /* DetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DetailViewController.h; path = common/Functions/modelDetail/DetailViewController.h; sourceTree = SOURCE_ROOT; };
  642. 7162A56B1C58728D00AB630E /* DetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DetailViewController.m; path = common/Functions/modelDetail/DetailViewController.m; sourceTree = SOURCE_ROOT; };
  643. 7162A56C1C58728D00AB630E /* LineView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LineView.h; path = common/Functions/modelDetail/LineView.h; sourceTree = SOURCE_ROOT; };
  644. 7162A56D1C58728D00AB630E /* LineView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = LineView.m; path = common/Functions/modelDetail/LineView.m; sourceTree = SOURCE_ROOT; };
  645. 7162A5771C5872EF00AB630E /* HomeTableViewCellBanner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HomeTableViewCellBanner.h; path = common/Functions/home/HomeTableViewCellBanner.h; sourceTree = SOURCE_ROOT; };
  646. 7162A5781C5872EF00AB630E /* HomeTableViewCellBanner.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HomeTableViewCellBanner.m; path = common/Functions/home/HomeTableViewCellBanner.m; sourceTree = SOURCE_ROOT; };
  647. 7162A5791C5872EF00AB630E /* HomeTableViewCellButtonBanner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HomeTableViewCellButtonBanner.h; path = common/Functions/home/HomeTableViewCellButtonBanner.h; sourceTree = SOURCE_ROOT; };
  648. 7162A57A1C5872EF00AB630E /* HomeTableViewCellButtonBanner.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HomeTableViewCellButtonBanner.m; path = common/Functions/home/HomeTableViewCellButtonBanner.m; sourceTree = SOURCE_ROOT; };
  649. 7162A57B1C5872EF00AB630E /* HomeTableViewCellSlide.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HomeTableViewCellSlide.h; path = common/Functions/home/HomeTableViewCellSlide.h; sourceTree = SOURCE_ROOT; };
  650. 7162A57C1C5872EF00AB630E /* HomeTableViewCellSlide.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HomeTableViewCellSlide.m; path = common/Functions/home/HomeTableViewCellSlide.m; sourceTree = SOURCE_ROOT; };
  651. 7162A57D1C5872EF00AB630E /* HomeTableViewCellTopic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HomeTableViewCellTopic.h; path = common/Functions/home/HomeTableViewCellTopic.h; sourceTree = SOURCE_ROOT; };
  652. 7162A57E1C5872EF00AB630E /* HomeTableViewCellTopic.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HomeTableViewCellTopic.m; path = common/Functions/home/HomeTableViewCellTopic.m; sourceTree = SOURCE_ROOT; };
  653. 7162A57F1C5872EF00AB630E /* HomeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HomeViewController.h; path = common/Functions/home/HomeViewController.h; sourceTree = SOURCE_ROOT; };
  654. 7162A5801C5872EF00AB630E /* HomeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HomeViewController.m; path = common/Functions/home/HomeViewController.m; sourceTree = SOURCE_ROOT; };
  655. 7162A5861C58733400AB630E /* CreateOrderViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CreateOrderViewController.h; path = common/Functions/order/CreateOrderViewController.h; sourceTree = SOURCE_ROOT; };
  656. 7162A5871C58733400AB630E /* CreateOrderViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CreateOrderViewController.m; path = common/Functions/order/CreateOrderViewController.m; sourceTree = SOURCE_ROOT; };
  657. 7162A5881C58733400AB630E /* OrderDetailHtmlCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailHtmlCell.h; path = common/Functions/order/OrderDetailHtmlCell.h; sourceTree = SOURCE_ROOT; };
  658. 7162A5891C58733400AB630E /* OrderDetailHtmlCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailHtmlCell.m; path = common/Functions/order/OrderDetailHtmlCell.m; sourceTree = SOURCE_ROOT; };
  659. 7162A58A1C58733400AB630E /* OrderDetailInfoCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailInfoCell.h; path = common/Functions/order/OrderDetailInfoCell.h; sourceTree = SOURCE_ROOT; };
  660. 7162A58B1C58733400AB630E /* OrderDetailInfoCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailInfoCell.m; path = common/Functions/order/OrderDetailInfoCell.m; sourceTree = SOURCE_ROOT; };
  661. 7162A58C1C58733400AB630E /* OrderDetailModelCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailModelCell.h; path = common/Functions/order/OrderDetailModelCell.h; sourceTree = SOURCE_ROOT; };
  662. 7162A58D1C58733400AB630E /* OrderDetailModelCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailModelCell.m; path = common/Functions/order/OrderDetailModelCell.m; sourceTree = SOURCE_ROOT; };
  663. 7162A58E1C58733400AB630E /* OrderDetailPriceCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailPriceCell.h; path = common/Functions/order/OrderDetailPriceCell.h; sourceTree = SOURCE_ROOT; };
  664. 7162A58F1C58733400AB630E /* OrderDetailPriceCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailPriceCell.m; path = common/Functions/order/OrderDetailPriceCell.m; sourceTree = SOURCE_ROOT; };
  665. 7162A5901C58733400AB630E /* OrderDetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailViewController.h; path = common/Functions/order/OrderDetailViewController.h; sourceTree = SOURCE_ROOT; };
  666. 7162A5911C58733400AB630E /* OrderDetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailViewController.m; path = common/Functions/order/OrderDetailViewController.m; sourceTree = SOURCE_ROOT; };
  667. 7162A5921C58733400AB630E /* OrderListTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderListTableViewCell.h; path = common/Functions/order/OrderListTableViewCell.h; sourceTree = SOURCE_ROOT; };
  668. 7162A5931C58733400AB630E /* OrderListTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderListTableViewCell.m; path = common/Functions/order/OrderListTableViewCell.m; sourceTree = SOURCE_ROOT; };
  669. 7162A5941C58733400AB630E /* OrderListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderListViewController.h; path = common/Functions/order/OrderListViewController.h; sourceTree = SOURCE_ROOT; };
  670. 7162A5951C58733400AB630E /* OrderListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderListViewController.m; path = common/Functions/order/OrderListViewController.m; sourceTree = SOURCE_ROOT; };
  671. 7162A5961C58733400AB630E /* status_filter_cadedate_open.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = status_filter_cadedate_open.json; path = common/Functions/order/status_filter_cadedate_open.json; sourceTree = SOURCE_ROOT; };
  672. 7162A5971C58733400AB630E /* offline_status_filter_cadedate.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = offline_status_filter_cadedate.json; path = common/Functions/order/offline_status_filter_cadedate.json; sourceTree = SOURCE_ROOT; };
  673. 7162A5A61C58735900AB630E /* PortfolioViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PortfolioViewController.h; path = common/Functions/portfolio/PortfolioViewController.h; sourceTree = SOURCE_ROOT; };
  674. 7162A5A71C58735900AB630E /* PortfolioViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PortfolioViewController.m; path = common/Functions/portfolio/PortfolioViewController.m; sourceTree = SOURCE_ROOT; };
  675. 7162A5A81C58735900AB630E /* TearSheetParamViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TearSheetParamViewController.h; path = common/Functions/portfolio/TearSheetParamViewController.h; sourceTree = SOURCE_ROOT; };
  676. 7162A5A91C58735900AB630E /* TearSheetParamViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TearSheetParamViewController.m; path = common/Functions/portfolio/TearSheetParamViewController.m; sourceTree = SOURCE_ROOT; };
  677. 7162A5AE1C58738600AB630E /* ScannerControllerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ScannerControllerView.h; path = common/Functions/camscan/ScannerControllerView.h; sourceTree = SOURCE_ROOT; };
  678. 7162A5AF1C58738600AB630E /* ScannerControllerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ScannerControllerView.m; path = common/Functions/camscan/ScannerControllerView.m; sourceTree = SOURCE_ROOT; };
  679. 7162A5B01C58738600AB630E /* ScannerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ScannerViewController.h; path = common/Functions/camscan/ScannerViewController.h; sourceTree = SOURCE_ROOT; };
  680. 7162A5B11C58738600AB630E /* ScannerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ScannerViewController.m; path = common/Functions/camscan/ScannerViewController.m; sourceTree = SOURCE_ROOT; };
  681. 7162A5B21C58738600AB630E /* SCShapeView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SCShapeView.h; path = common/Functions/camscan/SCShapeView.h; sourceTree = SOURCE_ROOT; };
  682. 7162A5B31C58738600AB630E /* SCShapeView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SCShapeView.m; path = common/Functions/camscan/SCShapeView.m; sourceTree = SOURCE_ROOT; };
  683. 7162A5B71C5873BB00AB630E /* FilterCellCadedate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FilterCellCadedate.h; path = "common/Functions/search+itemsearch/FilterCellCadedate.h"; sourceTree = SOURCE_ROOT; };
  684. 7162A5B81C5873BB00AB630E /* FilterCellCadedate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FilterCellCadedate.m; path = "common/Functions/search+itemsearch/FilterCellCadedate.m"; sourceTree = SOURCE_ROOT; };
  685. 7162A5B91C5873BB00AB630E /* FilterCellValue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FilterCellValue.h; path = "common/Functions/search+itemsearch/FilterCellValue.h"; sourceTree = SOURCE_ROOT; };
  686. 7162A5BA1C5873BB00AB630E /* FilterCellValue.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FilterCellValue.m; path = "common/Functions/search+itemsearch/FilterCellValue.m"; sourceTree = SOURCE_ROOT; };
  687. 7162A5BB1C5873BB00AB630E /* ItemSearchFilterViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ItemSearchFilterViewController.h; path = "common/Functions/search+itemsearch/ItemSearchFilterViewController.h"; sourceTree = SOURCE_ROOT; };
  688. 7162A5BC1C5873BB00AB630E /* ItemSearchFilterViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ItemSearchFilterViewController.m; path = "common/Functions/search+itemsearch/ItemSearchFilterViewController.m"; sourceTree = SOURCE_ROOT; };
  689. 7162A5BD1C5873BB00AB630E /* ItemSearchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ItemSearchViewController.h; path = "common/Functions/search+itemsearch/ItemSearchViewController.h"; sourceTree = SOURCE_ROOT; };
  690. 7162A5BE1C5873BB00AB630E /* ItemSearchViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ItemSearchViewController.m; path = "common/Functions/search+itemsearch/ItemSearchViewController.m"; sourceTree = SOURCE_ROOT; };
  691. 7162A5BF1C5873BB00AB630E /* SearchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SearchViewController.h; path = "common/Functions/search+itemsearch/SearchViewController.h"; sourceTree = SOURCE_ROOT; };
  692. 7162A5C01C5873BB00AB630E /* SearchViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SearchViewController.m; path = "common/Functions/search+itemsearch/SearchViewController.m"; sourceTree = SOURCE_ROOT; };
  693. 7162A5C61C58761500AB630E /* SignatureView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SignatureView.h; path = common/Functions/signature/SignatureView.h; sourceTree = SOURCE_ROOT; };
  694. 7162A5C71C58761500AB630E /* SignatureView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SignatureView.m; path = common/Functions/signature/SignatureView.m; sourceTree = SOURCE_ROOT; };
  695. 7162A5C81C58761500AB630E /* SignatureViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SignatureViewController.h; path = common/Functions/signature/SignatureViewController.h; sourceTree = SOURCE_ROOT; };
  696. 7162A5C91C58761500AB630E /* SignatureViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SignatureViewController.m; path = common/Functions/signature/SignatureViewController.m; sourceTree = SOURCE_ROOT; };
  697. 7162A5CC1C5876E300AB630E /* AboutViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AboutViewController.h; path = common/Functions/sidemenu/AboutViewController.h; sourceTree = SOURCE_ROOT; };
  698. 7162A5CD1C5876E300AB630E /* AboutViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AboutViewController.m; path = common/Functions/sidemenu/AboutViewController.m; sourceTree = SOURCE_ROOT; };
  699. 7162A5CE1C5876E300AB630E /* CacheViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CacheViewController.h; path = common/Functions/sidemenu/CacheViewController.h; sourceTree = SOURCE_ROOT; };
  700. 7162A5CF1C5876E300AB630E /* CacheViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CacheViewController.m; path = common/Functions/sidemenu/CacheViewController.m; sourceTree = SOURCE_ROOT; };
  701. 7162A5D01C5876E300AB630E /* LoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LoginViewController.h; path = common/Functions/sidemenu/LoginViewController.h; sourceTree = SOURCE_ROOT; };
  702. 7162A5D11C5876E300AB630E /* LoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = LoginViewController.m; path = common/Functions/sidemenu/LoginViewController.m; sourceTree = SOURCE_ROOT; };
  703. 7162A5D21C5876E300AB630E /* PopupNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PopupNavigationController.h; path = common/Functions/sidemenu/PopupNavigationController.h; sourceTree = SOURCE_ROOT; };
  704. 7162A5D31C5876E300AB630E /* PopupNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PopupNavigationController.m; path = common/Functions/sidemenu/PopupNavigationController.m; sourceTree = SOURCE_ROOT; };
  705. 7162A5D41C5876E300AB630E /* RetrievePassViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RetrievePassViewController.h; path = common/Functions/sidemenu/RetrievePassViewController.h; sourceTree = SOURCE_ROOT; };
  706. 7162A5D51C5876E300AB630E /* RetrievePassViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RetrievePassViewController.m; path = common/Functions/sidemenu/RetrievePassViewController.m; sourceTree = SOURCE_ROOT; };
  707. 7162A5D61C5876E300AB630E /* ScannerSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ScannerSettingViewController.h; path = common/Functions/sidemenu/ScannerSettingViewController.h; sourceTree = SOURCE_ROOT; };
  708. 7162A5D71C5876E300AB630E /* ScannerSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ScannerSettingViewController.m; path = common/Functions/sidemenu/ScannerSettingViewController.m; sourceTree = SOURCE_ROOT; };
  709. 7162A5D81C5876E300AB630E /* SettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SettingViewController.h; path = common/Functions/sidemenu/SettingViewController.h; sourceTree = SOURCE_ROOT; };
  710. 7162A5D91C5876E300AB630E /* SettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SettingViewController.m; path = common/Functions/sidemenu/SettingViewController.m; sourceTree = SOURCE_ROOT; };
  711. 7162A5E11C5877CE00AB630E /* WatchListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WatchListViewController.h; path = common/Functions/watchlist/WatchListViewController.h; sourceTree = SOURCE_ROOT; };
  712. 7162A5E21C5877CE00AB630E /* WatchListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WatchListViewController.m; path = common/Functions/watchlist/WatchListViewController.m; sourceTree = SOURCE_ROOT; };
  713. 7162A5E41C58781000AB630E /* iSalesNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = iSalesNavigationController.h; path = common/iSalesNavigationController.h; sourceTree = SOURCE_ROOT; };
  714. 7162A5E51C58781000AB630E /* iSalesNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = iSalesNavigationController.m; path = common/iSalesNavigationController.m; sourceTree = SOURCE_ROOT; };
  715. 7162A5E71C5899F700AB630E /* MainViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MainViewController.h; path = common/Functions/MainViewController.h; sourceTree = SOURCE_ROOT; };
  716. 7162A5E81C5899F700AB630E /* MainViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MainViewController.m; path = common/Functions/MainViewController.m; sourceTree = SOURCE_ROOT; };
  717. 716387D3195408E7006E65E6 /* config.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = config.h; sourceTree = "<group>"; };
  718. 7165662C1EF3ACD900CB897F /* photostack_image.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = photostack_image.html; path = common/photoStack/photostack_image.html; sourceTree = SOURCE_ROOT; };
  719. 7165662D1EF3ACD900CB897F /* photostack_video.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = photostack_video.html; path = common/photoStack/photostack_video.html; sourceTree = SOURCE_ROOT; };
  720. 716961B419594E1000B19FB4 /* libsqlite3.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libsqlite3.dylib; path = usr/lib/libsqlite3.dylib; sourceTree = SDKROOT; };
  721. 716AF8DF1D7AA0E0001188E0 /* SelectUploadOrderViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SelectUploadOrderViewController.h; path = common/Functions/offline/SelectUploadOrderViewController.h; sourceTree = SOURCE_ROOT; };
  722. 716AF8E01D7AA0E0001188E0 /* SelectUploadOrderViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SelectUploadOrderViewController.m; path = common/Functions/offline/SelectUploadOrderViewController.m; sourceTree = SOURCE_ROOT; };
  723. 716AF8E51D7AA398001188E0 /* SelectOrderTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SelectOrderTableViewCell.m; path = common/Functions/offline/SelectOrderTableViewCell.m; sourceTree = SOURCE_ROOT; };
  724. 716AF8E61D7AA398001188E0 /* SelectOrderTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SelectOrderTableViewCell.h; path = common/Functions/offline/SelectOrderTableViewCell.h; sourceTree = SOURCE_ROOT; };
  725. 71777FC51C8AC97300DA2511 /* debug_category_filter.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = debug_category_filter.json; sourceTree = "<group>"; };
  726. 7186C25B1C97A6EE00CB43F4 /* FunctionTestViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FunctionTestViewController.h; path = common/Functions/sidemenu/FunctionTestViewController.h; sourceTree = SOURCE_ROOT; };
  727. 7186C25C1C97A6EE00CB43F4 /* FunctionTestViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FunctionTestViewController.m; path = common/Functions/sidemenu/FunctionTestViewController.m; sourceTree = SOURCE_ROOT; };
  728. 718716221C433D5000F25860 /* libScanApiCore.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libScanApiCore.a; path = ../lib/libScanApiCore.a; sourceTree = "<group>"; };
  729. 718716241C433D8B00F25860 /* ExternalAccessory.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ExternalAccessory.framework; path = System/Library/Frameworks/ExternalAccessory.framework; sourceTree = SDKROOT; };
  730. 718716261C433D9700F25860 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
  731. 718716281C433DA400F25860 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
  732. 7187162A1C43406300F25860 /* libScanApiCore.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libScanApiCore.a; path = "../../../ios_samples/ScanApiSDK-10.2.227/lib/libScanApiCore.a"; sourceTree = "<group>"; };
  733. 718E71081DE7CEA20035D1FF /* so.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = so.json; sourceTree = "<group>"; };
  734. 7195623A1CF57D1800C74A49 /* CategoryHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CategoryHeaderView.h; path = common/Functions/category/CategoryHeaderView.h; sourceTree = SOURCE_ROOT; };
  735. 7195623B1CF57D1800C74A49 /* CategoryHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CategoryHeaderView.m; path = common/Functions/category/CategoryHeaderView.m; sourceTree = SOURCE_ROOT; };
  736. 71BBA2211CEAC16000C91DED /* ZipArchive.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ZipArchive.h; path = common/zip/ZipArchive.h; sourceTree = SOURCE_ROOT; };
  737. 71BBA2221CEAC16000C91DED /* ZipArchive.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = ZipArchive.mm; path = common/zip/ZipArchive.mm; sourceTree = SOURCE_ROOT; };
  738. 71BBA2281CEAC17E00C91DED /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
  739. 71BBA2371CEAEF0700C91DED /* crypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = crypt.h; path = common/zip/minizip/crypt.h; sourceTree = SOURCE_ROOT; };
  740. 71BBA2381CEAEF0700C91DED /* ioapi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ioapi.c; path = common/zip/minizip/ioapi.c; sourceTree = SOURCE_ROOT; };
  741. 71BBA2391CEAEF0700C91DED /* ioapi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ioapi.h; path = common/zip/minizip/ioapi.h; sourceTree = SOURCE_ROOT; };
  742. 71BBA23A1CEAEF0700C91DED /* mztools.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mztools.c; path = common/zip/minizip/mztools.c; sourceTree = SOURCE_ROOT; };
  743. 71BBA23B1CEAEF0700C91DED /* mztools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mztools.h; path = common/zip/minizip/mztools.h; sourceTree = SOURCE_ROOT; };
  744. 71BBA23C1CEAEF0700C91DED /* unzip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = unzip.c; path = common/zip/minizip/unzip.c; sourceTree = SOURCE_ROOT; };
  745. 71BBA23D1CEAEF0700C91DED /* unzip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = unzip.h; path = common/zip/minizip/unzip.h; sourceTree = SOURCE_ROOT; };
  746. 71BBA23E1CEAEF0700C91DED /* zip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = zip.c; path = common/zip/minizip/zip.c; sourceTree = SOURCE_ROOT; };
  747. 71BBA23F1CEAEF0700C91DED /* zip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = zip.h; path = common/zip/minizip/zip.h; sourceTree = SOURCE_ROOT; };
  748. 71BF06F91D2F3CAC00981938 /* OLDataProvider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OLDataProvider.h; path = common/Functions/offline/OLDataProvider.h; sourceTree = SOURCE_ROOT; };
  749. 71BF06FA1D2F3CAC00981938 /* OLDataProvider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OLDataProvider.m; path = common/Functions/offline/OLDataProvider.m; sourceTree = SOURCE_ROOT; };
  750. 71BF06FC1D2F3CBA00981938 /* OfflineSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OfflineSettingViewController.h; path = common/Functions/offline/OfflineSettingViewController.h; sourceTree = SOURCE_ROOT; };
  751. 71BF06FD1D2F3CBA00981938 /* OfflineSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OfflineSettingViewController.m; path = common/Functions/offline/OfflineSettingViewController.m; sourceTree = SOURCE_ROOT; };
  752. 71BF07061D2F3D2800981938 /* SyncControlPanelViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SyncControlPanelViewController.h; path = common/Functions/offline/SyncControlPanelViewController.h; sourceTree = SOURCE_ROOT; };
  753. 71BF07071D2F3D2800981938 /* SyncControlPanelViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SyncControlPanelViewController.m; path = common/Functions/offline/SyncControlPanelViewController.m; sourceTree = SOURCE_ROOT; };
  754. 71C1D84C1F456CAA00CEA1C9 /* HWWeakTimer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HWWeakTimer.h; path = common/AutoScrollImage/HWWeakTimer.h; sourceTree = SOURCE_ROOT; };
  755. 71C1D84D1F456CAA00CEA1C9 /* HWWeakTimer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HWWeakTimer.m; path = common/AutoScrollImage/HWWeakTimer.m; sourceTree = SOURCE_ROOT; };
  756. 71C1D8521F456D2700CEA1C9 /* ModelDescriptionController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ModelDescriptionController.h; path = common/Functions/modelDetail/ModelDescriptionController.h; sourceTree = SOURCE_ROOT; };
  757. 71C1D8531F456D2700CEA1C9 /* ModelDescriptionController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ModelDescriptionController.m; path = common/Functions/modelDetail/ModelDescriptionController.m; sourceTree = SOURCE_ROOT; };
  758. 71CB63E42109B8CB00DC90F9 /* MainHeaderViewColorPanel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MainHeaderViewColorPanel.m; path = common/Functions/MainHeaderViewColorPanel.m; sourceTree = SOURCE_ROOT; };
  759. 71CB63E52109B8CB00DC90F9 /* MainHeaderViewColorPanel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MainHeaderViewColorPanel.h; path = common/Functions/MainHeaderViewColorPanel.h; sourceTree = SOURCE_ROOT; };
  760. 71CB70731F99DF01009FDCB7 /* FileCache.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = FileCache.m; path = ../../common/FileCache.m; sourceTree = "<group>"; };
  761. 71CB70741F99DF02009FDCB7 /* FileCache.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = FileCache.h; path = ../../common/FileCache.h; sourceTree = "<group>"; };
  762. 71CB70761F99E337009FDCB7 /* RAConvertor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = RAConvertor.h; path = ../../common/RAConvertor.h; sourceTree = "<group>"; };
  763. 71CB70771F99E338009FDCB7 /* RAConvertor.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = RAConvertor.m; path = ../../common/RAConvertor.m; sourceTree = "<group>"; };
  764. 71D01ADC1E08CB1C006620CE /* signature.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = signature.storyboard; path = common/Functions/signature/signature.storyboard; sourceTree = SOURCE_ROOT; };
  765. 71D01B141E0A2055006620CE /* ImageUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ImageUtils.h; path = common/ImageUtils.h; sourceTree = SOURCE_ROOT; };
  766. 71D01B151E0A2055006620CE /* ImageUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ImageUtils.m; path = common/ImageUtils.m; sourceTree = SOURCE_ROOT; };
  767. 71D01B161E0A2055006620CE /* PDFUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PDFUtils.h; path = common/PDFUtils.h; sourceTree = SOURCE_ROOT; };
  768. 71D01B171E0A2055006620CE /* PDFUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PDFUtils.m; path = common/PDFUtils.m; sourceTree = SOURCE_ROOT; };
  769. 71D01B181E0A2055006620CE /* TextUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TextUtils.h; path = common/TextUtils.h; sourceTree = SOURCE_ROOT; };
  770. 71D01B191E0A2055006620CE /* TextUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TextUtils.m; path = common/TextUtils.m; sourceTree = SOURCE_ROOT; };
  771. 71D0344D1C9BF3C400E0F7AD /* PortfolioEditQTYViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PortfolioEditQTYViewController.h; path = common/Functions/portfolio/PortfolioEditQTYViewController.h; sourceTree = SOURCE_ROOT; };
  772. 71D0344E1C9BF3C400E0F7AD /* PortfolioEditQTYViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PortfolioEditQTYViewController.m; path = common/Functions/portfolio/PortfolioEditQTYViewController.m; sourceTree = SOURCE_ROOT; };
  773. 71D30A201CFBEDC6006F9477 /* default_appearance.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = default_appearance.json; sourceTree = "<group>"; };
  774. 71D30A2B1CFC0EF8006F9477 /* DefaultImageButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DefaultImageButton.h; path = common/Functions/DefaultImageButton.h; sourceTree = SOURCE_ROOT; };
  775. 71D30A2C1CFC0EF8006F9477 /* DefaultImageButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DefaultImageButton.m; path = common/Functions/DefaultImageButton.m; sourceTree = SOURCE_ROOT; };
  776. 71D46D101CE1D9EF00A081AC /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/OLM.storyboard; sourceTree = "<group>"; };
  777. 71D5016B1DC32C3300971FBB /* portfolio_2x3.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = portfolio_2x3.json; sourceTree = "<group>"; };
  778. 71DEE873192DE003003F645F /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
  779. 71DEE875192DE00E003F645F /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; };
  780. 71DF74291C57560600F2789C /* Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Reachability.h; path = common/Reachability.h; sourceTree = SOURCE_ROOT; };
  781. 71DF742A1C57560600F2789C /* Reachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Reachability.m; path = common/Reachability.m; sourceTree = SOURCE_ROOT; };
  782. 71DF742D1C5756C600F2789C /* const.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = const.h; path = common/const.h; sourceTree = SOURCE_ROOT; };
  783. 71DF74321C5757DA00F2789C /* ActiveViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ActiveViewController.h; path = common/ActiveViewController.h; sourceTree = SOURCE_ROOT; };
  784. 71DF74331C5757DA00F2789C /* ActiveViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ActiveViewController.m; path = common/ActiveViewController.m; sourceTree = SOURCE_ROOT; };
  785. 71DF746B1C57608F00F2789C /* ImageScrollerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ImageScrollerView.h; path = common/customUI/ImageScrollerView.h; sourceTree = SOURCE_ROOT; };
  786. 71DF746C1C57608F00F2789C /* ImageScrollerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ImageScrollerView.m; path = common/customUI/ImageScrollerView.m; sourceTree = SOURCE_ROOT; };
  787. 71DF746D1C57608F00F2789C /* ImageScrollerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ImageScrollerViewController.h; path = common/customUI/ImageScrollerViewController.h; sourceTree = SOURCE_ROOT; };
  788. 71DF746E1C57608F00F2789C /* ImageScrollerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ImageScrollerViewController.m; path = common/customUI/ImageScrollerViewController.m; sourceTree = SOURCE_ROOT; };
  789. 71DF746F1C57608F00F2789C /* ImageUploadViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ImageUploadViewController.h; path = common/customUI/ImageUploadViewController.h; sourceTree = SOURCE_ROOT; };
  790. 71DF74701C57608F00F2789C /* ImageUploadViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ImageUploadViewController.m; path = common/customUI/ImageUploadViewController.m; sourceTree = SOURCE_ROOT; };
  791. 71DF74711C57608F00F2789C /* ImageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ImageViewController.h; path = common/customUI/ImageViewController.h; sourceTree = SOURCE_ROOT; };
  792. 71DF74721C57608F00F2789C /* ImageViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ImageViewController.m; path = common/customUI/ImageViewController.m; sourceTree = SOURCE_ROOT; };
  793. 71DF74731C57608F00F2789C /* NIDropDown.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NIDropDown.h; path = common/customUI/NIDropDown.h; sourceTree = SOURCE_ROOT; };
  794. 71DF74741C57608F00F2789C /* NIDropDown.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NIDropDown.m; path = common/customUI/NIDropDown.m; sourceTree = SOURCE_ROOT; };
  795. 71DF74771C57608F00F2789C /* RadioButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RadioButton.h; path = common/customUI/RadioButton.h; sourceTree = SOURCE_ROOT; };
  796. 71DF74781C57608F00F2789C /* RadioButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RadioButton.m; path = common/customUI/RadioButton.m; sourceTree = SOURCE_ROOT; };
  797. 71DF747B1C57608F00F2789C /* SimpleGrid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SimpleGrid.h; path = common/customUI/SimpleGrid.h; sourceTree = SOURCE_ROOT; };
  798. 71DF747C1C57608F00F2789C /* SimpleGrid.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SimpleGrid.m; path = common/customUI/SimpleGrid.m; sourceTree = SOURCE_ROOT; };
  799. 71DF747F1C57608F00F2789C /* TouchLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TouchLabel.h; path = common/customUI/TouchLabel.h; sourceTree = SOURCE_ROOT; };
  800. 71DF74801C57608F00F2789C /* TouchLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TouchLabel.m; path = common/customUI/TouchLabel.m; sourceTree = SOURCE_ROOT; };
  801. 71DF74811C57608F00F2789C /* UILabel+FontAppearance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UILabel+FontAppearance.h"; path = "common/customUI/UILabel+FontAppearance.h"; sourceTree = SOURCE_ROOT; };
  802. 71DF74821C57608F00F2789C /* UILabel+FontAppearance.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UILabel+FontAppearance.m"; path = "common/customUI/UILabel+FontAppearance.m"; sourceTree = SOURCE_ROOT; };
  803. 71DF748F1C57614C00F2789C /* PhotoBorder.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = PhotoBorder.png; path = common/photoStack/PhotoBorder.png; sourceTree = SOURCE_ROOT; };
  804. 71DF74901C57614C00F2789C /* PhotoBorder@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "PhotoBorder@2x.png"; path = "common/photoStack/PhotoBorder@2x.png"; sourceTree = SOURCE_ROOT; };
  805. 71DF74911C57614C00F2789C /* PhotoStackView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PhotoStackView.h; path = common/photoStack/PhotoStackView.h; sourceTree = SOURCE_ROOT; };
  806. 71DF74921C57614C00F2789C /* PhotoStackView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PhotoStackView.m; path = common/photoStack/PhotoStackView.m; sourceTree = SOURCE_ROOT; };
  807. 71DF74931C57614C00F2789C /* PhotoStackViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PhotoStackViewController.h; path = common/photoStack/PhotoStackViewController.h; sourceTree = SOURCE_ROOT; };
  808. 71DF74941C57614C00F2789C /* PhotoStackViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PhotoStackViewController.m; path = common/photoStack/PhotoStackViewController.m; sourceTree = SOURCE_ROOT; };
  809. 71E5A00F1DC99370005BF655 /* config.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = config.plist; sourceTree = "<group>"; };
  810. 71E9F6BA1F8B52DC0052C78E /* NetworkUtils.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = NetworkUtils.m; path = ../../common/NetworkUtils.m; sourceTree = "<group>"; };
  811. 71E9F6BB1F8B52DC0052C78E /* NetworkUtils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = NetworkUtils.h; path = ../../common/NetworkUtils.h; sourceTree = "<group>"; };
  812. 71E9F6C01F8B57E30052C78E /* RANetworkTaskDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = RANetworkTaskDelegate.m; path = ../../common/upload/RANetworkTaskDelegate.m; sourceTree = "<group>"; };
  813. 71E9F6C11F8B57E40052C78E /* RANetworkTaskDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = RANetworkTaskDelegate.h; path = ../../common/upload/RANetworkTaskDelegate.h; sourceTree = "<group>"; };
  814. 71FFBBE51C60894900D91DC2 /* iSalesDB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = iSalesDB.h; path = common/data_provider/iSalesDB.h; sourceTree = SOURCE_ROOT; };
  815. 71FFBBE61C60894900D91DC2 /* iSalesDB.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = iSalesDB.m; path = common/data_provider/iSalesDB.m; sourceTree = SOURCE_ROOT; };
  816. 71FFBBE71C60894900D91DC2 /* RANetwork.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RANetwork.h; path = common/data_provider/RANetwork.h; sourceTree = SOURCE_ROOT; };
  817. 71FFBBE81C60894900D91DC2 /* RANetwork.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RANetwork.m; path = common/data_provider/RANetwork.m; sourceTree = SOURCE_ROOT; };
  818. 78DD35042ED5A69C001E4BCB /* libScanApiCore.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libScanApiCore.a; path = "ScanApiSDK-10.2.227-2/lib/libScanApiCore.a"; sourceTree = "<group>"; };
  819. 78DD35072ED69EC3001E4BCB /* ScanApiStub.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ScanApiStub.m; sourceTree = "<group>"; };
  820. /* End PBXFileReference section */
  821. /* Begin PBXFrameworksBuildPhase section */
  822. 713F76A31929F4A7006A7305 /* Frameworks */ = {
  823. isa = PBXFrameworksBuildPhase;
  824. buildActionMask = 2147483647;
  825. files = (
  826. 42BEF35F1E89FEE300632AB6 /* CoreData.framework in Frameworks */,
  827. 42BEF35D1E89FECD00632AB6 /* SystemConfiguration.framework in Frameworks */,
  828. 71BBA2291CEAC17E00C91DED /* libz.tbd in Frameworks */,
  829. 718716291C433DA400F25860 /* AVFoundation.framework in Frameworks */,
  830. 718716271C433D9700F25860 /* AudioToolbox.framework in Frameworks */,
  831. 718716251C433D8B00F25860 /* ExternalAccessory.framework in Frameworks */,
  832. 716961B519594E1000B19FB4 /* libsqlite3.dylib in Frameworks */,
  833. 71DEE876192DE00E003F645F /* Accelerate.framework in Frameworks */,
  834. 71DEE874192DE003003F645F /* QuartzCore.framework in Frameworks */,
  835. 713F76AC1929F4A7006A7305 /* CoreGraphics.framework in Frameworks */,
  836. 713F76AE1929F4A7006A7305 /* UIKit.framework in Frameworks */,
  837. 713F76AA1929F4A7006A7305 /* Foundation.framework in Frameworks */,
  838. );
  839. runOnlyForDeploymentPostprocessing = 0;
  840. };
  841. /* End PBXFrameworksBuildPhase section */
  842. /* Begin PBXGroup section */
  843. 3C70C0782A2DC244008C2400 /* MessageBox */ = {
  844. isa = PBXGroup;
  845. children = (
  846. 3C70C0792A2DC244008C2400 /* MessageBox.h */,
  847. 3C70C07A2A2DC244008C2400 /* PopWaitAlert.h */,
  848. 3C70C07B2A2DC244008C2400 /* RAPopviewContainer.h */,
  849. 3C70C07C2A2DC244008C2400 /* PopWaitAlert.m */,
  850. 3C70C07D2A2DC244008C2400 /* MessageBox.m */,
  851. 3C70C07E2A2DC244008C2400 /* RAPopviewContainer.m */,
  852. );
  853. name = MessageBox;
  854. path = ../../common/MessageBox;
  855. sourceTree = "<group>";
  856. };
  857. 3CA2109D2761DA66000FC2F3 /* PhotoList */ = {
  858. isa = PBXGroup;
  859. children = (
  860. 3CA2109E2761DA66000FC2F3 /* Storyboard */,
  861. 3CA210A02761DA66000FC2F3 /* Controller */,
  862. 3CA210A32761DA66000FC2F3 /* View */,
  863. );
  864. name = PhotoList;
  865. path = ../../common/customUI/PhotoList;
  866. sourceTree = "<group>";
  867. };
  868. 3CA2109E2761DA66000FC2F3 /* Storyboard */ = {
  869. isa = PBXGroup;
  870. children = (
  871. 3CA2109F2761DA66000FC2F3 /* PhotoList.storyboard */,
  872. );
  873. path = Storyboard;
  874. sourceTree = "<group>";
  875. };
  876. 3CA210A02761DA66000FC2F3 /* Controller */ = {
  877. isa = PBXGroup;
  878. children = (
  879. 3CA210A12761DA66000FC2F3 /* ContentPreviewController.m */,
  880. 3CA210A22761DA66000FC2F3 /* ContentPreviewController.h */,
  881. );
  882. path = Controller;
  883. sourceTree = "<group>";
  884. };
  885. 3CA210A32761DA66000FC2F3 /* View */ = {
  886. isa = PBXGroup;
  887. children = (
  888. 3CA210A42761DA66000FC2F3 /* VideoPreviewCell.m */,
  889. 3CA210A52761DA66000FC2F3 /* PhotoPreviewCell.h */,
  890. 3CA210A62761DA66000FC2F3 /* PhotoPreviewCell.m */,
  891. 3CA210A72761DA66000FC2F3 /* VideoPreviewCell.h */,
  892. );
  893. path = View;
  894. sourceTree = "<group>";
  895. };
  896. 3CA210C12761DBC2000FC2F3 /* EnumSelectAndSort */ = {
  897. isa = PBXGroup;
  898. children = (
  899. 3CA210C22761DBC2000FC2F3 /* EnumModel.m */,
  900. 3CA210C32761DBC2000FC2F3 /* EnumSelectAndSort.storyboard */,
  901. 3CA210C42761DBC2000FC2F3 /* EnumSelectAndSortCell.h */,
  902. 3CA210C52761DBC2000FC2F3 /* EnumSelectAndSortViewController.h */,
  903. 3CA210C62761DBC2000FC2F3 /* EnumModel.h */,
  904. 3CA210C72761DBC2000FC2F3 /* EnumSelectAndSortViewController.m */,
  905. 3CA210C82761DBC2000FC2F3 /* EnumSelectAndSortCell.m */,
  906. );
  907. name = EnumSelectAndSort;
  908. path = ../../common/customUI/commoneditor/EnumSelectAndSort;
  909. sourceTree = "<group>";
  910. };
  911. 3CA2110B2761EA7E000FC2F3 /* HUD */ = {
  912. isa = PBXGroup;
  913. children = (
  914. );
  915. name = HUD;
  916. path = ../../common/HUD;
  917. sourceTree = "<group>";
  918. };
  919. 4254CCDB1FB1AB6600C8B4B6 /* Order Editor */ = {
  920. isa = PBXGroup;
  921. children = (
  922. 4254CCDC1FB1AC2B00C8B4B6 /* RAOrderEditorViewController.h */,
  923. 4254CCDD1FB1AC2B00C8B4B6 /* RAOrderEditorViewController.m */,
  924. );
  925. name = "Order Editor";
  926. sourceTree = "<group>";
  927. };
  928. 4289800E1E24924D005F1BD8 /* sort */ = {
  929. isa = PBXGroup;
  930. children = (
  931. 4289800F1E24924D005F1BD8 /* SortButton.h */,
  932. 428980101E24924D005F1BD8 /* SortButton.m */,
  933. 428980111E24924D005F1BD8 /* SortItemCell.h */,
  934. 428980121E24924D005F1BD8 /* SortItemCell.m */,
  935. 428980131E24924D005F1BD8 /* SortItemViewController.h */,
  936. 428980141E24924D005F1BD8 /* SortItemViewController.m */,
  937. );
  938. name = sort;
  939. path = common/sort;
  940. sourceTree = SOURCE_ROOT;
  941. };
  942. 428980221E2492D2005F1BD8 /* Price Setting */ = {
  943. isa = PBXGroup;
  944. children = (
  945. 428980231E2492D2005F1BD8 /* CategoryPriceCell.h */,
  946. 428980241E2492D2005F1BD8 /* CategoryPriceCell.m */,
  947. 428980251E2492D2005F1BD8 /* CategoryPriceViewController.h */,
  948. 428980261E2492D2005F1BD8 /* CategoryPriceViewController.m */,
  949. 428980271E2492D2005F1BD8 /* PriceSettingViewController.h */,
  950. 428980281E2492D2005F1BD8 /* PriceSettingViewController.m */,
  951. 428980291E2492D2005F1BD8 /* SetCategoryPriceController.h */,
  952. 4289802A1E2492D2005F1BD8 /* SetCategoryPriceController.m */,
  953. );
  954. name = "Price Setting";
  955. path = "common/Price Setting";
  956. sourceTree = SOURCE_ROOT;
  957. };
  958. 4289803C1E249339005F1BD8 /* JKLock */ = {
  959. isa = PBXGroup;
  960. children = (
  961. 4289803D1E249339005F1BD8 /* JKDotView.h */,
  962. 4289803E1E249339005F1BD8 /* JKDotView.m */,
  963. 4289803F1E249339005F1BD8 /* JKLockButton.h */,
  964. 428980401E249339005F1BD8 /* JKLockButton.m */,
  965. 428980411E249339005F1BD8 /* JKLockController.h */,
  966. 428980421E249339005F1BD8 /* JKLockController.m */,
  967. 428980431E249339005F1BD8 /* JKMessageBoxController.h */,
  968. 428980441E249339005F1BD8 /* JKMessageBoxController.m */,
  969. );
  970. name = JKLock;
  971. path = common/JKLock;
  972. sourceTree = SOURCE_ROOT;
  973. };
  974. 4289805A1E249375005F1BD8 /* UIColor+HEX */ = {
  975. isa = PBXGroup;
  976. children = (
  977. 4289805B1E249375005F1BD8 /* UIColor+JK_HEX.h */,
  978. 4289805C1E249375005F1BD8 /* UIColor+JK_HEX.m */,
  979. );
  980. name = "UIColor+HEX";
  981. path = "common/UIColor+HEX";
  982. sourceTree = SOURCE_ROOT;
  983. };
  984. 4289809B1E24B526005F1BD8 /* JKTimer */ = {
  985. isa = PBXGroup;
  986. children = (
  987. 4289809C1E24B526005F1BD8 /* JKTimerManager.h */,
  988. 4289809D1E24B526005F1BD8 /* JKTimerManager.m */,
  989. );
  990. name = JKTimer;
  991. path = common/JKTimer;
  992. sourceTree = SOURCE_ROOT;
  993. };
  994. 4295AE181FE74D26007BE365 /* AutoComplete */ = {
  995. isa = PBXGroup;
  996. children = (
  997. 4295AE191FE74D46007BE365 /* CommonEditorAutoCompleteView.h */,
  998. 4295AE1A1FE74D46007BE365 /* CommonEditorAutoCompleteView.m */,
  999. 4295AE1B1FE74D46007BE365 /* CommonEditorAutoCompleteView.xib */,
  1000. );
  1001. name = AutoComplete;
  1002. sourceTree = "<group>";
  1003. };
  1004. 42BEF35B1E89FECC00632AB6 /* Frameworks */ = {
  1005. isa = PBXGroup;
  1006. children = (
  1007. 78DD35042ED5A69C001E4BCB /* libScanApiCore.a */,
  1008. 42BEF35E1E89FEE300632AB6 /* CoreData.framework */,
  1009. 42BEF35C1E89FECD00632AB6 /* SystemConfiguration.framework */,
  1010. );
  1011. name = Frameworks;
  1012. sourceTree = "<group>";
  1013. };
  1014. 42FD1A001FBD19B800C5D9A8 /* Order Preview */ = {
  1015. isa = PBXGroup;
  1016. children = (
  1017. 42FD1A011FBD1A3000C5D9A8 /* RAOrderPreviewController.h */,
  1018. 42FD1A021FBD1A3000C5D9A8 /* RAOrderPreviewController.m */,
  1019. 424A02CF1FFB3A0B0088DC56 /* RABackOrderSubmitAlertController.h */,
  1020. 424A02D01FFB3A0B0088DC56 /* RABackOrderSubmitAlertController.m */,
  1021. );
  1022. name = "Order Preview";
  1023. sourceTree = "<group>";
  1024. };
  1025. 710212821B8D59DE00E1788B /* watchlist */ = {
  1026. isa = PBXGroup;
  1027. children = (
  1028. 7162A5E11C5877CE00AB630E /* WatchListViewController.h */,
  1029. 7162A5E21C5877CE00AB630E /* WatchListViewController.m */,
  1030. );
  1031. name = watchlist;
  1032. sourceTree = "<group>";
  1033. };
  1034. 711A551F1C153AA800EF5FDA /* portfolio */ = {
  1035. isa = PBXGroup;
  1036. children = (
  1037. 3C2F99B9237BE1880000808F /* PortfolioListTableViewCell.h */,
  1038. 3C2F99BA237BE1880000808F /* PortfolioListTableViewCell.m */,
  1039. 3C7E5A90237BDB26006D0105 /* PortfolioListViewController.h */,
  1040. 3C7E5A8F237BDB26006D0105 /* PortfolioListViewController.m */,
  1041. 7162A5A61C58735900AB630E /* PortfolioViewController.h */,
  1042. 7162A5A71C58735900AB630E /* PortfolioViewController.m */,
  1043. 7162A5A81C58735900AB630E /* TearSheetParamViewController.h */,
  1044. 7162A5A91C58735900AB630E /* TearSheetParamViewController.m */,
  1045. 71D0344D1C9BF3C400E0F7AD /* PortfolioEditQTYViewController.h */,
  1046. 71D0344E1C9BF3C400E0F7AD /* PortfolioEditQTYViewController.m */,
  1047. );
  1048. name = portfolio;
  1049. sourceTree = "<group>";
  1050. };
  1051. 712AFEC41DBA044C00254965 /* pdfCreator */ = {
  1052. isa = PBXGroup;
  1053. children = (
  1054. 712AFEC51DBA050200254965 /* BasicDrawable.h */,
  1055. 712AFEC61DBA050200254965 /* BasicDrawable.m */,
  1056. 715671311E10A0EF006324A0 /* RectDrawable.h */,
  1057. 715671321E10A0EF006324A0 /* RectDrawable.m */,
  1058. 712AFEC71DBA050200254965 /* GridDrawable.h */,
  1059. 712AFEC81DBA050200254965 /* GridDrawable.m */,
  1060. 712AFEC91DBA050200254965 /* GroupDrawable.h */,
  1061. 712AFECA1DBA050200254965 /* GroupDrawable.m */,
  1062. 712AFECB1DBA050200254965 /* ImageDrawable.h */,
  1063. 712AFECC1DBA050200254965 /* ImageDrawable.m */,
  1064. 712AFECD1DBA050200254965 /* LineDrawable.h */,
  1065. 712AFECE1DBA050200254965 /* LineDrawable.m */,
  1066. 712AFECF1DBA050200254965 /* PDFDrawable.h */,
  1067. 712AFED01DBA050200254965 /* PDFDrawable.m */,
  1068. 712AFED11DBA050200254965 /* RAPDFPage.h */,
  1069. 712AFED21DBA050200254965 /* RAPDFPage.m */,
  1070. 712AFED31DBA050200254965 /* TableDrawable.h */,
  1071. 712AFED41DBA050200254965 /* TableDrawable.m */,
  1072. 712AFED51DBA050200254965 /* TextDrawable.h */,
  1073. 712AFED61DBA050200254965 /* TextDrawable.m */,
  1074. 712AFEE01DBA077F00254965 /* pdfCreator.h */,
  1075. 712AFEE11DBA077F00254965 /* pdfCreator.m */,
  1076. );
  1077. name = pdfCreator;
  1078. sourceTree = "<group>";
  1079. };
  1080. 712AFEE31DBDAEA000254965 /* PDFResource */ = {
  1081. isa = PBXGroup;
  1082. children = (
  1083. 7142E8471DBF01A10077EFA2 /* font */,
  1084. 712AFEE41DBDAF0300254965 /* pdfcreator.xcassets */,
  1085. 7142E8481DBF01AC0077EFA2 /* template */,
  1086. );
  1087. name = PDFResource;
  1088. sourceTree = "<group>";
  1089. };
  1090. 713393FE19936C980075BBAC /* Signature */ = {
  1091. isa = PBXGroup;
  1092. children = (
  1093. 71D01ADC1E08CB1C006620CE /* signature.storyboard */,
  1094. 7162A5C61C58761500AB630E /* SignatureView.h */,
  1095. 7162A5C71C58761500AB630E /* SignatureView.m */,
  1096. 7162A5C81C58761500AB630E /* SignatureViewController.h */,
  1097. 7162A5C91C58761500AB630E /* SignatureViewController.m */,
  1098. );
  1099. name = Signature;
  1100. sourceTree = "<group>";
  1101. };
  1102. 713F769D1929F4A7006A7305 = {
  1103. isa = PBXGroup;
  1104. children = (
  1105. 713F76AF1929F4A7006A7305 /* iSales-NPD */,
  1106. 42BEF35B1E89FECC00632AB6 /* Frameworks */,
  1107. );
  1108. sourceTree = "<group>";
  1109. };
  1110. 713F76A71929F4A7006A7305 /* Products */ = {
  1111. isa = PBXGroup;
  1112. children = (
  1113. 713F76A61929F4A7006A7305 /* NPD Mobile.app */,
  1114. );
  1115. name = Products;
  1116. path = ..;
  1117. sourceTree = "<group>";
  1118. };
  1119. 713F76A81929F4A7006A7305 /* Frameworks */ = {
  1120. isa = PBXGroup;
  1121. children = (
  1122. 71BBA2281CEAC17E00C91DED /* libz.tbd */,
  1123. 7187162A1C43406300F25860 /* libScanApiCore.a */,
  1124. 718716281C433DA400F25860 /* AVFoundation.framework */,
  1125. 718716261C433D9700F25860 /* AudioToolbox.framework */,
  1126. 718716241C433D8B00F25860 /* ExternalAccessory.framework */,
  1127. 718716221C433D5000F25860 /* libScanApiCore.a */,
  1128. 716961B419594E1000B19FB4 /* libsqlite3.dylib */,
  1129. 71DEE875192DE00E003F645F /* Accelerate.framework */,
  1130. 71DEE873192DE003003F645F /* QuartzCore.framework */,
  1131. 713F76A91929F4A7006A7305 /* Foundation.framework */,
  1132. 713F76AB1929F4A7006A7305 /* CoreGraphics.framework */,
  1133. 713F76AD1929F4A7006A7305 /* UIKit.framework */,
  1134. 713F76C81929F4A7006A7305 /* XCTest.framework */,
  1135. );
  1136. name = Frameworks;
  1137. path = ..;
  1138. sourceTree = "<group>";
  1139. };
  1140. 713F76AF1929F4A7006A7305 /* iSales-NPD */ = {
  1141. isa = PBXGroup;
  1142. children = (
  1143. 3CBC872F2A4EBF1100978758 /* ScanRefreshStock.h */,
  1144. 71DF742C1C57567800F2789C /* NPD */,
  1145. 712AFEE31DBDAEA000254965 /* PDFResource */,
  1146. 716387C71953CDB4006E65E6 /* utils */,
  1147. 71DF74311C5757C800F2789C /* CommonUI */,
  1148. 718716141C433B4300F25860 /* ScanAPI */,
  1149. 7190F1091BBBCAF100B2F243 /* PDF+Web */,
  1150. 714C6ADA1B83016A000123E3 /* address */,
  1151. 71F731FC192F395000F2CF76 /* AutoScrollImage */,
  1152. 7143E0C919414E4B00B2EB1A /* cartView */,
  1153. 7191A67319650A11007DC977 /* cagegory */,
  1154. 716BA58D195AB4170007093A /* categoryMenu */,
  1155. 714C6ADE1B83069A000123E3 /* creditcard */,
  1156. 7185C3CE1B919C7200B4823C /* contact */,
  1157. 719E45D71B63883100FD098B /* modelDetail */,
  1158. 71DBACEE1B5E401A00D8BD7E /* HomeView */,
  1159. 714C6AE21B83107A000123E3 /* order */,
  1160. 4254CCDB1FB1AB6600C8B4B6 /* Order Editor */,
  1161. 42FD1A001FBD19B800C5D9A8 /* Order Preview */,
  1162. 717AE10B1D1A5E99007DC5CA /* offline */,
  1163. 711A551F1C153AA800EF5FDA /* portfolio */,
  1164. 714A52061995E90300627D23 /* cam_scan */,
  1165. 71A2478A1B955448000E1F84 /* search */,
  1166. 713393FE19936C980075BBAC /* Signature */,
  1167. 716387CC1953D693006E65E6 /* sideMenu */,
  1168. 710212821B8D59DE00E1788B /* watchlist */,
  1169. 428980221E2492D2005F1BD8 /* Price Setting */,
  1170. 3C97F3022EBB4E6D00BD9260 /* SceneDelegateBase.h */,
  1171. 3C97F3032EBB4E6D00BD9260 /* SceneDelegateBase.m */,
  1172. 3C97F3052EBB501600BD9260 /* SceneDelegate.h */,
  1173. 3C97F3062EBB501600BD9260 /* SceneDelegate.m */,
  1174. 713F76B81929F4A7006A7305 /* AppDelegate.h */,
  1175. 713F76B91929F4A7006A7305 /* AppDelegate.m */,
  1176. 3CA210B02761DAAB000FC2F3 /* RASingleton.h */,
  1177. 3CA210AF2761DAAB000FC2F3 /* RASingleton.m */,
  1178. 426438B521A2998300411DF7 /* AppDelegateBase.h */,
  1179. 426438B621A2998300411DF7 /* AppDelegateBase.m */,
  1180. 428980021E2490C1005F1BD8 /* NotificationNameCenter.h */,
  1181. 428980031E2490C1005F1BD8 /* NotificationNameCenter.m */,
  1182. 7162A5E71C5899F700AB630E /* MainViewController.h */,
  1183. 7162A5E81C5899F700AB630E /* MainViewController.m */,
  1184. 71CB63E52109B8CB00DC90F9 /* MainHeaderViewColorPanel.h */,
  1185. 71CB63E42109B8CB00DC90F9 /* MainHeaderViewColorPanel.m */,
  1186. 3C6831BD239788C100AD5BD7 /* ERP_Mobile_Cart.storyboard */,
  1187. 3C6831BB239788C100AD5BD7 /* ERP_Mobile_Contact.storyboard */,
  1188. 3C6831B8239788C100AD5BD7 /* ERP_Mobile_Discard.storyboard */,
  1189. 3C6831B7239788C000AD5BD7 /* ERP_Mobile_Model.storyboard */,
  1190. 3C6831B9239788C100AD5BD7 /* ERP_Mobile_Order.storyboard */,
  1191. 3C6831BA239788C100AD5BD7 /* ERP_Mobile_Portfolio.storyboard */,
  1192. 3C6831BC239788C100AD5BD7 /* ERP_Mobile_Search.storyboard */,
  1193. 423B49EE1DAC8071004181C2 /* CUL.storyboard */,
  1194. 3C2F99BE237BE7190000808F /* NPD_Mobile.storyboard */,
  1195. 71D46D0F1CE1D9EF00A081AC /* OLM.storyboard */,
  1196. 713F76BB1929F4A7006A7305 /* Main.storyboard */,
  1197. 7162A5E41C58781000AB630E /* iSalesNavigationController.h */,
  1198. 7162A5E51C58781000AB630E /* iSalesNavigationController.m */,
  1199. 713F76C11929F4A7006A7305 /* Images.xcassets */,
  1200. 713F76B01929F4A7006A7305 /* Supporting Files */,
  1201. 713F76B11929F4A7006A7305 /* iSales-NPD-Info.plist */,
  1202. 42BEF3A51E8A57F600632AB6 /* GoogleService-Info.plist */,
  1203. 713F76B21929F4A7006A7305 /* InfoPlist.strings */,
  1204. 713F76B51929F4A7006A7305 /* main.m */,
  1205. 713F76B71929F4A7006A7305 /* iSales-NPD-Prefix.pch */,
  1206. 713F76A81929F4A7006A7305 /* Frameworks */,
  1207. 713F76A71929F4A7006A7305 /* Products */,
  1208. );
  1209. path = "iSales-NPD";
  1210. sourceTree = "<group>";
  1211. };
  1212. 713F76B01929F4A7006A7305 /* Supporting Files */ = {
  1213. isa = PBXGroup;
  1214. children = (
  1215. );
  1216. name = "Supporting Files";
  1217. sourceTree = "<group>";
  1218. };
  1219. 7142E8471DBF01A10077EFA2 /* font */ = {
  1220. isa = PBXGroup;
  1221. children = (
  1222. 7142E8781DBF57510077EFA2 /* KALINGA.TTF */,
  1223. 7142E8791DBF57510077EFA2 /* KALINGAB.TTF */,
  1224. 7142E87C1DC300010077EFA2 /* DejaVuSans-Bold.ttf */,
  1225. 7142E87D1DC300010077EFA2 /* DejaVuSans.ttf */,
  1226. );
  1227. name = font;
  1228. sourceTree = "<group>";
  1229. };
  1230. 7142E8481DBF01AC0077EFA2 /* template */ = {
  1231. isa = PBXGroup;
  1232. children = (
  1233. 712AFEE61DBDB48000254965 /* portfolio_3x2.json */,
  1234. 71073AE51DD41DD8001BC653 /* so_thumb.json */,
  1235. 718E71081DE7CEA20035D1FF /* so.json */,
  1236. 71D5016B1DC32C3300971FBB /* portfolio_2x3.json */,
  1237. 42E489601EE63F4E007256A0 /* more_color_64.png */,
  1238. );
  1239. name = template;
  1240. sourceTree = "<group>";
  1241. };
  1242. 7143E0C919414E4B00B2EB1A /* cartView */ = {
  1243. isa = PBXGroup;
  1244. children = (
  1245. 7162A50C1C58704600AB630E /* BundleModelCell.h */,
  1246. 7162A50D1C58704600AB630E /* BundleModelCell.m */,
  1247. 7162A50E1C58704600AB630E /* BundleModelViewController.h */,
  1248. 7162A50F1C58704600AB630E /* BundleModelViewController.m */,
  1249. 7162A5101C58704600AB630E /* CartViewController.h */,
  1250. 7162A5111C58704600AB630E /* CartViewController.m */,
  1251. 7162A5121C58704600AB630E /* EditModelPriceViewController.h */,
  1252. 7162A5131C58704600AB630E /* EditModelPriceViewController.m */,
  1253. 7162A5141C58704600AB630E /* ModelItemCell.h */,
  1254. 7162A5151C58704600AB630E /* ModelItemCell.m */,
  1255. 712C40B71C731126000E6831 /* ItemNotesViewController.h */,
  1256. 712C40B81C731126000E6831 /* ItemNotesViewController.m */,
  1257. 712C40B41C7310F4000E6831 /* CartGeneralNotesViewController.h */,
  1258. 712C40B51C7310F4000E6831 /* CartGeneralNotesViewController.m */,
  1259. );
  1260. name = cartView;
  1261. sourceTree = "<group>";
  1262. };
  1263. 714A52061995E90300627D23 /* cam_scan */ = {
  1264. isa = PBXGroup;
  1265. children = (
  1266. 7162A5AE1C58738600AB630E /* ScannerControllerView.h */,
  1267. 7162A5AF1C58738600AB630E /* ScannerControllerView.m */,
  1268. 7162A5B01C58738600AB630E /* ScannerViewController.h */,
  1269. 7162A5B11C58738600AB630E /* ScannerViewController.m */,
  1270. 7162A5B21C58738600AB630E /* SCShapeView.h */,
  1271. 7162A5B31C58738600AB630E /* SCShapeView.m */,
  1272. );
  1273. name = cam_scan;
  1274. sourceTree = "<group>";
  1275. };
  1276. 714C6ADA1B83016A000123E3 /* address */ = {
  1277. isa = PBXGroup;
  1278. children = (
  1279. 7162A5001C586F5B00AB630E /* AddressEditorViewController.h */,
  1280. 7162A5011C586F5B00AB630E /* AddressEditorViewController.m */,
  1281. );
  1282. name = address;
  1283. sourceTree = "<group>";
  1284. };
  1285. 714C6ADE1B83069A000123E3 /* creditcard */ = {
  1286. isa = PBXGroup;
  1287. children = (
  1288. 7162A54C1C58722200AB630E /* CreditCardEditorViewController.h */,
  1289. 7162A54D1C58722200AB630E /* CreditCardEditorViewController.m */,
  1290. );
  1291. name = creditcard;
  1292. sourceTree = "<group>";
  1293. };
  1294. 714C6AE21B83107A000123E3 /* order */ = {
  1295. isa = PBXGroup;
  1296. children = (
  1297. 7162A5861C58733400AB630E /* CreateOrderViewController.h */,
  1298. 7162A5871C58733400AB630E /* CreateOrderViewController.m */,
  1299. 7162A5881C58733400AB630E /* OrderDetailHtmlCell.h */,
  1300. 7162A5891C58733400AB630E /* OrderDetailHtmlCell.m */,
  1301. 7162A58A1C58733400AB630E /* OrderDetailInfoCell.h */,
  1302. 7162A58B1C58733400AB630E /* OrderDetailInfoCell.m */,
  1303. 7162A58C1C58733400AB630E /* OrderDetailModelCell.h */,
  1304. 7162A58D1C58733400AB630E /* OrderDetailModelCell.m */,
  1305. 7162A58E1C58733400AB630E /* OrderDetailPriceCell.h */,
  1306. 7162A58F1C58733400AB630E /* OrderDetailPriceCell.m */,
  1307. 42DC12EF1F0CD98E00A4C011 /* OrderDetailPickInfoCell.h */,
  1308. 42DC12F01F0CD98E00A4C011 /* OrderDetailPickInfoCell.m */,
  1309. 7162A5901C58733400AB630E /* OrderDetailViewController.h */,
  1310. 7162A5911C58733400AB630E /* OrderDetailViewController.m */,
  1311. 7162A5921C58733400AB630E /* OrderListTableViewCell.h */,
  1312. 7162A5931C58733400AB630E /* OrderListTableViewCell.m */,
  1313. 7162A5941C58733400AB630E /* OrderListViewController.h */,
  1314. 7162A5951C58733400AB630E /* OrderListViewController.m */,
  1315. 7162A5961C58733400AB630E /* status_filter_cadedate_open.json */,
  1316. 42B309781E45BA32007AFC62 /* status_filter_cadedate_po.json */,
  1317. 7162A5971C58733400AB630E /* offline_status_filter_cadedate.json */,
  1318. 714B1F3E1C7BF74100539193 /* OrderDetailSignatureCell.h */,
  1319. 714B1F3F1C7BF74100539193 /* OrderDetailSignatureCell.m */,
  1320. );
  1321. name = order;
  1322. sourceTree = "<group>";
  1323. };
  1324. 715EB9A6193866F2006D16A5 /* photoStack */ = {
  1325. isa = PBXGroup;
  1326. children = (
  1327. 71DF748F1C57614C00F2789C /* PhotoBorder.png */,
  1328. 71DF74901C57614C00F2789C /* PhotoBorder@2x.png */,
  1329. 7165662C1EF3ACD900CB897F /* photostack_image.html */,
  1330. 7165662D1EF3ACD900CB897F /* photostack_video.html */,
  1331. 71DF74911C57614C00F2789C /* PhotoStackView.h */,
  1332. 71DF74921C57614C00F2789C /* PhotoStackView.m */,
  1333. 71DF74931C57614C00F2789C /* PhotoStackViewController.h */,
  1334. 71DF74941C57614C00F2789C /* PhotoStackViewController.m */,
  1335. );
  1336. name = photoStack;
  1337. sourceTree = "<group>";
  1338. };
  1339. 7162A5271C5870C100AB630E /* NPD */ = {
  1340. isa = PBXGroup;
  1341. children = (
  1342. 7162A5281C58713200AB630E /* CategoryCellNPD.h */,
  1343. 7162A5291C58713200AB630E /* CategoryCellNPD.m */,
  1344. );
  1345. name = NPD;
  1346. sourceTree = "<group>";
  1347. };
  1348. 716387C71953CDB4006E65E6 /* utils */ = {
  1349. isa = PBXGroup;
  1350. children = (
  1351. 3C70C0782A2DC244008C2400 /* MessageBox */,
  1352. 3CA2110F2761EBC8000FC2F3 /* common_const.h */,
  1353. 3CA211062761E9F8000FC2F3 /* DBUtil.h */,
  1354. 3CA211052761E9F8000FC2F3 /* DBUtil.m */,
  1355. 71C1D84C1F456CAA00CEA1C9 /* HWWeakTimer.h */,
  1356. 71C1D84D1F456CAA00CEA1C9 /* HWWeakTimer.m */,
  1357. 4289809B1E24B526005F1BD8 /* JKTimer */,
  1358. 4289805A1E249375005F1BD8 /* UIColor+HEX */,
  1359. 4289803C1E249339005F1BD8 /* JKLock */,
  1360. 712AFEC41DBA044C00254965 /* pdfCreator */,
  1361. 71BBA2171CEAC10200C91DED /* zip */,
  1362. 71B1250B1C55BD4600118904 /* QRCODE */,
  1363. 71E9F6BD1F8B53AB0052C78E /* upload */,
  1364. 71BE066E1BA1607400FA6544 /* AES */,
  1365. 71DF74291C57560600F2789C /* Reachability.h */,
  1366. 71DF742A1C57560600F2789C /* Reachability.m */,
  1367. 71CB70761F99E337009FDCB7 /* RAConvertor.h */,
  1368. 71CB70771F99E338009FDCB7 /* RAConvertor.m */,
  1369. 71CB70741F99DF02009FDCB7 /* FileCache.h */,
  1370. 71CB70731F99DF01009FDCB7 /* FileCache.m */,
  1371. 71DF742D1C5756C600F2789C /* const.h */,
  1372. 71D01B141E0A2055006620CE /* ImageUtils.h */,
  1373. 71D01B151E0A2055006620CE /* ImageUtils.m */,
  1374. 3CA210B22761DAF2000FC2F3 /* RAUtils.h */,
  1375. 3CA210B32761DAF2000FC2F3 /* RAUtils.m */,
  1376. 428980081E24918F005F1BD8 /* CartUtils.h */,
  1377. 428980091E24918F005F1BD8 /* CartUtils.m */,
  1378. 71D01B161E0A2055006620CE /* PDFUtils.h */,
  1379. 71D01B171E0A2055006620CE /* PDFUtils.m */,
  1380. 71D01B181E0A2055006620CE /* TextUtils.h */,
  1381. 71D01B191E0A2055006620CE /* TextUtils.m */,
  1382. 42BF67CA1E5179970081F90A /* ERPUtils.h */,
  1383. 42BF67CB1E5179970081F90A /* ERPUtils.m */,
  1384. 71FFBBE51C60894900D91DC2 /* iSalesDB.h */,
  1385. 71FFBBE61C60894900D91DC2 /* iSalesDB.m */,
  1386. 71E9F6BB1F8B52DC0052C78E /* NetworkUtils.h */,
  1387. 71E9F6BA1F8B52DC0052C78E /* NetworkUtils.m */,
  1388. 3CA211092761EA31000FC2F3 /* RADataProvider.h */,
  1389. 3CA211082761EA31000FC2F3 /* RADataProvider.m */,
  1390. 71E9F6C11F8B57E40052C78E /* RANetworkTaskDelegate.h */,
  1391. 71E9F6C01F8B57E30052C78E /* RANetworkTaskDelegate.m */,
  1392. 71FFBBE71C60894900D91DC2 /* RANetwork.h */,
  1393. 71FFBBE81C60894900D91DC2 /* RANetwork.m */,
  1394. 71BF06F91D2F3CAC00981938 /* OLDataProvider.h */,
  1395. 71BF06FA1D2F3CAC00981938 /* OLDataProvider.m */,
  1396. 42C9FB141D5B28FA001DCA8B /* contactAdvanceSearch.json */,
  1397. 423A4ADB1D503A53005ECE4A /* createContact.json */,
  1398. 42969C011D52F31C00FF190A /* editContact.json */,
  1399. 42DC31121D546FBE00BCD1C6 /* category.json */,
  1400. 42A51BF51D62F9AB00F13667 /* orderDetail.json */,
  1401. 42A51BF31D62F60300F13667 /* more_info.html */,
  1402. 42B3C9BA1D642C880053985C /* order_info.html */,
  1403. 42A225321D6E7D1D00235B62 /* placeOrderTemplate.json */,
  1404. 42C2E8BB1DB49D02006C0495 /* TearSheet.json */,
  1405. );
  1406. name = utils;
  1407. sourceTree = "<group>";
  1408. };
  1409. 716387CC1953D693006E65E6 /* sideMenu */ = {
  1410. isa = PBXGroup;
  1411. children = (
  1412. 7162A5CC1C5876E300AB630E /* AboutViewController.h */,
  1413. 7162A5CD1C5876E300AB630E /* AboutViewController.m */,
  1414. 7162A5CE1C5876E300AB630E /* CacheViewController.h */,
  1415. 7162A5CF1C5876E300AB630E /* CacheViewController.m */,
  1416. 7162A5D01C5876E300AB630E /* LoginViewController.h */,
  1417. 7162A5D11C5876E300AB630E /* LoginViewController.m */,
  1418. 7162A5D21C5876E300AB630E /* PopupNavigationController.h */,
  1419. 7162A5D31C5876E300AB630E /* PopupNavigationController.m */,
  1420. 7162A5D41C5876E300AB630E /* RetrievePassViewController.h */,
  1421. 7162A5D51C5876E300AB630E /* RetrievePassViewController.m */,
  1422. 7162A5D61C5876E300AB630E /* ScannerSettingViewController.h */,
  1423. 7162A5D71C5876E300AB630E /* ScannerSettingViewController.m */,
  1424. 7162A5D81C5876E300AB630E /* SettingViewController.h */,
  1425. 7162A5D91C5876E300AB630E /* SettingViewController.m */,
  1426. 7186C25B1C97A6EE00CB43F4 /* FunctionTestViewController.h */,
  1427. 7186C25C1C97A6EE00CB43F4 /* FunctionTestViewController.m */,
  1428. 71131F901CA1372300DBF6E2 /* SimplifiedBuyingProgramViewController.h */,
  1429. 71131F911CA1372300DBF6E2 /* SimplifiedBuyingProgramViewController.m */,
  1430. 710274231CC606C4009FD219 /* UserListViewController.h */,
  1431. 710274241CC606C4009FD219 /* UserListViewController.m */,
  1432. );
  1433. name = sideMenu;
  1434. sourceTree = "<group>";
  1435. };
  1436. 716387D2195408DA006E65E6 /* config */ = {
  1437. isa = PBXGroup;
  1438. children = (
  1439. 716387D3195408E7006E65E6 /* config.h */,
  1440. 71E5A00F1DC99370005BF655 /* config.plist */,
  1441. );
  1442. name = config;
  1443. sourceTree = "<group>";
  1444. };
  1445. 716BA58D195AB4170007093A /* categoryMenu */ = {
  1446. isa = PBXGroup;
  1447. children = (
  1448. 7162A52B1C58719D00AB630E /* RATreeNode.h */,
  1449. 7162A52C1C58719D00AB630E /* RATreeNode.m */,
  1450. 7162A52D1C58719D00AB630E /* RATreeNodeCollectionController.h */,
  1451. 7162A52E1C58719D00AB630E /* RATreeNodeCollectionController.m */,
  1452. 7162A52F1C58719D00AB630E /* RATreeNodeInfo.h */,
  1453. 7162A5301C58719D00AB630E /* RATreeNodeInfo.m */,
  1454. 7162A5311C58719D00AB630E /* RATreeNodeInfo+Private.h */,
  1455. 7162A5321C58719D00AB630E /* RATreeNodeInfo+Private.m */,
  1456. 7162A5331C58719D00AB630E /* RATreeView.h */,
  1457. 7162A5341C58719D00AB630E /* RATreeView.m */,
  1458. 7162A5351C58719D00AB630E /* RATreeView+Enums.h */,
  1459. 7162A5361C58719D00AB630E /* RATreeView+Enums.m */,
  1460. 7162A5371C58719D00AB630E /* RATreeView+Private.h */,
  1461. 7162A5381C58719D00AB630E /* RATreeView+Private.m */,
  1462. 7162A5391C58719D00AB630E /* RATreeView+TableViewDataSource.h */,
  1463. 7162A53A1C58719D00AB630E /* RATreeView+TableViewDataSource.m */,
  1464. 7162A53B1C58719D00AB630E /* RATreeView+TableViewDelegate.h */,
  1465. 7162A53C1C58719D00AB630E /* RATreeView+TableViewDelegate.m */,
  1466. 7162A53D1C58719D00AB630E /* RATreeView+UIScrollView.h */,
  1467. 7162A53E1C58719D00AB630E /* RATreeView+UIScrollView.m */,
  1468. 7162A53F1C58719D00AB630E /* RAViewController.h */,
  1469. 7162A5401C58719D00AB630E /* RAViewController.m */,
  1470. );
  1471. name = categoryMenu;
  1472. sourceTree = "<group>";
  1473. };
  1474. 717AE10B1D1A5E99007DC5CA /* offline */ = {
  1475. isa = PBXGroup;
  1476. children = (
  1477. 7161FEB21D61B24900157EE1 /* creditcardpayment.html */,
  1478. 7161FEB31D61B24900157EE1 /* normalpayment.html */,
  1479. 7161FEB41D61B24900157EE1 /* orderinfo.html */,
  1480. 71BF06FC1D2F3CBA00981938 /* OfflineSettingViewController.h */,
  1481. 71BF06FD1D2F3CBA00981938 /* OfflineSettingViewController.m */,
  1482. 71BF07061D2F3D2800981938 /* SyncControlPanelViewController.h */,
  1483. 71BF07071D2F3D2800981938 /* SyncControlPanelViewController.m */,
  1484. 716AF8DF1D7AA0E0001188E0 /* SelectUploadOrderViewController.h */,
  1485. 716AF8E01D7AA0E0001188E0 /* SelectUploadOrderViewController.m */,
  1486. 716AF8E61D7AA398001188E0 /* SelectOrderTableViewCell.h */,
  1487. 716AF8E51D7AA398001188E0 /* SelectOrderTableViewCell.m */,
  1488. 715F30BB1DAB37EB00490EED /* OfflineUnlockViewController.h */,
  1489. 715F30BC1DAB37EB00490EED /* OfflineUnlockViewController.m */,
  1490. );
  1491. name = offline;
  1492. sourceTree = "<group>";
  1493. };
  1494. 7185C3CE1B919C7200B4823C /* contact */ = {
  1495. isa = PBXGroup;
  1496. children = (
  1497. 7162A54F1C58724700AB630E /* ContactAdvanceSearchViewController.h */,
  1498. 7162A5501C58724700AB630E /* ContactAdvanceSearchViewController.m */,
  1499. 7162A5511C58724700AB630E /* ContactListTableViewCell.h */,
  1500. 7162A5521C58724700AB630E /* ContactListTableViewCell.m */,
  1501. 7162A5531C58724700AB630E /* ContactListViewController.h */,
  1502. 7162A5541C58724700AB630E /* ContactListViewController.m */,
  1503. 7162A5551C58724700AB630E /* customer_advanced_search.json */,
  1504. 7162A5561C58724700AB630E /* customer_info_template.json */,
  1505. 7111E5711C76C557004763B3 /* customer_info_template_edit.json */,
  1506. 7162A5571C58724700AB630E /* CustomerEditViewController.h */,
  1507. 7162A5581C58724700AB630E /* CustomerEditViewController.m */,
  1508. 7162A5591C58724700AB630E /* CustomerInfoViewController.h */,
  1509. 7162A55A1C58724700AB630E /* CustomerInfoViewController.m */,
  1510. );
  1511. name = contact;
  1512. sourceTree = "<group>";
  1513. };
  1514. 718600B31936C385004B6CDE /* customUI */ = {
  1515. isa = PBXGroup;
  1516. children = (
  1517. 71DF746B1C57608F00F2789C /* ImageScrollerView.h */,
  1518. 71DF746C1C57608F00F2789C /* ImageScrollerView.m */,
  1519. 71DF746D1C57608F00F2789C /* ImageScrollerViewController.h */,
  1520. 71DF746E1C57608F00F2789C /* ImageScrollerViewController.m */,
  1521. 71DF746F1C57608F00F2789C /* ImageUploadViewController.h */,
  1522. 71DF74701C57608F00F2789C /* ImageUploadViewController.m */,
  1523. 71DF74711C57608F00F2789C /* ImageViewController.h */,
  1524. 71DF74721C57608F00F2789C /* ImageViewController.m */,
  1525. 71DF74731C57608F00F2789C /* NIDropDown.h */,
  1526. 71DF74741C57608F00F2789C /* NIDropDown.m */,
  1527. 71DF74771C57608F00F2789C /* RadioButton.h */,
  1528. 71DF74781C57608F00F2789C /* RadioButton.m */,
  1529. 71DF747B1C57608F00F2789C /* SimpleGrid.h */,
  1530. 71DF747C1C57608F00F2789C /* SimpleGrid.m */,
  1531. 3CA210BC2761DB42000FC2F3 /* RTLabel.h */,
  1532. 3CA210BB2761DB42000FC2F3 /* RTLabel.m */,
  1533. 3CA210B82761DB42000FC2F3 /* StrikethroughLabel.h */,
  1534. 3CA210B92761DB42000FC2F3 /* StrikethroughLabel.m */,
  1535. 3CA210BA2761DB42000FC2F3 /* TouchImageView.h */,
  1536. 3CA210B52761DB42000FC2F3 /* TouchImageView.m */,
  1537. 71DF747F1C57608F00F2789C /* TouchLabel.h */,
  1538. 71DF74801C57608F00F2789C /* TouchLabel.m */,
  1539. 71DF74811C57608F00F2789C /* UILabel+FontAppearance.h */,
  1540. 71DF74821C57608F00F2789C /* UILabel+FontAppearance.m */,
  1541. );
  1542. name = customUI;
  1543. sourceTree = "<group>";
  1544. };
  1545. 718716141C433B4300F25860 /* ScanAPI */ = {
  1546. isa = PBXGroup;
  1547. children = (
  1548. 7141DD351C5726B700F7DF59 /* DeviceInfo.h */,
  1549. 7141DD361C5726B700F7DF59 /* DeviceInfo.m */,
  1550. 7141DD371C5726B700F7DF59 /* ScanApiHelper.h */,
  1551. 7141DD381C5726B700F7DF59 /* ScanApiHelper.mm */,
  1552. 7141DD391C5726B700F7DF59 /* ScanApiIncludes.h */,
  1553. 7141DD3A1C5726B700F7DF59 /* softScanBeep.wav */,
  1554. 7141DD331C57269B00F7DF59 /* include */,
  1555. );
  1556. name = ScanAPI;
  1557. sourceTree = "<group>";
  1558. };
  1559. 7190F1091BBBCAF100B2F243 /* PDF+Web */ = {
  1560. isa = PBXGroup;
  1561. children = (
  1562. 3CC7E72A23BEDA4F00BE5561 /* RAPDFViewController.h */,
  1563. 3CC7E73023BEDA7B00BE5561 /* wkweb.storyboard */,
  1564. 3CC7E72C23BEDA4F00BE5561 /* RAPDFViewController.m */,
  1565. 3CC7E72D23BEDA4F00BE5561 /* WebViewController.h */,
  1566. 3CC7E72B23BEDA4F00BE5561 /* WebViewController.m */,
  1567. );
  1568. name = "PDF+Web";
  1569. sourceTree = "<group>";
  1570. };
  1571. 7191A67319650A11007DC977 /* cagegory */ = {
  1572. isa = PBXGroup;
  1573. children = (
  1574. 7162A5271C5870C100AB630E /* NPD */,
  1575. 7162A51F1C58706C00AB630E /* CategoryCellSmall.h */,
  1576. 7162A5201C58706C00AB630E /* CategoryCellSmall.m */,
  1577. 712BABF11C897E3A0007466B /* CategorySearchFilterViewController.h */,
  1578. 712BABF21C897E3A0007466B /* CategorySearchFilterViewController.m */,
  1579. 7162A5211C58706C00AB630E /* CategoryViewController.h */,
  1580. 7162A5221C58706C00AB630E /* CategoryViewController.m */,
  1581. 7195623A1CF57D1800C74A49 /* CategoryHeaderView.h */,
  1582. 7195623B1CF57D1800C74A49 /* CategoryHeaderView.m */,
  1583. 71777FC51C8AC97300DA2511 /* debug_category_filter.json */,
  1584. );
  1585. name = cagegory;
  1586. sourceTree = "<group>";
  1587. };
  1588. 719562351CF5733500C74A49 /* appearance */ = {
  1589. isa = PBXGroup;
  1590. children = (
  1591. 715850441CF6F0E500856B20 /* DefaultAppearance.h */,
  1592. 715850451CF6F0E500856B20 /* DefaultAppearance.m */,
  1593. 71D30A201CFBEDC6006F9477 /* default_appearance.json */,
  1594. );
  1595. name = appearance;
  1596. sourceTree = "<group>";
  1597. };
  1598. 719E45D71B63883100FD098B /* modelDetail */ = {
  1599. isa = PBXGroup;
  1600. children = (
  1601. 7162A5621C58728D00AB630E /* DetailHeaderCell.h */,
  1602. 7162A5631C58728D00AB630E /* DetailHeaderCell.m */,
  1603. 7162A5641C58728D00AB630E /* DetailImageCell.h */,
  1604. 7162A5651C58728D00AB630E /* DetailImageCell.m */,
  1605. 7162A5661C58728D00AB630E /* DetailKVCell.h */,
  1606. 7162A5671C58728D00AB630E /* DetailKVCell.m */,
  1607. 7162A5681C58728D00AB630E /* DetailTopicCell.h */,
  1608. 7162A5691C58728D00AB630E /* DetailTopicCell.m */,
  1609. 7162A56A1C58728D00AB630E /* DetailViewController.h */,
  1610. 7162A56B1C58728D00AB630E /* DetailViewController.m */,
  1611. 7162A56C1C58728D00AB630E /* LineView.h */,
  1612. 7162A56D1C58728D00AB630E /* LineView.m */,
  1613. 71C1D8521F456D2700CEA1C9 /* ModelDescriptionController.h */,
  1614. 71C1D8531F456D2700CEA1C9 /* ModelDescriptionController.m */,
  1615. );
  1616. name = modelDetail;
  1617. sourceTree = "<group>";
  1618. };
  1619. 71A2478A1B955448000E1F84 /* search */ = {
  1620. isa = PBXGroup;
  1621. children = (
  1622. 7162A5B71C5873BB00AB630E /* FilterCellCadedate.h */,
  1623. 7162A5B81C5873BB00AB630E /* FilterCellCadedate.m */,
  1624. 7162A5B91C5873BB00AB630E /* FilterCellValue.h */,
  1625. 7162A5BA1C5873BB00AB630E /* FilterCellValue.m */,
  1626. 7162A5BB1C5873BB00AB630E /* ItemSearchFilterViewController.h */,
  1627. 7162A5BC1C5873BB00AB630E /* ItemSearchFilterViewController.m */,
  1628. 7162A5BD1C5873BB00AB630E /* ItemSearchViewController.h */,
  1629. 7162A5BE1C5873BB00AB630E /* ItemSearchViewController.m */,
  1630. 7162A5BF1C5873BB00AB630E /* SearchViewController.h */,
  1631. 7162A5C01C5873BB00AB630E /* SearchViewController.m */,
  1632. );
  1633. name = search;
  1634. sourceTree = "<group>";
  1635. };
  1636. 71B1250B1C55BD4600118904 /* QRCODE */ = {
  1637. isa = PBXGroup;
  1638. children = (
  1639. 7141DD3E1C57459B00F7DF59 /* bitstream.c */,
  1640. 7141DD3F1C57459B00F7DF59 /* bitstream.h */,
  1641. 7141DD401C57459B00F7DF59 /* mask.c */,
  1642. 7141DD411C57459B00F7DF59 /* mask.h */,
  1643. 7141DD421C57459B00F7DF59 /* QRCodeGenerator.h */,
  1644. 7141DD431C57459B00F7DF59 /* QRCodeGenerator.m */,
  1645. 7141DD441C57459B00F7DF59 /* qrencode.c */,
  1646. 7141DD451C57459B00F7DF59 /* qrencode.h */,
  1647. 7141DD461C57459B00F7DF59 /* qrinput.c */,
  1648. 7141DD471C57459B00F7DF59 /* qrinput.h */,
  1649. 7141DD481C57459B00F7DF59 /* qrspec.c */,
  1650. 7141DD491C57459B00F7DF59 /* qrspec.h */,
  1651. 7141DD4A1C57459B00F7DF59 /* rscode.c */,
  1652. 7141DD4B1C57459B00F7DF59 /* rscode.h */,
  1653. 7141DD4C1C57459B00F7DF59 /* split.c */,
  1654. 7141DD4D1C57459B00F7DF59 /* split.h */,
  1655. );
  1656. name = QRCODE;
  1657. sourceTree = "<group>";
  1658. };
  1659. 71BBA2171CEAC10200C91DED /* zip */ = {
  1660. isa = PBXGroup;
  1661. children = (
  1662. 71BBA2371CEAEF0700C91DED /* crypt.h */,
  1663. 71BBA2381CEAEF0700C91DED /* ioapi.c */,
  1664. 71BBA2391CEAEF0700C91DED /* ioapi.h */,
  1665. 71BBA23A1CEAEF0700C91DED /* mztools.c */,
  1666. 71BBA23B1CEAEF0700C91DED /* mztools.h */,
  1667. 71BBA23C1CEAEF0700C91DED /* unzip.c */,
  1668. 71BBA23D1CEAEF0700C91DED /* unzip.h */,
  1669. 71BBA23E1CEAEF0700C91DED /* zip.c */,
  1670. 71BBA23F1CEAEF0700C91DED /* zip.h */,
  1671. 71BBA2211CEAC16000C91DED /* ZipArchive.h */,
  1672. 71BBA2221CEAC16000C91DED /* ZipArchive.mm */,
  1673. );
  1674. name = zip;
  1675. sourceTree = "<group>";
  1676. };
  1677. 71BE066E1BA1607400FA6544 /* AES */ = {
  1678. isa = PBXGroup;
  1679. children = (
  1680. 7141DD561C5747CE00F7DF59 /* AESCrypt.h */,
  1681. 7141DD571C5747CE00F7DF59 /* AESCrypt.m */,
  1682. 7141DD581C5747CE00F7DF59 /* LICENSE */,
  1683. 7141DD591C5747CE00F7DF59 /* NSData+Base64.h */,
  1684. 7141DD5A1C5747CE00F7DF59 /* NSData+Base64.m */,
  1685. 7141DD5B1C5747CE00F7DF59 /* NSData+CommonCrypto.h */,
  1686. 7141DD5C1C5747CE00F7DF59 /* NSData+CommonCrypto.m */,
  1687. 7141DD5D1C5747CE00F7DF59 /* NSString+Base64.h */,
  1688. 7141DD5E1C5747CE00F7DF59 /* NSString+Base64.m */,
  1689. );
  1690. name = AES;
  1691. sourceTree = "<group>";
  1692. };
  1693. 71BF32FA1EFA1C0700842CB4 /* youtube player */ = {
  1694. isa = PBXGroup;
  1695. children = (
  1696. 3C6831B32397887800AD5BD7 /* RAYTPlayer.h */,
  1697. 3C6831B22397887800AD5BD7 /* RAYTPlayer.m */,
  1698. 3C6831B42397887800AD5BD7 /* ytplayer.html */,
  1699. );
  1700. name = "youtube player";
  1701. sourceTree = "<group>";
  1702. };
  1703. 71DBACEE1B5E401A00D8BD7E /* HomeView */ = {
  1704. isa = PBXGroup;
  1705. children = (
  1706. 7162A5771C5872EF00AB630E /* HomeTableViewCellBanner.h */,
  1707. 7162A5781C5872EF00AB630E /* HomeTableViewCellBanner.m */,
  1708. 7162A5791C5872EF00AB630E /* HomeTableViewCellButtonBanner.h */,
  1709. 7162A57A1C5872EF00AB630E /* HomeTableViewCellButtonBanner.m */,
  1710. 7162A57B1C5872EF00AB630E /* HomeTableViewCellSlide.h */,
  1711. 7162A57C1C5872EF00AB630E /* HomeTableViewCellSlide.m */,
  1712. 7162A57D1C5872EF00AB630E /* HomeTableViewCellTopic.h */,
  1713. 7162A57E1C5872EF00AB630E /* HomeTableViewCellTopic.m */,
  1714. 7162A57F1C5872EF00AB630E /* HomeViewController.h */,
  1715. 7162A5801C5872EF00AB630E /* HomeViewController.m */,
  1716. );
  1717. name = HomeView;
  1718. sourceTree = "<group>";
  1719. };
  1720. 71DF742C1C57567800F2789C /* NPD */ = {
  1721. isa = PBXGroup;
  1722. children = (
  1723. 3C3E26B427CDF87000EF6F5C /* UIView+Toast.h */,
  1724. 3C3E26B327CDF87000EF6F5C /* UIView+Toast.m */,
  1725. 719562351CF5733500C74A49 /* appearance */,
  1726. 716387D2195408DA006E65E6 /* config */,
  1727. 3C57169823CEA4120002E9FC /* Launch Screen.storyboard */,
  1728. 78DD35072ED69EC3001E4BCB /* ScanApiStub.m */,
  1729. );
  1730. name = NPD;
  1731. sourceTree = "<group>";
  1732. };
  1733. 71DF74311C5757C800F2789C /* CommonUI */ = {
  1734. isa = PBXGroup;
  1735. children = (
  1736. 3CA2110B2761EA7E000FC2F3 /* HUD */,
  1737. 3CA2109D2761DA66000FC2F3 /* PhotoList */,
  1738. 71BF32FA1EFA1C0700842CB4 /* youtube player */,
  1739. 4289800E1E24924D005F1BD8 /* sort */,
  1740. 715EB9A6193866F2006D16A5 /* photoStack */,
  1741. 718600B31936C385004B6CDE /* customUI */,
  1742. 71DF743A1C575E6600F2789C /* CommonEditor */,
  1743. 71DF74321C5757DA00F2789C /* ActiveViewController.h */,
  1744. 71DF74331C5757DA00F2789C /* ActiveViewController.m */,
  1745. 3CA210AD2761DA8B000FC2F3 /* DefaultTableHeaderView.h */,
  1746. 3CA210AC2761DA8B000FC2F3 /* DefaultTableHeaderView.m */,
  1747. 71D30A2B1CFC0EF8006F9477 /* DefaultImageButton.h */,
  1748. 71D30A2C1CFC0EF8006F9477 /* DefaultImageButton.m */,
  1749. 715001FD1D114D9100F5927F /* BundleDetailButton.h */,
  1750. 715001FE1D114D9100F5927F /* BundleDetailButton.m */,
  1751. );
  1752. name = CommonUI;
  1753. sourceTree = "<group>";
  1754. };
  1755. 71DF743A1C575E6600F2789C /* CommonEditor */ = {
  1756. isa = PBXGroup;
  1757. children = (
  1758. 4295AE181FE74D26007BE365 /* AutoComplete */,
  1759. 3CA210D42761DC2B000FC2F3 /* CommonEditorCellAction.h */,
  1760. 3CA210CD2761DC2A000FC2F3 /* CommonEditorCellAction.m */,
  1761. 3CA210DA2761DC2B000FC2F3 /* CommonEditorCellEdit.h */,
  1762. 3CA210D82761DC2B000FC2F3 /* CommonEditorCellEdit.m */,
  1763. 3CA210D02761DC2A000FC2F3 /* CommonEditorCellEditor.h */,
  1764. 3CA210D32761DC2A000FC2F3 /* CommonEditorCellEditor.m */,
  1765. 3CA210DD2761DC2B000FC2F3 /* CommonEditorCellEnum.h */,
  1766. 3CA210CE2761DC2A000FC2F3 /* CommonEditorCellEnum.m */,
  1767. 3CA210D22761DC2A000FC2F3 /* CommonEditorCellImg.h */,
  1768. 3CA210D92761DC2B000FC2F3 /* CommonEditorCellImg.m */,
  1769. 3CA210D12761DC2A000FC2F3 /* CommonEditorCellLabel.h */,
  1770. 3CA210D72761DC2B000FC2F3 /* CommonEditorCellLabel.m */,
  1771. 3CA210E02761DC2B000FC2F3 /* CommonEditorCellMAction.h */,
  1772. 3CA210DB2761DC2B000FC2F3 /* CommonEditorCellMAction.m */,
  1773. 3CA210CF2761DC2A000FC2F3 /* CommonEditorCellModel.h */,
  1774. 3CA210E22761DC2C000FC2F3 /* CommonEditorCellModel.m */,
  1775. 3CA210DC2761DC2B000FC2F3 /* CommonEditorCellSignature.h */,
  1776. 3CA210D52761DC2B000FC2F3 /* CommonEditorCellSignature.m */,
  1777. 3CA210E12761DC2C000FC2F3 /* CommonEditorCellSwitch.h */,
  1778. 3CA210DE2761DC2B000FC2F3 /* CommonEditorCellSwitch.m */,
  1779. 3CA210DF2761DC2B000FC2F3 /* CommonEditorCellTextView.h */,
  1780. 3CA210D62761DC2B000FC2F3 /* CommonEditorCellTextView.m */,
  1781. 3CA210EF2761DC38000FC2F3 /* CommonEditorViewController.h */,
  1782. 3CA210EE2761DC38000FC2F3 /* CommonEditorViewController.m */,
  1783. 3CA210FD2761DC95000FC2F3 /* CommonEditor.storyboard */,
  1784. 3CA210F82761DC94000FC2F3 /* CommonEditorTableContainerView.h */,
  1785. 3CA210F72761DC94000FC2F3 /* CommonEditorTableContainerView.m */,
  1786. 3CA210F12761DC94000FC2F3 /* DatePickerViewController.h */,
  1787. 3CA210F52761DC94000FC2F3 /* DatePickerViewController.m */,
  1788. 3CA210FA2761DC94000FC2F3 /* EnumSelectorCell.h */,
  1789. 3CA210FC2761DC94000FC2F3 /* EnumSelectorCell.m */,
  1790. 3CA210F22761DC94000FC2F3 /* EnumSelectViewController.h */,
  1791. 3CA210F62761DC94000FC2F3 /* EnumSelectViewController.m */,
  1792. 3CA210F32761DC94000FC2F3 /* MonthPickerViewController.h */,
  1793. 3CA210FB2761DC94000FC2F3 /* MonthPickerViewController.m */,
  1794. 3CA210F92761DC94000FC2F3 /* SRMonthPicker.h */,
  1795. 3CA210F42761DC94000FC2F3 /* SRMonthPicker.m */,
  1796. 3C6831A02397884A00AD5BD7 /* CommonEditor.iPad.xib */,
  1797. 3C6831A12397884A00AD5BD7 /* iPadCommonEditorCellAction.xib */,
  1798. 3C6831A52397884A00AD5BD7 /* iPadCommonEditorCellEdit.xib */,
  1799. 3C68319E2397884A00AD5BD7 /* iPadCommonEditorCellEnum.xib */,
  1800. 3C6831A22397884A00AD5BD7 /* iPadCommonEditorCellImg.xib */,
  1801. 3C6831A62397884A00AD5BD7 /* iPadCommonEditorCellLabel.xib */,
  1802. 3C6831A32397884A00AD5BD7 /* iPadCommonEditorCellMAction.xib */,
  1803. 3C6831A42397884A00AD5BD7 /* iPadCommonEditorCellModel.xib */,
  1804. 3C68319C2397884A00AD5BD7 /* iPadCommonEditorCellSignature.xib */,
  1805. 3C68319F2397884A00AD5BD7 /* iPadCommonEditorCellSwitch.xib */,
  1806. 3C68319D2397884A00AD5BD7 /* iPadCommonEditorCellTextView.xib */,
  1807. 3CA210C12761DBC2000FC2F3 /* EnumSelectAndSort */,
  1808. );
  1809. name = CommonEditor;
  1810. sourceTree = "<group>";
  1811. };
  1812. 71E9F6BD1F8B53AB0052C78E /* upload */ = {
  1813. isa = PBXGroup;
  1814. children = (
  1815. );
  1816. name = upload;
  1817. sourceTree = "<group>";
  1818. };
  1819. 71F731FC192F395000F2CF76 /* AutoScrollImage */ = {
  1820. isa = PBXGroup;
  1821. children = (
  1822. 7162A5031C586FC100AB630E /* CycleScrollView.h */,
  1823. 7162A5041C586FC100AB630E /* CycleScrollView.m */,
  1824. 7162A5051C586FC100AB630E /* NSTimer+Addition.h */,
  1825. 7162A5061C586FC100AB630E /* NSTimer+Addition.m */,
  1826. 7162A5071C586FC100AB630E /* SliderPage.h */,
  1827. 7162A5081C586FC100AB630E /* SliderPage.m */,
  1828. );
  1829. name = AutoScrollImage;
  1830. sourceTree = "<group>";
  1831. };
  1832. /* End PBXGroup section */
  1833. /* Begin PBXNativeTarget section */
  1834. 713F76A51929F4A7006A7305 /* iSales-NPD */ = {
  1835. isa = PBXNativeTarget;
  1836. buildConfigurationList = 713F76D81929F4A7006A7305 /* Build configuration list for PBXNativeTarget "iSales-NPD" */;
  1837. buildPhases = (
  1838. 713F76A21929F4A7006A7305 /* Sources */,
  1839. 713F76A31929F4A7006A7305 /* Frameworks */,
  1840. 713F76A41929F4A7006A7305 /* Resources */,
  1841. );
  1842. buildRules = (
  1843. );
  1844. dependencies = (
  1845. );
  1846. name = "iSales-NPD";
  1847. productName = "iSales-NPD";
  1848. productReference = 713F76A61929F4A7006A7305 /* NPD Mobile.app */;
  1849. productType = "com.apple.product-type.application";
  1850. };
  1851. /* End PBXNativeTarget section */
  1852. /* Begin PBXProject section */
  1853. 713F769E1929F4A7006A7305 /* Project object */ = {
  1854. isa = PBXProject;
  1855. attributes = {
  1856. BuildIndependentTargetsInParallel = YES;
  1857. LastUpgradeCheck = 2610;
  1858. ORGANIZATIONNAME = "United Software Applications, Inc";
  1859. TargetAttributes = {
  1860. 713F76A51929F4A7006A7305 = {
  1861. DevelopmentTeam = HXWLAA5YN5;
  1862. ProvisioningStyle = Automatic;
  1863. };
  1864. };
  1865. };
  1866. buildConfigurationList = 713F76A11929F4A7006A7305 /* Build configuration list for PBXProject "iSales-NPD" */;
  1867. compatibilityVersion = "Xcode 3.2";
  1868. developmentRegion = en;
  1869. hasScannedForEncodings = 0;
  1870. knownRegions = (
  1871. en,
  1872. Base,
  1873. );
  1874. mainGroup = 713F769D1929F4A7006A7305;
  1875. productRefGroup = 713F76A71929F4A7006A7305 /* Products */;
  1876. projectDirPath = "";
  1877. projectRoot = "";
  1878. targets = (
  1879. 713F76A51929F4A7006A7305 /* iSales-NPD */,
  1880. );
  1881. };
  1882. /* End PBXProject section */
  1883. /* Begin PBXResourcesBuildPhase section */
  1884. 713F76A41929F4A7006A7305 /* Resources */ = {
  1885. isa = PBXResourcesBuildPhase;
  1886. buildActionMask = 2147483647;
  1887. files = (
  1888. 3C6831B12397884A00AD5BD7 /* iPadCommonEditorCellLabel.xib in Resources */,
  1889. 7142E87E1DC300690077EFA2 /* DejaVuSans-Bold.ttf in Resources */,
  1890. 7142E87F1DC300690077EFA2 /* DejaVuSans.ttf in Resources */,
  1891. 7142E87A1DBF577A0077EFA2 /* KALINGA.TTF in Resources */,
  1892. 3C6831BF239788C100AD5BD7 /* ERP_Mobile_Discard.storyboard in Resources */,
  1893. 7142E87B1DBF577A0077EFA2 /* KALINGAB.TTF in Resources */,
  1894. 3C6831AB2397884A00AD5BD7 /* CommonEditor.iPad.xib in Resources */,
  1895. 713F76C21929F4A7006A7305 /* Images.xcassets in Resources */,
  1896. 3C6831C1239788C100AD5BD7 /* ERP_Mobile_Portfolio.storyboard in Resources */,
  1897. 3C6831A92397884A00AD5BD7 /* iPadCommonEditorCellEnum.xib in Resources */,
  1898. 3CA210CA2761DBC2000FC2F3 /* EnumSelectAndSort.storyboard in Resources */,
  1899. 3C6831A82397884A00AD5BD7 /* iPadCommonEditorCellTextView.xib in Resources */,
  1900. 3C6831C0239788C100AD5BD7 /* ERP_Mobile_Order.storyboard in Resources */,
  1901. 42E489611EE63F4E007256A0 /* more_color_64.png in Resources */,
  1902. 3C6831AF2397884A00AD5BD7 /* iPadCommonEditorCellModel.xib in Resources */,
  1903. 713F76B41929F4A7006A7305 /* InfoPlist.strings in Resources */,
  1904. 7165662F1EF3ACD900CB897F /* photostack_video.html in Resources */,
  1905. 3C6831A72397884A00AD5BD7 /* iPadCommonEditorCellSignature.xib in Resources */,
  1906. 3C6831AA2397884A00AD5BD7 /* iPadCommonEditorCellSwitch.xib in Resources */,
  1907. 7162A5A01C58733400AB630E /* status_filter_cadedate_open.json in Resources */,
  1908. 71D30A211CFBEDC6006F9477 /* default_appearance.json in Resources */,
  1909. 71D5016C1DC32C3300971FBB /* portfolio_2x3.json in Resources */,
  1910. 42969C021D52F31C00FF190A /* editContact.json in Resources */,
  1911. 42A51BF61D62F9AB00F13667 /* orderDetail.json in Resources */,
  1912. 3C2F99BF237BE7190000808F /* NPD_Mobile.storyboard in Resources */,
  1913. 3C6831C3239788C100AD5BD7 /* ERP_Mobile_Search.storyboard in Resources */,
  1914. 3CC7E73123BEDA7B00BE5561 /* wkweb.storyboard in Resources */,
  1915. 7161FEB71D61B24900157EE1 /* orderinfo.html in Resources */,
  1916. 42C9FB151D5B28FA001DCA8B /* contactAdvanceSearch.json in Resources */,
  1917. 7161FEB51D61B24900157EE1 /* creditcardpayment.html in Resources */,
  1918. 71777FC61C8AC97300DA2511 /* debug_category_filter.json in Resources */,
  1919. 3C6831AE2397884A00AD5BD7 /* iPadCommonEditorCellMAction.xib in Resources */,
  1920. 71073AE61DD41DD8001BC653 /* so_thumb.json in Resources */,
  1921. 712AFEE71DBDB48000254965 /* portfolio_3x2.json in Resources */,
  1922. 71E5A0101DC99370005BF655 /* config.plist in Resources */,
  1923. 71DF74951C57614C00F2789C /* PhotoBorder.png in Resources */,
  1924. 3C6831C4239788C100AD5BD7 /* ERP_Mobile_Cart.storyboard in Resources */,
  1925. 7162A55F1C58724700AB630E /* customer_info_template.json in Resources */,
  1926. 3CA211042761DC95000FC2F3 /* CommonEditor.storyboard in Resources */,
  1927. 3CA210A82761DA66000FC2F3 /* PhotoList.storyboard in Resources */,
  1928. 71D46D111CE1D9EF00A081AC /* OLM.storyboard in Resources */,
  1929. 423B49EF1DAC8071004181C2 /* CUL.storyboard in Resources */,
  1930. 42C2E8BC1DB49D02006C0495 /* TearSheet.json in Resources */,
  1931. 3C6831B02397884A00AD5BD7 /* iPadCommonEditorCellEdit.xib in Resources */,
  1932. 3C6831AC2397884A00AD5BD7 /* iPadCommonEditorCellAction.xib in Resources */,
  1933. 42B3C9BB1D642C880053985C /* order_info.html in Resources */,
  1934. 718E71091DE7CEA20035D1FF /* so.json in Resources */,
  1935. 42A225331D6E7D1D00235B62 /* placeOrderTemplate.json in Resources */,
  1936. 3C57169923CEA4120002E9FC /* Launch Screen.storyboard in Resources */,
  1937. 3C6831BE239788C100AD5BD7 /* ERP_Mobile_Model.storyboard in Resources */,
  1938. 3C6831AD2397884A00AD5BD7 /* iPadCommonEditorCellImg.xib in Resources */,
  1939. 7141DD3D1C5726B700F7DF59 /* softScanBeep.wav in Resources */,
  1940. 4295AE1D1FE74D46007BE365 /* CommonEditorAutoCompleteView.xib in Resources */,
  1941. 7141DD341C57269B00F7DF59 /* include in Resources */,
  1942. 71D01ADD1E08CB1C006620CE /* signature.storyboard in Resources */,
  1943. 42DC31131D546FBE00BCD1C6 /* category.json in Resources */,
  1944. 423A4ADC1D503A53005ECE4A /* createContact.json in Resources */,
  1945. 3C6831C2239788C100AD5BD7 /* ERP_Mobile_Contact.storyboard in Resources */,
  1946. 7111E5721C76C557004763B3 /* customer_info_template_edit.json in Resources */,
  1947. 7161FEB61D61B24900157EE1 /* normalpayment.html in Resources */,
  1948. 71DF74961C57614C00F2789C /* PhotoBorder@2x.png in Resources */,
  1949. 7165662E1EF3ACD900CB897F /* photostack_image.html in Resources */,
  1950. 712AFEE51DBDAF0300254965 /* pdfcreator.xcassets in Resources */,
  1951. 7162A55E1C58724700AB630E /* customer_advanced_search.json in Resources */,
  1952. 7162A5A11C58733400AB630E /* offline_status_filter_cadedate.json in Resources */,
  1953. 3C6831B62397887800AD5BD7 /* ytplayer.html in Resources */,
  1954. 42B309791E45BA32007AFC62 /* status_filter_cadedate_po.json in Resources */,
  1955. 42BEF3A61E8A57F600632AB6 /* GoogleService-Info.plist in Resources */,
  1956. 713F76BD1929F4A7006A7305 /* Main.storyboard in Resources */,
  1957. 42A51BF41D62F60300F13667 /* more_info.html in Resources */,
  1958. );
  1959. runOnlyForDeploymentPostprocessing = 0;
  1960. };
  1961. /* End PBXResourcesBuildPhase section */
  1962. /* Begin PBXSourcesBuildPhase section */
  1963. 713F76A21929F4A7006A7305 /* Sources */ = {
  1964. isa = PBXSourcesBuildPhase;
  1965. buildActionMask = 2147483647;
  1966. files = (
  1967. 7141DD531C57459B00F7DF59 /* qrspec.c in Sources */,
  1968. 71BF07081D2F3D2800981938 /* SyncControlPanelViewController.m in Sources */,
  1969. 4289802D1E2492D2005F1BD8 /* PriceSettingViewController.m in Sources */,
  1970. 71FFBBEA1C60894900D91DC2 /* RANetwork.m in Sources */,
  1971. 428980161E24924D005F1BD8 /* SortItemCell.m in Sources */,
  1972. 7162A59D1C58733400AB630E /* OrderDetailViewController.m in Sources */,
  1973. 7141DD3B1C5726B700F7DF59 /* DeviceInfo.m in Sources */,
  1974. 712AFEDC1DBA050200254965 /* PDFDrawable.m in Sources */,
  1975. 7195623C1CF57D1800C74A49 /* CategoryHeaderView.m in Sources */,
  1976. 712AFED81DBA050200254965 /* GridDrawable.m in Sources */,
  1977. 424A02D11FFB3A0B0088DC56 /* RABackOrderSubmitAlertController.m in Sources */,
  1978. 7162A5C11C5873BB00AB630E /* FilterCellCadedate.m in Sources */,
  1979. 3CA210B12761DAAC000FC2F3 /* RASingleton.m in Sources */,
  1980. 71DF742B1C57560600F2789C /* Reachability.m in Sources */,
  1981. 7162A5701C58728D00AB630E /* DetailHeaderCell.m in Sources */,
  1982. 71BBA2271CEAC16000C91DED /* ZipArchive.mm in Sources */,
  1983. 7162A5491C58719D00AB630E /* RATreeView+TableViewDelegate.m in Sources */,
  1984. 428980451E249339005F1BD8 /* JKDotView.m in Sources */,
  1985. 7162A5B41C58738600AB630E /* ScannerControllerView.m in Sources */,
  1986. 7162A5831C5872EF00AB630E /* HomeTableViewCellSlide.m in Sources */,
  1987. 4289800A1E24918F005F1BD8 /* CartUtils.m in Sources */,
  1988. 7162A5851C5872EF00AB630E /* HomeViewController.m in Sources */,
  1989. 7162A5E31C5877CE00AB630E /* WatchListViewController.m in Sources */,
  1990. 715001FF1D114D9100F5927F /* BundleDetailButton.m in Sources */,
  1991. 3CA210C02761DB42000FC2F3 /* RTLabel.m in Sources */,
  1992. 7162A5421C58719D00AB630E /* RATreeNodeCollectionController.m in Sources */,
  1993. 7162A5DE1C5876E300AB630E /* RetrievePassViewController.m in Sources */,
  1994. 428980461E249339005F1BD8 /* JKLockButton.m in Sources */,
  1995. 71C1D8541F456D2700CEA1C9 /* ModelDescriptionController.m in Sources */,
  1996. 3CA210CB2761DBC2000FC2F3 /* EnumSelectAndSortViewController.m in Sources */,
  1997. 7141DD541C57459B00F7DF59 /* rscode.c in Sources */,
  1998. 3CA210BF2761DB42000FC2F3 /* StrikethroughLabel.m in Sources */,
  1999. 7162A5E01C5876E300AB630E /* SettingViewController.m in Sources */,
  2000. 712AFEDB1DBA050200254965 /* LineDrawable.m in Sources */,
  2001. 71DF748B1C57608F00F2789C /* SimpleGrid.m in Sources */,
  2002. 7162A5171C58704600AB630E /* BundleModelViewController.m in Sources */,
  2003. 7162A5411C58719D00AB630E /* RATreeNode.m in Sources */,
  2004. 7162A5251C58706C00AB630E /* CategoryCellSmall.m in Sources */,
  2005. 712AFEDA1DBA050200254965 /* ImageDrawable.m in Sources */,
  2006. 71E9F6C21F8B57E40052C78E /* RANetworkTaskDelegate.m in Sources */,
  2007. 712C40B91C731126000E6831 /* ItemNotesViewController.m in Sources */,
  2008. 7162A5AD1C58735900AB630E /* TearSheetParamViewController.m in Sources */,
  2009. 3CA210EA2761DC2C000FC2F3 /* CommonEditorCellImg.m in Sources */,
  2010. 7141DD611C5747CE00F7DF59 /* NSData+Base64.m in Sources */,
  2011. 71BBA2431CEAEF0700C91DED /* zip.c in Sources */,
  2012. 7141DD5F1C5747CE00F7DF59 /* AESCrypt.m in Sources */,
  2013. 7162A5991C58733400AB630E /* OrderDetailHtmlCell.m in Sources */,
  2014. 7162A5091C586FC100AB630E /* CycleScrollView.m in Sources */,
  2015. 715F30BD1DAB37EB00490EED /* OfflineUnlockViewController.m in Sources */,
  2016. 7162A5161C58704600AB630E /* BundleModelCell.m in Sources */,
  2017. 42DC12F11F0CD98E00A4C011 /* OrderDetailPickInfoCell.m in Sources */,
  2018. 7141DD621C5747CE00F7DF59 /* NSData+CommonCrypto.m in Sources */,
  2019. 712AFED71DBA050200254965 /* BasicDrawable.m in Sources */,
  2020. 71DF74891C57608F00F2789C /* RadioButton.m in Sources */,
  2021. 3CA210AE2761DA8B000FC2F3 /* DefaultTableHeaderView.m in Sources */,
  2022. 7162A5DF1C5876E300AB630E /* ScannerSettingViewController.m in Sources */,
  2023. 3CA210F02761DC38000FC2F3 /* CommonEditorViewController.m in Sources */,
  2024. 71DF74831C57608F00F2789C /* ImageScrollerView.m in Sources */,
  2025. 71DF74871C57608F00F2789C /* NIDropDown.m in Sources */,
  2026. 3CA210FF2761DC95000FC2F3 /* DatePickerViewController.m in Sources */,
  2027. 710274251CC606C4009FD219 /* UserListViewController.m in Sources */,
  2028. 7141DD551C57459B00F7DF59 /* split.c in Sources */,
  2029. 716AF8E11D7AA0E0001188E0 /* SelectUploadOrderViewController.m in Sources */,
  2030. 712AFEDF1DBA050200254965 /* TextDrawable.m in Sources */,
  2031. 7162A5611C58724700AB630E /* CustomerInfoViewController.m in Sources */,
  2032. 3CA210A92761DA66000FC2F3 /* ContentPreviewController.m in Sources */,
  2033. 428980471E249339005F1BD8 /* JKLockController.m in Sources */,
  2034. 7162A5731C58728D00AB630E /* DetailTopicCell.m in Sources */,
  2035. 71BBA2421CEAEF0700C91DED /* unzip.c in Sources */,
  2036. 7162A5AC1C58735900AB630E /* PortfolioViewController.m in Sources */,
  2037. 71D01B1C1E0A2055006620CE /* TextUtils.m in Sources */,
  2038. 7162A5981C58733400AB630E /* CreateOrderViewController.m in Sources */,
  2039. 4289809E1E24B526005F1BD8 /* JKTimerManager.m in Sources */,
  2040. 7162A5021C586F5B00AB630E /* AddressEditorViewController.m in Sources */,
  2041. 71131F921CA1372300DBF6E2 /* SimplifiedBuyingProgramViewController.m in Sources */,
  2042. 3CA210ED2761DC2C000FC2F3 /* CommonEditorCellModel.m in Sources */,
  2043. 7162A55C1C58724700AB630E /* ContactListTableViewCell.m in Sources */,
  2044. 7186C25D1C97A6EE00CB43F4 /* FunctionTestViewController.m in Sources */,
  2045. 3CA210EB2761DC2C000FC2F3 /* CommonEditorCellMAction.m in Sources */,
  2046. 71C1D84E1F456CAA00CEA1C9 /* HWWeakTimer.m in Sources */,
  2047. 71D0344F1C9BF3C400E0F7AD /* PortfolioEditQTYViewController.m in Sources */,
  2048. 7162A5B51C58738600AB630E /* ScannerViewController.m in Sources */,
  2049. 3CA210CC2761DBC2000FC2F3 /* EnumSelectAndSortCell.m in Sources */,
  2050. 716AF8E71D7AA398001188E0 /* SelectOrderTableViewCell.m in Sources */,
  2051. 713F76BA1929F4A7006A7305 /* AppDelegate.m in Sources */,
  2052. 71BF06FB1D2F3CAC00981938 /* OLDataProvider.m in Sources */,
  2053. 7162A59B1C58733400AB630E /* OrderDetailModelCell.m in Sources */,
  2054. 7162A5E91C5899F700AB630E /* MainViewController.m in Sources */,
  2055. 426438B721A2998300411DF7 /* AppDelegateBase.m in Sources */,
  2056. 71D01B1B1E0A2055006620CE /* PDFUtils.m in Sources */,
  2057. 7141DD4F1C57459B00F7DF59 /* mask.c in Sources */,
  2058. 3CA210C92761DBC2000FC2F3 /* EnumModel.m in Sources */,
  2059. 7162A54E1C58722200AB630E /* CreditCardEditorViewController.m in Sources */,
  2060. 7162A5C31C5873BB00AB630E /* ItemSearchFilterViewController.m in Sources */,
  2061. 71D30A2D1CFC0EF8006F9477 /* DefaultImageButton.m in Sources */,
  2062. 3CA2110A2761EA31000FC2F3 /* RADataProvider.m in Sources */,
  2063. 7162A5841C5872EF00AB630E /* HomeTableViewCellTopic.m in Sources */,
  2064. 7162A59F1C58733400AB630E /* OrderListViewController.m in Sources */,
  2065. 4254CCDE1FB1AC2B00C8B4B6 /* RAOrderEditorViewController.m in Sources */,
  2066. 712AFEE21DBA077F00254965 /* pdfCreator.m in Sources */,
  2067. 71BBA2401CEAEF0700C91DED /* ioapi.c in Sources */,
  2068. 71CB63E62109B8CC00DC90F9 /* MainHeaderViewColorPanel.m in Sources */,
  2069. 7162A5461C58719D00AB630E /* RATreeView+Enums.m in Sources */,
  2070. 7162A54B1C58719D00AB630E /* RAViewController.m in Sources */,
  2071. 71BBA2411CEAEF0700C91DED /* mztools.c in Sources */,
  2072. 7162A59C1C58733400AB630E /* OrderDetailPriceCell.m in Sources */,
  2073. 3C70C07F2A2DC244008C2400 /* PopWaitAlert.m in Sources */,
  2074. 715850461CF6F0E500856B20 /* DefaultAppearance.m in Sources */,
  2075. 4295AE1C1FE74D46007BE365 /* CommonEditorAutoCompleteView.m in Sources */,
  2076. 7162A5B61C58738600AB630E /* SCShapeView.m in Sources */,
  2077. 71CB70751F99DF02009FDCB7 /* FileCache.m in Sources */,
  2078. 7162A54A1C58719D00AB630E /* RATreeView+UIScrollView.m in Sources */,
  2079. 7162A55D1C58724700AB630E /* ContactListViewController.m in Sources */,
  2080. 3CA210FE2761DC95000FC2F3 /* SRMonthPicker.m in Sources */,
  2081. 3C97F3042EBB4E6D00BD9260 /* SceneDelegateBase.m in Sources */,
  2082. 3CC7E72E23BEDA5000BE5561 /* WebViewController.m in Sources */,
  2083. 7162A5751C58728D00AB630E /* LineView.m in Sources */,
  2084. 712AFEDD1DBA050200254965 /* RAPDFPage.m in Sources */,
  2085. 3CA211072761E9F8000FC2F3 /* DBUtil.m in Sources */,
  2086. 3CA210B42761DAF2000FC2F3 /* RAUtils.m in Sources */,
  2087. 428980481E249339005F1BD8 /* JKMessageBoxController.m in Sources */,
  2088. 7162A5741C58728D00AB630E /* DetailViewController.m in Sources */,
  2089. 7162A52A1C58713200AB630E /* CategoryCellNPD.m in Sources */,
  2090. 71DF748E1C57608F00F2789C /* UILabel+FontAppearance.m in Sources */,
  2091. 78DD35082ED69EC3001E4BCB /* ScanApiStub.m in Sources */,
  2092. 3C6831B52397887800AD5BD7 /* RAYTPlayer.m in Sources */,
  2093. 712C40B61C7310F4000E6831 /* CartGeneralNotesViewController.m in Sources */,
  2094. 712AFEDE1DBA050200254965 /* TableDrawable.m in Sources */,
  2095. 3C3E26B527CDF87000EF6F5C /* UIView+Toast.m in Sources */,
  2096. 7162A5CB1C58761500AB630E /* SignatureViewController.m in Sources */,
  2097. 7162A5DD1C5876E300AB630E /* PopupNavigationController.m in Sources */,
  2098. 3CA210E32761DC2C000FC2F3 /* CommonEditorCellAction.m in Sources */,
  2099. 7162A59E1C58733400AB630E /* OrderListTableViewCell.m in Sources */,
  2100. 714B1F401C7BF74100539193 /* OrderDetailSignatureCell.m in Sources */,
  2101. 4289802E1E2492D2005F1BD8 /* SetCategoryPriceController.m in Sources */,
  2102. 3CA210E62761DC2C000FC2F3 /* CommonEditorCellSignature.m in Sources */,
  2103. 71D01B1A1E0A2055006620CE /* ImageUtils.m in Sources */,
  2104. 7141DD521C57459B00F7DF59 /* qrinput.c in Sources */,
  2105. 7162A5601C58724700AB630E /* CustomerEditViewController.m in Sources */,
  2106. 7162A5DC1C5876E300AB630E /* LoginViewController.m in Sources */,
  2107. 4289805D1E249375005F1BD8 /* UIColor+JK_HEX.m in Sources */,
  2108. 7162A5811C5872EF00AB630E /* HomeTableViewCellBanner.m in Sources */,
  2109. 7162A5E61C58781000AB630E /* iSalesNavigationController.m in Sources */,
  2110. 7141DD631C5747CE00F7DF59 /* NSString+Base64.m in Sources */,
  2111. 71E9F6BC1F8B52DD0052C78E /* NetworkUtils.m in Sources */,
  2112. 7162A5C41C5873BB00AB630E /* ItemSearchViewController.m in Sources */,
  2113. 3CA211022761DC95000FC2F3 /* MonthPickerViewController.m in Sources */,
  2114. 3CA211002761DC95000FC2F3 /* EnumSelectViewController.m in Sources */,
  2115. 3CA210AB2761DA66000FC2F3 /* PhotoPreviewCell.m in Sources */,
  2116. 3CA211012761DC95000FC2F3 /* CommonEditorTableContainerView.m in Sources */,
  2117. 7162A5481C58719D00AB630E /* RATreeView+TableViewDataSource.m in Sources */,
  2118. 3C70C0802A2DC244008C2400 /* MessageBox.m in Sources */,
  2119. 71CB70781F99E338009FDCB7 /* RAConvertor.m in Sources */,
  2120. 7162A5DB1C5876E300AB630E /* CacheViewController.m in Sources */,
  2121. 7162A5C21C5873BB00AB630E /* FilterCellValue.m in Sources */,
  2122. 71DF74971C57614C00F2789C /* PhotoStackView.m in Sources */,
  2123. 7162A50B1C586FC100AB630E /* SliderPage.m in Sources */,
  2124. 712BABF31C897E3A0007466B /* CategorySearchFilterViewController.m in Sources */,
  2125. 3C97F3072EBB501600BD9260 /* SceneDelegate.m in Sources */,
  2126. 3CA210BD2761DB42000FC2F3 /* TouchImageView.m in Sources */,
  2127. 71DF74981C57614C00F2789C /* PhotoStackViewController.m in Sources */,
  2128. 428980151E24924D005F1BD8 /* SortButton.m in Sources */,
  2129. 7162A59A1C58733400AB630E /* OrderDetailInfoCell.m in Sources */,
  2130. 3CA210E92761DC2C000FC2F3 /* CommonEditorCellEdit.m in Sources */,
  2131. 7162A5471C58719D00AB630E /* RATreeView+Private.m in Sources */,
  2132. 428980041E2490C1005F1BD8 /* NotificationNameCenter.m in Sources */,
  2133. 3C70C0812A2DC244008C2400 /* RAPopviewContainer.m in Sources */,
  2134. 3CA210E82761DC2C000FC2F3 /* CommonEditorCellLabel.m in Sources */,
  2135. 4289802C1E2492D2005F1BD8 /* CategoryPriceViewController.m in Sources */,
  2136. 71DF748D1C57608F00F2789C /* TouchLabel.m in Sources */,
  2137. 428980171E24924D005F1BD8 /* SortItemViewController.m in Sources */,
  2138. 3C2F99BB237BE1880000808F /* PortfolioListTableViewCell.m in Sources */,
  2139. 7162A5711C58728D00AB630E /* DetailImageCell.m in Sources */,
  2140. 7162A51A1C58704600AB630E /* ModelItemCell.m in Sources */,
  2141. 3CA210E72761DC2C000FC2F3 /* CommonEditorCellTextView.m in Sources */,
  2142. 7141DD511C57459B00F7DF59 /* qrencode.c in Sources */,
  2143. 7162A5451C58719D00AB630E /* RATreeView.m in Sources */,
  2144. 71DF74841C57608F00F2789C /* ImageScrollerViewController.m in Sources */,
  2145. 3C7E5A91237BDB26006D0105 /* PortfolioListViewController.m in Sources */,
  2146. 71DF74861C57608F00F2789C /* ImageViewController.m in Sources */,
  2147. 3CA211032761DC95000FC2F3 /* EnumSelectorCell.m in Sources */,
  2148. 7162A5821C5872EF00AB630E /* HomeTableViewCellButtonBanner.m in Sources */,
  2149. 3CA210E52761DC2C000FC2F3 /* CommonEditorCellEditor.m in Sources */,
  2150. 713F76B61929F4A7006A7305 /* main.m in Sources */,
  2151. 71BF06FE1D2F3CBA00981938 /* OfflineSettingViewController.m in Sources */,
  2152. 71DF74341C5757DA00F2789C /* ActiveViewController.m in Sources */,
  2153. 3CA210EC2761DC2C000FC2F3 /* CommonEditorCellSwitch.m in Sources */,
  2154. 7162A5431C58719D00AB630E /* RATreeNodeInfo.m in Sources */,
  2155. 71FFBBE91C60894900D91DC2 /* iSalesDB.m in Sources */,
  2156. 7162A55B1C58724700AB630E /* ContactAdvanceSearchViewController.m in Sources */,
  2157. 7162A5441C58719D00AB630E /* RATreeNodeInfo+Private.m in Sources */,
  2158. 7162A5C51C5873BB00AB630E /* SearchViewController.m in Sources */,
  2159. 7162A5191C58704600AB630E /* EditModelPriceViewController.m in Sources */,
  2160. 7162A5721C58728D00AB630E /* DetailKVCell.m in Sources */,
  2161. 7141DD501C57459B00F7DF59 /* QRCodeGenerator.m in Sources */,
  2162. 715671331E10A0EF006324A0 /* RectDrawable.m in Sources */,
  2163. 4289802B1E2492D2005F1BD8 /* CategoryPriceCell.m in Sources */,
  2164. 7162A5DA1C5876E300AB630E /* AboutViewController.m in Sources */,
  2165. 7141DD4E1C57459B00F7DF59 /* bitstream.c in Sources */,
  2166. 3CA210AA2761DA66000FC2F3 /* VideoPreviewCell.m in Sources */,
  2167. 71DF74851C57608F00F2789C /* ImageUploadViewController.m in Sources */,
  2168. 3CC7E72F23BEDA5000BE5561 /* RAPDFViewController.m in Sources */,
  2169. 7162A5CA1C58761500AB630E /* SignatureView.m in Sources */,
  2170. 7162A5181C58704600AB630E /* CartViewController.m in Sources */,
  2171. 42BF67CC1E5179970081F90A /* ERPUtils.m in Sources */,
  2172. 42FD1A031FBD1A3000C5D9A8 /* RAOrderPreviewController.m in Sources */,
  2173. 7141DD3C1C5726B700F7DF59 /* ScanApiHelper.mm in Sources */,
  2174. 7162A5261C58706C00AB630E /* CategoryViewController.m in Sources */,
  2175. 7162A50A1C586FC100AB630E /* NSTimer+Addition.m in Sources */,
  2176. 3CA210E42761DC2C000FC2F3 /* CommonEditorCellEnum.m in Sources */,
  2177. 712AFED91DBA050200254965 /* GroupDrawable.m in Sources */,
  2178. );
  2179. runOnlyForDeploymentPostprocessing = 0;
  2180. };
  2181. /* End PBXSourcesBuildPhase section */
  2182. /* Begin PBXVariantGroup section */
  2183. 713F76B21929F4A7006A7305 /* InfoPlist.strings */ = {
  2184. isa = PBXVariantGroup;
  2185. children = (
  2186. 713F76B31929F4A7006A7305 /* en */,
  2187. );
  2188. name = InfoPlist.strings;
  2189. sourceTree = "<group>";
  2190. };
  2191. 713F76BB1929F4A7006A7305 /* Main.storyboard */ = {
  2192. isa = PBXVariantGroup;
  2193. children = (
  2194. 713F76BC1929F4A7006A7305 /* Base */,
  2195. );
  2196. name = Main.storyboard;
  2197. sourceTree = "<group>";
  2198. };
  2199. 71D46D0F1CE1D9EF00A081AC /* OLM.storyboard */ = {
  2200. isa = PBXVariantGroup;
  2201. children = (
  2202. 71D46D101CE1D9EF00A081AC /* Base */,
  2203. );
  2204. name = OLM.storyboard;
  2205. sourceTree = "<group>";
  2206. };
  2207. /* End PBXVariantGroup section */
  2208. /* Begin XCBuildConfiguration section */
  2209. 713F76D61929F4A7006A7305 /* Debug */ = {
  2210. isa = XCBuildConfiguration;
  2211. buildSettings = {
  2212. ALWAYS_SEARCH_USER_PATHS = NO;
  2213. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  2214. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  2215. CLANG_CXX_LIBRARY = "libc++";
  2216. CLANG_ENABLE_MODULES = YES;
  2217. CLANG_ENABLE_OBJC_ARC = YES;
  2218. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2219. CLANG_WARN_BOOL_CONVERSION = YES;
  2220. CLANG_WARN_COMMA = YES;
  2221. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2222. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2223. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2224. CLANG_WARN_EMPTY_BODY = YES;
  2225. CLANG_WARN_ENUM_CONVERSION = YES;
  2226. CLANG_WARN_INFINITE_RECURSION = YES;
  2227. CLANG_WARN_INT_CONVERSION = YES;
  2228. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2229. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2230. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2231. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2232. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2233. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2234. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2235. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2236. CLANG_WARN_UNREACHABLE_CODE = YES;
  2237. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2238. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2239. COPY_PHASE_STRIP = NO;
  2240. DEVELOPMENT_TEAM = HXWLAA5YN5;
  2241. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2242. ENABLE_TESTABILITY = YES;
  2243. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  2244. GCC_C_LANGUAGE_STANDARD = gnu99;
  2245. GCC_DYNAMIC_NO_PIC = NO;
  2246. GCC_NO_COMMON_BLOCKS = YES;
  2247. GCC_OPTIMIZATION_LEVEL = 0;
  2248. GCC_PREPROCESSOR_DEFINITIONS = (
  2249. "DEBUG=1",
  2250. "$(inherited)",
  2251. );
  2252. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  2253. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2254. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2255. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2256. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2257. GCC_WARN_UNUSED_FUNCTION = YES;
  2258. GCC_WARN_UNUSED_VARIABLE = YES;
  2259. HEADER_SEARCH_PATHS = (
  2260. "$(PROJECT_DIR)/ScanApiSDK-10.2.227-2/include",
  2261. "$(PROJECT_DIR)/common/qrcode",
  2262. "$(PROJECT_DIR)/common/CommonEditor",
  2263. );
  2264. IPHONEOS_DEPLOYMENT_TARGET = 12.0;
  2265. LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/ScanApiSDK-10.2.227-2/lib";
  2266. ONLY_ACTIVE_ARCH = YES;
  2267. SDKROOT = iphoneos;
  2268. STRING_CATALOG_GENERATE_SYMBOLS = YES;
  2269. TARGETED_DEVICE_FAMILY = 2;
  2270. };
  2271. name = Debug;
  2272. };
  2273. 713F76D71929F4A7006A7305 /* Release */ = {
  2274. isa = XCBuildConfiguration;
  2275. buildSettings = {
  2276. ALWAYS_SEARCH_USER_PATHS = NO;
  2277. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  2278. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  2279. CLANG_CXX_LIBRARY = "libc++";
  2280. CLANG_ENABLE_MODULES = YES;
  2281. CLANG_ENABLE_OBJC_ARC = YES;
  2282. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2283. CLANG_WARN_BOOL_CONVERSION = YES;
  2284. CLANG_WARN_COMMA = YES;
  2285. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2286. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2287. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2288. CLANG_WARN_EMPTY_BODY = YES;
  2289. CLANG_WARN_ENUM_CONVERSION = YES;
  2290. CLANG_WARN_INFINITE_RECURSION = YES;
  2291. CLANG_WARN_INT_CONVERSION = YES;
  2292. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2293. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2294. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2295. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2296. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2297. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2298. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2299. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2300. CLANG_WARN_UNREACHABLE_CODE = YES;
  2301. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2302. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2303. COPY_PHASE_STRIP = YES;
  2304. DEVELOPMENT_TEAM = HXWLAA5YN5;
  2305. ENABLE_NS_ASSERTIONS = NO;
  2306. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2307. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  2308. GCC_C_LANGUAGE_STANDARD = gnu99;
  2309. GCC_NO_COMMON_BLOCKS = YES;
  2310. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2311. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2312. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2313. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2314. GCC_WARN_UNUSED_FUNCTION = YES;
  2315. GCC_WARN_UNUSED_VARIABLE = YES;
  2316. HEADER_SEARCH_PATHS = (
  2317. "$(PROJECT_DIR)/ScanApiSDK-10.2.227-2/include",
  2318. "$(PROJECT_DIR)/common/qrcode",
  2319. "$(PROJECT_DIR)/common/CommonEditor",
  2320. );
  2321. IPHONEOS_DEPLOYMENT_TARGET = 12.0;
  2322. LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/ScanApiSDK-10.2.227-2/lib";
  2323. SDKROOT = iphoneos;
  2324. STRING_CATALOG_GENERATE_SYMBOLS = YES;
  2325. TARGETED_DEVICE_FAMILY = 2;
  2326. VALIDATE_PRODUCT = YES;
  2327. };
  2328. name = Release;
  2329. };
  2330. 713F76D91929F4A7006A7305 /* Debug */ = {
  2331. isa = XCBuildConfiguration;
  2332. buildSettings = {
  2333. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2334. CODE_SIGN_IDENTITY = "iPhone Developer";
  2335. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2336. CURRENT_PROJECT_VERSION = 2558040;
  2337. EXCLUDED_ARCHS = "";
  2338. FRAMEWORK_SEARCH_PATHS = (
  2339. "$(inherited)",
  2340. "$(PROJECT_DIR)/GoogleAnalytics/FirebaseAnalytics/Frameworks",
  2341. "$(PROJECT_DIR)/GoogleAnalytics/FirebaseCore/Frameworks",
  2342. "$(PROJECT_DIR)/GoogleAnalytics/FirebaseInstanceID/Frameworks",
  2343. "$(PROJECT_DIR)/GoogleAnalytics/Google/Frameworks",
  2344. );
  2345. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  2346. GCC_PREFIX_HEADER = "iSales-NPD/iSales-NPD-Prefix.pch";
  2347. INFOPLIST_FILE = "$(SRCROOT)/iSales-NPD/iSales-NPD-Info.plist";
  2348. IPHONEOS_DEPLOYMENT_TARGET = 13.0;
  2349. LIBRARY_SEARCH_PATHS = (
  2350. "$(PROJECT_DIR)/ScanApiSDK-10.2.227-2/lib",
  2351. "$(PROJECT_DIR)/GoogleAnalytics/GoogleAnalytics/Libraries",
  2352. );
  2353. MARKETING_VERSION = 2.08;
  2354. OTHER_LDFLAGS = (
  2355. "$(inherited)",
  2356. "-ObjC",
  2357. "-framework",
  2358. "\"CoreGraphics\"",
  2359. "-framework",
  2360. "\"MobileCoreServices\"",
  2361. "-framework",
  2362. "\"Security\"",
  2363. "-framework",
  2364. "\"SystemConfiguration\"",
  2365. "-v",
  2366. );
  2367. "OTHER_LDFLAGS[sdk=iphoneos*]" = (
  2368. "$(inherited)",
  2369. "-ObjC",
  2370. "-framework",
  2371. "\"CoreGraphics\"",
  2372. "-framework",
  2373. "\"MobileCoreServices\"",
  2374. "-framework",
  2375. "\"Security\"",
  2376. "-framework",
  2377. "\"SystemConfiguration\"",
  2378. "-v",
  2379. "-lScanApiCore",
  2380. );
  2381. PRODUCT_BUNDLE_IDENTIFIER = "usai.apex.iSales-NPD";
  2382. PRODUCT_NAME = "NPD Mobile";
  2383. PROVISIONING_PROFILE = "";
  2384. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
  2385. SUPPORTS_MACCATALYST = NO;
  2386. SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
  2387. SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
  2388. TARGETED_DEVICE_FAMILY = 2;
  2389. WRAPPER_EXTENSION = app;
  2390. };
  2391. name = Debug;
  2392. };
  2393. 713F76DA1929F4A7006A7305 /* Release */ = {
  2394. isa = XCBuildConfiguration;
  2395. buildSettings = {
  2396. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2397. CODE_SIGN_IDENTITY = "iPhone Developer";
  2398. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2399. CURRENT_PROJECT_VERSION = 2558040;
  2400. EXCLUDED_ARCHS = "";
  2401. FRAMEWORK_SEARCH_PATHS = (
  2402. "$(inherited)",
  2403. "$(PROJECT_DIR)/GoogleAnalytics/FirebaseAnalytics/Frameworks",
  2404. "$(PROJECT_DIR)/GoogleAnalytics/FirebaseCore/Frameworks",
  2405. "$(PROJECT_DIR)/GoogleAnalytics/FirebaseInstanceID/Frameworks",
  2406. "$(PROJECT_DIR)/GoogleAnalytics/Google/Frameworks",
  2407. );
  2408. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  2409. GCC_PREFIX_HEADER = "iSales-NPD/iSales-NPD-Prefix.pch";
  2410. INFOPLIST_FILE = "$(SRCROOT)/iSales-NPD/iSales-NPD-Info.plist";
  2411. IPHONEOS_DEPLOYMENT_TARGET = 13.0;
  2412. LIBRARY_SEARCH_PATHS = (
  2413. "$(PROJECT_DIR)/ScanApiSDK-10.2.227-2/lib",
  2414. "$(PROJECT_DIR)/GoogleAnalytics/GoogleAnalytics/Libraries",
  2415. );
  2416. MARKETING_VERSION = 2.08;
  2417. OTHER_LDFLAGS = (
  2418. "$(inherited)",
  2419. "-ObjC",
  2420. "-framework",
  2421. "\"CoreGraphics\"",
  2422. "-framework",
  2423. "\"MobileCoreServices\"",
  2424. "-framework",
  2425. "\"Security\"",
  2426. "-framework",
  2427. "\"SystemConfiguration\"",
  2428. "-v",
  2429. );
  2430. "OTHER_LDFLAGS[sdk=iphoneos*]" = (
  2431. "$(inherited)",
  2432. "-ObjC",
  2433. "-framework",
  2434. "\"CoreGraphics\"",
  2435. "-framework",
  2436. "\"MobileCoreServices\"",
  2437. "-framework",
  2438. "\"Security\"",
  2439. "-framework",
  2440. "\"SystemConfiguration\"",
  2441. "-v",
  2442. "-lScanApiCore",
  2443. );
  2444. PRODUCT_BUNDLE_IDENTIFIER = "usai.apex.iSales-NPD";
  2445. PRODUCT_NAME = "NPD Mobile";
  2446. PROVISIONING_PROFILE = "";
  2447. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
  2448. SUPPORTS_MACCATALYST = NO;
  2449. SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
  2450. SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
  2451. TARGETED_DEVICE_FAMILY = 2;
  2452. WRAPPER_EXTENSION = app;
  2453. };
  2454. name = Release;
  2455. };
  2456. /* End XCBuildConfiguration section */
  2457. /* Begin XCConfigurationList section */
  2458. 713F76A11929F4A7006A7305 /* Build configuration list for PBXProject "iSales-NPD" */ = {
  2459. isa = XCConfigurationList;
  2460. buildConfigurations = (
  2461. 713F76D61929F4A7006A7305 /* Debug */,
  2462. 713F76D71929F4A7006A7305 /* Release */,
  2463. );
  2464. defaultConfigurationIsVisible = 0;
  2465. defaultConfigurationName = Release;
  2466. };
  2467. 713F76D81929F4A7006A7305 /* Build configuration list for PBXNativeTarget "iSales-NPD" */ = {
  2468. isa = XCConfigurationList;
  2469. buildConfigurations = (
  2470. 713F76D91929F4A7006A7305 /* Debug */,
  2471. 713F76DA1929F4A7006A7305 /* Release */,
  2472. );
  2473. defaultConfigurationIsVisible = 0;
  2474. defaultConfigurationName = Release;
  2475. };
  2476. /* End XCConfigurationList section */
  2477. };
  2478. rootObject = 713F769E1929F4A7006A7305 /* Project object */;
  2479. }