Main.storyboard 194 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="19529" targetRuntime="iOS.CocoaTouch.iPad" propertyAccessControl="none" useAutolayout="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="jsC-F8-zYF">
  3. <device id="ipad9_7" orientation="portrait" layout="fullscreen" appearance="light"/>
  4. <dependencies>
  5. <deployment version="4352" identifier="iOS"/>
  6. <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="19519"/>
  7. <capability name="Safe area layout guides" minToolsVersion="9.0"/>
  8. <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
  9. </dependencies>
  10. <scenes>
  11. <!--Main View Controller-->
  12. <scene sceneID="tne-QT-ifu">
  13. <objects>
  14. <viewController storyboardIdentifier="MainViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="BYZ-38-t0r" customClass="MainViewController" sceneMemberID="viewController">
  15. <view key="view" contentMode="scaleToFill" id="8bC-Xf-vdC">
  16. <rect key="frame" x="0.0" y="0.0" width="768" height="1024"/>
  17. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  18. <subviews>
  19. <containerView contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Knj-5z-t35">
  20. <rect key="frame" x="0.0" y="100" width="768" height="924"/>
  21. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  22. </containerView>
  23. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="NhN-BH-vsu" userLabel="headerView">
  24. <rect key="frame" x="0.0" y="0.0" width="768" height="100"/>
  25. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
  26. <subviews>
  27. <view clipsSubviews="YES" contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="hTL-PV-pUp" customClass="MainHeaderViewColorPanel">
  28. <rect key="frame" x="160" y="20" width="467" height="72"/>
  29. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  30. <subviews>
  31. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="xhl-jK-vdP" userLabel="category button">
  32. <rect key="frame" x="0.0" y="0.0" width="72" height="72"/>
  33. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  34. <state key="normal" image="category"/>
  35. <connections>
  36. <action selector="showCategoryMenu:" destination="BYZ-38-t0r" eventType="touchUpInside" id="lqZ-JH-nyi"/>
  37. </connections>
  38. </button>
  39. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="qK2-gY-nOG" userLabel="cart button">
  40. <rect key="frame" x="79" y="0.0" width="72" height="72"/>
  41. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  42. <state key="normal" image="cart_empty"/>
  43. <connections>
  44. <action selector="switchToCart:" destination="BYZ-38-t0r" eventType="touchUpInside" id="MmJ-aK-UGJ"/>
  45. </connections>
  46. </button>
  47. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="9" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="1R3-At-QFU">
  48. <rect key="frame" x="95" y="0.0" width="21" height="21"/>
  49. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  50. <color key="backgroundColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  51. <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
  52. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  53. <nil key="highlightedColor"/>
  54. <userDefinedRuntimeAttributes>
  55. <userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
  56. <integer key="value" value="5"/>
  57. </userDefinedRuntimeAttribute>
  58. </userDefinedRuntimeAttributes>
  59. </label>
  60. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="wordWrap" translatesAutoresizingMaskIntoConstraints="NO" id="04b-vI-vkz" userLabel="order button">
  61. <rect key="frame" x="158" y="0.0" width="72" height="72"/>
  62. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  63. <state key="normal" image="order"/>
  64. <connections>
  65. <action selector="switchToOrder:" destination="BYZ-38-t0r" eventType="touchUpInside" id="GdL-E5-zaV"/>
  66. </connections>
  67. </button>
  68. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Nz4-iJ-NSG" userLabel="search button">
  69. <rect key="frame" x="230" y="0.0" width="72" height="72"/>
  70. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  71. <state key="normal" image="search"/>
  72. <connections>
  73. <action selector="switchToSearch:" destination="BYZ-38-t0r" eventType="touchUpInside" id="RSU-nZ-6zb"/>
  74. </connections>
  75. </button>
  76. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="7N7-Ov-11Q" userLabel="contact button">
  77. <rect key="frame" x="309" y="0.0" width="72" height="72"/>
  78. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  79. <state key="normal" image="contact"/>
  80. <connections>
  81. <action selector="switchToContact:" destination="BYZ-38-t0r" eventType="touchUpInside" id="g9f-ON-eJd"/>
  82. </connections>
  83. </button>
  84. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="e9G-wT-bVC" userLabel="wishlist button">
  85. <rect key="frame" x="388" y="0.0" width="72" height="72"/>
  86. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  87. <state key="normal" image="wishlist"/>
  88. <connections>
  89. <action selector="switchToWishlist:" destination="BYZ-38-t0r" eventType="touchUpInside" id="gdE-vI-w3i"/>
  90. </connections>
  91. </button>
  92. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="9" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="e64-zo-Edm">
  93. <rect key="frame" x="408" y="0.0" width="21" height="21"/>
  94. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  95. <color key="backgroundColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  96. <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
  97. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  98. <nil key="highlightedColor"/>
  99. <userDefinedRuntimeAttributes>
  100. <userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
  101. <integer key="value" value="5"/>
  102. </userDefinedRuntimeAttribute>
  103. </userDefinedRuntimeAttributes>
  104. </label>
  105. <button hidden="YES" opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="nIa-ra-HBo" userLabel="scan button">
  106. <rect key="frame" x="467" y="0.0" width="72" height="72"/>
  107. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  108. <state key="normal" image="scan"/>
  109. <connections>
  110. <action selector="onScanClick:" destination="BYZ-38-t0r" eventType="touchUpInside" id="Pgk-0c-nqg"/>
  111. </connections>
  112. </button>
  113. </subviews>
  114. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  115. </view>
  116. <view hidden="YES" clipsSubviews="YES" contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Udz-7n-3ZO" customClass="MainHeaderViewColorPanel">
  117. <rect key="frame" x="160" y="20" width="467" height="72"/>
  118. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  119. <subviews>
  120. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="dB4-yd-OKw" userLabel="category button">
  121. <rect key="frame" x="0.0" y="0.0" width="72" height="72"/>
  122. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  123. <state key="normal" image="category"/>
  124. <connections>
  125. <action selector="showCategoryMenu:" destination="BYZ-38-t0r" eventType="touchUpInside" id="GxO-wH-K20"/>
  126. </connections>
  127. </button>
  128. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="6Xo-MD-4L0" userLabel="cart button">
  129. <rect key="frame" x="79" y="0.0" width="72" height="72"/>
  130. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  131. <state key="normal" image="cart_empty"/>
  132. <connections>
  133. <action selector="switchToCart:" destination="BYZ-38-t0r" eventType="touchUpInside" id="4pZ-iU-9mA"/>
  134. </connections>
  135. </button>
  136. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="9" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="x7d-bu-zNO">
  137. <rect key="frame" x="95" y="0.0" width="21" height="21"/>
  138. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  139. <color key="backgroundColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  140. <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
  141. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  142. <nil key="highlightedColor"/>
  143. <userDefinedRuntimeAttributes>
  144. <userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
  145. <integer key="value" value="5"/>
  146. </userDefinedRuntimeAttribute>
  147. </userDefinedRuntimeAttributes>
  148. </label>
  149. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="wordWrap" translatesAutoresizingMaskIntoConstraints="NO" id="GTI-Wn-UP4" userLabel="order button">
  150. <rect key="frame" x="158" y="0.0" width="72" height="72"/>
  151. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  152. <state key="normal" image="order"/>
  153. <connections>
  154. <action selector="switchToOrder:" destination="BYZ-38-t0r" eventType="touchUpInside" id="qMf-pm-hYx"/>
  155. </connections>
  156. </button>
  157. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="taE-ut-WBx" userLabel="search button">
  158. <rect key="frame" x="230" y="0.0" width="72" height="72"/>
  159. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  160. <state key="normal" image="search"/>
  161. <connections>
  162. <action selector="switchToSearch:" destination="BYZ-38-t0r" eventType="touchUpInside" id="Z5m-Tu-eRu"/>
  163. </connections>
  164. </button>
  165. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="hkn-sR-Oh1" userLabel="wishlist button">
  166. <rect key="frame" x="309" y="0.0" width="72" height="72"/>
  167. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  168. <state key="normal" image="wishlist"/>
  169. <connections>
  170. <action selector="switchToWishlist:" destination="BYZ-38-t0r" eventType="touchUpInside" id="bbq-OL-tIH"/>
  171. </connections>
  172. </button>
  173. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="9" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ULj-92-aZY">
  174. <rect key="frame" x="329" y="0.0" width="21" height="21"/>
  175. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  176. <color key="backgroundColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  177. <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
  178. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  179. <nil key="highlightedColor"/>
  180. <userDefinedRuntimeAttributes>
  181. <userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
  182. <integer key="value" value="5"/>
  183. </userDefinedRuntimeAttribute>
  184. </userDefinedRuntimeAttributes>
  185. </label>
  186. <button hidden="YES" opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="0dP-o2-4Xj" userLabel="scan button">
  187. <rect key="frame" x="388" y="0.0" width="72" height="72"/>
  188. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  189. <state key="normal" image="scan"/>
  190. <connections>
  191. <action selector="onScanClick:" destination="BYZ-38-t0r" eventType="touchUpInside" id="AYO-6T-huA"/>
  192. </connections>
  193. </button>
  194. </subviews>
  195. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  196. </view>
  197. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="W7z-q5-hQg" userLabel="npd_logo">
  198. <rect key="frame" x="49" y="21" width="69" height="50"/>
  199. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  200. <state key="normal" image="npd_logo">
  201. <color key="titleColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  202. </state>
  203. <connections>
  204. <action selector="switchToHome:" destination="BYZ-38-t0r" eventType="touchUpInside" id="7U3-RK-7hh"/>
  205. </connections>
  206. </button>
  207. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="A6K-Xr-CN6" userLabel="so#">
  208. <rect key="frame" x="5" y="75" width="158" height="21"/>
  209. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  210. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  211. <color key="textColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  212. <nil key="highlightedColor"/>
  213. </label>
  214. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="0eT-W5-bga" userLabel="sign_in">
  215. <rect key="frame" x="628" y="20" width="140" height="30"/>
  216. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  217. <state key="normal" title="Sign in">
  218. <color key="titleColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  219. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  220. </state>
  221. <connections>
  222. <action selector="onUserButtonClick:" destination="BYZ-38-t0r" eventType="touchUpInside" id="AFH-Ci-hyg"/>
  223. </connections>
  224. </button>
  225. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="" textAlignment="center" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="zoc-d5-pNq" userLabel="mode">
  226. <rect key="frame" x="126" y="30" width="32" height="30"/>
  227. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  228. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  229. <nil key="highlightedColor"/>
  230. </label>
  231. <button hidden="YES" opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="top" buttonType="system" lineBreakMode="wordWrap" translatesAutoresizingMaskIntoConstraints="NO" id="A7D-bo-1PR" userLabel="contact">
  232. <rect key="frame" x="628" y="50" width="140" height="50"/>
  233. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  234. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  235. <state key="normal">
  236. <color key="titleColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  237. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  238. </state>
  239. <connections>
  240. <action selector="onContactClick:" destination="BYZ-38-t0r" eventType="touchUpInside" id="vfj-Y2-dIU"/>
  241. <action selector="onUserButtonClick:" destination="BYZ-38-t0r" eventType="touchUpInside" id="r9q-nF-Lk6"/>
  242. </connections>
  243. </button>
  244. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="bQ2-5t-t5t" customClass="MainHeaderViewColorPanel">
  245. <rect key="frame" x="0.0" y="20" width="48" height="48"/>
  246. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  247. <subviews>
  248. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Kx0-AQ-Y5o" userLabel="MenuButton">
  249. <rect key="frame" x="0.0" y="0.0" width="48" height="48"/>
  250. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  251. <state key="normal" image="menu_open"/>
  252. <connections>
  253. <action selector="onmenuButtonClicked:" destination="BYZ-38-t0r" eventType="touchUpInside" id="8Jk-HI-USO"/>
  254. </connections>
  255. </button>
  256. </subviews>
  257. <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  258. </view>
  259. </subviews>
  260. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  261. </view>
  262. <imageView userInteractionEnabled="NO" alpha="0.0" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="tzq-zw-ENK">
  263. <rect key="frame" x="0.0" y="0.0" width="768" height="1024"/>
  264. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  265. </imageView>
  266. <button hidden="YES" opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="DGA-Jz-ciO">
  267. <rect key="frame" x="0.0" y="0.0" width="768" height="1024"/>
  268. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  269. <state key="normal">
  270. <color key="titleColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  271. </state>
  272. <connections>
  273. <action selector="onhideMenuClick:" destination="BYZ-38-t0r" eventType="touchUpInside" id="Hn2-OW-gDn"/>
  274. </connections>
  275. </button>
  276. <view hidden="YES" contentMode="scaleToFill" fixedFrame="YES" restorationIdentifier="menuView" translatesAutoresizingMaskIntoConstraints="NO" id="Qz1-qV-4fT" userLabel="sidemenuView">
  277. <rect key="frame" x="-300" y="0.0" width="364" height="1024"/>
  278. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" heightSizable="YES"/>
  279. <subviews>
  280. <view alpha="0.80000000000000004" contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="dR0-Te-FbY" userLabel="backgroundView">
  281. <rect key="frame" x="0.0" y="0.0" width="290" height="1024"/>
  282. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" heightSizable="YES"/>
  283. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  284. </view>
  285. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Wtv-1e-MtM" userLabel="rightsideColorbar">
  286. <rect key="frame" x="290" y="0.0" width="10" height="1024"/>
  287. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" heightSizable="YES"/>
  288. <color key="backgroundColor" red="0.79277843236923218" green="0.79277843236923218" blue="0.79277843236923218" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  289. </view>
  290. <tableView clipsSubviews="YES" contentMode="scaleToFill" fixedFrame="YES" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" translatesAutoresizingMaskIntoConstraints="NO" id="h0d-S7-vmO">
  291. <rect key="frame" x="0.0" y="150" width="290" height="800"/>
  292. <autoresizingMask key="autoresizingMask" heightSizable="YES" flexibleMaxY="YES"/>
  293. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  294. <color key="separatorColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  295. <color key="sectionIndexBackgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  296. <color key="sectionIndexTrackingBackgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  297. <prototypes>
  298. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SideMenuItem" textLabel="pki-xD-OOT" detailTextLabel="a18-fA-KeX" style="IBUITableViewCellStyleValue1" id="3MW-qC-tOm">
  299. <rect key="frame" x="0.0" y="49.5" width="290" height="44"/>
  300. <autoresizingMask key="autoresizingMask"/>
  301. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="3MW-qC-tOm" id="1li-xE-7Vx">
  302. <rect key="frame" x="0.0" y="0.0" width="290" height="44"/>
  303. <autoresizingMask key="autoresizingMask"/>
  304. <subviews>
  305. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="Title" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="pki-xD-OOT">
  306. <rect key="frame" x="16" y="13" width="31.5" height="19.5"/>
  307. <autoresizingMask key="autoresizingMask"/>
  308. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  309. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  310. <nil key="highlightedColor"/>
  311. </label>
  312. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="a18-fA-KeX">
  313. <rect key="frame" x="232" y="13" width="42" height="19.5"/>
  314. <autoresizingMask key="autoresizingMask"/>
  315. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  316. <color key="textColor" red="0.55686274509803924" green="0.55686274509803924" blue="0.57647058823529407" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  317. <nil key="highlightedColor"/>
  318. </label>
  319. </subviews>
  320. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  321. </tableViewCellContentView>
  322. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  323. </tableViewCell>
  324. </prototypes>
  325. <connections>
  326. <outlet property="dataSource" destination="BYZ-38-t0r" id="Vs3-Mt-c0H"/>
  327. <outlet property="delegate" destination="BYZ-38-t0r" id="PzD-54-dP2"/>
  328. </connections>
  329. </tableView>
  330. <imageView hidden="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" image="profle" translatesAutoresizingMaskIntoConstraints="NO" id="1d7-Ma-AAj">
  331. <rect key="frame" x="86" y="20" width="128" height="128"/>
  332. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  333. </imageView>
  334. <label hidden="YES" opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="YYM-6v-Qnk" userLabel="Label username">
  335. <rect key="frame" x="50" y="100" width="200" height="21"/>
  336. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  337. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  338. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  339. <nil key="highlightedColor"/>
  340. </label>
  341. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Rki-F9-VV1">
  342. <rect key="frame" x="50" y="100" width="200" height="30"/>
  343. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  344. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  345. <connections>
  346. <action selector="onUserListClick:" destination="BYZ-38-t0r" eventType="touchUpInside" id="UId-03-oQL"/>
  347. </connections>
  348. </button>
  349. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="M7a-qh-Dgr">
  350. <rect key="frame" x="110" y="130" width="80" height="30"/>
  351. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  352. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  353. <state key="normal" title="Sign in">
  354. <color key="titleColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  355. </state>
  356. <connections>
  357. <action selector="OnLoginClick:" destination="BYZ-38-t0r" eventType="touchUpInside" id="wAx-ab-MTQ"/>
  358. </connections>
  359. </button>
  360. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="KeC-8h-nz6" customClass="MainHeaderViewColorPanel">
  361. <rect key="frame" x="300" y="20" width="36" height="36"/>
  362. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  363. <subviews>
  364. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="z6K-Ge-vfg" userLabel="MenuButton">
  365. <rect key="frame" x="0.0" y="0.0" width="36" height="36"/>
  366. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  367. <color key="backgroundColor" red="0.79277843236923218" green="0.79277843236923218" blue="0.79277843236923218" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  368. <state key="normal" image="menu_open"/>
  369. <connections>
  370. <action selector="switchMenu:" destination="BYZ-38-t0r" eventType="touchUpInside" id="Xb6-0d-MOX"/>
  371. </connections>
  372. </button>
  373. </subviews>
  374. <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  375. </view>
  376. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="Ver:1.0" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="MTI-0q-XWj" userLabel="ver">
  377. <rect key="frame" x="25" y="980" width="250" height="21"/>
  378. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  379. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  380. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  381. <nil key="highlightedColor"/>
  382. </label>
  383. </subviews>
  384. </view>
  385. </subviews>
  386. <viewLayoutGuide key="safeArea" id="bGI-U1-84v"/>
  387. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  388. </view>
  389. <navigationItem key="navigationItem" id="fTz-mt-KEq"/>
  390. <simulatedStatusBarMetrics key="simulatedStatusBarMetrics" statusBarStyle="lightContent"/>
  391. <connections>
  392. <outlet property="backgroundButton" destination="DGA-Jz-ciO" id="8gB-vF-uFJ"/>
  393. <outlet property="blurView" destination="tzq-zw-ENK" id="035-vB-pet"/>
  394. <outlet property="btnContact" destination="A7D-bo-1PR" id="Ysj-gK-LSa"/>
  395. <outlet property="btnLogin" destination="M7a-qh-Dgr" id="0do-TO-1FM"/>
  396. <outlet property="btn_LogoHome" destination="W7z-q5-hQg" id="lr2-rw-0yi"/>
  397. <outlet property="btn_sideMenu_UserName" destination="Rki-F9-VV1" id="U1D-pK-gzg"/>
  398. <outlet property="buttonUser" destination="0eT-W5-bga" id="F4r-LC-G5r"/>
  399. <outlet property="container" destination="Knj-5z-t35" id="xY9-0x-HET"/>
  400. <outlet property="customer_bp" destination="Udz-7n-3ZO" id="2Qw-rc-L5I"/>
  401. <outlet property="employee_bp" destination="hTL-PV-pUp" id="WrQ-II-a4s"/>
  402. <outlet property="headerView" destination="NhN-BH-vsu" id="ueD-EJ-r33"/>
  403. <outlet property="labelMode" destination="zoc-d5-pNq" id="7Cb-3e-Hxa"/>
  404. <outlet property="labelSo" destination="A6K-Xr-CN6" id="5WI-2k-wyU"/>
  405. <outlet property="labelVer" destination="MTI-0q-XWj" id="aGz-th-8qe"/>
  406. <outlet property="label_cccount" destination="x7d-bu-zNO" id="1xD-49-btv"/>
  407. <outlet property="label_ccount" destination="1R3-At-QFU" id="lGc-YZ-9hq"/>
  408. <outlet property="label_cwcount" destination="ULj-92-aZY" id="XgQ-US-DBM"/>
  409. <outlet property="label_wcount" destination="e64-zo-Edm" id="xQh-lL-loa"/>
  410. <outlet property="menuButton" destination="z6K-Ge-vfg" id="9iM-Kq-gAy"/>
  411. <outlet property="openMenuButton" destination="Kx0-AQ-Y5o" id="bai-7G-ELP"/>
  412. <outlet property="sideMenu" destination="Qz1-qV-4fT" id="IoN-rl-Zdl"/>
  413. <outlet property="sideMenuTable" destination="h0d-S7-vmO" id="fnv-zj-M67"/>
  414. <outlet property="sideMenu_UserName" destination="YYM-6v-Qnk" id="izC-hM-IsH"/>
  415. <outlet property="user_head" destination="1d7-Ma-AAj" id="IEA-a5-je3"/>
  416. </connections>
  417. </viewController>
  418. <placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder"/>
  419. </objects>
  420. <point key="canvasLocation" x="992.1875" y="-129.4921875"/>
  421. </scene>
  422. <!--Watch List View Controller-->
  423. <scene sceneID="D3N-vL-MY1">
  424. <objects>
  425. <viewController storyboardIdentifier="WatchListViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="dSV-Dg-id4" customClass="WatchListViewController" sceneMemberID="viewController">
  426. <view key="view" opaque="NO" clipsSubviews="YES" contentMode="center" id="l8z-x6-eMf">
  427. <rect key="frame" x="0.0" y="0.0" width="768" height="1024"/>
  428. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  429. <subviews>
  430. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="120" sectionHeaderHeight="22" sectionFooterHeight="22" translatesAutoresizingMaskIntoConstraints="NO" id="Bod-ih-aFz">
  431. <rect key="frame" x="0.0" y="20" width="768" height="960"/>
  432. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  433. <prototypes>
  434. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="WatchListItemCell" rowHeight="120" id="Hjj-gq-Qs5" customClass="ModelItemCell">
  435. <rect key="frame" x="0.0" y="44.5" width="768" height="120"/>
  436. <autoresizingMask key="autoresizingMask"/>
  437. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Hjj-gq-Qs5" id="bKF-1X-6DE">
  438. <rect key="frame" x="0.0" y="0.0" width="768" height="120"/>
  439. <autoresizingMask key="autoresizingMask"/>
  440. <subviews>
  441. <label hidden="YES" opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="1234567890.00" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="MZM-06-tL3" userLabel="item price">
  442. <rect key="frame" x="554" y="49.5" width="160" height="21"/>
  443. <constraints>
  444. <constraint firstAttribute="width" constant="160" id="Fhy-Ln-lVa"/>
  445. <constraint firstAttribute="height" constant="21" id="ckn-TY-IX1"/>
  446. </constraints>
  447. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  448. <nil key="highlightedColor"/>
  449. </label>
  450. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="2nP-ZX-zLk" userLabel="img">
  451. <rect key="frame" x="15" y="10" width="100" height="100"/>
  452. <constraints>
  453. <constraint firstAttribute="height" constant="100" id="Mzw-yA-vpq"/>
  454. <constraint firstAttribute="width" constant="100" id="wXJ-DF-1gr"/>
  455. </constraints>
  456. <state key="normal">
  457. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  458. </state>
  459. <connections>
  460. <action selector="imgbtnClicked:" destination="dSV-Dg-id4" eventType="touchUpInside" id="pFx-3Y-Zm7"/>
  461. </connections>
  462. </button>
  463. <label hidden="YES" opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Portfolio price ($)" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="vzl-HZ-1my">
  464. <rect key="frame" x="554" y="20.5" width="160" height="21"/>
  465. <constraints>
  466. <constraint firstAttribute="height" constant="21" id="Bce-vf-6p9"/>
  467. <constraint firstAttribute="width" constant="160" id="GkL-38-phk"/>
  468. </constraints>
  469. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  470. <nil key="highlightedColor"/>
  471. </label>
  472. <imageView hidden="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="check_1_24" translatesAutoresizingMaskIntoConstraints="NO" id="pUy-h6-w0Y">
  473. <rect key="frame" x="729" y="48" width="24" height="24"/>
  474. <constraints>
  475. <constraint firstAttribute="width" constant="24" id="Mhk-Yc-rbi"/>
  476. <constraint firstAttribute="height" constant="24" id="WHk-5U-u9V"/>
  477. </constraints>
  478. </imageView>
  479. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="QTY:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="lbZ-RY-0aG">
  480. <rect key="frame" x="554" y="49.5" width="160" height="21"/>
  481. <constraints>
  482. <constraint firstAttribute="height" constant="21" id="S81-Ar-Fk2"/>
  483. <constraint firstAttribute="width" constant="160" id="Su9-Od-CTZ"/>
  484. </constraints>
  485. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  486. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  487. <nil key="highlightedColor"/>
  488. </label>
  489. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="name aaaaaaaaaaaaa aaaaaaaaaa BBBBB CCCCC" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="H2E-H1-CLA" userLabel="description">
  490. <rect key="frame" x="130" y="10" width="409" height="100"/>
  491. <fontDescription key="fontDescription" name="HelveticaNeue" family="Helvetica Neue" pointSize="22"/>
  492. <nil key="highlightedColor"/>
  493. </label>
  494. </subviews>
  495. <constraints>
  496. <constraint firstItem="MZM-06-tL3" firstAttribute="top" secondItem="vzl-HZ-1my" secondAttribute="bottom" constant="8" id="0mV-Rw-E7y"/>
  497. <constraint firstItem="MZM-06-tL3" firstAttribute="centerY" secondItem="bKF-1X-6DE" secondAttribute="centerY" id="2M6-cA-Jsx"/>
  498. <constraint firstItem="pUy-h6-w0Y" firstAttribute="leading" secondItem="MZM-06-tL3" secondAttribute="trailing" constant="15" id="4rL-1T-YvJ"/>
  499. <constraint firstItem="2nP-ZX-zLk" firstAttribute="centerY" secondItem="bKF-1X-6DE" secondAttribute="centerY" id="6p1-c7-Q3T"/>
  500. <constraint firstItem="H2E-H1-CLA" firstAttribute="leading" secondItem="2nP-ZX-zLk" secondAttribute="trailing" constant="15" id="8lH-Kf-uTJ"/>
  501. <constraint firstItem="H2E-H1-CLA" firstAttribute="top" secondItem="2nP-ZX-zLk" secondAttribute="top" id="DJf-MX-ygN"/>
  502. <constraint firstItem="pUy-h6-w0Y" firstAttribute="leading" secondItem="lbZ-RY-0aG" secondAttribute="trailing" constant="15" id="JKX-6K-4UQ"/>
  503. <constraint firstAttribute="trailing" secondItem="pUy-h6-w0Y" secondAttribute="trailing" constant="15" id="OU7-Gg-aU9"/>
  504. <constraint firstItem="vzl-HZ-1my" firstAttribute="trailing" secondItem="lbZ-RY-0aG" secondAttribute="trailing" id="Yu3-Wb-hGl"/>
  505. <constraint firstItem="MZM-06-tL3" firstAttribute="leading" secondItem="H2E-H1-CLA" secondAttribute="trailing" constant="15" id="ZP8-5v-QXI"/>
  506. <constraint firstItem="lbZ-RY-0aG" firstAttribute="centerY" secondItem="bKF-1X-6DE" secondAttribute="centerY" id="aBJ-84-zrU"/>
  507. <constraint firstItem="2nP-ZX-zLk" firstAttribute="leading" secondItem="bKF-1X-6DE" secondAttribute="leading" constant="15" id="aso-A8-sB5"/>
  508. <constraint firstItem="H2E-H1-CLA" firstAttribute="bottom" secondItem="2nP-ZX-zLk" secondAttribute="bottom" id="jAg-QZ-Ow5"/>
  509. <constraint firstItem="pUy-h6-w0Y" firstAttribute="centerY" secondItem="bKF-1X-6DE" secondAttribute="centerY" id="mX3-ax-XpX"/>
  510. </constraints>
  511. </tableViewCellContentView>
  512. <connections>
  513. <outlet property="btnImage" destination="2nP-ZX-zLk" id="gie-TT-qkI"/>
  514. <outlet property="img_checkmark" destination="pUy-h6-w0Y" id="Cgg-LS-Dd1"/>
  515. <outlet property="labelDescription" destination="H2E-H1-CLA" id="3fb-Y0-b1W"/>
  516. <outlet property="labelPrice" destination="MZM-06-tL3" id="rqh-V1-3va"/>
  517. <outlet property="qty_Label" destination="lbZ-RY-0aG" id="oen-ae-JoO"/>
  518. </connections>
  519. </tableViewCell>
  520. </prototypes>
  521. <connections>
  522. <outlet property="dataSource" destination="dSV-Dg-id4" id="fMK-ne-m6F"/>
  523. <outlet property="delegate" destination="dSV-Dg-id4" id="QVP-8c-X2Y"/>
  524. </connections>
  525. </tableView>
  526. <label hidden="YES" opaque="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Cannot get data from server.
Tap to try again." textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="VoW-od-XKq">
  527. <rect key="frame" x="263.5" y="489.5" width="241.5" height="45.5"/>
  528. <fontDescription key="fontDescription" type="system" pointSize="19"/>
  529. <color key="textColor" red="0.33333333333333331" green="0.33333333333333331" blue="0.33333333333333331" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  530. <nil key="highlightedColor"/>
  531. </label>
  532. <activityIndicatorView opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" hidesWhenStopped="YES" animating="YES" style="whiteLarge" translatesAutoresizingMaskIntoConstraints="NO" id="P7H-gM-8cZ">
  533. <rect key="frame" x="365.5" y="493.5" width="37" height="37"/>
  534. <color key="color" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  535. </activityIndicatorView>
  536. <toolbar opaque="NO" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="TEJ-4m-gTF">
  537. <rect key="frame" x="0.0" y="980" width="768" height="44"/>
  538. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  539. <constraints>
  540. <constraint firstAttribute="height" constant="44" id="bKb-j5-iBR"/>
  541. </constraints>
  542. <items>
  543. <barButtonItem title="Select all" id="4ut-I6-lhS">
  544. <connections>
  545. <action selector="onSelectClick:" destination="dSV-Dg-id4" id="OW2-Fn-aja"/>
  546. </connections>
  547. </barButtonItem>
  548. <barButtonItem width="42" style="plain" systemItem="fixedSpace" id="WGd-QY-X9M"/>
  549. <barButtonItem title="Delete" id="1fK-gC-zJQ">
  550. <connections>
  551. <action selector="onDeleteClick:" destination="dSV-Dg-id4" id="1q5-N8-tEV"/>
  552. </connections>
  553. </barButtonItem>
  554. <barButtonItem width="42" style="plain" systemItem="fixedSpace" id="ded-Mq-Wdh"/>
  555. <barButtonItem title="Move to Cart" id="nkH-wk-LKl">
  556. <connections>
  557. <action selector="onAddtoCart:" destination="dSV-Dg-id4" id="3mi-fA-zV0"/>
  558. </connections>
  559. </barButtonItem>
  560. <barButtonItem width="42" style="plain" systemItem="fixedSpace" id="4gV-KQ-JJH"/>
  561. <barButtonItem title="Print" id="ElH-Kz-wRI">
  562. <connections>
  563. <action selector="printWishlistClick:" destination="dSV-Dg-id4" id="NES-Ca-dNd"/>
  564. </connections>
  565. </barButtonItem>
  566. <barButtonItem width="42" style="plain" systemItem="fixedSpace" id="QHn-B4-Kox"/>
  567. <barButtonItem title="Email" id="d4C-NX-kua">
  568. <connections>
  569. <action selector="emailWishlistClick:" destination="dSV-Dg-id4" id="BHS-9B-vyX"/>
  570. </connections>
  571. </barButtonItem>
  572. <barButtonItem style="plain" systemItem="flexibleSpace" id="GCT-Zy-PVt"/>
  573. </items>
  574. <color key="tintColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  575. </toolbar>
  576. </subviews>
  577. <viewLayoutGuide key="safeArea" id="9A9-l3-cE9"/>
  578. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  579. <constraints>
  580. <constraint firstItem="TEJ-4m-gTF" firstAttribute="leading" secondItem="9A9-l3-cE9" secondAttribute="leading" id="0wy-Et-xPm"/>
  581. <constraint firstItem="TEJ-4m-gTF" firstAttribute="bottom" secondItem="9A9-l3-cE9" secondAttribute="bottom" id="HDi-LI-gfD"/>
  582. <constraint firstItem="VoW-od-XKq" firstAttribute="centerY" secondItem="l8z-x6-eMf" secondAttribute="centerY" id="KyC-mN-Xs3"/>
  583. <constraint firstItem="Bod-ih-aFz" firstAttribute="trailing" secondItem="9A9-l3-cE9" secondAttribute="trailing" id="ON6-wM-68H"/>
  584. <constraint firstItem="P7H-gM-8cZ" firstAttribute="centerX" secondItem="l8z-x6-eMf" secondAttribute="centerX" id="Pz2-3o-UPc"/>
  585. <constraint firstItem="TEJ-4m-gTF" firstAttribute="trailing" secondItem="9A9-l3-cE9" secondAttribute="trailing" id="RQs-R0-TJD"/>
  586. <constraint firstItem="Bod-ih-aFz" firstAttribute="leading" secondItem="9A9-l3-cE9" secondAttribute="leading" id="STo-5t-b3M"/>
  587. <constraint firstItem="Bod-ih-aFz" firstAttribute="top" secondItem="9A9-l3-cE9" secondAttribute="top" id="XCg-bR-os6"/>
  588. <constraint firstItem="P7H-gM-8cZ" firstAttribute="centerY" secondItem="l8z-x6-eMf" secondAttribute="centerY" id="XuB-N4-Qys"/>
  589. <constraint firstItem="TEJ-4m-gTF" firstAttribute="top" secondItem="Bod-ih-aFz" secondAttribute="bottom" id="kbX-1g-yLb"/>
  590. <constraint firstItem="VoW-od-XKq" firstAttribute="centerX" secondItem="l8z-x6-eMf" secondAttribute="centerX" id="tld-nd-ODf"/>
  591. </constraints>
  592. </view>
  593. <connections>
  594. <outlet property="btnAddtoCart" destination="nkH-wk-LKl" id="qv8-L1-WS9"/>
  595. <outlet property="btnselect" destination="4ut-I6-lhS" id="fBU-bd-mXV"/>
  596. <outlet property="emailBtn" destination="d4C-NX-kua" id="mn5-pm-tCk"/>
  597. <outlet property="itemListTable" destination="Bod-ih-aFz" id="8co-dm-KPz"/>
  598. <outlet property="label_net_err" destination="VoW-od-XKq" id="AxP-Qf-bN0"/>
  599. <outlet property="mum" destination="P7H-gM-8cZ" id="V5L-M8-XG2"/>
  600. <outlet property="printBtn" destination="ElH-Kz-wRI" id="cxR-aA-76k"/>
  601. <outlet property="toolbar" destination="TEJ-4m-gTF" id="LR0-Lb-tMy"/>
  602. </connections>
  603. </viewController>
  604. <placeholder placeholderIdentifier="IBFirstResponder" id="dde-Oc-fqI" userLabel="First Responder" sceneMemberID="firstResponder"/>
  605. </objects>
  606. <point key="canvasLocation" x="-248.4375" y="-1649.4140625"/>
  607. </scene>
  608. <!--Sales Navigation Controller-->
  609. <scene sceneID="gmF-am-6mB">
  610. <objects>
  611. <navigationController storyboardIdentifier="iSalesNavigationController" definesPresentationContext="YES" useStoryboardIdentifierAsRestorationIdentifier="YES" id="jsC-F8-zYF" customClass="iSalesNavigationController" sceneMemberID="viewController">
  612. <navigationBar key="navigationBar" contentMode="scaleToFill" id="gCJ-vt-f01">
  613. <rect key="frame" x="0.0" y="20" width="768" height="50"/>
  614. <autoresizingMask key="autoresizingMask"/>
  615. </navigationBar>
  616. <connections>
  617. <segue destination="BYZ-38-t0r" kind="relationship" relationship="rootViewController" id="WXk-4e-Kuu"/>
  618. </connections>
  619. </navigationController>
  620. <placeholder placeholderIdentifier="IBFirstResponder" id="5Jd-Qo-yfT" userLabel="First Responder" sceneMemberID="firstResponder"/>
  621. </objects>
  622. <point key="canvasLocation" x="196.09375" y="-129.4921875"/>
  623. </scene>
  624. <!--Sign_in-->
  625. <scene sceneID="nj3-gQ-5tx">
  626. <objects>
  627. <viewController storyboardIdentifier="LoginViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="Q1j-qK-Nq8" userLabel="Sign_in" customClass="LoginViewController" sceneMemberID="viewController">
  628. <view key="view" contentMode="scaleToFill" id="vfL-PU-G6Q">
  629. <rect key="frame" x="0.0" y="0.0" width="480" height="320"/>
  630. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  631. <subviews>
  632. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" placeholder="User" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="e4L-J6-NNX">
  633. <rect key="frame" x="60" y="123" width="360" height="30"/>
  634. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  635. <constraints>
  636. <constraint firstAttribute="height" constant="30" id="y7F-m4-eUT"/>
  637. </constraints>
  638. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  639. <textInputTraits key="textInputTraits" autocorrectionType="no"/>
  640. <connections>
  641. <outlet property="delegate" destination="Q1j-qK-Nq8" id="uSE-GC-A0y"/>
  642. </connections>
  643. </textField>
  644. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" placeholder="Password" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="oCu-XS-jr9">
  645. <rect key="frame" x="60" y="162" width="360" height="34"/>
  646. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  647. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  648. <textInputTraits key="textInputTraits" secureTextEntry="YES"/>
  649. </textField>
  650. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="B5F-AY-BkK">
  651. <rect key="frame" x="60" y="220" width="360" height="22"/>
  652. <constraints>
  653. <constraint firstAttribute="height" constant="22" id="CFK-iY-Os2"/>
  654. </constraints>
  655. <inset key="contentEdgeInsets" minX="4" minY="0.0" maxX="0.0" maxY="0.0"/>
  656. <inset key="imageEdgeInsets" minX="-4" minY="0.0" maxX="0.0" maxY="0.0"/>
  657. <state key="normal" title="Save password" image="checkbox">
  658. <color key="titleColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  659. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  660. </state>
  661. </button>
  662. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="20z-6W-PvH">
  663. <rect key="frame" x="296" y="220" width="124" height="22"/>
  664. <constraints>
  665. <constraint firstAttribute="height" constant="22" id="LG5-Yp-tPQ"/>
  666. </constraints>
  667. <inset key="contentEdgeInsets" minX="4" minY="0.0" maxX="0.0" maxY="0.0"/>
  668. <inset key="imageEdgeInsets" minX="-4" minY="0.0" maxX="0.0" maxY="0.0"/>
  669. <state key="normal" title="Offline mode" image="checkbox">
  670. <color key="titleColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  671. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  672. </state>
  673. </button>
  674. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Sign in" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="2AI-yS-Vfe">
  675. <rect key="frame" x="60" y="87" width="59" height="26"/>
  676. <constraints>
  677. <constraint firstAttribute="height" constant="26" id="wGm-YM-Mtp"/>
  678. </constraints>
  679. <fontDescription key="fontDescription" type="system" pointSize="20"/>
  680. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  681. <nil key="highlightedColor"/>
  682. </label>
  683. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="right" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="pO9-Lj-YQb">
  684. <rect key="frame" x="294" y="85.5" width="126" height="30"/>
  685. <constraints>
  686. <constraint firstAttribute="height" constant="30" id="zLX-yr-Dvk"/>
  687. </constraints>
  688. <state key="normal" title="Retrieve password">
  689. <color key="titleColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  690. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  691. </state>
  692. <connections>
  693. <action selector="onRetrievePassword:" destination="Q1j-qK-Nq8" eventType="touchUpInside" id="y8v-bK-749"/>
  694. </connections>
  695. </button>
  696. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="CZM-O3-JlR" customClass="DefaultImageButton">
  697. <rect key="frame" x="358" y="270" width="102" height="30"/>
  698. <constraints>
  699. <constraint firstAttribute="width" constant="102" id="ANs-ln-cLS"/>
  700. <constraint firstAttribute="height" constant="30" id="P45-ke-sKG"/>
  701. </constraints>
  702. <fontDescription key="fontDescription" type="system" pointSize="20"/>
  703. <state key="normal" title="Sign in" backgroundImage="btn_signin">
  704. <color key="titleColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  705. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  706. </state>
  707. <userDefinedRuntimeAttributes>
  708. <userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
  709. <integer key="value" value="19"/>
  710. </userDefinedRuntimeAttribute>
  711. </userDefinedRuntimeAttributes>
  712. <connections>
  713. <action selector="onLoginClick:" destination="Q1j-qK-Nq8" eventType="touchUpInside" id="u09-UA-ScX"/>
  714. </connections>
  715. </button>
  716. <tableView hidden="YES" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="44" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="3dj-qP-iVc">
  717. <rect key="frame" x="60" y="153" width="360" height="109"/>
  718. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  719. <prototypes>
  720. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="LoginListCell" textLabel="AxX-hS-Jtg" style="IBUITableViewCellStyleDefault" id="kAP-gb-Gce">
  721. <rect key="frame" x="0.0" y="44.5" width="360" height="44"/>
  722. <autoresizingMask key="autoresizingMask"/>
  723. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="kAP-gb-Gce" id="Ilc-6o-RhI">
  724. <rect key="frame" x="0.0" y="0.0" width="360" height="44"/>
  725. <autoresizingMask key="autoresizingMask"/>
  726. <subviews>
  727. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="Title" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="AxX-hS-Jtg">
  728. <rect key="frame" x="16" y="0.0" width="328" height="44"/>
  729. <autoresizingMask key="autoresizingMask"/>
  730. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  731. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  732. <nil key="highlightedColor"/>
  733. </label>
  734. </subviews>
  735. </tableViewCellContentView>
  736. </tableViewCell>
  737. </prototypes>
  738. <connections>
  739. <outlet property="dataSource" destination="Q1j-qK-Nq8" id="xu3-jC-atg"/>
  740. <outlet property="delegate" destination="Q1j-qK-Nq8" id="N2l-yO-mxO"/>
  741. </connections>
  742. </tableView>
  743. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="FqB-9p-WZO">
  744. <rect key="frame" x="228" y="270" width="100" height="30"/>
  745. <constraints>
  746. <constraint firstAttribute="width" constant="100" id="rVB-KF-ePd"/>
  747. <constraint firstAttribute="height" constant="30" id="y7g-Tz-bPx"/>
  748. </constraints>
  749. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  750. <state key="normal" title="Request Login">
  751. <color key="titleColor" red="0.60000002379999995" green="0.40000000600000002" blue="0.20000000300000001" alpha="1" colorSpace="calibratedRGB"/>
  752. </state>
  753. <connections>
  754. <action selector="requestLoginBtnClicked:" destination="Q1j-qK-Nq8" eventType="touchUpInside" id="Er6-GZ-JiA"/>
  755. </connections>
  756. </button>
  757. </subviews>
  758. <viewLayoutGuide key="safeArea" id="E3s-Bo-qWx"/>
  759. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  760. <constraints>
  761. <constraint firstItem="e4L-J6-NNX" firstAttribute="leading" secondItem="E3s-Bo-qWx" secondAttribute="leading" constant="60" id="5rN-Bq-Gp0"/>
  762. <constraint firstItem="3dj-qP-iVc" firstAttribute="leading" secondItem="2AI-yS-Vfe" secondAttribute="leading" id="8YV-ca-ONJ"/>
  763. <constraint firstItem="CZM-O3-JlR" firstAttribute="centerY" secondItem="FqB-9p-WZO" secondAttribute="centerY" id="BFh-sl-lkW"/>
  764. <constraint firstItem="CZM-O3-JlR" firstAttribute="leading" secondItem="FqB-9p-WZO" secondAttribute="trailing" constant="30" id="C4e-ia-JDM"/>
  765. <constraint firstItem="B5F-AY-BkK" firstAttribute="leading" secondItem="2AI-yS-Vfe" secondAttribute="leading" id="C5V-5F-xxp"/>
  766. <constraint firstItem="20z-6W-PvH" firstAttribute="trailing" secondItem="e4L-J6-NNX" secondAttribute="trailing" id="F8M-cK-QME"/>
  767. <constraint firstItem="CZM-O3-JlR" firstAttribute="top" secondItem="3dj-qP-iVc" secondAttribute="bottom" constant="8" id="FSS-Qf-IC9"/>
  768. <constraint firstItem="E3s-Bo-qWx" firstAttribute="trailing" secondItem="CZM-O3-JlR" secondAttribute="trailing" constant="20" id="QNS-eu-p2q"/>
  769. <constraint firstItem="E3s-Bo-qWx" firstAttribute="bottom" secondItem="CZM-O3-JlR" secondAttribute="bottom" constant="20" id="RFM-nE-ZoK"/>
  770. <constraint firstItem="2AI-yS-Vfe" firstAttribute="top" secondItem="E3s-Bo-qWx" secondAttribute="top" constant="67" id="X4o-Ve-shM"/>
  771. <constraint firstItem="oCu-XS-jr9" firstAttribute="leading" secondItem="2AI-yS-Vfe" secondAttribute="leading" id="XPY-Xr-orm"/>
  772. <constraint firstItem="e4L-J6-NNX" firstAttribute="leading" secondItem="2AI-yS-Vfe" secondAttribute="leading" id="cdu-6c-yVK"/>
  773. <constraint firstItem="B5F-AY-BkK" firstAttribute="trailing" secondItem="e4L-J6-NNX" secondAttribute="trailing" id="eaR-VW-73d"/>
  774. <constraint firstItem="pO9-Lj-YQb" firstAttribute="firstBaseline" secondItem="2AI-yS-Vfe" secondAttribute="firstBaseline" id="ek0-eD-CdQ"/>
  775. <constraint firstItem="20z-6W-PvH" firstAttribute="top" secondItem="oCu-XS-jr9" secondAttribute="bottom" constant="24" id="m0g-cr-Isk"/>
  776. <constraint firstItem="3dj-qP-iVc" firstAttribute="trailing" secondItem="e4L-J6-NNX" secondAttribute="trailing" id="nvE-gE-XeQ"/>
  777. <constraint firstItem="20z-6W-PvH" firstAttribute="bottom" secondItem="B5F-AY-BkK" secondAttribute="bottom" id="oiO-3K-qoF"/>
  778. <constraint firstItem="pO9-Lj-YQb" firstAttribute="trailing" secondItem="e4L-J6-NNX" secondAttribute="trailing" id="p1K-RF-wFX"/>
  779. <constraint firstItem="E3s-Bo-qWx" firstAttribute="trailing" secondItem="e4L-J6-NNX" secondAttribute="trailing" constant="60" id="pN5-Nz-h0t"/>
  780. <constraint firstItem="oCu-XS-jr9" firstAttribute="trailing" secondItem="e4L-J6-NNX" secondAttribute="trailing" id="x8C-kd-WnK"/>
  781. <constraint firstItem="3dj-qP-iVc" firstAttribute="top" secondItem="e4L-J6-NNX" secondAttribute="bottom" id="xIq-bZ-ffe"/>
  782. <constraint firstItem="oCu-XS-jr9" firstAttribute="top" secondItem="e4L-J6-NNX" secondAttribute="bottom" constant="9" id="xiC-xJ-kR0"/>
  783. <constraint firstItem="e4L-J6-NNX" firstAttribute="top" secondItem="2AI-yS-Vfe" secondAttribute="bottom" constant="10" id="zWZ-Ih-Z7f"/>
  784. </constraints>
  785. </view>
  786. <navigationItem key="navigationItem" title="NPD" id="InA-1X-4Kd">
  787. <barButtonItem key="rightBarButtonItem" image="close" style="plain" id="Rl4-6e-kHm">
  788. <connections>
  789. <action selector="CloseClick:" destination="Q1j-qK-Nq8" id="pAM-ui-IMx"/>
  790. </connections>
  791. </barButtonItem>
  792. </navigationItem>
  793. <value key="contentSizeForViewInPopover" type="size" width="480" height="320"/>
  794. <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
  795. <size key="freeformSize" width="480" height="320"/>
  796. <connections>
  797. <outlet property="Loginlist" destination="3dj-qP-iVc" id="XaJ-eX-qBn"/>
  798. <outlet property="bb_close" destination="Rl4-6e-kHm" id="0Mj-Do-OjV"/>
  799. <outlet property="btnLogin" destination="CZM-O3-JlR" id="unz-tZ-32M"/>
  800. <outlet property="checkOfflineMode" destination="20z-6W-PvH" id="dce-H9-djn"/>
  801. <outlet property="checkSavePassword" destination="B5F-AY-BkK" id="zzE-TR-Jcm"/>
  802. <outlet property="editpass" destination="oCu-XS-jr9" id="Tqo-ji-zau"/>
  803. <outlet property="edituser" destination="e4L-J6-NNX" id="MPR-BH-UPe"/>
  804. <outlet property="requestLoginBtn" destination="FqB-9p-WZO" id="hGJ-jt-j5G"/>
  805. </connections>
  806. </viewController>
  807. <placeholder placeholderIdentifier="IBFirstResponder" id="LPP-1Z-0yh" userLabel="First Responder" sceneMemberID="firstResponder"/>
  808. </objects>
  809. <point key="canvasLocation" x="1167.96875" y="-935.15624999999989"/>
  810. </scene>
  811. <!--Home View Controller-->
  812. <scene sceneID="ooR-wa-PJg">
  813. <objects>
  814. <viewController storyboardIdentifier="HomeViewController" automaticallyAdjustsScrollViewInsets="NO" useStoryboardIdentifierAsRestorationIdentifier="YES" id="qnc-8g-ecq" customClass="HomeViewController" sceneMemberID="viewController">
  815. <view key="view" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" id="uyL-pB-aij">
  816. <rect key="frame" x="0.0" y="0.0" width="768" height="1024"/>
  817. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  818. <subviews>
  819. <view hidden="YES" contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="hF1-Cm-X4t" userLabel="home category menu">
  820. <rect key="frame" x="-256" y="0.0" width="256" height="1024"/>
  821. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" heightSizable="YES" flexibleMaxY="YES"/>
  822. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  823. </view>
  824. <tableView clipsSubviews="YES" contentMode="scaleToFill" fixedFrame="YES" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="none" rowHeight="44" sectionHeaderHeight="22" sectionFooterHeight="22" translatesAutoresizingMaskIntoConstraints="NO" id="nqT-Hf-Ep7" userLabel="home content table">
  825. <rect key="frame" x="0.0" y="0.0" width="768" height="1024"/>
  826. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES" flexibleMaxY="YES"/>
  827. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  828. <prototypes>
  829. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="HomeTableViewCellSlide" id="c21-Hy-QJU" customClass="HomeTableViewCellSlide">
  830. <rect key="frame" x="0.0" y="44.5" width="768" height="44"/>
  831. <autoresizingMask key="autoresizingMask"/>
  832. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="c21-Hy-QJU" id="2Mt-ve-YI4">
  833. <rect key="frame" x="0.0" y="0.0" width="768" height="44"/>
  834. <autoresizingMask key="autoresizingMask"/>
  835. </tableViewCellContentView>
  836. </tableViewCell>
  837. <tableViewCell contentMode="scaleToFill" restorationIdentifier="HomeTableViewCellBanner" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="HomeTableViewCellBanner" rowHeight="317" id="rvl-UX-dny" customClass="HomeTableViewCellBanner">
  838. <rect key="frame" x="0.0" y="88.5" width="768" height="317"/>
  839. <autoresizingMask key="autoresizingMask"/>
  840. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="rvl-UX-dny" id="ULg-i3-NWf">
  841. <rect key="frame" x="0.0" y="0.0" width="768" height="317"/>
  842. <autoresizingMask key="autoresizingMask"/>
  843. <subviews>
  844. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="3Rk-k3-zwC">
  845. <rect key="frame" x="9" y="-13" width="770" height="308"/>
  846. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  847. </imageView>
  848. </subviews>
  849. </tableViewCellContentView>
  850. <connections>
  851. <outlet property="BannerImageView" destination="3Rk-k3-zwC" id="Lyx-HU-JK1"/>
  852. </connections>
  853. </tableViewCell>
  854. <tableViewCell contentMode="scaleToFill" restorationIdentifier="HomeTableViewCellButtonBanner" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="HomeTableViewCellButtonBanner" rowHeight="317" id="Put-35-LxJ" customClass="HomeTableViewCellButtonBanner">
  855. <rect key="frame" x="0.0" y="405.5" width="768" height="317"/>
  856. <autoresizingMask key="autoresizingMask"/>
  857. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Put-35-LxJ" id="Lai-zl-Z6Z">
  858. <rect key="frame" x="0.0" y="0.0" width="768" height="317"/>
  859. <autoresizingMask key="autoresizingMask"/>
  860. </tableViewCellContentView>
  861. </tableViewCell>
  862. <tableViewCell contentMode="scaleToFill" restorationIdentifier="HomeTableViewCellTopic" selectionStyle="default" indentationWidth="10" reuseIdentifier="HomeTableViewCellTopic" rowHeight="310" id="Pbg-ua-PLt" customClass="HomeTableViewCellTopic">
  863. <rect key="frame" x="0.0" y="722.5" width="768" height="310"/>
  864. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  865. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Pbg-ua-PLt" id="dGe-fL-Pfl">
  866. <rect key="frame" x="0.0" y="0.0" width="768" height="310"/>
  867. <autoresizingMask key="autoresizingMask"/>
  868. <subviews>
  869. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="AJc-gj-4ib">
  870. <rect key="frame" x="-5" y="11" width="768" height="15"/>
  871. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  872. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  873. </view>
  874. <collectionView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" fixedFrame="YES" minimumZoomScale="0.0" maximumZoomScale="0.0" dataMode="prototypes" translatesAutoresizingMaskIntoConstraints="NO" id="YZB-OJ-1Vt">
  875. <rect key="frame" x="-5" y="16" width="768" height="268"/>
  876. <autoresizingMask key="autoresizingMask" widthSizable="YES"/>
  877. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  878. <collectionViewFlowLayout key="collectionViewLayout" scrollDirection="horizontal" minimumLineSpacing="10" minimumInteritemSpacing="10" id="saz-yz-bIb">
  879. <size key="itemSize" width="175" height="234"/>
  880. <size key="headerReferenceSize" width="0.0" height="0.0"/>
  881. <size key="footerReferenceSize" width="0.0" height="0.0"/>
  882. <inset key="sectionInset" minX="0.0" minY="0.0" maxX="0.0" maxY="0.0"/>
  883. </collectionViewFlowLayout>
  884. <cells>
  885. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" reuseIdentifier="RelatedModelCell" id="uoK-xx-tpx" customClass="CategoryCellSmall">
  886. <rect key="frame" x="0.0" y="17" width="175" height="234"/>
  887. <autoresizingMask key="autoresizingMask"/>
  888. <view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center">
  889. <rect key="frame" x="0.0" y="0.0" width="175" height="234"/>
  890. <autoresizingMask key="autoresizingMask"/>
  891. <subviews>
  892. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="mhk-as-czM">
  893. <rect key="frame" x="1" y="1" width="173" height="172"/>
  894. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  895. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  896. </imageView>
  897. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="Label" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="WFK-py-itc" userLabel="Label -description">
  898. <rect key="frame" x="8" y="195" width="159" height="21"/>
  899. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  900. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  901. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  902. <nil key="highlightedColor"/>
  903. </label>
  904. </subviews>
  905. </view>
  906. <color key="backgroundColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  907. <connections>
  908. <outlet property="cellDescription" destination="WFK-py-itc" id="LSc-M2-YzH"/>
  909. <outlet property="cellImageView" destination="mhk-as-czM" id="uwx-Yj-WTi"/>
  910. </connections>
  911. </collectionViewCell>
  912. </cells>
  913. <connections>
  914. <outlet property="dataSource" destination="Pbg-ua-PLt" id="0dK-Wn-1rU"/>
  915. <outlet property="delegate" destination="Pbg-ua-PLt" id="gFa-AT-pP5"/>
  916. </connections>
  917. </collectionView>
  918. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="Title" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="QPi-DJ-gSR">
  919. <rect key="frame" x="0.0" y="11" width="768" height="21"/>
  920. <autoresizingMask key="autoresizingMask"/>
  921. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  922. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  923. <nil key="highlightedColor"/>
  924. </label>
  925. </subviews>
  926. </tableViewCellContentView>
  927. <connections>
  928. <outlet property="label_title" destination="QPi-DJ-gSR" id="FQ2-0h-DvQ"/>
  929. <outlet property="topicCollectionView" destination="YZB-OJ-1Vt" id="njr-zM-l0b"/>
  930. </connections>
  931. </tableViewCell>
  932. </prototypes>
  933. <connections>
  934. <outlet property="dataSource" destination="qnc-8g-ecq" id="4tg-zU-tQk"/>
  935. <outlet property="delegate" destination="qnc-8g-ecq" id="AG3-4l-k38"/>
  936. </connections>
  937. </tableView>
  938. <activityIndicatorView opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" fixedFrame="YES" hidesWhenStopped="YES" animating="YES" style="whiteLarge" translatesAutoresizingMaskIntoConstraints="NO" id="Fnh-SM-ihl">
  939. <rect key="frame" x="366" y="493" width="37" height="37"/>
  940. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
  941. <color key="color" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  942. </activityIndicatorView>
  943. <label hidden="YES" opaque="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="Cannot get data from server.
Tap to try again." textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="95F-9e-vAS">
  944. <rect key="frame" x="245" y="476" width="277" height="73"/>
  945. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
  946. <fontDescription key="fontDescription" type="system" pointSize="19"/>
  947. <color key="textColor" red="0.33333333333333331" green="0.33333333333333331" blue="0.33333333333333331" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  948. <nil key="highlightedColor"/>
  949. </label>
  950. </subviews>
  951. <viewLayoutGuide key="safeArea" id="zyS-ws-jOo"/>
  952. <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  953. </view>
  954. <toolbarItems/>
  955. <connections>
  956. <outlet property="homeTable" destination="nqT-Hf-Ep7" id="qZ3-Q2-bgS"/>
  957. <outlet property="label_net_err" destination="95F-9e-vAS" id="gkX-k5-PJE"/>
  958. <outlet property="mum" destination="Fnh-SM-ihl" id="72b-Kj-R5h"/>
  959. <outlet property="treeContainer" destination="hF1-Cm-X4t" id="68v-WT-wDe"/>
  960. </connections>
  961. </viewController>
  962. <placeholder placeholderIdentifier="IBFirstResponder" id="k7p-uv-DeY" userLabel="First Responder" sceneMemberID="firstResponder"/>
  963. </objects>
  964. <point key="canvasLocation" x="1792.96875" y="-100.1953125"/>
  965. </scene>
  966. <!--ScannerViewController-->
  967. <scene sceneID="tgY-Nq-Wd9">
  968. <objects>
  969. <viewController storyboardIdentifier="ScannerViewController" title="ScannerViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="EIb-H4-v4U" customClass="ScannerViewController" sceneMemberID="viewController">
  970. <view key="view" contentMode="scaleToFill" id="NHM-5E-iC6">
  971. <rect key="frame" x="0.0" y="0.0" width="768" height="1024"/>
  972. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  973. <subviews>
  974. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="G66-bZ-5AK" customClass="ScannerControllerView">
  975. <rect key="frame" x="0.0" y="20" width="768" height="1004"/>
  976. <subviews>
  977. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="wordWrap" translatesAutoresizingMaskIntoConstraints="NO" id="dHM-WV-ZSO" userLabel="Button scan">
  978. <rect key="frame" x="613" y="683.5" width="108" height="108"/>
  979. <color key="backgroundColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  980. <constraints>
  981. <constraint firstAttribute="width" constant="108" id="cxB-uv-UGA"/>
  982. <constraint firstAttribute="height" constant="108" id="vqs-UD-ndn"/>
  983. </constraints>
  984. <fontDescription key="fontDescription" type="system" pointSize="0.0"/>
  985. <state key="normal">
  986. <color key="titleColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  987. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  988. </state>
  989. <userDefinedRuntimeAttributes>
  990. <userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
  991. <integer key="value" value="54"/>
  992. </userDefinedRuntimeAttribute>
  993. </userDefinedRuntimeAttributes>
  994. <connections>
  995. <action selector="ScanButtonClick:" destination="EIb-H4-v4U" eventType="touchUpInside" id="xkf-x8-8N4"/>
  996. </connections>
  997. </button>
  998. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="pick_bg" translatesAutoresizingMaskIntoConstraints="NO" id="nxQ-Fb-gF5">
  999. <rect key="frame" x="134" y="352" width="500" height="300"/>
  1000. <constraints>
  1001. <constraint firstAttribute="width" constant="500" id="1g6-UG-b63"/>
  1002. <constraint firstAttribute="height" constant="300" id="Ep8-fT-FON"/>
  1003. </constraints>
  1004. </imageView>
  1005. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Zfm-0K-VDC">
  1006. <rect key="frame" x="134" y="712" width="500" height="51"/>
  1007. <constraints>
  1008. <constraint firstAttribute="height" constant="51" id="b8K-xQ-vVg"/>
  1009. </constraints>
  1010. <fontDescription key="fontDescription" type="system" weight="heavy" pointSize="20"/>
  1011. <state key="normal" title="Target: Model Detail"/>
  1012. <connections>
  1013. <action selector="TargetButtonClick:" destination="EIb-H4-v4U" eventType="touchUpInside" id="9Mf-ms-ZCb"/>
  1014. </connections>
  1015. </button>
  1016. <button hidden="YES" opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="5z7-HK-0WT">
  1017. <rect key="frame" x="294" y="262.5" width="180" height="34.5"/>
  1018. <state key="normal" title="Button"/>
  1019. <buttonConfiguration key="configuration" style="plain" title="Type: Model Name">
  1020. <fontDescription key="titleFontDescription" type="system" weight="heavy" pointSize="17"/>
  1021. </buttonConfiguration>
  1022. <connections>
  1023. <action selector="TypeButtonClick:" destination="EIb-H4-v4U" eventType="touchUpInside" id="ike-GD-8aF"/>
  1024. </connections>
  1025. </button>
  1026. </subviews>
  1027. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  1028. <constraints>
  1029. <constraint firstItem="dHM-WV-ZSO" firstAttribute="centerY" secondItem="Zfm-0K-VDC" secondAttribute="centerY" id="3Tu-om-no6"/>
  1030. <constraint firstItem="5z7-HK-0WT" firstAttribute="centerX" secondItem="G66-bZ-5AK" secondAttribute="centerX" id="Ak3-eD-Z7Y"/>
  1031. <constraint firstItem="nxQ-Fb-gF5" firstAttribute="centerX" secondItem="G66-bZ-5AK" secondAttribute="centerX" id="BnE-cg-2FL"/>
  1032. <constraint firstAttribute="trailing" secondItem="dHM-WV-ZSO" secondAttribute="trailing" constant="47" id="CkA-Dv-7BS"/>
  1033. <constraint firstItem="nxQ-Fb-gF5" firstAttribute="centerY" secondItem="G66-bZ-5AK" secondAttribute="centerY" id="E1I-kP-Upr"/>
  1034. <constraint firstItem="Zfm-0K-VDC" firstAttribute="trailing" secondItem="nxQ-Fb-gF5" secondAttribute="trailing" id="Nxl-G2-3f7"/>
  1035. <constraint firstItem="Zfm-0K-VDC" firstAttribute="leading" secondItem="nxQ-Fb-gF5" secondAttribute="leading" id="dPZ-Wb-EbB"/>
  1036. <constraint firstItem="Zfm-0K-VDC" firstAttribute="top" secondItem="nxQ-Fb-gF5" secondAttribute="bottom" constant="60" id="fzg-pY-V2d"/>
  1037. <constraint firstItem="nxQ-Fb-gF5" firstAttribute="top" secondItem="5z7-HK-0WT" secondAttribute="bottom" constant="55" id="j0b-GP-MEZ"/>
  1038. </constraints>
  1039. </view>
  1040. </subviews>
  1041. <viewLayoutGuide key="safeArea" id="qfZ-AN-nm6"/>
  1042. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1043. <constraints>
  1044. <constraint firstItem="G66-bZ-5AK" firstAttribute="top" secondItem="qfZ-AN-nm6" secondAttribute="top" id="A0p-mk-G29"/>
  1045. <constraint firstItem="G66-bZ-5AK" firstAttribute="bottom" secondItem="qfZ-AN-nm6" secondAttribute="bottom" id="R2y-gL-KVz"/>
  1046. <constraint firstItem="G66-bZ-5AK" firstAttribute="leading" secondItem="qfZ-AN-nm6" secondAttribute="leading" id="hSP-Fa-Pn5"/>
  1047. <constraint firstItem="G66-bZ-5AK" firstAttribute="trailing" secondItem="qfZ-AN-nm6" secondAttribute="trailing" id="i7z-Nr-ZrM"/>
  1048. </constraints>
  1049. </view>
  1050. <navigationItem key="navigationItem" title="Scanner" id="E95-sd-zz2"/>
  1051. <connections>
  1052. <outlet property="backgroundView" destination="G66-bZ-5AK" id="SO2-aS-Hjz"/>
  1053. <outlet property="focusZone" destination="nxQ-Fb-gF5" id="mgU-R3-NhT"/>
  1054. <outlet property="scanButton" destination="dHM-WV-ZSO" id="zJA-gj-H7R"/>
  1055. <outlet property="targetButton" destination="Zfm-0K-VDC" id="REG-YG-Zej"/>
  1056. <outlet property="typeButton" destination="5z7-HK-0WT" id="Kfn-X4-VnO"/>
  1057. </connections>
  1058. </viewController>
  1059. <placeholder placeholderIdentifier="IBFirstResponder" id="5qg-tr-rF5" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1060. </objects>
  1061. <point key="canvasLocation" x="2221.875" y="-2534.1796875"/>
  1062. </scene>
  1063. <!--Cache-->
  1064. <scene sceneID="1T2-gR-ILK">
  1065. <objects>
  1066. <tableViewController storyboardIdentifier="CacheViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="SCh-P5-b9w" customClass="CacheViewController" sceneMemberID="viewController">
  1067. <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="plain" separatorStyle="default" rowHeight="44" sectionHeaderHeight="22" sectionFooterHeight="22" id="ESr-hp-wy1">
  1068. <rect key="frame" x="0.0" y="0.0" width="768" height="1024"/>
  1069. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1070. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1071. <sections>
  1072. <tableViewSection id="Dxk-o0-QTQ">
  1073. <cells>
  1074. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="QWz-EJ-Yzy">
  1075. <rect key="frame" x="0.0" y="44.5" width="768" height="44"/>
  1076. <autoresizingMask key="autoresizingMask"/>
  1077. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="QWz-EJ-Yzy" id="E1L-su-dvV">
  1078. <rect key="frame" x="0.0" y="0.0" width="768" height="44"/>
  1079. <autoresizingMask key="autoresizingMask"/>
  1080. <subviews>
  1081. <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="PJV-YE-GvQ">
  1082. <rect key="frame" x="704" y="6" width="51" height="31"/>
  1083. <connections>
  1084. <action selector="cacheSwitchChanged:" destination="SCh-P5-b9w" eventType="valueChanged" id="Qx0-8P-8Gq"/>
  1085. </connections>
  1086. </switch>
  1087. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Enable cache" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="qKR-8L-xrc">
  1088. <rect key="frame" x="20" y="11" width="102" height="21"/>
  1089. <constraints>
  1090. <constraint firstAttribute="height" constant="21" id="9Dl-FZ-2gr"/>
  1091. </constraints>
  1092. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1093. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1094. <nil key="highlightedColor"/>
  1095. </label>
  1096. </subviews>
  1097. <constraints>
  1098. <constraint firstAttribute="bottom" secondItem="qKR-8L-xrc" secondAttribute="bottom" constant="12" id="EFz-o0-YVX"/>
  1099. <constraint firstItem="qKR-8L-xrc" firstAttribute="leading" secondItem="E1L-su-dvV" secondAttribute="leading" constant="20" id="Jg5-6V-X6C"/>
  1100. <constraint firstItem="PJV-YE-GvQ" firstAttribute="top" secondItem="E1L-su-dvV" secondAttribute="top" constant="6" id="O5K-GW-h4E"/>
  1101. <constraint firstAttribute="trailing" secondItem="PJV-YE-GvQ" secondAttribute="trailing" constant="15" id="ft6-bR-Std"/>
  1102. <constraint firstAttribute="bottom" secondItem="PJV-YE-GvQ" secondAttribute="bottom" constant="7" id="kNR-v5-XsK"/>
  1103. <constraint firstItem="qKR-8L-xrc" firstAttribute="top" secondItem="E1L-su-dvV" secondAttribute="top" constant="11" id="oPE-GW-FM7"/>
  1104. </constraints>
  1105. </tableViewCellContentView>
  1106. </tableViewCell>
  1107. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="TID-OY-afi">
  1108. <rect key="frame" x="0.0" y="88.5" width="768" height="44"/>
  1109. <autoresizingMask key="autoresizingMask"/>
  1110. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="TID-OY-afi" id="yuC-0D-Ebs">
  1111. <rect key="frame" x="0.0" y="0.0" width="768" height="44"/>
  1112. <autoresizingMask key="autoresizingMask"/>
  1113. <subviews>
  1114. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Diskspace" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="pVO-Tx-wMs">
  1115. <rect key="frame" x="20" y="11" width="100" height="21"/>
  1116. <constraints>
  1117. <constraint firstAttribute="width" constant="100" id="Bju-ob-q4a"/>
  1118. <constraint firstAttribute="height" constant="21" id="j82-Bi-Gpi"/>
  1119. </constraints>
  1120. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1121. <nil key="highlightedColor"/>
  1122. </label>
  1123. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="el1-Tc-PkB">
  1124. <rect key="frame" x="498" y="11" width="255" height="21"/>
  1125. <constraints>
  1126. <constraint firstAttribute="width" constant="255" id="eVQ-NU-rQp"/>
  1127. <constraint firstAttribute="height" constant="21" id="g09-MR-GgQ"/>
  1128. </constraints>
  1129. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1130. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1131. <nil key="highlightedColor"/>
  1132. </label>
  1133. <activityIndicatorView opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" hidesWhenStopped="YES" animating="YES" style="gray" translatesAutoresizingMaskIntoConstraints="NO" id="D0F-Ed-Wng">
  1134. <rect key="frame" x="119" y="12" width="20" height="20"/>
  1135. <constraints>
  1136. <constraint firstAttribute="height" constant="20" id="3hA-JL-hmO"/>
  1137. <constraint firstAttribute="width" constant="20" id="WbA-UI-86q"/>
  1138. </constraints>
  1139. <color key="color" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1140. </activityIndicatorView>
  1141. </subviews>
  1142. <constraints>
  1143. <constraint firstAttribute="bottom" secondItem="el1-Tc-PkB" secondAttribute="bottom" constant="12" id="0gc-DT-htb"/>
  1144. <constraint firstItem="pVO-Tx-wMs" firstAttribute="top" secondItem="yuC-0D-Ebs" secondAttribute="top" constant="11" id="3UI-gz-YvE"/>
  1145. <constraint firstAttribute="bottom" secondItem="D0F-Ed-Wng" secondAttribute="bottom" constant="12" id="98y-fg-NAY"/>
  1146. <constraint firstAttribute="trailing" secondItem="el1-Tc-PkB" secondAttribute="trailing" constant="15" id="BwW-nS-sCh"/>
  1147. <constraint firstItem="D0F-Ed-Wng" firstAttribute="top" secondItem="yuC-0D-Ebs" secondAttribute="top" constant="12" id="Ji8-Jf-bBZ"/>
  1148. <constraint firstItem="D0F-Ed-Wng" firstAttribute="leading" secondItem="yuC-0D-Ebs" secondAttribute="leadingMargin" constant="99" id="KaA-Tr-zhF"/>
  1149. <constraint firstAttribute="bottom" secondItem="pVO-Tx-wMs" secondAttribute="bottom" constant="12" id="VZz-Tt-uSj"/>
  1150. <constraint firstItem="el1-Tc-PkB" firstAttribute="top" secondItem="yuC-0D-Ebs" secondAttribute="top" constant="11" id="X6e-Vb-WxL"/>
  1151. <constraint firstItem="pVO-Tx-wMs" firstAttribute="leading" secondItem="yuC-0D-Ebs" secondAttribute="leading" constant="20" id="nce-yw-8xF"/>
  1152. </constraints>
  1153. </tableViewCellContentView>
  1154. </tableViewCell>
  1155. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="Pol-lE-P45">
  1156. <rect key="frame" x="0.0" y="132.5" width="768" height="44"/>
  1157. <autoresizingMask key="autoresizingMask"/>
  1158. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Pol-lE-P45" id="FAm-1c-nX0">
  1159. <rect key="frame" x="0.0" y="0.0" width="739.5" height="44"/>
  1160. <autoresizingMask key="autoresizingMask"/>
  1161. <subviews>
  1162. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Clean Cache" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="AHm-p1-51h">
  1163. <rect key="frame" x="20" y="11" width="120" height="21"/>
  1164. <constraints>
  1165. <constraint firstAttribute="width" constant="120" id="S5w-mj-bdv"/>
  1166. <constraint firstAttribute="height" constant="21" id="fAE-p9-tse"/>
  1167. </constraints>
  1168. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1169. <nil key="highlightedColor"/>
  1170. </label>
  1171. </subviews>
  1172. <constraints>
  1173. <constraint firstItem="AHm-p1-51h" firstAttribute="leading" secondItem="FAm-1c-nX0" secondAttribute="leading" constant="20" id="8ZZ-3L-je6"/>
  1174. <constraint firstItem="AHm-p1-51h" firstAttribute="top" secondItem="FAm-1c-nX0" secondAttribute="top" constant="11" id="PVx-Cs-UHa"/>
  1175. <constraint firstAttribute="bottom" secondItem="AHm-p1-51h" secondAttribute="bottom" constant="12" id="lks-1h-E4B"/>
  1176. </constraints>
  1177. </tableViewCellContentView>
  1178. </tableViewCell>
  1179. </cells>
  1180. </tableViewSection>
  1181. </sections>
  1182. <connections>
  1183. <outlet property="dataSource" destination="SCh-P5-b9w" id="V7V-Rb-Kav"/>
  1184. <outlet property="delegate" destination="SCh-P5-b9w" id="B4H-r7-aS3"/>
  1185. </connections>
  1186. </tableView>
  1187. <navigationItem key="navigationItem" title="Cache" id="IG0-Dw-a0J"/>
  1188. <connections>
  1189. <outlet property="catchSwitch" destination="PJV-YE-GvQ" id="2N3-Pq-QXJ"/>
  1190. <outlet property="mum" destination="D0F-Ed-Wng" id="1mp-TU-vTM"/>
  1191. <outlet property="sizeLabel" destination="el1-Tc-PkB" id="ooE-we-dgL"/>
  1192. </connections>
  1193. </tableViewController>
  1194. <placeholder placeholderIdentifier="IBFirstResponder" id="FEW-hW-hPv" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1195. </objects>
  1196. <point key="canvasLocation" x="937.5" y="-2527.1484375"/>
  1197. </scene>
  1198. <!--Popup Navigation Controller-->
  1199. <scene sceneID="huE-IR-N6G">
  1200. <objects>
  1201. <navigationController storyboardIdentifier="PopupNavi" definesPresentationContext="YES" useStoryboardIdentifierAsRestorationIdentifier="YES" id="O4f-Xf-sca" customClass="PopupNavigationController" sceneMemberID="viewController">
  1202. <navigationBar key="navigationBar" contentMode="scaleToFill" id="jDv-A4-an8">
  1203. <rect key="frame" x="0.0" y="20" width="768" height="50"/>
  1204. <autoresizingMask key="autoresizingMask"/>
  1205. </navigationBar>
  1206. </navigationController>
  1207. <placeholder placeholderIdentifier="IBFirstResponder" id="Tew-5G-eJV" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1208. </objects>
  1209. <point key="canvasLocation" x="-453.125" y="-816.796875"/>
  1210. </scene>
  1211. <!--Black Box-->
  1212. <scene sceneID="cVU-iS-CVg">
  1213. <objects>
  1214. <viewController storyboardIdentifier="FunctionTestViewController" title="Black Box" useStoryboardIdentifierAsRestorationIdentifier="YES" id="kPm-vh-Xir" customClass="FunctionTestViewController" sceneMemberID="viewController">
  1215. <view key="view" contentMode="scaleToFill" id="c5B-Gi-I5E">
  1216. <rect key="frame" x="0.0" y="0.0" width="768" height="1024"/>
  1217. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1218. <subviews>
  1219. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="f2s-mC-wXH">
  1220. <rect key="frame" x="60" y="262" width="250" height="30"/>
  1221. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1222. <state key="normal" title="Background print"/>
  1223. <connections>
  1224. <action selector="onBackgroundprintClick:" destination="kPm-vh-Xir" eventType="touchUpInside" id="ADx-Bs-IY1"/>
  1225. </connections>
  1226. </button>
  1227. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="3Vw-af-LUM">
  1228. <rect key="frame" x="60" y="201" width="250" height="30"/>
  1229. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1230. <state key="normal" title="Printer Setting"/>
  1231. <connections>
  1232. <action selector="onPrintersettingClick:" destination="kPm-vh-Xir" eventType="touchUpInside" id="ign-k9-WDe"/>
  1233. </connections>
  1234. </button>
  1235. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="printer will show here" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="hx4-8E-afz">
  1236. <rect key="frame" x="342" y="210" width="190" height="21"/>
  1237. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1238. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1239. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1240. <nil key="highlightedColor"/>
  1241. </label>
  1242. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="4aT-F9-r30">
  1243. <rect key="frame" x="94" y="388" width="183" height="30"/>
  1244. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1245. <state key="normal" title="Print"/>
  1246. <connections>
  1247. <action selector="OnPrintParamsClick:" destination="kPm-vh-Xir" eventType="touchUpInside" id="5NP-He-9AA"/>
  1248. </connections>
  1249. </button>
  1250. </subviews>
  1251. <viewLayoutGuide key="safeArea" id="TDE-LW-r8Y"/>
  1252. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1253. </view>
  1254. <connections>
  1255. <outlet property="labelPrintername" destination="hx4-8E-afz" id="Uu8-1I-s5L"/>
  1256. </connections>
  1257. </viewController>
  1258. <placeholder placeholderIdentifier="IBFirstResponder" id="SqT-Vo-cY8" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1259. </objects>
  1260. <point key="canvasLocation" x="949.21875" y="2638.4765625"/>
  1261. </scene>
  1262. <!--Upload Photo-->
  1263. <scene sceneID="kaQ-l6-cav">
  1264. <objects>
  1265. <viewController storyboardIdentifier="ImageUploadViewController" title="Upload Photo" useStoryboardIdentifierAsRestorationIdentifier="YES" id="yoP-dB-tvg" customClass="ImageUploadViewController" sceneMemberID="viewController">
  1266. <view key="view" contentMode="scaleToFill" id="Jl1-Pm-bf5">
  1267. <rect key="frame" x="0.0" y="0.0" width="768" height="1024"/>
  1268. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1269. <subviews>
  1270. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" insetsLayoutMarginsFromSafeArea="NO" translatesAutoresizingMaskIntoConstraints="NO" id="5ri-5V-GiE">
  1271. <rect key="frame" x="84" y="140" width="600" height="724"/>
  1272. <color key="backgroundColor" red="0.79277843236923218" green="0.79277843236923218" blue="0.79277843236923218" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1273. </imageView>
  1274. <button opaque="NO" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Na7-Cn-iPo">
  1275. <rect key="frame" x="82" y="900" width="48" height="48"/>
  1276. <constraints>
  1277. <constraint firstAttribute="height" constant="48" id="U6r-4X-yDY"/>
  1278. <constraint firstAttribute="width" constant="48" id="n8g-R9-DsX"/>
  1279. </constraints>
  1280. <state key="normal" image="album"/>
  1281. <connections>
  1282. <action selector="onClickAlbum:" destination="yoP-dB-tvg" eventType="touchUpInside" id="r6T-zf-AOR"/>
  1283. </connections>
  1284. </button>
  1285. <button opaque="NO" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="t9M-g5-jQa">
  1286. <rect key="frame" x="173" y="900" width="48" height="48"/>
  1287. <constraints>
  1288. <constraint firstAttribute="height" constant="48" id="acz-Es-WzN"/>
  1289. <constraint firstAttribute="width" constant="48" id="bc7-FB-hAx"/>
  1290. </constraints>
  1291. <state key="normal" image="camera"/>
  1292. <connections>
  1293. <action selector="onClickCamera:" destination="yoP-dB-tvg" eventType="touchUpInside" id="I9k-Sb-ExD"/>
  1294. </connections>
  1295. </button>
  1296. <button opaque="NO" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="8fL-NB-sPV">
  1297. <rect key="frame" x="635" y="900" width="48" height="48"/>
  1298. <constraints>
  1299. <constraint firstAttribute="width" constant="48" id="78F-O0-z56"/>
  1300. <constraint firstAttribute="height" constant="48" id="AaV-ZZ-MJT"/>
  1301. </constraints>
  1302. <state key="normal" image="upload"/>
  1303. <connections>
  1304. <action selector="onClickUpload:" destination="yoP-dB-tvg" eventType="touchUpInside" id="gwB-hs-npR"/>
  1305. </connections>
  1306. </button>
  1307. <progressView opaque="NO" contentMode="scaleToFill" verticalHuggingPriority="750" insetsLayoutMarginsFromSafeArea="NO" progressViewStyle="bar" translatesAutoresizingMaskIntoConstraints="NO" id="N7c-8k-EE4">
  1308. <rect key="frame" x="84" y="879" width="600" height="4"/>
  1309. <color key="backgroundColor" red="0.081770886230000006" green="0.40781933069999998" blue="0.094417002809999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1310. <constraints>
  1311. <constraint firstAttribute="height" constant="3" id="1Yh-dZ-FJ4"/>
  1312. </constraints>
  1313. </progressView>
  1314. </subviews>
  1315. <viewLayoutGuide key="safeArea" id="IAj-uF-ECE"/>
  1316. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1317. <constraints>
  1318. <constraint firstItem="IAj-uF-ECE" firstAttribute="bottom" secondItem="8fL-NB-sPV" secondAttribute="bottom" constant="76" id="0eH-FM-71C"/>
  1319. <constraint firstItem="N7c-8k-EE4" firstAttribute="top" secondItem="5ri-5V-GiE" secondAttribute="bottom" constant="15" id="2PS-5E-slp"/>
  1320. <constraint firstItem="IAj-uF-ECE" firstAttribute="bottom" secondItem="Na7-Cn-iPo" secondAttribute="bottom" constant="76" id="3rv-Do-e6v"/>
  1321. <constraint firstItem="IAj-uF-ECE" firstAttribute="trailing" secondItem="8fL-NB-sPV" secondAttribute="trailing" constant="85" id="Iqg-OS-LcZ"/>
  1322. <constraint firstItem="Na7-Cn-iPo" firstAttribute="leading" secondItem="IAj-uF-ECE" secondAttribute="leading" constant="82" id="TW0-dW-ONy"/>
  1323. <constraint firstItem="N7c-8k-EE4" firstAttribute="leading" secondItem="Jl1-Pm-bf5" secondAttribute="leading" constant="84" id="WV3-sb-COE"/>
  1324. <constraint firstAttribute="trailing" secondItem="N7c-8k-EE4" secondAttribute="trailing" constant="84" id="cDi-0d-udq"/>
  1325. <constraint firstItem="Na7-Cn-iPo" firstAttribute="top" secondItem="N7c-8k-EE4" secondAttribute="bottom" constant="18" id="gO1-oX-3mT"/>
  1326. <constraint firstItem="t9M-g5-jQa" firstAttribute="leading" secondItem="Na7-Cn-iPo" secondAttribute="trailing" constant="43" id="lio-Uh-NDK"/>
  1327. <constraint firstItem="5ri-5V-GiE" firstAttribute="leading" secondItem="IAj-uF-ECE" secondAttribute="leading" constant="84" id="scL-Br-dHn"/>
  1328. <constraint firstItem="5ri-5V-GiE" firstAttribute="top" secondItem="IAj-uF-ECE" secondAttribute="top" constant="120" id="uKF-tN-2Mh"/>
  1329. <constraint firstItem="IAj-uF-ECE" firstAttribute="trailing" secondItem="5ri-5V-GiE" secondAttribute="trailing" constant="84" id="voQ-ho-iap"/>
  1330. <constraint firstItem="IAj-uF-ECE" firstAttribute="bottom" secondItem="t9M-g5-jQa" secondAttribute="bottom" constant="76" id="z4T-7B-jfS"/>
  1331. </constraints>
  1332. </view>
  1333. <connections>
  1334. <outlet property="buttonAlbum" destination="Na7-Cn-iPo" id="69T-ox-Obc"/>
  1335. <outlet property="buttonCamera" destination="t9M-g5-jQa" id="Q5w-84-qiU"/>
  1336. <outlet property="buttonUpload" destination="8fL-NB-sPV" id="nt7-iR-m69"/>
  1337. <outlet property="imgview" destination="5ri-5V-GiE" id="DVk-hE-8i0"/>
  1338. <outlet property="uploadProgress" destination="N7c-8k-EE4" id="lZo-Gc-okV"/>
  1339. </connections>
  1340. </viewController>
  1341. <placeholder placeholderIdentifier="IBFirstResponder" id="t9J-cc-PR0" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1342. </objects>
  1343. <point key="canvasLocation" x="5323.4375" y="445.89843749999994"/>
  1344. </scene>
  1345. <!--RetrievePassViewController-->
  1346. <scene sceneID="UaH-26-0Pi">
  1347. <objects>
  1348. <viewController storyboardIdentifier="RetrievePassViewController" title="RetrievePassViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="A7H-cd-cEh" customClass="RetrievePassViewController" sceneMemberID="viewController">
  1349. <view key="view" contentMode="scaleToFill" id="8T3-kQ-dJ2">
  1350. <rect key="frame" x="0.0" y="0.0" width="480" height="320"/>
  1351. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1352. <subviews>
  1353. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" placeholder="User" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="qk3-tB-bW0">
  1354. <rect key="frame" x="60" y="164" width="360" height="34"/>
  1355. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1356. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1357. <textInputTraits key="textInputTraits"/>
  1358. </textField>
  1359. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" placeholder="Email" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="bZG-Uc-zBh">
  1360. <rect key="frame" x="60" y="213" width="360" height="34"/>
  1361. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1362. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1363. <textInputTraits key="textInputTraits" keyboardType="emailAddress"/>
  1364. </textField>
  1365. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Fill Username and email address, then click Retrieve button.Reset password email will be sent to your email address shortly." lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Hyd-5M-IPx">
  1366. <rect key="frame" x="60" y="80" width="360" height="74"/>
  1367. <constraints>
  1368. <constraint firstAttribute="height" constant="74" id="ywg-QF-UYx"/>
  1369. </constraints>
  1370. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1371. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1372. <nil key="highlightedColor"/>
  1373. </label>
  1374. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="NtX-di-oxp" customClass="DefaultImageButton">
  1375. <rect key="frame" x="358" y="270" width="102" height="30"/>
  1376. <constraints>
  1377. <constraint firstAttribute="width" constant="102" id="gCp-Ua-0Pb"/>
  1378. <constraint firstAttribute="height" constant="30" id="kBg-ZD-rin"/>
  1379. </constraints>
  1380. <fontDescription key="fontDescription" type="system" pointSize="20"/>
  1381. <state key="normal" title="Retrieve" backgroundImage="btn_retrieve">
  1382. <color key="titleColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  1383. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1384. </state>
  1385. <userDefinedRuntimeAttributes>
  1386. <userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
  1387. <integer key="value" value="19"/>
  1388. </userDefinedRuntimeAttribute>
  1389. </userDefinedRuntimeAttributes>
  1390. <connections>
  1391. <action selector="onLoginClick:" destination="Q1j-qK-Nq8" eventType="touchUpInside" id="Ypk-0a-iRJ"/>
  1392. <action selector="onRetrieveClicked:" destination="A7H-cd-cEh" eventType="touchUpInside" id="2P5-4Y-0SI"/>
  1393. </connections>
  1394. </button>
  1395. </subviews>
  1396. <viewLayoutGuide key="safeArea" id="pDW-qe-5Kr"/>
  1397. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1398. <constraints>
  1399. <constraint firstItem="pDW-qe-5Kr" firstAttribute="trailing" secondItem="NtX-di-oxp" secondAttribute="trailing" constant="20" id="DE6-Ut-aCG"/>
  1400. <constraint firstItem="Hyd-5M-IPx" firstAttribute="top" secondItem="pDW-qe-5Kr" secondAttribute="top" constant="60" id="Loc-rI-fja"/>
  1401. <constraint firstItem="pDW-qe-5Kr" firstAttribute="trailing" secondItem="qk3-tB-bW0" secondAttribute="trailing" constant="60" id="RYG-7U-HVf"/>
  1402. <constraint firstItem="bZG-Uc-zBh" firstAttribute="leading" secondItem="pDW-qe-5Kr" secondAttribute="leading" constant="60" id="f4m-aM-TV8"/>
  1403. <constraint firstItem="pDW-qe-5Kr" firstAttribute="trailing" secondItem="Hyd-5M-IPx" secondAttribute="trailing" constant="60" id="lTI-dt-cIC"/>
  1404. <constraint firstItem="Hyd-5M-IPx" firstAttribute="leading" secondItem="pDW-qe-5Kr" secondAttribute="leading" constant="60" id="mVk-qY-5bG"/>
  1405. <constraint firstItem="pDW-qe-5Kr" firstAttribute="bottom" secondItem="NtX-di-oxp" secondAttribute="bottom" constant="20" id="mqm-s6-Vzl"/>
  1406. <constraint firstItem="qk3-tB-bW0" firstAttribute="top" secondItem="Hyd-5M-IPx" secondAttribute="bottom" constant="10" id="nkN-4f-g9E"/>
  1407. <constraint firstItem="bZG-Uc-zBh" firstAttribute="top" secondItem="qk3-tB-bW0" secondAttribute="bottom" constant="15" id="ogb-oR-mXK"/>
  1408. <constraint firstItem="pDW-qe-5Kr" firstAttribute="trailing" secondItem="bZG-Uc-zBh" secondAttribute="trailing" constant="60" id="vkd-E1-zxy"/>
  1409. <constraint firstItem="qk3-tB-bW0" firstAttribute="leading" secondItem="pDW-qe-5Kr" secondAttribute="leading" constant="60" id="wfW-1p-qls"/>
  1410. </constraints>
  1411. </view>
  1412. <navigationItem key="navigationItem" title="Retrieve password" id="DaL-NM-hQp"/>
  1413. <value key="contentSizeForViewInPopover" type="size" width="480" height="320"/>
  1414. <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
  1415. <size key="freeformSize" width="480" height="320"/>
  1416. <connections>
  1417. <outlet property="buttonRetrieve" destination="NtX-di-oxp" id="hnp-du-mwt"/>
  1418. <outlet property="editEmail" destination="bZG-Uc-zBh" id="aXN-c2-1og"/>
  1419. <outlet property="editUser" destination="qk3-tB-bW0" id="kx5-yH-QAZ"/>
  1420. </connections>
  1421. </viewController>
  1422. <placeholder placeholderIdentifier="IBFirstResponder" id="VMB-gd-nbo" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1423. </objects>
  1424. <point key="canvasLocation" x="1135.9375" y="-669.140625"/>
  1425. </scene>
  1426. <!--Scanner Setting-->
  1427. <scene sceneID="Q8f-rb-b7i">
  1428. <objects>
  1429. <viewController storyboardIdentifier="ScannerSettingViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="Vzz-Pc-fRk" customClass="ScannerSettingViewController" sceneMemberID="viewController">
  1430. <view key="view" contentMode="scaleToFill" id="bSK-wT-Xlu">
  1431. <rect key="frame" x="0.0" y="0.0" width="768" height="1024"/>
  1432. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1433. <subviews>
  1434. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="44" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="VyB-jG-KP0">
  1435. <rect key="frame" x="15" y="132" width="738" height="180"/>
  1436. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1437. <constraints>
  1438. <constraint firstAttribute="height" constant="180" id="2cR-CK-9h6"/>
  1439. </constraints>
  1440. <prototypes>
  1441. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="device_cell" textLabel="HwF-54-hzr" style="IBUITableViewCellStyleDefault" id="nP5-gn-0Jl">
  1442. <rect key="frame" x="0.0" y="44.5" width="738" height="44"/>
  1443. <autoresizingMask key="autoresizingMask"/>
  1444. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="nP5-gn-0Jl" id="MCy-CI-ivv">
  1445. <rect key="frame" x="0.0" y="0.0" width="738" height="44"/>
  1446. <autoresizingMask key="autoresizingMask"/>
  1447. <subviews>
  1448. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="Title" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="HwF-54-hzr">
  1449. <rect key="frame" x="16" y="0.0" width="706" height="44"/>
  1450. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1451. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  1452. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1453. <nil key="highlightedColor"/>
  1454. </label>
  1455. </subviews>
  1456. </tableViewCellContentView>
  1457. </tableViewCell>
  1458. </prototypes>
  1459. <connections>
  1460. <outlet property="dataSource" destination="Vzz-Pc-fRk" id="1Ij-sX-H77"/>
  1461. <outlet property="delegate" destination="Vzz-Pc-fRk" id="vLi-BX-e7c"/>
  1462. </connections>
  1463. </tableView>
  1464. <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" translatesAutoresizingMaskIntoConstraints="NO" id="OJ7-LV-Bht">
  1465. <rect key="frame" x="163" y="40" width="51" height="31"/>
  1466. <connections>
  1467. <action selector="onSwitchChanged:" destination="Vzz-Pc-fRk" eventType="valueChanged" id="gnp-Sn-kzz"/>
  1468. </connections>
  1469. </switch>
  1470. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Enable scanner" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ZiN-wp-62B">
  1471. <rect key="frame" x="15" y="45" width="140" height="21"/>
  1472. <constraints>
  1473. <constraint firstAttribute="width" constant="140" id="N1G-pB-rq5"/>
  1474. <constraint firstAttribute="height" constant="21" id="b2y-i9-FAs"/>
  1475. </constraints>
  1476. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1477. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1478. <nil key="highlightedColor"/>
  1479. </label>
  1480. <activityIndicatorView hidden="YES" opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" hidesWhenStopped="YES" style="gray" translatesAutoresizingMaskIntoConstraints="NO" id="LCZ-qf-CXh">
  1481. <rect key="frame" x="220" y="45.5" width="20" height="20"/>
  1482. <constraints>
  1483. <constraint firstAttribute="width" constant="20" id="Mtf-Nd-fgo"/>
  1484. <constraint firstAttribute="height" constant="20" id="e6k-Ig-ObT"/>
  1485. </constraints>
  1486. </activityIndicatorView>
  1487. <textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" showsHorizontalScrollIndicator="NO" textAlignment="natural" translatesAutoresizingMaskIntoConstraints="NO" id="JYl-x5-cTc">
  1488. <rect key="frame" x="15" y="398.5" width="738" height="560.5"/>
  1489. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1490. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  1491. <textInputTraits key="textInputTraits" autocapitalizationType="sentences"/>
  1492. </textView>
  1493. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" placeholder="Scan result should display here" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="fWr-gY-E10">
  1494. <rect key="frame" x="163" y="327" width="590" height="34"/>
  1495. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  1496. <textInputTraits key="textInputTraits"/>
  1497. </textField>
  1498. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Off" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="bOR-xy-Td3">
  1499. <rect key="frame" x="248" y="45" width="505" height="21"/>
  1500. <constraints>
  1501. <constraint firstAttribute="height" constant="21" id="Egj-ta-wwE"/>
  1502. </constraints>
  1503. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1504. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1505. <nil key="highlightedColor"/>
  1506. </label>
  1507. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Test Scanner" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ECq-fH-MLi">
  1508. <rect key="frame" x="15" y="333.5" width="140" height="21"/>
  1509. <constraints>
  1510. <constraint firstAttribute="width" constant="140" id="5He-AN-tMo"/>
  1511. <constraint firstAttribute="height" constant="21" id="P8f-wS-lXd"/>
  1512. </constraints>
  1513. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1514. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1515. <nil key="highlightedColor"/>
  1516. </label>
  1517. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="right" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="iby-OM-AKk">
  1518. <rect key="frame" x="674" y="974" width="74" height="30"/>
  1519. <constraints>
  1520. <constraint firstAttribute="width" constant="74" id="CsX-ar-pk3"/>
  1521. <constraint firstAttribute="height" constant="30" id="sDj-r5-vnF"/>
  1522. </constraints>
  1523. <state key="normal" title="Send Log"/>
  1524. <connections>
  1525. <action selector="onEmailClicked:" destination="Vzz-Pc-fRk" eventType="touchUpInside" id="Zpf-p1-pzw"/>
  1526. </connections>
  1527. </button>
  1528. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Enable on launch" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="MT9-hb-STe">
  1529. <rect key="frame" x="15" y="91" width="140" height="21"/>
  1530. <constraints>
  1531. <constraint firstAttribute="height" constant="21" id="2KN-V5-vPB"/>
  1532. <constraint firstAttribute="width" constant="140" id="9ES-CD-8Az"/>
  1533. </constraints>
  1534. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1535. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1536. <nil key="highlightedColor"/>
  1537. </label>
  1538. <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" translatesAutoresizingMaskIntoConstraints="NO" id="LjS-4t-q6l">
  1539. <rect key="frame" x="163" y="86" width="51" height="31"/>
  1540. <connections>
  1541. <action selector="onChangeAutolaunch:" destination="Vzz-Pc-fRk" eventType="valueChanged" id="lNd-bl-eYL"/>
  1542. </connections>
  1543. </switch>
  1544. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Log" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="mDb-R3-eZv">
  1545. <rect key="frame" x="15" y="369.5" width="140" height="21"/>
  1546. <constraints>
  1547. <constraint firstAttribute="height" constant="21" id="2mG-Th-8Cu"/>
  1548. <constraint firstAttribute="width" constant="140" id="JKa-Fa-yML"/>
  1549. </constraints>
  1550. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1551. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1552. <nil key="highlightedColor"/>
  1553. </label>
  1554. </subviews>
  1555. <viewLayoutGuide key="safeArea" id="KKD-kZ-g9f"/>
  1556. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1557. <constraints>
  1558. <constraint firstItem="iby-OM-AKk" firstAttribute="top" secondItem="JYl-x5-cTc" secondAttribute="bottom" constant="15" id="2GK-lD-nDa"/>
  1559. <constraint firstItem="KKD-kZ-g9f" firstAttribute="bottom" secondItem="iby-OM-AKk" secondAttribute="bottom" constant="20" id="7bN-jC-jEs"/>
  1560. <constraint firstItem="OJ7-LV-Bht" firstAttribute="centerY" secondItem="ZiN-wp-62B" secondAttribute="centerY" id="AbP-bp-XFs"/>
  1561. <constraint firstItem="fWr-gY-E10" firstAttribute="trailing" secondItem="VyB-jG-KP0" secondAttribute="trailing" id="BOV-e1-Btb"/>
  1562. <constraint firstItem="ZiN-wp-62B" firstAttribute="leading" secondItem="KKD-kZ-g9f" secondAttribute="leading" constant="15" id="Bx5-1Q-mtz"/>
  1563. <constraint firstItem="KKD-kZ-g9f" firstAttribute="trailing" secondItem="bOR-xy-Td3" secondAttribute="trailing" constant="15" id="Cax-ct-94Z"/>
  1564. <constraint firstItem="KKD-kZ-g9f" firstAttribute="trailing" secondItem="iby-OM-AKk" secondAttribute="trailing" constant="20" id="CtY-aV-NHm"/>
  1565. <constraint firstItem="bOR-xy-Td3" firstAttribute="leading" secondItem="LCZ-qf-CXh" secondAttribute="trailing" constant="8" id="Euw-Ug-Yhf"/>
  1566. <constraint firstItem="LjS-4t-q6l" firstAttribute="centerY" secondItem="MT9-hb-STe" secondAttribute="centerY" id="IMq-O5-zbI"/>
  1567. <constraint firstItem="bOR-xy-Td3" firstAttribute="trailing" secondItem="VyB-jG-KP0" secondAttribute="trailing" id="IxN-FF-hts"/>
  1568. <constraint firstItem="ZiN-wp-62B" firstAttribute="top" secondItem="KKD-kZ-g9f" secondAttribute="top" constant="25" id="JGh-sx-eLE"/>
  1569. <constraint firstItem="JYl-x5-cTc" firstAttribute="top" secondItem="mDb-R3-eZv" secondAttribute="bottom" constant="8" id="MDe-RS-kEl"/>
  1570. <constraint firstItem="mDb-R3-eZv" firstAttribute="leading" secondItem="ZiN-wp-62B" secondAttribute="leading" id="NI9-6l-uOW"/>
  1571. <constraint firstItem="ECq-fH-MLi" firstAttribute="leading" secondItem="ZiN-wp-62B" secondAttribute="leading" id="NyU-gc-tV6"/>
  1572. <constraint firstItem="JYl-x5-cTc" firstAttribute="trailing" secondItem="VyB-jG-KP0" secondAttribute="trailing" id="PZN-wV-4cr"/>
  1573. <constraint firstItem="LjS-4t-q6l" firstAttribute="top" secondItem="OJ7-LV-Bht" secondAttribute="bottom" constant="15" id="Pr4-Fs-Qqa"/>
  1574. <constraint firstItem="LCZ-qf-CXh" firstAttribute="centerY" secondItem="ZiN-wp-62B" secondAttribute="centerY" id="V5V-lZ-Y4K"/>
  1575. <constraint firstItem="bOR-xy-Td3" firstAttribute="centerY" secondItem="ZiN-wp-62B" secondAttribute="centerY" id="Vd4-v6-ox5"/>
  1576. <constraint firstItem="mDb-R3-eZv" firstAttribute="top" secondItem="ECq-fH-MLi" secondAttribute="bottom" constant="15" id="ZCb-pX-JWm"/>
  1577. <constraint firstItem="fWr-gY-E10" firstAttribute="leading" secondItem="ECq-fH-MLi" secondAttribute="trailing" constant="8" id="cqX-Gb-Kf2"/>
  1578. <constraint firstItem="fWr-gY-E10" firstAttribute="top" secondItem="VyB-jG-KP0" secondAttribute="bottom" constant="15" id="dDp-P8-94U"/>
  1579. <constraint firstItem="VyB-jG-KP0" firstAttribute="leading" secondItem="ZiN-wp-62B" secondAttribute="leading" id="gqI-kj-WDN"/>
  1580. <constraint firstItem="MT9-hb-STe" firstAttribute="leading" secondItem="ZiN-wp-62B" secondAttribute="leading" id="j8e-Xt-tM4"/>
  1581. <constraint firstItem="LjS-4t-q6l" firstAttribute="leading" secondItem="MT9-hb-STe" secondAttribute="trailing" constant="8" id="p6f-pu-RiZ"/>
  1582. <constraint firstItem="VyB-jG-KP0" firstAttribute="top" secondItem="LjS-4t-q6l" secondAttribute="bottom" constant="15" id="syM-xg-CQk"/>
  1583. <constraint firstItem="LCZ-qf-CXh" firstAttribute="leading" secondItem="OJ7-LV-Bht" secondAttribute="trailing" constant="8" id="vaa-eq-qxO"/>
  1584. <constraint firstItem="fWr-gY-E10" firstAttribute="centerY" secondItem="ECq-fH-MLi" secondAttribute="centerY" id="vqb-Zw-fEe"/>
  1585. <constraint firstItem="JYl-x5-cTc" firstAttribute="leading" secondItem="ZiN-wp-62B" secondAttribute="leading" id="xIx-5T-HaU"/>
  1586. <constraint firstItem="OJ7-LV-Bht" firstAttribute="leading" secondItem="ZiN-wp-62B" secondAttribute="trailing" constant="8" id="xmI-Sx-xFm"/>
  1587. </constraints>
  1588. </view>
  1589. <navigationItem key="navigationItem" title="Scanner Setting" id="0x7-eV-68o"/>
  1590. <connections>
  1591. <outlet property="Entry" destination="fWr-gY-E10" id="UMk-lh-s7b"/>
  1592. <outlet property="Status" destination="bOR-xy-Td3" id="juN-iS-3Oq"/>
  1593. <outlet property="auto_launch_switch" destination="LjS-4t-q6l" id="qmB-PX-xvu"/>
  1594. <outlet property="dev_table" destination="VyB-jG-KP0" id="WgJ-Ad-WdL"/>
  1595. <outlet property="scan_switch" destination="OJ7-LV-Bht" id="ZuE-wH-ueW"/>
  1596. <outlet property="tv_info" destination="JYl-x5-cTc" id="usE-t3-8di"/>
  1597. </connections>
  1598. </viewController>
  1599. <placeholder placeholderIdentifier="IBFirstResponder" id="VLx-Vj-QtX" sceneMemberID="firstResponder"/>
  1600. </objects>
  1601. <point key="canvasLocation" x="-1217.1875" y="-231.44531249999997"/>
  1602. </scene>
  1603. <!--UserList-->
  1604. <scene sceneID="Wq4-cC-3aA">
  1605. <objects>
  1606. <viewController storyboardIdentifier="UserListViewController" title="User List" useStoryboardIdentifierAsRestorationIdentifier="YES" id="7jS-F0-BYF" userLabel="UserList" customClass="UserListViewController" sceneMemberID="viewController">
  1607. <view key="view" contentMode="scaleToFill" id="ejd-Pb-3pQ">
  1608. <rect key="frame" x="0.0" y="0.0" width="480" height="320"/>
  1609. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1610. <subviews>
  1611. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="3aO-EE-nul" customClass="DefaultImageButton">
  1612. <rect key="frame" x="358" y="270" width="102" height="30"/>
  1613. <constraints>
  1614. <constraint firstAttribute="width" constant="102" id="Lrd-BO-vRu"/>
  1615. <constraint firstAttribute="height" constant="30" id="pkH-Zw-uEn"/>
  1616. </constraints>
  1617. <fontDescription key="fontDescription" type="system" pointSize="20"/>
  1618. <state key="normal" title="Cancel" backgroundImage="btn_cancel">
  1619. <color key="titleColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  1620. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1621. </state>
  1622. <userDefinedRuntimeAttributes>
  1623. <userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
  1624. <integer key="value" value="19"/>
  1625. </userDefinedRuntimeAttribute>
  1626. </userDefinedRuntimeAttributes>
  1627. <connections>
  1628. <action selector="CloseClick:" destination="7jS-F0-BYF" eventType="touchUpInside" id="jCk-Zm-feM"/>
  1629. </connections>
  1630. </button>
  1631. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="44" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="PEc-Rn-eBz">
  1632. <rect key="frame" x="20" y="40" width="440" height="222"/>
  1633. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1634. <prototypes>
  1635. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="LoginListCell" textLabel="NOt-hZ-Ysa" style="IBUITableViewCellStyleDefault" id="FV6-lD-g7T">
  1636. <rect key="frame" x="0.0" y="44.5" width="440" height="44"/>
  1637. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1638. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="FV6-lD-g7T" id="FCT-G6-wmp">
  1639. <rect key="frame" x="0.0" y="0.0" width="440" height="44"/>
  1640. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1641. <subviews>
  1642. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="Title" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="NOt-hZ-Ysa">
  1643. <rect key="frame" x="16" y="0.0" width="408" height="44"/>
  1644. <autoresizingMask key="autoresizingMask"/>
  1645. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  1646. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1647. <nil key="highlightedColor"/>
  1648. </label>
  1649. </subviews>
  1650. </tableViewCellContentView>
  1651. </tableViewCell>
  1652. </prototypes>
  1653. <connections>
  1654. <outlet property="dataSource" destination="7jS-F0-BYF" id="BAQ-lr-809"/>
  1655. <outlet property="delegate" destination="7jS-F0-BYF" id="PIs-xH-kbx"/>
  1656. </connections>
  1657. </tableView>
  1658. </subviews>
  1659. <viewLayoutGuide key="safeArea" id="Beg-sK-fzg"/>
  1660. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1661. <constraints>
  1662. <constraint firstItem="Beg-sK-fzg" firstAttribute="trailing" secondItem="PEc-Rn-eBz" secondAttribute="trailing" constant="20" id="1r6-xs-UTS"/>
  1663. <constraint firstItem="3aO-EE-nul" firstAttribute="top" secondItem="PEc-Rn-eBz" secondAttribute="bottom" constant="8" id="Ghn-tl-3rf"/>
  1664. <constraint firstItem="PEc-Rn-eBz" firstAttribute="top" secondItem="Beg-sK-fzg" secondAttribute="top" constant="20" id="OhA-gF-8Hj"/>
  1665. <constraint firstItem="PEc-Rn-eBz" firstAttribute="leading" secondItem="Beg-sK-fzg" secondAttribute="leading" constant="20" id="dfG-DC-Q7J"/>
  1666. <constraint firstItem="Beg-sK-fzg" firstAttribute="bottom" secondItem="3aO-EE-nul" secondAttribute="bottom" constant="20" id="oyl-5q-jiX"/>
  1667. <constraint firstItem="Beg-sK-fzg" firstAttribute="trailing" secondItem="3aO-EE-nul" secondAttribute="trailing" constant="20" id="uTj-HD-d87"/>
  1668. </constraints>
  1669. </view>
  1670. <navigationItem key="navigationItem" title="NPD" id="5uK-LV-Wk4">
  1671. <barButtonItem key="rightBarButtonItem" image="close" style="plain" id="3MC-QS-uFr">
  1672. <connections>
  1673. <action selector="CloseClick:" destination="7jS-F0-BYF" id="his-7P-5QX"/>
  1674. </connections>
  1675. </barButtonItem>
  1676. </navigationItem>
  1677. <value key="contentSizeForViewInPopover" type="size" width="480" height="320"/>
  1678. <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
  1679. <size key="freeformSize" width="480" height="320"/>
  1680. <connections>
  1681. <outlet property="bb_close" destination="3MC-QS-uFr" id="4Ww-1Z-bhS"/>
  1682. <outlet property="btnclose" destination="3aO-EE-nul" id="suf-9R-p6N"/>
  1683. </connections>
  1684. </viewController>
  1685. <placeholder placeholderIdentifier="IBFirstResponder" id="xUX-Lu-v8H" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1686. </objects>
  1687. <point key="canvasLocation" x="1548.4375" y="-1224.0234375"/>
  1688. </scene>
  1689. <!--About us-->
  1690. <scene sceneID="L5K-JL-t01">
  1691. <objects>
  1692. <viewController storyboardIdentifier="AboutViewController" title="About us" useStoryboardIdentifierAsRestorationIdentifier="YES" id="BJK-Xc-rOI" customClass="AboutViewController" sceneMemberID="viewController">
  1693. <view key="view" contentMode="scaleToFill" id="Tg0-Yd-fvX">
  1694. <rect key="frame" x="0.0" y="0.0" width="480" height="320"/>
  1695. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1696. <subviews>
  1697. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="cA7-od-VYw">
  1698. <rect key="frame" x="0.0" y="0.0" width="480" height="320"/>
  1699. <subviews>
  1700. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="NPD Mobile" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="u8k-9F-gQG">
  1701. <rect key="frame" x="139" y="33" width="306" height="21"/>
  1702. <constraints>
  1703. <constraint firstAttribute="height" constant="21" id="Ifh-bc-FmB"/>
  1704. </constraints>
  1705. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1706. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1707. <nil key="highlightedColor"/>
  1708. </label>
  1709. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="about" translatesAutoresizingMaskIntoConstraints="NO" id="tQE-Kl-1v3">
  1710. <rect key="frame" x="35" y="19" width="96" height="96"/>
  1711. <constraints>
  1712. <constraint firstAttribute="width" constant="96" id="CbL-zf-w1P"/>
  1713. <constraint firstAttribute="height" constant="96" id="kzE-hA-dq5"/>
  1714. </constraints>
  1715. </imageView>
  1716. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="New Pacific Direct" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Jh9-JO-Lbj">
  1717. <rect key="frame" x="139" y="54" width="306" height="61"/>
  1718. <fontDescription key="fontDescription" type="system" pointSize="24"/>
  1719. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1720. <nil key="highlightedColor"/>
  1721. </label>
  1722. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="red_ant_logo" translatesAutoresizingMaskIntoConstraints="NO" id="7er-Pu-WBZ">
  1723. <rect key="frame" x="35" y="236" width="36" height="36"/>
  1724. <constraints>
  1725. <constraint firstAttribute="width" constant="36" id="EKI-by-JCU"/>
  1726. <constraint firstAttribute="height" constant="36" id="eWz-Oq-rWf"/>
  1727. </constraints>
  1728. </imageView>
  1729. <textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" editable="NO" textAlignment="natural" translatesAutoresizingMaskIntoConstraints="NO" id="4Fi-0g-FiI">
  1730. <rect key="frame" x="35" y="115" width="409" height="60"/>
  1731. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1732. <constraints>
  1733. <constraint firstAttribute="height" constant="60" id="xaf-0H-Hqr"/>
  1734. </constraints>
  1735. <string key="text">Sales: sales@newpacificdirect.com
  1736. Phone: 510.818.9388</string>
  1737. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1738. <textInputTraits key="textInputTraits" autocapitalizationType="sentences"/>
  1739. <dataDetectorType key="dataDetectorTypes" phoneNumber="YES" link="YES"/>
  1740. </textView>
  1741. <textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" scrollEnabled="NO" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" editable="NO" translatesAutoresizingMaskIntoConstraints="NO" id="dd8-jB-tBc">
  1742. <rect key="frame" x="79" y="202" width="366" height="78"/>
  1743. <constraints>
  1744. <constraint firstAttribute="height" constant="78" id="vl3-wA-qey"/>
  1745. </constraints>
  1746. <string key="text">Developed &amp; Copyright:
  1747. United Software Applications, Inc
  1748. Email: redantsupport@united-us.net</string>
  1749. <fontDescription key="fontDescription" name="HelveticaNeue" family="Helvetica Neue" pointSize="17"/>
  1750. <textInputTraits key="textInputTraits" autocapitalizationType="sentences"/>
  1751. <dataDetectorType key="dataDetectorTypes" phoneNumber="YES" link="YES" address="YES" calendarEvent="YES"/>
  1752. </textView>
  1753. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ver_info" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="E4o-71-lCF">
  1754. <rect key="frame" x="35" y="291" width="410" height="21"/>
  1755. <constraints>
  1756. <constraint firstAttribute="height" constant="21" id="rZR-aI-6gz"/>
  1757. </constraints>
  1758. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1759. <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1760. <nil key="highlightedColor"/>
  1761. </label>
  1762. </subviews>
  1763. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1764. <constraints>
  1765. <constraint firstItem="Jh9-JO-Lbj" firstAttribute="bottom" secondItem="tQE-Kl-1v3" secondAttribute="bottom" id="30T-aa-DX3"/>
  1766. <constraint firstItem="tQE-Kl-1v3" firstAttribute="top" secondItem="cA7-od-VYw" secondAttribute="top" constant="19" id="5D2-z5-yzm"/>
  1767. <constraint firstAttribute="bottom" secondItem="7er-Pu-WBZ" secondAttribute="bottom" constant="48" id="6O1-uP-rKx"/>
  1768. <constraint firstItem="Jh9-JO-Lbj" firstAttribute="leading" secondItem="tQE-Kl-1v3" secondAttribute="trailing" constant="8" id="HhC-Bt-opW"/>
  1769. <constraint firstItem="4Fi-0g-FiI" firstAttribute="top" secondItem="tQE-Kl-1v3" secondAttribute="bottom" id="Ov7-7q-WJk"/>
  1770. <constraint firstItem="7er-Pu-WBZ" firstAttribute="leading" secondItem="tQE-Kl-1v3" secondAttribute="leading" id="PFN-CZ-AHd"/>
  1771. <constraint firstItem="4Fi-0g-FiI" firstAttribute="leading" secondItem="tQE-Kl-1v3" secondAttribute="leading" id="SMw-y6-DXY"/>
  1772. <constraint firstAttribute="trailing" secondItem="dd8-jB-tBc" secondAttribute="trailing" constant="35" id="Sok-zA-gtO"/>
  1773. <constraint firstItem="dd8-jB-tBc" firstAttribute="leading" secondItem="7er-Pu-WBZ" secondAttribute="trailing" constant="8" id="V8R-pV-uvV"/>
  1774. <constraint firstItem="u8k-9F-gQG" firstAttribute="leading" secondItem="tQE-Kl-1v3" secondAttribute="trailing" constant="8" id="YoF-cp-eWd"/>
  1775. <constraint firstItem="E4o-71-lCF" firstAttribute="leading" secondItem="cA7-od-VYw" secondAttribute="leading" constant="35" id="au8-di-wNh"/>
  1776. <constraint firstAttribute="trailing" secondItem="u8k-9F-gQG" secondAttribute="trailing" constant="35" id="e2B-3d-Aux"/>
  1777. <constraint firstItem="Jh9-JO-Lbj" firstAttribute="top" secondItem="u8k-9F-gQG" secondAttribute="bottom" id="ixV-8Q-ANq"/>
  1778. <constraint firstItem="dd8-jB-tBc" firstAttribute="bottom" secondItem="7er-Pu-WBZ" secondAttribute="bottom" constant="8" id="jD4-6d-bqe"/>
  1779. <constraint firstItem="u8k-9F-gQG" firstAttribute="top" secondItem="cA7-od-VYw" secondAttribute="top" constant="33" id="kO7-vX-yhS"/>
  1780. <constraint firstAttribute="trailing" secondItem="E4o-71-lCF" secondAttribute="trailing" constant="35" id="mYM-nL-C7f"/>
  1781. <constraint firstAttribute="bottom" secondItem="E4o-71-lCF" secondAttribute="bottom" constant="8" id="nRR-WB-1lb"/>
  1782. <constraint firstItem="tQE-Kl-1v3" firstAttribute="leading" secondItem="cA7-od-VYw" secondAttribute="leading" constant="35" id="pek-99-Bvi"/>
  1783. <constraint firstAttribute="trailing" secondItem="4Fi-0g-FiI" secondAttribute="trailing" constant="36" id="tEH-Sm-Shg"/>
  1784. <constraint firstAttribute="trailing" secondItem="Jh9-JO-Lbj" secondAttribute="trailing" constant="35" id="vac-8t-Kb9"/>
  1785. </constraints>
  1786. </view>
  1787. </subviews>
  1788. <viewLayoutGuide key="safeArea" id="MLg-3B-Q9I"/>
  1789. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1790. <constraints>
  1791. <constraint firstAttribute="bottom" secondItem="cA7-od-VYw" secondAttribute="bottom" id="3Jd-sf-6fc"/>
  1792. <constraint firstItem="cA7-od-VYw" firstAttribute="top" secondItem="Tg0-Yd-fvX" secondAttribute="top" id="BI4-xi-PuA"/>
  1793. <constraint firstItem="cA7-od-VYw" firstAttribute="leading" secondItem="MLg-3B-Q9I" secondAttribute="leading" id="es4-Br-1DK"/>
  1794. <constraint firstItem="cA7-od-VYw" firstAttribute="trailing" secondItem="MLg-3B-Q9I" secondAttribute="trailing" id="nr1-h2-LSv"/>
  1795. </constraints>
  1796. </view>
  1797. <value key="contentSizeForViewInPopover" type="size" width="480" height="320"/>
  1798. <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
  1799. <size key="freeformSize" width="480" height="320"/>
  1800. <connections>
  1801. <outlet property="labelVer" destination="E4o-71-lCF" id="uEy-Ie-10w"/>
  1802. <outlet property="label_appname" destination="u8k-9F-gQG" id="nmY-Pl-ApC"/>
  1803. <outlet property="label_company" destination="Jh9-JO-Lbj" id="vSQ-Cw-qPC"/>
  1804. <outlet property="tvcompany" destination="4Fi-0g-FiI" id="fyw-Lq-CBg"/>
  1805. </connections>
  1806. </viewController>
  1807. <placeholder placeholderIdentifier="IBFirstResponder" id="awE-OU-fB9" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1808. </objects>
  1809. <point key="canvasLocation" x="4485.9375" y="365.0390625"/>
  1810. </scene>
  1811. </scenes>
  1812. <resources>
  1813. <image name="about" width="72" height="72"/>
  1814. <image name="album" width="48" height="48"/>
  1815. <image name="btn_cancel" width="102" height="30"/>
  1816. <image name="btn_retrieve" width="102" height="30"/>
  1817. <image name="btn_signin" width="100" height="30"/>
  1818. <image name="camera" width="48" height="48"/>
  1819. <image name="cart_empty" width="96" height="96"/>
  1820. <image name="category" width="96" height="96"/>
  1821. <image name="check_1_24" width="24" height="24"/>
  1822. <image name="checkbox" width="16" height="16"/>
  1823. <image name="close" width="40" height="40"/>
  1824. <image name="contact" width="72" height="72"/>
  1825. <image name="menu_open" width="36" height="36"/>
  1826. <image name="npd_logo" width="110" height="13"/>
  1827. <image name="order" width="72" height="72"/>
  1828. <image name="pick_bg" width="280" height="280"/>
  1829. <image name="profle" width="64" height="64"/>
  1830. <image name="red_ant_logo" width="72" height="72"/>
  1831. <image name="scan" width="72" height="72"/>
  1832. <image name="search" width="72" height="72"/>
  1833. <image name="upload" width="48" height="48"/>
  1834. <image name="wishlist" width="72" height="72"/>
  1835. </resources>
  1836. </document>