Rules.storyboard 256 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="11762" systemVersion="16E195" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES">
  3. <device id="retina4_0" orientation="portrait">
  4. <adaptation id="fullscreen"/>
  5. </device>
  6. <dependencies>
  7. <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="11757"/>
  8. <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
  9. </dependencies>
  10. <scenes>
  11. <!--Rules View Controller-->
  12. <scene sceneID="dSG-Vz-fZE">
  13. <objects>
  14. <viewController storyboardIdentifier="RulesViewController" automaticallyAdjustsScrollViewInsets="NO" useStoryboardIdentifierAsRestorationIdentifier="YES" id="Y28-FE-f5u" customClass="RulesViewController" sceneMemberID="viewController">
  15. <layoutGuides>
  16. <viewControllerLayoutGuide type="top" id="afl-b3-IkG"/>
  17. <viewControllerLayoutGuide type="bottom" id="9p7-je-Jaa"/>
  18. </layoutGuides>
  19. <view key="view" contentMode="scaleToFill" id="HPB-AH-DVL" userLabel="View - ViewController">
  20. <rect key="frame" x="0.0" y="0.0" width="320" height="568"/>
  21. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  22. <subviews>
  23. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="YQj-KO-tgi" userLabel="View - Main">
  24. <rect key="frame" x="0.0" y="0.0" width="320" height="568"/>
  25. <subviews>
  26. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="color_body_01" translatesAutoresizingMaskIntoConstraints="NO" id="DZt-QG-oeT">
  27. <rect key="frame" x="0.0" y="70" width="320" height="498"/>
  28. </imageView>
  29. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="ygd-Rh-dSU" userLabel="View - header">
  30. <rect key="frame" x="0.0" y="0.0" width="320" height="70"/>
  31. <subviews>
  32. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="활성 0 / 비활성 0" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="8qJ-di-EOx" customClass="CustomLabel">
  33. <rect key="frame" x="15" y="20" width="255" height="50"/>
  34. <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
  35. <nil key="highlightedColor"/>
  36. </label>
  37. <imageView hidden="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="common_bullet_alert" translatesAutoresizingMaskIntoConstraints="NO" id="VSa-vi-pp7">
  38. <rect key="frame" x="18" y="36.5" width="17" height="17"/>
  39. <constraints>
  40. <constraint firstAttribute="width" constant="17" id="Kvb-em-crx"/>
  41. <constraint firstAttribute="height" constant="17" id="MYJ-Is-r5E"/>
  42. </constraints>
  43. </imageView>
  44. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="aJ9-Hk-5c5" customClass="CustomButton">
  45. <rect key="frame" x="270" y="20" width="50" height="50"/>
  46. <constraints>
  47. <constraint firstAttribute="width" constant="50" id="Qic-Lz-Pv2"/>
  48. <constraint firstAttribute="height" constant="50" id="Zaa-sF-fbR"/>
  49. </constraints>
  50. <state key="normal" image="common_head_btn_more"/>
  51. <state key="highlighted" image="common_head_btn_more_press"/>
  52. <connections>
  53. <action selector="btnOptionTouched:" destination="Y28-FE-f5u" eventType="touchUpInside" id="xwW-sM-hT5"/>
  54. </connections>
  55. </button>
  56. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="RMy-CQ-HrY" userLabel="View - EditMode">
  57. <rect key="frame" x="320" y="20" width="55" height="50"/>
  58. <subviews>
  59. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="fxy-p4-UMy" customClass="CustomButton">
  60. <rect key="frame" x="0.0" y="0.0" width="55" height="50"/>
  61. <constraints>
  62. <constraint firstAttribute="width" constant="46" id="yKj-D2-LlT">
  63. <variation key="heightClass=regular-widthClass=compact" constant="55"/>
  64. </constraint>
  65. </constraints>
  66. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  67. <state key="normal" image="common_head_btn_close"/>
  68. <state key="highlighted" image="common_head_btn_close_press"/>
  69. <connections>
  70. <action selector="btnCloseOnEditModeTouched:" destination="Y28-FE-f5u" eventType="touchUpInside" id="ZfP-jq-EWL"/>
  71. </connections>
  72. </button>
  73. </subviews>
  74. <constraints>
  75. <constraint firstItem="fxy-p4-UMy" firstAttribute="top" secondItem="RMy-CQ-HrY" secondAttribute="top" constant="5" id="0tr-ui-wpG">
  76. <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
  77. </constraint>
  78. <constraint firstAttribute="bottom" secondItem="fxy-p4-UMy" secondAttribute="bottom" constant="5" id="Mup-iX-g9W">
  79. <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
  80. </constraint>
  81. <constraint firstAttribute="width" constant="50" id="bMr-ew-Ukj">
  82. <variation key="heightClass=regular-widthClass=compact" constant="55"/>
  83. </constraint>
  84. <constraint firstAttribute="trailing" secondItem="fxy-p4-UMy" secondAttribute="trailing" id="lwc-6O-Rfb"/>
  85. </constraints>
  86. </view>
  87. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="ouF-HN-zMr">
  88. <rect key="frame" x="0.0" y="20" width="15" height="50"/>
  89. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
  90. <constraints>
  91. <constraint firstAttribute="width" constant="15" id="8rG-XZ-jmY"/>
  92. </constraints>
  93. </view>
  94. </subviews>
  95. <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
  96. <constraints>
  97. <constraint firstItem="RMy-CQ-HrY" firstAttribute="top" secondItem="ygd-Rh-dSU" secondAttribute="top" constant="25" id="5b0-DQ-Av4">
  98. <variation key="heightClass=regular-widthClass=compact" constant="20"/>
  99. </constraint>
  100. <constraint firstItem="ouF-HN-zMr" firstAttribute="leading" secondItem="ygd-Rh-dSU" secondAttribute="leading" id="8R8-M8-ujV"/>
  101. <constraint firstItem="ouF-HN-zMr" firstAttribute="top" secondItem="8qJ-di-EOx" secondAttribute="top" id="8cy-wg-sPY"/>
  102. <constraint firstAttribute="trailing" secondItem="aJ9-Hk-5c5" secondAttribute="trailing" id="9Lb-v9-3zx"/>
  103. <constraint firstItem="aJ9-Hk-5c5" firstAttribute="leading" secondItem="8qJ-di-EOx" secondAttribute="trailing" id="LCs-Zq-0uB"/>
  104. <constraint firstAttribute="bottom" secondItem="RMy-CQ-HrY" secondAttribute="bottom" constant="10" id="WEx-Wr-Ko4">
  105. <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
  106. </constraint>
  107. <constraint firstItem="VSa-vi-pp7" firstAttribute="centerY" secondItem="8qJ-di-EOx" secondAttribute="centerY" id="Yzn-Ri-rUx"/>
  108. <constraint firstItem="8qJ-di-EOx" firstAttribute="top" secondItem="ygd-Rh-dSU" secondAttribute="top" constant="20" id="eF3-Qp-aNW"/>
  109. <constraint firstItem="8qJ-di-EOx" firstAttribute="leading" secondItem="ouF-HN-zMr" secondAttribute="trailing" id="fOX-uf-GJ1"/>
  110. <constraint firstAttribute="bottom" secondItem="8qJ-di-EOx" secondAttribute="bottom" id="fXG-ha-Pxa"/>
  111. <constraint firstAttribute="height" constant="70" id="pYT-IT-XDa"/>
  112. <constraint firstAttribute="bottom" secondItem="ouF-HN-zMr" secondAttribute="bottom" id="szb-7Z-r2w"/>
  113. <constraint firstItem="VSa-vi-pp7" firstAttribute="leading" secondItem="ygd-Rh-dSU" secondAttribute="leading" constant="18" id="x3V-Av-MtK"/>
  114. <constraint firstAttribute="trailing" secondItem="RMy-CQ-HrY" secondAttribute="trailing" constant="-50" id="y3y-iA-PYS">
  115. <variation key="heightClass=regular-widthClass=compact" constant="-55"/>
  116. </constraint>
  117. <constraint firstAttribute="bottom" secondItem="aJ9-Hk-5c5" secondAttribute="bottom" id="yJ4-ev-jmC"/>
  118. </constraints>
  119. </view>
  120. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="SuE-qN-Zxf" userLabel="View - AddHub">
  121. <rect key="frame" x="0.0" y="70" width="320" height="444"/>
  122. <subviews>
  123. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="초대를 받아서
시작해 보세요" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Nom-X5-uCS" customClass="CustomLabel">
  124. <rect key="frame" x="35" y="111.5" width="250" height="36"/>
  125. <constraints>
  126. <constraint firstAttribute="height" constant="36" id="9P6-BE-Cb6"/>
  127. </constraints>
  128. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  129. <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  130. <nil key="highlightedColor"/>
  131. </label>
  132. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="img_1depth_invitation" translatesAutoresizingMaskIntoConstraints="NO" id="qNd-pD-pAH">
  133. <rect key="frame" x="85" y="147.5" width="150" height="150"/>
  134. <constraints>
  135. <constraint firstAttribute="height" constant="150" id="ifA-2a-YGk"/>
  136. <constraint firstAttribute="width" constant="150" id="qij-hK-jBM"/>
  137. </constraints>
  138. </imageView>
  139. <label hidden="YES" opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="직접 홈허브를 연결하고 싶나요?
멤버 탈퇴 후 진행할 수 있습니다." textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="vp3-ys-dK4" customClass="CustomLabel">
  140. <rect key="frame" x="35" y="297.5" width="250" height="30"/>
  141. <constraints>
  142. <constraint firstAttribute="height" constant="36" id="Teh-3t-2ZH">
  143. <variation key="heightClass=regular-widthClass=compact" constant="30"/>
  144. </constraint>
  145. </constraints>
  146. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  147. <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  148. <nil key="highlightedColor"/>
  149. </label>
  150. <label hidden="YES" opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="탈퇴" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="z3j-ME-Reg" customClass="CustomLabel">
  151. <rect key="frame" x="35" y="342.5" width="250" height="21"/>
  152. <constraints>
  153. <constraint firstAttribute="height" constant="36" id="aLL-c7-3b2">
  154. <variation key="heightClass=regular-widthClass=compact" constant="21"/>
  155. </constraint>
  156. </constraints>
  157. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  158. <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  159. <nil key="highlightedColor"/>
  160. </label>
  161. </subviews>
  162. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
  163. <constraints>
  164. <constraint firstAttribute="trailing" secondItem="Nom-X5-uCS" secondAttribute="trailing" constant="35" id="AiO-h3-joT"/>
  165. <constraint firstItem="vp3-ys-dK4" firstAttribute="top" secondItem="qNd-pD-pAH" secondAttribute="bottom" id="Cul-mE-Sk4"/>
  166. <constraint firstItem="z3j-ME-Reg" firstAttribute="leading" secondItem="SuE-qN-Zxf" secondAttribute="leading" constant="35" id="PNM-eZ-7Dj"/>
  167. <constraint firstItem="vp3-ys-dK4" firstAttribute="leading" secondItem="SuE-qN-Zxf" secondAttribute="leading" constant="35" id="PVK-6z-FYe"/>
  168. <constraint firstItem="qNd-pD-pAH" firstAttribute="centerY" secondItem="SuE-qN-Zxf" secondAttribute="centerY" id="T6i-cu-scr"/>
  169. <constraint firstAttribute="trailing" secondItem="z3j-ME-Reg" secondAttribute="trailing" constant="35" id="TQ2-oS-AAv"/>
  170. <constraint firstAttribute="trailing" secondItem="vp3-ys-dK4" secondAttribute="trailing" constant="35" id="Vej-XG-s6q"/>
  171. <constraint firstItem="qNd-pD-pAH" firstAttribute="top" secondItem="Nom-X5-uCS" secondAttribute="bottom" id="eFM-xP-Gc8"/>
  172. <constraint firstItem="z3j-ME-Reg" firstAttribute="top" secondItem="vp3-ys-dK4" secondAttribute="bottom" constant="15" id="lWS-Sa-dhN"/>
  173. <constraint firstItem="qNd-pD-pAH" firstAttribute="centerX" secondItem="SuE-qN-Zxf" secondAttribute="centerX" id="mpb-a6-VNl"/>
  174. <constraint firstItem="Nom-X5-uCS" firstAttribute="leading" secondItem="SuE-qN-Zxf" secondAttribute="leading" constant="35" id="q49-H3-DF0"/>
  175. </constraints>
  176. <variation key="default">
  177. <mask key="subviews">
  178. <exclude reference="vp3-ys-dK4"/>
  179. <exclude reference="z3j-ME-Reg"/>
  180. </mask>
  181. <mask key="constraints">
  182. <exclude reference="Cul-mE-Sk4"/>
  183. <exclude reference="PVK-6z-FYe"/>
  184. <exclude reference="Vej-XG-s6q"/>
  185. <exclude reference="PNM-eZ-7Dj"/>
  186. <exclude reference="TQ2-oS-AAv"/>
  187. <exclude reference="lWS-Sa-dhN"/>
  188. </mask>
  189. </variation>
  190. <variation key="heightClass=regular-widthClass=compact">
  191. <mask key="subviews">
  192. <include reference="vp3-ys-dK4"/>
  193. <include reference="z3j-ME-Reg"/>
  194. </mask>
  195. <mask key="constraints">
  196. <include reference="Cul-mE-Sk4"/>
  197. <include reference="PVK-6z-FYe"/>
  198. <include reference="Vej-XG-s6q"/>
  199. <include reference="PNM-eZ-7Dj"/>
  200. <include reference="TQ2-oS-AAv"/>
  201. <include reference="lWS-Sa-dhN"/>
  202. </mask>
  203. </variation>
  204. </view>
  205. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="115" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="NbQ-kG-vPj" customClass="CustomTableView">
  206. <rect key="frame" x="10" y="80" width="300" height="428"/>
  207. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  208. <prototypes>
  209. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="CellIdentifier" rowHeight="101" id="seo-Ln-j89" customClass="RulesTableViewCell">
  210. <rect key="frame" x="0.0" y="28" width="300" height="101"/>
  211. <autoresizingMask key="autoresizingMask"/>
  212. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="seo-Ln-j89" id="90i-G5-Obo">
  213. <rect key="frame" x="0.0" y="0.0" width="300" height="100"/>
  214. <autoresizingMask key="autoresizingMask"/>
  215. <subviews>
  216. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="common_bullet_circle_red" translatesAutoresizingMaskIntoConstraints="NO" id="tgB-uU-6kM" customClass="CustomImageView">
  217. <rect key="frame" x="15" y="46" width="8" height="8"/>
  218. <constraints>
  219. <constraint firstAttribute="width" relation="greaterThanOrEqual" constant="8" id="7cm-FY-CrR"/>
  220. <constraint firstAttribute="height" constant="8" id="HZc-ls-ioU"/>
  221. <constraint firstAttribute="width" constant="8" id="Hpg-dw-evF"/>
  222. <constraint firstAttribute="height" relation="greaterThanOrEqual" constant="8" id="IBu-cG-X0A"/>
  223. </constraints>
  224. </imageView>
  225. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="db9-2d-F3M" customClass="CustomImageView">
  226. <rect key="frame" x="23" y="18" width="65" height="65"/>
  227. <constraints>
  228. <constraint firstAttribute="width" constant="65" id="6uK-FK-eUt"/>
  229. <constraint firstAttribute="height" constant="65" id="v8I-7d-mSh"/>
  230. </constraints>
  231. </imageView>
  232. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="7ea-Qm-foz" customClass="CustomLabel">
  233. <rect key="frame" x="98" y="18" width="117" height="65"/>
  234. <constraints>
  235. <constraint firstAttribute="height" constant="65" id="CP5-71-W9A"/>
  236. </constraints>
  237. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  238. <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  239. <nil key="highlightedColor"/>
  240. </label>
  241. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="seC-df-23v" customClass="CustomButton">
  242. <rect key="frame" x="231" y="37" width="54" height="27"/>
  243. <constraints>
  244. <constraint firstAttribute="width" constant="54" id="75j-nL-UUF"/>
  245. <constraint firstAttribute="height" constant="27" id="mde-tk-LP3"/>
  246. </constraints>
  247. <state key="normal" image="img_rule_list_playbtn_active"/>
  248. </button>
  249. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Sv1-sW-vec" customClass="CustomButton">
  250. <rect key="frame" x="249" y="35" width="41" height="32"/>
  251. <constraints>
  252. <constraint firstAttribute="height" constant="32" id="CzE-3X-WIB"/>
  253. <constraint firstAttribute="width" constant="41" id="hL2-FI-2gY"/>
  254. </constraints>
  255. <state key="normal" image="img_things_list_btn_delete"/>
  256. <state key="highlighted" image="img_things_list_btn_delete_press"/>
  257. </button>
  258. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="tuX-3Q-GTA" userLabel="View - line">
  259. <rect key="frame" x="0.0" y="99" width="300" height="1"/>
  260. <color key="backgroundColor" red="0.8666666666666667" green="0.8666666666666667" blue="0.8666666666666667" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  261. <constraints>
  262. <constraint firstAttribute="height" constant="1" id="JzX-Xy-T1d"/>
  263. </constraints>
  264. </view>
  265. </subviews>
  266. <constraints>
  267. <constraint firstItem="7ea-Qm-foz" firstAttribute="top" secondItem="90i-G5-Obo" secondAttribute="top" constant="18" id="2BI-o1-5qZ"/>
  268. <constraint firstItem="db9-2d-F3M" firstAttribute="top" secondItem="90i-G5-Obo" secondAttribute="top" constant="18" id="4G1-kS-nvl"/>
  269. <constraint firstItem="seC-df-23v" firstAttribute="top" secondItem="90i-G5-Obo" secondAttribute="top" constant="37" id="7Du-vc-GA9"/>
  270. <constraint firstItem="tgB-uU-6kM" firstAttribute="leading" secondItem="90i-G5-Obo" secondAttribute="leading" constant="15" id="7dP-4n-sv1"/>
  271. <constraint firstAttribute="bottom" secondItem="tuX-3Q-GTA" secondAttribute="bottom" constant="-1" id="8kL-hv-EK0">
  272. <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
  273. </constraint>
  274. <constraint firstItem="db9-2d-F3M" firstAttribute="leading" secondItem="tgB-uU-6kM" secondAttribute="trailing" id="NVz-wj-vpN"/>
  275. <constraint firstItem="Sv1-sW-vec" firstAttribute="leading" secondItem="seC-df-23v" secondAttribute="leading" constant="18" id="P05-9g-CbI"/>
  276. <constraint firstItem="seC-df-23v" firstAttribute="leading" secondItem="7ea-Qm-foz" secondAttribute="trailing" constant="16" id="P06-Vu-1kd"/>
  277. <constraint firstItem="tgB-uU-6kM" firstAttribute="centerY" secondItem="db9-2d-F3M" secondAttribute="centerY" id="YD8-aN-xfs"/>
  278. <constraint firstItem="tuX-3Q-GTA" firstAttribute="leading" secondItem="90i-G5-Obo" secondAttribute="leading" id="a2J-c0-oPa"/>
  279. <constraint firstItem="Sv1-sW-vec" firstAttribute="top" secondItem="seC-df-23v" secondAttribute="top" constant="-2" id="eTJ-JW-hHz"/>
  280. <constraint firstItem="7ea-Qm-foz" firstAttribute="leading" secondItem="db9-2d-F3M" secondAttribute="trailing" constant="10" id="nmw-tw-kb0"/>
  281. <constraint firstAttribute="trailing" secondItem="tuX-3Q-GTA" secondAttribute="trailing" id="oAI-L4-BLW"/>
  282. <constraint firstAttribute="trailing" secondItem="seC-df-23v" secondAttribute="trailing" constant="15" id="oNq-qn-YEF"/>
  283. </constraints>
  284. </tableViewCellContentView>
  285. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
  286. <connections>
  287. <outlet property="btnDelete" destination="Sv1-sW-vec" id="8t3-UL-zws"/>
  288. <outlet property="btnRulePlay" destination="seC-df-23v" id="HhC-e4-b4q"/>
  289. <outlet property="imgvStatus" destination="tgB-uU-6kM" id="1JF-PK-t84"/>
  290. <outlet property="imgvTrigger" destination="db9-2d-F3M" id="6f5-Vo-OUH"/>
  291. <outlet property="lblRuleName" destination="7ea-Qm-foz" id="BAv-b0-k9B"/>
  292. </connections>
  293. </tableViewCell>
  294. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="AddCellIdentifier" rowHeight="113" id="2Cp-uM-Hvw" customClass="RulesCreateTableViewCell">
  295. <rect key="frame" x="0.0" y="129" width="300" height="113"/>
  296. <autoresizingMask key="autoresizingMask"/>
  297. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="2Cp-uM-Hvw" id="oE6-vc-qee">
  298. <rect key="frame" x="0.0" y="0.0" width="300" height="112"/>
  299. <autoresizingMask key="autoresizingMask"/>
  300. <subviews>
  301. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="iJ5-zY-1hI" userLabel="View - line">
  302. <rect key="frame" x="0.0" y="114" width="300" height="1"/>
  303. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  304. <constraints>
  305. <constraint firstAttribute="height" constant="1" id="k4v-jx-8aa"/>
  306. </constraints>
  307. </view>
  308. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="2fr-2O-Oqg" customClass="CustomLabelButton">
  309. <rect key="frame" x="100" y="17" width="100" height="77"/>
  310. <subviews>
  311. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="79T-7d-vFO" customClass="CustomButton">
  312. <rect key="frame" x="25" y="0.0" width="50" height="50"/>
  313. <state key="normal" image="common_list_btn_big_add"/>
  314. <state key="highlighted" image="common_list_btn_big_add_press"/>
  315. </button>
  316. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="252" verticalCompressionResistancePriority="749" placeholderIntrinsicWidth="200" placeholderIntrinsicHeight="40" text="규칙만들기" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="w2L-4J-1aD" customClass="CustomLabel">
  317. <rect key="frame" x="0.0" y="62" width="100" height="15"/>
  318. <constraints>
  319. <constraint firstAttribute="height" constant="15" id="e7C-Sa-7Z3"/>
  320. </constraints>
  321. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  322. <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  323. <nil key="highlightedColor"/>
  324. </label>
  325. </subviews>
  326. <constraints>
  327. <constraint firstItem="79T-7d-vFO" firstAttribute="width" secondItem="2fr-2O-Oqg" secondAttribute="width" constant="-50" id="8wh-19-1y4"/>
  328. <constraint firstAttribute="trailing" secondItem="79T-7d-vFO" secondAttribute="trailing" constant="25" id="FU9-5W-Zge"/>
  329. <constraint firstItem="79T-7d-vFO" firstAttribute="leading" secondItem="2fr-2O-Oqg" secondAttribute="leading" constant="25" id="Isg-3J-DZ7"/>
  330. <constraint firstItem="79T-7d-vFO" firstAttribute="top" secondItem="2fr-2O-Oqg" secondAttribute="top" id="JAL-md-YDF"/>
  331. <constraint firstAttribute="trailing" secondItem="w2L-4J-1aD" secondAttribute="trailing" id="K7O-it-w3S"/>
  332. <constraint firstAttribute="bottom" secondItem="w2L-4J-1aD" secondAttribute="bottom" id="NLR-Xh-XOw"/>
  333. <constraint firstItem="w2L-4J-1aD" firstAttribute="width" secondItem="2fr-2O-Oqg" secondAttribute="width" id="Nvq-61-aWs"/>
  334. <constraint firstItem="w2L-4J-1aD" firstAttribute="top" secondItem="79T-7d-vFO" secondAttribute="bottom" constant="12" id="O5y-ta-XZm"/>
  335. <constraint firstAttribute="height" constant="77" id="b4I-ev-uYE"/>
  336. <constraint firstAttribute="width" constant="100" id="hBS-Pn-8hi"/>
  337. <constraint firstItem="w2L-4J-1aD" firstAttribute="leading" secondItem="2fr-2O-Oqg" secondAttribute="leading" id="m0g-DR-ZmR"/>
  338. </constraints>
  339. <connections>
  340. <outlet property="btn" destination="79T-7d-vFO" id="xwV-GK-OIY"/>
  341. <outlet property="label" destination="w2L-4J-1aD" id="Ofh-Zm-4qo"/>
  342. </connections>
  343. </view>
  344. </subviews>
  345. <constraints>
  346. <constraint firstAttribute="trailing" secondItem="iJ5-zY-1hI" secondAttribute="trailing" id="Au7-v6-l0P"/>
  347. <constraint firstItem="2fr-2O-Oqg" firstAttribute="centerX" secondItem="oE6-vc-qee" secondAttribute="centerX" id="SRG-JR-a25"/>
  348. <constraint firstAttribute="bottom" secondItem="iJ5-zY-1hI" secondAttribute="bottom" constant="-3" id="eYo-WA-QYm"/>
  349. <constraint firstItem="2fr-2O-Oqg" firstAttribute="centerY" secondItem="oE6-vc-qee" secondAttribute="centerY" id="nz2-XW-NNX"/>
  350. <constraint firstItem="iJ5-zY-1hI" firstAttribute="leading" secondItem="oE6-vc-qee" secondAttribute="leading" id="qDm-68-K4c"/>
  351. </constraints>
  352. </tableViewCellContentView>
  353. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
  354. <connections>
  355. <outlet property="btnAdd" destination="2fr-2O-Oqg" id="lQL-W1-eLq"/>
  356. </connections>
  357. </tableViewCell>
  358. </prototypes>
  359. </tableView>
  360. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="shadow_top" translatesAutoresizingMaskIntoConstraints="NO" id="pzq-Zx-Yfh">
  361. <rect key="frame" x="0.0" y="70" width="320" height="5"/>
  362. <constraints>
  363. <constraint firstAttribute="height" constant="5" id="cnN-4J-moT"/>
  364. </constraints>
  365. </imageView>
  366. </subviews>
  367. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  368. <constraints>
  369. <constraint firstAttribute="trailing" secondItem="NbQ-kG-vPj" secondAttribute="trailing" constant="10" id="2I1-WJ-j9g"/>
  370. <constraint firstItem="pzq-Zx-Yfh" firstAttribute="top" secondItem="ygd-Rh-dSU" secondAttribute="bottom" id="3eM-Kq-zgX"/>
  371. <constraint firstItem="NbQ-kG-vPj" firstAttribute="top" secondItem="ygd-Rh-dSU" secondAttribute="bottom" constant="10" id="4sE-Pm-nET"/>
  372. <constraint firstItem="ygd-Rh-dSU" firstAttribute="top" secondItem="YQj-KO-tgi" secondAttribute="top" id="5SB-Gr-4Yq"/>
  373. <constraint firstAttribute="trailing" secondItem="SuE-qN-Zxf" secondAttribute="trailing" id="5Un-2h-CWc"/>
  374. <constraint firstItem="NbQ-kG-vPj" firstAttribute="leading" secondItem="YQj-KO-tgi" secondAttribute="leading" constant="10" id="Fur-yN-WZT"/>
  375. <constraint firstItem="SuE-qN-Zxf" firstAttribute="top" secondItem="ygd-Rh-dSU" secondAttribute="bottom" id="Grt-N3-Vnn"/>
  376. <constraint firstAttribute="bottom" secondItem="SuE-qN-Zxf" secondAttribute="bottom" constant="54" id="Iux-3I-miJ"/>
  377. <constraint firstAttribute="bottom" secondItem="NbQ-kG-vPj" secondAttribute="bottom" constant="60" id="KbU-ky-DWz"/>
  378. <constraint firstAttribute="trailing" secondItem="ygd-Rh-dSU" secondAttribute="trailing" id="Kwe-L0-Kj7"/>
  379. <constraint firstItem="DZt-QG-oeT" firstAttribute="leading" secondItem="YQj-KO-tgi" secondAttribute="leading" id="LzN-DF-J5m"/>
  380. <constraint firstAttribute="trailing" secondItem="pzq-Zx-Yfh" secondAttribute="trailing" id="PKP-5U-c0w"/>
  381. <constraint firstItem="pzq-Zx-Yfh" firstAttribute="leading" secondItem="YQj-KO-tgi" secondAttribute="leading" id="ToB-Tb-0Oc"/>
  382. <constraint firstItem="SuE-qN-Zxf" firstAttribute="leading" secondItem="YQj-KO-tgi" secondAttribute="leading" id="b3N-9q-gUu"/>
  383. <constraint firstItem="DZt-QG-oeT" firstAttribute="top" secondItem="ygd-Rh-dSU" secondAttribute="bottom" id="nTE-j0-Ey1"/>
  384. <constraint firstAttribute="trailing" secondItem="DZt-QG-oeT" secondAttribute="trailing" id="yWP-J4-Ee5"/>
  385. <constraint firstAttribute="bottom" secondItem="DZt-QG-oeT" secondAttribute="bottom" id="zpV-bv-T5d"/>
  386. <constraint firstItem="ygd-Rh-dSU" firstAttribute="leading" secondItem="YQj-KO-tgi" secondAttribute="leading" id="zy9-aX-G1y"/>
  387. </constraints>
  388. </view>
  389. </subviews>
  390. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  391. <constraints>
  392. <constraint firstItem="YQj-KO-tgi" firstAttribute="top" secondItem="afl-b3-IkG" secondAttribute="bottom" constant="-20" id="03g-JW-Dfm"/>
  393. <constraint firstItem="9p7-je-Jaa" firstAttribute="top" secondItem="YQj-KO-tgi" secondAttribute="bottom" id="b2x-N5-zYT"/>
  394. <constraint firstItem="YQj-KO-tgi" firstAttribute="leading" secondItem="HPB-AH-DVL" secondAttribute="leading" id="kOY-kR-Ban"/>
  395. <constraint firstAttribute="trailing" secondItem="YQj-KO-tgi" secondAttribute="trailing" id="ufI-Cc-kZp"/>
  396. </constraints>
  397. </view>
  398. <simulatedStatusBarMetrics key="simulatedStatusBarMetrics"/>
  399. <connections>
  400. <outlet property="addHubContainerView" destination="SuE-qN-Zxf" id="E0N-vF-FTz"/>
  401. <outlet property="btnOption" destination="aJ9-Hk-5c5" id="Xj3-MJ-DvL"/>
  402. <outlet property="constraintEditModeRight" destination="y3y-iA-PYS" id="xWR-nr-YK2"/>
  403. <outlet property="editModeView" destination="RMy-CQ-HrY" id="Xen-ez-uOn"/>
  404. <outlet property="imgvConnectHub" destination="qNd-pD-pAH" id="iwC-0h-7eI"/>
  405. <outlet property="imgvHubAlert" destination="VSa-vi-pp7" id="Qm2-V9-pfo"/>
  406. <outlet property="lblConnectHub" destination="Nom-X5-uCS" id="iFz-rT-NuN"/>
  407. <outlet property="lblLeaveAccount" destination="z3j-ME-Reg" id="5kr-Gp-Gee"/>
  408. <outlet property="lblSimpleMemberInfo" destination="vp3-ys-dK4" id="bbx-LI-Qlt"/>
  409. <outlet property="lblTitle" destination="8qJ-di-EOx" id="JuH-cq-bix"/>
  410. <outlet property="mainView" destination="YQj-KO-tgi" id="tMl-oJ-49n"/>
  411. <outlet property="tableView" destination="NbQ-kG-vPj" id="7JF-pV-zEJ"/>
  412. </connections>
  413. </viewController>
  414. <placeholder placeholderIdentifier="IBFirstResponder" id="pMN-V0-Ctb" userLabel="First Responder" sceneMemberID="firstResponder"/>
  415. </objects>
  416. <point key="canvasLocation" x="-1693" y="143"/>
  417. </scene>
  418. <!--Rules Add View Controller-->
  419. <scene sceneID="uNj-hP-VUN">
  420. <objects>
  421. <viewController storyboardIdentifier="RulesAddViewController" automaticallyAdjustsScrollViewInsets="NO" useStoryboardIdentifierAsRestorationIdentifier="YES" id="Xxr-u0-LpV" customClass="RulesAddViewController" sceneMemberID="viewController">
  422. <layoutGuides>
  423. <viewControllerLayoutGuide type="top" id="OHT-Kl-dHo"/>
  424. <viewControllerLayoutGuide type="bottom" id="kA2-Ra-8eg"/>
  425. </layoutGuides>
  426. <view key="view" contentMode="scaleToFill" id="7rI-pA-FfB" userLabel="View - Main">
  427. <rect key="frame" x="0.0" y="0.0" width="320" height="568"/>
  428. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  429. <subviews>
  430. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="ikn-Sw-KkY" userLabel="View - header">
  431. <rect key="frame" x="0.0" y="0.0" width="320" height="75"/>
  432. <subviews>
  433. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="규칙 만들기" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="TNG-uD-yCt" customClass="CustomLabel">
  434. <rect key="frame" x="18" y="20" width="200" height="55"/>
  435. <constraints>
  436. <constraint firstAttribute="width" constant="200" id="pdZ-sq-6Lr"/>
  437. </constraints>
  438. <fontDescription key="fontDescription" type="system" pointSize="19"/>
  439. <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  440. <nil key="highlightedColor"/>
  441. </label>
  442. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="rh1-Bc-zcY" userLabel="View - line">
  443. <rect key="frame" x="0.0" y="74" width="320" height="1"/>
  444. <color key="backgroundColor" red="0.86666666670000003" green="0.86666666670000003" blue="0.86666666670000003" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  445. <constraints>
  446. <constraint firstAttribute="height" constant="1" id="OJn-Fo-rZ4"/>
  447. </constraints>
  448. </view>
  449. </subviews>
  450. <color key="backgroundColor" red="0.96078431369999995" green="0.96078431369999995" blue="0.96078431369999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  451. <constraints>
  452. <constraint firstItem="rh1-Bc-zcY" firstAttribute="leading" secondItem="ikn-Sw-KkY" secondAttribute="leading" id="2V2-n0-Ecm"/>
  453. <constraint firstAttribute="bottom" secondItem="TNG-uD-yCt" secondAttribute="bottom" id="OT9-4x-rIf"/>
  454. <constraint firstAttribute="bottom" secondItem="rh1-Bc-zcY" secondAttribute="bottom" id="U5x-ox-4Js"/>
  455. <constraint firstItem="TNG-uD-yCt" firstAttribute="leading" secondItem="ikn-Sw-KkY" secondAttribute="leading" constant="18" id="aKa-qe-E1r"/>
  456. <constraint firstAttribute="height" constant="75" id="bgT-v0-WBE"/>
  457. <constraint firstAttribute="trailing" secondItem="rh1-Bc-zcY" secondAttribute="trailing" id="r5l-6K-D1r"/>
  458. <constraint firstItem="TNG-uD-yCt" firstAttribute="top" secondItem="ikn-Sw-KkY" secondAttribute="top" constant="20" id="tkh-tS-dCR"/>
  459. </constraints>
  460. </view>
  461. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="18" sectionFooterHeight="18" translatesAutoresizingMaskIntoConstraints="NO" id="gRt-p6-Seb" customClass="CustomTableView">
  462. <rect key="frame" x="0.0" y="75" width="320" height="441"/>
  463. <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  464. <prototypes>
  465. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="TitleCellIdentifier" rowHeight="68" id="npa-uF-Yf4" customClass="RulesAddTitleTableViewCell">
  466. <rect key="frame" x="0.0" y="56" width="320" height="68"/>
  467. <autoresizingMask key="autoresizingMask"/>
  468. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="npa-uF-Yf4" id="w8Q-3D-60g">
  469. <rect key="frame" x="0.0" y="0.0" width="320" height="67"/>
  470. <autoresizingMask key="autoresizingMask"/>
  471. <subviews>
  472. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="규칙 이름" textAlignment="natural" minimumFontSize="17" background="img_input_round_bg_default" translatesAutoresizingMaskIntoConstraints="NO" id="tfb-JT-ICa" customClass="CustomTextField">
  473. <rect key="frame" x="15" y="18" width="290" height="32"/>
  474. <constraints>
  475. <constraint firstAttribute="height" constant="32" id="4Oa-8M-y1Y"/>
  476. </constraints>
  477. <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  478. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  479. <textInputTraits key="textInputTraits"/>
  480. <variation key="default">
  481. <mask key="constraints">
  482. <exclude reference="4Oa-8M-y1Y"/>
  483. </mask>
  484. </variation>
  485. <variation key="heightClass=regular-widthClass=compact">
  486. <mask key="constraints">
  487. <include reference="4Oa-8M-y1Y"/>
  488. </mask>
  489. </variation>
  490. </textField>
  491. </subviews>
  492. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  493. <constraints>
  494. <constraint firstAttribute="trailing" secondItem="tfb-JT-ICa" secondAttribute="trailing" constant="15" id="Bsx-J1-wvg"/>
  495. <constraint firstItem="tfb-JT-ICa" firstAttribute="leading" secondItem="w8Q-3D-60g" secondAttribute="leading" constant="15" id="Cdy-04-lLE"/>
  496. <constraint firstItem="tfb-JT-ICa" firstAttribute="top" secondItem="w8Q-3D-60g" secondAttribute="top" constant="18" id="EH3-G5-yWJ"/>
  497. </constraints>
  498. <variation key="default">
  499. <mask key="constraints">
  500. <exclude reference="Bsx-J1-wvg"/>
  501. <exclude reference="Cdy-04-lLE"/>
  502. <exclude reference="EH3-G5-yWJ"/>
  503. </mask>
  504. </variation>
  505. <variation key="heightClass=regular-widthClass=compact">
  506. <mask key="constraints">
  507. <include reference="Bsx-J1-wvg"/>
  508. <include reference="Cdy-04-lLE"/>
  509. <include reference="EH3-G5-yWJ"/>
  510. </mask>
  511. </variation>
  512. </tableViewCellContentView>
  513. <connections>
  514. <outlet property="txtRuleTitle" destination="tfb-JT-ICa" id="xc8-Wy-4fc"/>
  515. </connections>
  516. </tableViewCell>
  517. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="HeaderCellIdentifier" rowHeight="75" id="GQf-8g-8Yg" customClass="RulesAddHeaderTableViewCell">
  518. <rect key="frame" x="0.0" y="124" width="320" height="75"/>
  519. <autoresizingMask key="autoresizingMask"/>
  520. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="GQf-8g-8Yg" id="FQR-fe-9TV">
  521. <rect key="frame" x="0.0" y="0.0" width="320" height="74"/>
  522. <autoresizingMask key="autoresizingMask"/>
  523. <subviews>
  524. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Ln5-68-n43" customClass="CustomLabel">
  525. <rect key="frame" x="27" y="36" width="233" height="21"/>
  526. <constraints>
  527. <constraint firstAttribute="height" constant="30" id="igT-ZT-4kv">
  528. <variation key="heightClass=regular-widthClass=compact" constant="21"/>
  529. </constraint>
  530. </constraints>
  531. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  532. <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  533. <nil key="highlightedColor"/>
  534. </label>
  535. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="9Sa-Dt-tkE" customClass="CustomButton">
  536. <rect key="frame" x="278" y="33" width="27" height="27"/>
  537. <constraints>
  538. <constraint firstAttribute="height" constant="30" id="3cH-PJ-Sg2">
  539. <variation key="heightClass=regular-widthClass=compact" constant="27"/>
  540. </constraint>
  541. <constraint firstAttribute="width" constant="30" id="y3Q-si-4c1">
  542. <variation key="heightClass=regular-widthClass=compact" constant="27"/>
  543. </constraint>
  544. </constraints>
  545. <state key="normal" image="common_list_btn_add"/>
  546. <state key="highlighted" image="common_list_btn_add_press"/>
  547. </button>
  548. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" image="common_bullet_line" translatesAutoresizingMaskIntoConstraints="NO" id="Jnc-0F-9cq">
  549. <rect key="frame" x="0.0" y="46" width="15" height="2"/>
  550. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  551. </imageView>
  552. </subviews>
  553. <constraints>
  554. <constraint firstItem="Ln5-68-n43" firstAttribute="leading" secondItem="FQR-fe-9TV" secondAttribute="leading" constant="30" id="Diz-oM-Zro">
  555. <variation key="heightClass=regular-widthClass=compact" constant="27"/>
  556. </constraint>
  557. <constraint firstItem="9Sa-Dt-tkE" firstAttribute="centerY" secondItem="Ln5-68-n43" secondAttribute="centerY" id="Ss7-7O-8UI"/>
  558. <constraint firstItem="9Sa-Dt-tkE" firstAttribute="leading" secondItem="Ln5-68-n43" secondAttribute="trailing" constant="20" id="eAW-im-2sw">
  559. <variation key="heightClass=regular-widthClass=compact" constant="18"/>
  560. </constraint>
  561. <constraint firstItem="Ln5-68-n43" firstAttribute="top" secondItem="FQR-fe-9TV" secondAttribute="top" constant="40" id="gfq-h6-DeJ">
  562. <variation key="heightClass=regular-widthClass=compact" constant="36"/>
  563. </constraint>
  564. <constraint firstAttribute="trailing" secondItem="9Sa-Dt-tkE" secondAttribute="trailing" constant="15" id="qON-ku-S45"/>
  565. </constraints>
  566. <variation key="default">
  567. <mask key="subviews">
  568. <exclude reference="Jnc-0F-9cq"/>
  569. </mask>
  570. </variation>
  571. <variation key="heightClass=regular-widthClass=compact">
  572. <mask key="subviews">
  573. <include reference="Jnc-0F-9cq"/>
  574. </mask>
  575. </variation>
  576. </tableViewCellContentView>
  577. <connections>
  578. <outlet property="btnAdd" destination="9Sa-Dt-tkE" id="yXK-fM-DRV"/>
  579. <outlet property="lblTitle" destination="Ln5-68-n43" id="BXM-3u-Prg"/>
  580. </connections>
  581. </tableViewCell>
  582. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="RulesCellIdentifier" rowHeight="86" id="vaP-ac-Z9g" userLabel="RulesCellIdentifier" customClass="RulesAddTableViewCell">
  583. <rect key="frame" x="0.0" y="199" width="320" height="86"/>
  584. <autoresizingMask key="autoresizingMask"/>
  585. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="vaP-ac-Z9g" id="xBd-u0-d5d">
  586. <rect key="frame" x="0.0" y="0.0" width="320" height="85"/>
  587. <autoresizingMask key="autoresizingMask"/>
  588. <subviews>
  589. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="PIZ-lz-V96" userLabel="View - Line">
  590. <rect key="frame" x="0.0" y="85" width="320" height="1"/>
  591. <color key="backgroundColor" red="0.8666666666666667" green="0.8666666666666667" blue="0.8666666666666667" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  592. <constraints>
  593. <constraint firstAttribute="height" constant="1" id="vRm-gw-rTh"/>
  594. </constraints>
  595. </view>
  596. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="3zg-pw-q4D" customClass="CustomImageView">
  597. <rect key="frame" x="15" y="18" width="50" height="50"/>
  598. <constraints>
  599. <constraint firstAttribute="width" constant="55" id="Mq8-dv-Nvk">
  600. <variation key="heightClass=regular-widthClass=compact" constant="50"/>
  601. </constraint>
  602. <constraint firstAttribute="height" constant="55" id="nn9-po-qGt">
  603. <variation key="heightClass=regular-widthClass=compact" constant="50"/>
  604. </constraint>
  605. </constraints>
  606. </imageView>
  607. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="OXK-Ie-wzS" customClass="CustomLabel">
  608. <rect key="frame" x="70" y="22" width="125" height="23"/>
  609. <constraints>
  610. <constraint firstAttribute="height" constant="20" id="xrh-8B-Eu9">
  611. <variation key="heightClass=regular-widthClass=compact" constant="23"/>
  612. </constraint>
  613. </constraints>
  614. <fontDescription key="fontDescription" type="system" pointSize="19"/>
  615. <color key="textColor" red="0.16078431369999999" green="0.55294117649999996" blue="0.80392156859999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  616. <nil key="highlightedColor"/>
  617. </label>
  618. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="LMX-xu-R2G" customClass="CustomLabel">
  619. <rect key="frame" x="70" y="53" width="199" height="15"/>
  620. <constraints>
  621. <constraint firstAttribute="height" constant="15" id="6fK-YN-Br5"/>
  622. </constraints>
  623. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  624. <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  625. <nil key="highlightedColor"/>
  626. </label>
  627. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="7ro-0f-hvl" customClass="CustomButton">
  628. <rect key="frame" x="277" y="29" width="27" height="27"/>
  629. <constraints>
  630. <constraint firstAttribute="width" constant="30" id="Fzc-yQ-WSg">
  631. <variation key="heightClass=regular-widthClass=compact" constant="27"/>
  632. </constraint>
  633. <constraint firstAttribute="height" constant="30" id="xK6-oW-gxe">
  634. <variation key="heightClass=regular-widthClass=compact" constant="27"/>
  635. </constraint>
  636. </constraints>
  637. <state key="normal" image="common_list_btn_delete"/>
  638. <state key="highlighted" image="common_list_btn_delete_press"/>
  639. </button>
  640. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" placeholderIntrinsicWidth="70" placeholderIntrinsicHeight="15" text="Label" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="fQT-4G-8XX" customClass="CustomLabel">
  641. <rect key="frame" x="199" y="35" width="70" height="15"/>
  642. <constraints>
  643. <constraint firstAttribute="height" constant="15" id="n6h-mf-PcC"/>
  644. </constraints>
  645. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  646. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  647. <nil key="highlightedColor"/>
  648. </label>
  649. </subviews>
  650. <constraints>
  651. <constraint firstItem="3zg-pw-q4D" firstAttribute="leading" secondItem="xBd-u0-d5d" secondAttribute="leading" constant="15" id="161-Jb-7Ub"/>
  652. <constraint firstItem="3zg-pw-q4D" firstAttribute="top" secondItem="xBd-u0-d5d" secondAttribute="top" constant="20" id="6f3-gu-W4p">
  653. <variation key="heightClass=regular-widthClass=compact" constant="18"/>
  654. </constraint>
  655. <constraint firstAttribute="trailing" secondItem="PIZ-lz-V96" secondAttribute="trailing" id="APm-wz-cGL"/>
  656. <constraint firstItem="7ro-0f-hvl" firstAttribute="leading" secondItem="fQT-4G-8XX" secondAttribute="trailing" constant="8" id="GJY-Ln-glJ"/>
  657. <constraint firstAttribute="bottom" secondItem="PIZ-lz-V96" secondAttribute="bottom" constant="-1" id="UNU-hw-PkG">
  658. <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
  659. </constraint>
  660. <constraint firstItem="LMX-xu-R2G" firstAttribute="leading" secondItem="3zg-pw-q4D" secondAttribute="trailing" constant="5" id="UvZ-T2-Qg0"/>
  661. <constraint firstItem="LMX-xu-R2G" firstAttribute="leading" secondItem="OXK-Ie-wzS" secondAttribute="leading" id="WLi-dh-USa"/>
  662. <constraint firstItem="PIZ-lz-V96" firstAttribute="leading" secondItem="xBd-u0-d5d" secondAttribute="leading" id="aGG-4J-qyV"/>
  663. <constraint firstItem="LMX-xu-R2G" firstAttribute="top" secondItem="OXK-Ie-wzS" secondAttribute="bottom" constant="6" id="e3d-is-XTR">
  664. <variation key="heightClass=regular-widthClass=compact" constant="8"/>
  665. </constraint>
  666. <constraint firstItem="7ro-0f-hvl" firstAttribute="top" secondItem="xBd-u0-d5d" secondAttribute="top" constant="33" id="fEI-yM-AIO">
  667. <variation key="heightClass=regular-widthClass=compact" constant="29"/>
  668. </constraint>
  669. <constraint firstItem="fQT-4G-8XX" firstAttribute="leading" secondItem="OXK-Ie-wzS" secondAttribute="trailing" id="fQX-vI-qhb">
  670. <variation key="heightClass=regular-widthClass=compact" constant="4"/>
  671. </constraint>
  672. <constraint firstItem="OXK-Ie-wzS" firstAttribute="top" secondItem="xBd-u0-d5d" secondAttribute="top" constant="25" id="g9h-eV-w7Z">
  673. <variation key="heightClass=regular-widthClass=compact" constant="22"/>
  674. </constraint>
  675. <constraint firstItem="LMX-xu-R2G" firstAttribute="trailing" secondItem="fQT-4G-8XX" secondAttribute="trailing" id="lId-jc-43T"/>
  676. <constraint firstItem="fQT-4G-8XX" firstAttribute="centerY" secondItem="7ro-0f-hvl" secondAttribute="centerY" id="mRy-xD-1e9">
  677. <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
  678. </constraint>
  679. <constraint firstAttribute="trailing" secondItem="7ro-0f-hvl" secondAttribute="trailing" constant="15" id="pQ8-03-Kyl">
  680. <variation key="heightClass=regular-widthClass=compact" constant="16"/>
  681. </constraint>
  682. </constraints>
  683. <variation key="default">
  684. <mask key="constraints">
  685. <exclude reference="lId-jc-43T"/>
  686. </mask>
  687. </variation>
  688. <variation key="heightClass=regular-widthClass=compact">
  689. <mask key="constraints">
  690. <include reference="lId-jc-43T"/>
  691. </mask>
  692. </variation>
  693. </tableViewCellContentView>
  694. <connections>
  695. <outlet property="bottomLine" destination="PIZ-lz-V96" id="uWN-cl-mE2"/>
  696. <outlet property="btnDelete" destination="7ro-0f-hvl" id="GWY-X7-gBd"/>
  697. <outlet property="imgvIcon" destination="3zg-pw-q4D" id="CdU-1K-Q2G"/>
  698. <outlet property="lblCondition" destination="fQT-4G-8XX" id="6qo-9B-Vbt"/>
  699. <outlet property="lblItem" destination="OXK-Ie-wzS" id="DIb-MK-1iA"/>
  700. <outlet property="lblSubItem" destination="LMX-xu-R2G" id="WDS-0w-aKW"/>
  701. </connections>
  702. </tableViewCell>
  703. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="PushCellIdentifier" rowHeight="115" id="Lbj-lg-J0v" customClass="RulesAddPushTableViewCell">
  704. <rect key="frame" x="0.0" y="285" width="320" height="115"/>
  705. <autoresizingMask key="autoresizingMask"/>
  706. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Lbj-lg-J0v" id="rdC-rT-4Pb">
  707. <rect key="frame" x="0.0" y="0.0" width="320" height="114"/>
  708. <autoresizingMask key="autoresizingMask"/>
  709. <subviews>
  710. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="8kU-1a-nse" customClass="CustomButton">
  711. <rect key="frame" x="278" y="37" width="27" height="27"/>
  712. <constraints>
  713. <constraint firstAttribute="width" constant="30" id="Lf6-Hf-bbl">
  714. <variation key="heightClass=regular-widthClass=compact" constant="27"/>
  715. </constraint>
  716. <constraint firstAttribute="height" constant="30" id="a1D-ft-K9B">
  717. <variation key="heightClass=regular-widthClass=compact" constant="27"/>
  718. </constraint>
  719. </constraints>
  720. <state key="normal" image="common_list_btn_delete"/>
  721. <state key="highlighted" image="common_list_btn_delete_press"/>
  722. </button>
  723. <textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" textAlignment="natural" translatesAutoresizingMaskIntoConstraints="NO" id="ohM-Wb-CBO" customClass="CustomTextView">
  724. <rect key="frame" x="15" y="0.0" width="251" height="100"/>
  725. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  726. <constraints>
  727. <constraint firstAttribute="height" constant="100" id="rFh-Jh-1mq"/>
  728. </constraints>
  729. <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  730. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  731. <textInputTraits key="textInputTraits" autocapitalizationType="sentences"/>
  732. <userDefinedRuntimeAttributes>
  733. <userDefinedRuntimeAttribute type="string" keyPath="bgImageName" value="img_input_round_bg_default"/>
  734. <userDefinedRuntimeAttribute type="string" keyPath="bgPressImageName" value="img_input_round_bg_active"/>
  735. <userDefinedRuntimeAttribute type="rect" keyPath="rectForCapBackground">
  736. <rect key="value" x="15" y="15" width="15" height="15"/>
  737. </userDefinedRuntimeAttribute>
  738. <userDefinedRuntimeAttribute type="color" keyPath="placeHolderColor">
  739. <color key="value" red="0.66666666666666663" green="0.66666666666666663" blue="0.66666666666666663" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  740. </userDefinedRuntimeAttribute>
  741. <userDefinedRuntimeAttribute type="string" keyPath="placeHolder" value="최대 120자"/>
  742. <userDefinedRuntimeAttribute type="boolean" keyPath="autoScrollUp" value="YES"/>
  743. </userDefinedRuntimeAttributes>
  744. </textView>
  745. </subviews>
  746. <constraints>
  747. <constraint firstItem="8kU-1a-nse" firstAttribute="top" secondItem="rdC-rT-4Pb" secondAttribute="top" constant="35" id="22i-Qg-aww">
  748. <variation key="heightClass=regular-widthClass=compact" constant="37"/>
  749. </constraint>
  750. <constraint firstAttribute="trailing" secondItem="8kU-1a-nse" secondAttribute="trailing" constant="15" id="33Q-fx-qdc"/>
  751. <constraint firstItem="ohM-Wb-CBO" firstAttribute="top" secondItem="rdC-rT-4Pb" secondAttribute="top" id="5I5-SX-t6o"/>
  752. <constraint firstItem="ohM-Wb-CBO" firstAttribute="leading" secondItem="rdC-rT-4Pb" secondAttribute="leading" constant="15" id="hLQ-5t-scZ"/>
  753. <constraint firstItem="8kU-1a-nse" firstAttribute="leading" secondItem="ohM-Wb-CBO" secondAttribute="trailing" constant="15" id="vFN-Eu-JCu">
  754. <variation key="heightClass=regular-widthClass=compact" constant="12"/>
  755. </constraint>
  756. </constraints>
  757. </tableViewCellContentView>
  758. <connections>
  759. <outlet property="btnDelete" destination="8kU-1a-nse" id="Nhf-PT-gIl"/>
  760. <outlet property="txvMessage" destination="ohM-Wb-CBO" id="w0f-Nf-AZ8"/>
  761. </connections>
  762. </tableViewCell>
  763. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="ConditionHeaderCellIdentifier" rowHeight="81" id="etR-vE-hXf" userLabel="ConditionHeaderCellIdentifier" customClass="RulesAddConditionHeaderTableViewCell">
  764. <rect key="frame" x="0.0" y="400" width="320" height="81"/>
  765. <autoresizingMask key="autoresizingMask"/>
  766. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="etR-vE-hXf" id="Crb-BW-Ktg">
  767. <rect key="frame" x="0.0" y="0.0" width="320" height="80"/>
  768. <autoresizingMask key="autoresizingMask"/>
  769. <subviews>
  770. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="3qI-MV-edD" userLabel="View - Line">
  771. <rect key="frame" x="100" y="49" width="160" height="1"/>
  772. <color key="backgroundColor" red="0.73333333333333328" green="0.73333333333333328" blue="0.73333333333333328" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  773. <constraints>
  774. <constraint firstAttribute="height" constant="1" id="owz-T7-dNL"/>
  775. </constraints>
  776. </view>
  777. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" placeholderIntrinsicWidth="80" placeholderIntrinsicHeight="27" text="● 추가조건" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Gsc-xL-bdC" customClass="CustomLabel">
  778. <rect key="frame" x="15" y="36" width="80" height="27"/>
  779. <constraints>
  780. <constraint firstAttribute="height" constant="30" id="HLu-H2-Jxm">
  781. <variation key="heightClass=regular-widthClass=compact" constant="27"/>
  782. </constraint>
  783. </constraints>
  784. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  785. <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  786. <nil key="highlightedColor"/>
  787. </label>
  788. <button opaque="NO" contentMode="scaleToFill" placeholderIntrinsicWidth="25" placeholderIntrinsicHeight="25" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="YJ8-U6-FqH" userLabel="Button-chk" customClass="CustomCheckBox">
  789. <rect key="frame" x="278" y="36" width="27" height="27"/>
  790. <constraints>
  791. <constraint firstAttribute="height" constant="30" id="Gjl-NR-8hj">
  792. <variation key="heightClass=regular-widthClass=compact" constant="27"/>
  793. </constraint>
  794. <constraint firstAttribute="width" constant="30" id="Yq0-YJ-huQ">
  795. <variation key="heightClass=regular-widthClass=compact" constant="27"/>
  796. </constraint>
  797. </constraints>
  798. <state key="normal" image="common_checkbox_default">
  799. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  800. </state>
  801. <state key="highlighted" image="common_checkbox_checked"/>
  802. </button>
  803. </subviews>
  804. <constraints>
  805. <constraint firstItem="3qI-MV-edD" firstAttribute="centerY" secondItem="YJ8-U6-FqH" secondAttribute="centerY" id="38y-aN-UZq"/>
  806. <constraint firstAttribute="trailing" secondItem="3qI-MV-edD" secondAttribute="trailing" constant="60" id="ArJ-zC-Dc6"/>
  807. <constraint firstAttribute="trailing" secondItem="YJ8-U6-FqH" secondAttribute="trailing" constant="15" id="M5d-vA-EBW">
  808. <variation key="heightClass=regular-widthClass=compact" constant="15"/>
  809. </constraint>
  810. <constraint firstItem="YJ8-U6-FqH" firstAttribute="top" secondItem="Crb-BW-Ktg" secondAttribute="top" constant="40" id="S3T-8l-sQM">
  811. <variation key="heightClass=regular-widthClass=compact" constant="36"/>
  812. </constraint>
  813. <constraint firstItem="3qI-MV-edD" firstAttribute="leading" secondItem="Gsc-xL-bdC" secondAttribute="trailing" constant="5" id="Vmr-Mk-Zm6"/>
  814. <constraint firstItem="YJ8-U6-FqH" firstAttribute="leading" secondItem="3qI-MV-edD" secondAttribute="trailing" constant="45" id="c9P-fe-dez">
  815. <variation key="heightClass=regular-widthClass=compact" constant="18"/>
  816. </constraint>
  817. <constraint firstItem="Gsc-xL-bdC" firstAttribute="top" secondItem="Crb-BW-Ktg" secondAttribute="top" constant="40" id="czV-3H-N8i">
  818. <variation key="heightClass=regular-widthClass=compact" constant="36"/>
  819. </constraint>
  820. <constraint firstItem="Gsc-xL-bdC" firstAttribute="leading" secondItem="Crb-BW-Ktg" secondAttribute="leading" constant="15" id="o9S-NO-Zza"/>
  821. <constraint firstItem="YJ8-U6-FqH" firstAttribute="leading" secondItem="Gsc-xL-bdC" secondAttribute="trailing" constant="20" id="yt9-uK-Tsd">
  822. <variation key="heightClass=regular-widthClass=compact" constant="183"/>
  823. </constraint>
  824. </constraints>
  825. <variation key="default">
  826. <mask key="subviews">
  827. <exclude reference="3qI-MV-edD"/>
  828. </mask>
  829. <mask key="constraints">
  830. <exclude reference="38y-aN-UZq"/>
  831. <exclude reference="ArJ-zC-Dc6"/>
  832. <exclude reference="Vmr-Mk-Zm6"/>
  833. <exclude reference="c9P-fe-dez"/>
  834. </mask>
  835. </variation>
  836. <variation key="heightClass=regular-widthClass=compact">
  837. <mask key="subviews">
  838. <include reference="3qI-MV-edD"/>
  839. </mask>
  840. <mask key="constraints">
  841. <include reference="38y-aN-UZq"/>
  842. <include reference="ArJ-zC-Dc6"/>
  843. <include reference="Vmr-Mk-Zm6"/>
  844. <exclude reference="c9P-fe-dez"/>
  845. <exclude reference="yt9-uK-Tsd"/>
  846. </mask>
  847. </variation>
  848. </tableViewCellContentView>
  849. <color key="backgroundColor" red="0.94509803921568625" green="0.94509803921568625" blue="0.94509803921568625" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  850. <connections>
  851. <outlet property="chkConditions" destination="YJ8-U6-FqH" id="nOG-4g-SF8"/>
  852. </connections>
  853. </tableViewCell>
  854. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="ConditionCellIdentifier" rowHeight="255" id="EfN-Wc-PbR" customClass="RulesAddConditionTableViewCell">
  855. <rect key="frame" x="0.0" y="481" width="320" height="255"/>
  856. <autoresizingMask key="autoresizingMask"/>
  857. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="EfN-Wc-PbR" id="fkq-bd-sDg">
  858. <rect key="frame" x="0.0" y="0.0" width="320" height="254"/>
  859. <autoresizingMask key="autoresizingMask"/>
  860. <subviews>
  861. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="qdX-eK-XYC" userLabel="View - child view container">
  862. <rect key="frame" x="0.0" y="0.0" width="320" height="255"/>
  863. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  864. <constraints>
  865. <constraint firstAttribute="height" constant="255" id="YAv-YH-d6G"/>
  866. </constraints>
  867. </view>
  868. </subviews>
  869. <constraints>
  870. <constraint firstItem="qdX-eK-XYC" firstAttribute="top" secondItem="fkq-bd-sDg" secondAttribute="top" id="FaK-RA-Wlo"/>
  871. <constraint firstItem="qdX-eK-XYC" firstAttribute="leading" secondItem="fkq-bd-sDg" secondAttribute="leading" id="RFP-We-PSC"/>
  872. <constraint firstAttribute="trailing" secondItem="qdX-eK-XYC" secondAttribute="trailing" id="eoD-LQ-pHK"/>
  873. </constraints>
  874. </tableViewCellContentView>
  875. <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  876. <connections>
  877. <outlet property="constraintContainerHeight" destination="YAv-YH-d6G" id="c6K-Hs-IQD"/>
  878. <outlet property="container" destination="qdX-eK-XYC" id="fVA-sf-zsd"/>
  879. </connections>
  880. </tableViewCell>
  881. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="FooterCellIdentifier" rowHeight="15" id="51C-7z-DOS" customClass="RulesAddFooterTableViewCell">
  882. <rect key="frame" x="0.0" y="736" width="320" height="15"/>
  883. <autoresizingMask key="autoresizingMask"/>
  884. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="51C-7z-DOS" id="xfZ-9V-Zbc">
  885. <rect key="frame" x="0.0" y="0.0" width="320" height="14"/>
  886. <autoresizingMask key="autoresizingMask"/>
  887. <subviews>
  888. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="bw8-pC-LMV" userLabel="View - Line">
  889. <rect key="frame" x="0.0" y="0.0" width="320" height="1"/>
  890. <color key="backgroundColor" red="0.90196079019999997" green="0.90196079019999997" blue="0.90196079019999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  891. <constraints>
  892. <constraint firstAttribute="height" relation="greaterThanOrEqual" constant="1" id="C1q-y6-Jyw"/>
  893. <constraint firstAttribute="height" constant="1" id="uIb-O2-TaS"/>
  894. </constraints>
  895. </view>
  896. </subviews>
  897. <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  898. <constraints>
  899. <constraint firstAttribute="trailing" secondItem="bw8-pC-LMV" secondAttribute="trailing" id="RnM-Iy-PvG"/>
  900. <constraint firstItem="bw8-pC-LMV" firstAttribute="top" secondItem="xfZ-9V-Zbc" secondAttribute="top" id="pDi-jC-8td"/>
  901. <constraint firstItem="bw8-pC-LMV" firstAttribute="leading" secondItem="xfZ-9V-Zbc" secondAttribute="leading" id="ywy-we-fjg"/>
  902. </constraints>
  903. </tableViewCellContentView>
  904. <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  905. </tableViewCell>
  906. </prototypes>
  907. </tableView>
  908. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Ui2-ff-Teq" userLabel="View - actionTab">
  909. <rect key="frame" x="0.0" y="516" width="320" height="52"/>
  910. <subviews>
  911. <button opaque="NO" contentMode="scaleToFill" placeholderIntrinsicWidth="160" placeholderIntrinsicHeight="70" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="dJO-5a-BHI" customClass="CustomButton">
  912. <rect key="frame" x="0.0" y="1" width="160" height="51"/>
  913. <color key="backgroundColor" red="0.94509803920000002" green="0.94509803920000002" blue="0.94509803920000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  914. <constraints>
  915. <constraint firstAttribute="height" constant="51" id="EpC-X1-t4F"/>
  916. <constraint firstAttribute="width" relation="greaterThanOrEqual" id="jIf-uD-BhQ"/>
  917. </constraints>
  918. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  919. <state key="normal" title="완료">
  920. <color key="titleColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  921. </state>
  922. <connections>
  923. <action selector="btnConfirmTouched:" destination="Xxr-u0-LpV" eventType="touchUpInside" id="Ua8-30-NDd"/>
  924. </connections>
  925. </button>
  926. <button opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="249" placeholderIntrinsicWidth="160" placeholderIntrinsicHeight="70" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="OQN-Np-6Ah" customClass="CustomButton">
  927. <rect key="frame" x="161" y="1" width="159" height="51"/>
  928. <color key="backgroundColor" red="0.94509803920000002" green="0.94509803920000002" blue="0.94509803920000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  929. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  930. <state key="normal" title="취소">
  931. <color key="titleColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  932. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  933. </state>
  934. <connections>
  935. <action selector="btnCancelTouched:" destination="Xxr-u0-LpV" eventType="touchUpInside" id="Pe7-aT-SZ7"/>
  936. </connections>
  937. </button>
  938. </subviews>
  939. <color key="backgroundColor" red="0.73333333329999995" green="0.73333333329999995" blue="0.73333333329999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  940. <constraints>
  941. <constraint firstItem="OQN-Np-6Ah" firstAttribute="leading" secondItem="dJO-5a-BHI" secondAttribute="trailing" constant="1" id="7el-q6-zB7"/>
  942. <constraint firstItem="dJO-5a-BHI" firstAttribute="height" secondItem="OQN-Np-6Ah" secondAttribute="height" id="Wwr-AV-kA7"/>
  943. <constraint firstAttribute="height" constant="52" id="Zbw-fO-R4u"/>
  944. <constraint firstItem="dJO-5a-BHI" firstAttribute="leading" secondItem="Ui2-ff-Teq" secondAttribute="leading" id="d0T-LD-ZS6"/>
  945. <constraint firstItem="OQN-Np-6Ah" firstAttribute="top" secondItem="dJO-5a-BHI" secondAttribute="top" id="h4E-aF-qOK"/>
  946. <constraint firstItem="dJO-5a-BHI" firstAttribute="top" secondItem="Ui2-ff-Teq" secondAttribute="top" constant="1" id="hAj-J1-IBG"/>
  947. <constraint firstAttribute="trailing" secondItem="OQN-Np-6Ah" secondAttribute="trailing" id="kj8-jC-53v"/>
  948. <constraint firstItem="dJO-5a-BHI" firstAttribute="width" secondItem="OQN-Np-6Ah" secondAttribute="width" constant="1" id="sXm-9p-gsn"/>
  949. </constraints>
  950. </view>
  951. </subviews>
  952. <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  953. <constraints>
  954. <constraint firstAttribute="trailing" secondItem="Ui2-ff-Teq" secondAttribute="trailing" id="BBY-jB-RQg"/>
  955. <constraint firstItem="ikn-Sw-KkY" firstAttribute="leading" secondItem="7rI-pA-FfB" secondAttribute="leading" id="G1A-lD-KOW"/>
  956. <constraint firstItem="Ui2-ff-Teq" firstAttribute="top" secondItem="gRt-p6-Seb" secondAttribute="bottom" id="TrG-2L-spj"/>
  957. <constraint firstItem="gRt-p6-Seb" firstAttribute="leading" secondItem="7rI-pA-FfB" secondAttribute="leading" id="VWH-QG-k6Y"/>
  958. <constraint firstItem="Ui2-ff-Teq" firstAttribute="leading" secondItem="7rI-pA-FfB" secondAttribute="leading" id="bzM-gU-4lY"/>
  959. <constraint firstItem="gRt-p6-Seb" firstAttribute="top" secondItem="ikn-Sw-KkY" secondAttribute="bottom" id="duN-UX-6ko"/>
  960. <constraint firstAttribute="bottom" secondItem="Ui2-ff-Teq" secondAttribute="bottom" id="mbJ-2G-cr6"/>
  961. <constraint firstAttribute="trailing" secondItem="ikn-Sw-KkY" secondAttribute="trailing" id="oI0-GG-SfD"/>
  962. <constraint firstItem="ikn-Sw-KkY" firstAttribute="top" secondItem="7rI-pA-FfB" secondAttribute="top" id="wrr-aR-Tdo"/>
  963. <constraint firstAttribute="trailing" secondItem="gRt-p6-Seb" secondAttribute="trailing" id="yxf-jd-tbY"/>
  964. </constraints>
  965. </view>
  966. <simulatedStatusBarMetrics key="simulatedStatusBarMetrics"/>
  967. <connections>
  968. <outlet property="lblTitle" destination="TNG-uD-yCt" id="Efn-vC-f0I"/>
  969. <outlet property="tableView" destination="gRt-p6-Seb" id="Zg0-JE-30Q"/>
  970. </connections>
  971. </viewController>
  972. <placeholder placeholderIdentifier="IBFirstResponder" id="PO5-JJ-G6r" userLabel="First Responder" sceneMemberID="firstResponder"/>
  973. </objects>
  974. <point key="canvasLocation" x="-72" y="143.25"/>
  975. </scene>
  976. <!--Rules Condition View Controller-->
  977. <scene sceneID="J0D-3b-YUl">
  978. <objects>
  979. <viewController storyboardIdentifier="RulesConditionViewController" automaticallyAdjustsScrollViewInsets="NO" useStoryboardIdentifierAsRestorationIdentifier="YES" id="x54-WZ-7lk" customClass="RulesConditionViewController" sceneMemberID="viewController">
  980. <layoutGuides>
  981. <viewControllerLayoutGuide type="top" id="SqT-3R-5K8"/>
  982. <viewControllerLayoutGuide type="bottom" id="1Wf-vo-AU5"/>
  983. </layoutGuides>
  984. <view key="view" contentMode="scaleToFill" id="Ci7-3A-k16" userLabel="View - Main">
  985. <rect key="frame" x="0.0" y="0.0" width="320" height="568"/>
  986. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  987. <subviews>
  988. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="18" sectionFooterHeight="18" translatesAutoresizingMaskIntoConstraints="NO" id="Sly-Wf-8hY" customClass="CustomTableView">
  989. <rect key="frame" x="0.0" y="0.0" width="320" height="568"/>
  990. <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  991. <prototypes>
  992. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="HeaderCellIdentifier" rowHeight="63" id="BA9-cN-Har" customClass="RulesConditionHeaderTableViewCell">
  993. <rect key="frame" x="0.0" y="56" width="320" height="63"/>
  994. <autoresizingMask key="autoresizingMask"/>
  995. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="BA9-cN-Har" id="xER-Jf-YWh">
  996. <rect key="frame" x="0.0" y="0.0" width="320" height="62"/>
  997. <autoresizingMask key="autoresizingMask"/>
  998. <subviews>
  999. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" placeholderIntrinsicWidth="225" placeholderIntrinsicHeight="21" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3zf-7v-a96" customClass="CustomLabel">
  1000. <rect key="frame" x="28" y="21" width="225" height="21"/>
  1001. <constraints>
  1002. <constraint firstAttribute="width" constant="225" id="d0E-nO-coB"/>
  1003. <constraint firstAttribute="height" constant="30" id="jeO-Ik-POv">
  1004. <variation key="heightClass=regular-widthClass=compact" constant="21"/>
  1005. </constraint>
  1006. </constraints>
  1007. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1008. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1009. <nil key="highlightedColor"/>
  1010. <variation key="default">
  1011. <mask key="constraints">
  1012. <exclude reference="d0E-nO-coB"/>
  1013. </mask>
  1014. </variation>
  1015. <variation key="heightClass=regular-widthClass=compact">
  1016. <mask key="constraints">
  1017. <include reference="d0E-nO-coB"/>
  1018. </mask>
  1019. </variation>
  1020. </label>
  1021. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="NPw-GN-2x9" customClass="CustomButton">
  1022. <rect key="frame" x="278" y="19" width="27" height="27"/>
  1023. <constraints>
  1024. <constraint firstAttribute="height" constant="30" id="TTk-YE-VrU">
  1025. <variation key="heightClass=regular-widthClass=compact" constant="27"/>
  1026. </constraint>
  1027. <constraint firstAttribute="width" constant="30" id="VWw-dc-WCE">
  1028. <variation key="heightClass=regular-widthClass=compact" constant="27"/>
  1029. </constraint>
  1030. </constraints>
  1031. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  1032. <state key="normal" image="common_list_btn_add"/>
  1033. <state key="highlighted" image="common_list_btn_add_press"/>
  1034. </button>
  1035. </subviews>
  1036. <constraints>
  1037. <constraint firstItem="3zf-7v-a96" firstAttribute="leading" secondItem="xER-Jf-YWh" secondAttribute="leading" constant="28" id="5hD-eM-ZkA"/>
  1038. <constraint firstAttribute="bottom" secondItem="NPw-GN-2x9" secondAttribute="bottom" constant="17" id="FUt-Xt-SH6"/>
  1039. <constraint firstItem="NPw-GN-2x9" firstAttribute="centerY" secondItem="3zf-7v-a96" secondAttribute="centerY" id="Lua-7T-wRf">
  1040. <variation key="heightClass=regular-widthClass=compact" constant="1"/>
  1041. </constraint>
  1042. <constraint firstAttribute="trailing" secondItem="NPw-GN-2x9" secondAttribute="trailing" constant="15" id="ZoZ-zu-0ZY"/>
  1043. </constraints>
  1044. <variation key="default">
  1045. <mask key="constraints">
  1046. <exclude reference="FUt-Xt-SH6"/>
  1047. </mask>
  1048. </variation>
  1049. <variation key="heightClass=regular-widthClass=compact">
  1050. <mask key="constraints">
  1051. <include reference="FUt-Xt-SH6"/>
  1052. </mask>
  1053. </variation>
  1054. </tableViewCellContentView>
  1055. <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1056. <connections>
  1057. <outlet property="btnAdd" destination="NPw-GN-2x9" id="PTh-rU-feg"/>
  1058. <outlet property="lblTitle" destination="3zf-7v-a96" id="csr-s2-qGg"/>
  1059. </connections>
  1060. </tableViewCell>
  1061. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="DeviceCellIdentifier" rowHeight="86" id="RDr-Nm-I34" customClass="RulesConditionDeviceTableViewCell">
  1062. <rect key="frame" x="0.0" y="119" width="320" height="86"/>
  1063. <autoresizingMask key="autoresizingMask"/>
  1064. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="RDr-Nm-I34" id="agj-A3-Qct">
  1065. <rect key="frame" x="0.0" y="0.0" width="320" height="85"/>
  1066. <autoresizingMask key="autoresizingMask"/>
  1067. <subviews>
  1068. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="mZH-3V-tyO">
  1069. <rect key="frame" x="10" y="0.0" width="300" height="86"/>
  1070. <subviews>
  1071. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="r08-CZ-UDi" userLabel="View - Line">
  1072. <rect key="frame" x="0.0" y="85" width="300" height="1"/>
  1073. <color key="backgroundColor" red="0.86666666670000003" green="0.86666666670000003" blue="0.86666666670000003" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1074. <constraints>
  1075. <constraint firstAttribute="height" constant="1" id="lru-BN-113"/>
  1076. </constraints>
  1077. </view>
  1078. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="tiA-Fj-J7C" customClass="CustomImageView">
  1079. <rect key="frame" x="8" y="18" width="50" height="50"/>
  1080. <constraints>
  1081. <constraint firstAttribute="width" constant="55" id="9qL-iA-Clw">
  1082. <variation key="heightClass=regular-widthClass=compact" constant="50"/>
  1083. </constraint>
  1084. <constraint firstAttribute="height" constant="55" id="edR-Mq-nyv">
  1085. <variation key="heightClass=regular-widthClass=compact" constant="50"/>
  1086. </constraint>
  1087. </constraints>
  1088. </imageView>
  1089. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" placeholderIntrinsicWidth="125" placeholderIntrinsicHeight="23" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="roB-B7-xoe" customClass="CustomLabel">
  1090. <rect key="frame" x="63" y="22" width="125" height="23"/>
  1091. <constraints>
  1092. <constraint firstAttribute="height" constant="20" id="8Ms-hH-1DL">
  1093. <variation key="heightClass=regular-widthClass=compact" constant="23"/>
  1094. </constraint>
  1095. </constraints>
  1096. <fontDescription key="fontDescription" type="system" pointSize="19"/>
  1097. <color key="textColor" red="0.16078431369999999" green="0.55294117649999996" blue="0.80392156859999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1098. <nil key="highlightedColor"/>
  1099. </label>
  1100. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" placeholderIntrinsicWidth="194" placeholderIntrinsicHeight="15" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="RRW-yk-46O" customClass="CustomLabel">
  1101. <rect key="frame" x="63" y="53" width="194" height="15"/>
  1102. <constraints>
  1103. <constraint firstAttribute="height" constant="15" id="Kut-17-BLp"/>
  1104. </constraints>
  1105. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  1106. <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1107. <nil key="highlightedColor"/>
  1108. </label>
  1109. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="8u0-0Q-Nf0" customClass="CustomButton">
  1110. <rect key="frame" x="265" y="29" width="27" height="27"/>
  1111. <constraints>
  1112. <constraint firstAttribute="height" constant="30" id="irY-XG-0WF">
  1113. <variation key="heightClass=regular-widthClass=compact" constant="27"/>
  1114. </constraint>
  1115. <constraint firstAttribute="width" constant="30" id="wkD-Du-7pv">
  1116. <variation key="heightClass=regular-widthClass=compact" constant="27"/>
  1117. </constraint>
  1118. </constraints>
  1119. <state key="normal" image="common_list_btn_delete"/>
  1120. <state key="highlighted" image="common_list_btn_delete_press"/>
  1121. </button>
  1122. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" placeholderIntrinsicWidth="70" placeholderIntrinsicHeight="15" text="Label" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="2P0-eF-dg6" customClass="CustomLabel">
  1123. <rect key="frame" x="192" y="35" width="70" height="15"/>
  1124. <constraints>
  1125. <constraint firstAttribute="height" constant="15" id="UAK-Af-hWF"/>
  1126. </constraints>
  1127. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  1128. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1129. <nil key="highlightedColor"/>
  1130. </label>
  1131. </subviews>
  1132. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1133. <constraints>
  1134. <constraint firstAttribute="trailing" secondItem="r08-CZ-UDi" secondAttribute="trailing" id="2fN-LB-oDZ"/>
  1135. <constraint firstItem="roB-B7-xoe" firstAttribute="leading" secondItem="tiA-Fj-J7C" secondAttribute="trailing" constant="5" id="6Iy-jR-09Q"/>
  1136. <constraint firstItem="RRW-yk-46O" firstAttribute="top" secondItem="roB-B7-xoe" secondAttribute="bottom" constant="8" id="9AE-N3-NaN"/>
  1137. <constraint firstAttribute="bottom" secondItem="r08-CZ-UDi" secondAttribute="bottom" id="Blh-k3-Ao0"/>
  1138. <constraint firstItem="2P0-eF-dg6" firstAttribute="centerY" secondItem="8u0-0Q-Nf0" secondAttribute="centerY" id="DKQ-1e-OVK"/>
  1139. <constraint firstItem="tiA-Fj-J7C" firstAttribute="leading" secondItem="mZH-3V-tyO" secondAttribute="leading" constant="8" id="Jlp-Ao-QvF"/>
  1140. <constraint firstAttribute="trailing" secondItem="2P0-eF-dg6" secondAttribute="trailing" constant="38" id="Kjx-vl-CRR"/>
  1141. <constraint firstItem="8u0-0Q-Nf0" firstAttribute="top" secondItem="mZH-3V-tyO" secondAttribute="top" constant="29" id="Ta4-jZ-BQN"/>
  1142. <constraint firstItem="r08-CZ-UDi" firstAttribute="leading" secondItem="mZH-3V-tyO" secondAttribute="leading" id="ZHm-x0-2ht"/>
  1143. <constraint firstAttribute="trailing" secondItem="8u0-0Q-Nf0" secondAttribute="trailing" constant="8" id="gDa-Bo-gKr"/>
  1144. <constraint firstItem="roB-B7-xoe" firstAttribute="top" secondItem="mZH-3V-tyO" secondAttribute="top" constant="22" id="kON-CB-ipA"/>
  1145. <constraint firstItem="RRW-yk-46O" firstAttribute="leading" secondItem="roB-B7-xoe" secondAttribute="leading" id="o2Z-Wg-bXs"/>
  1146. <constraint firstItem="tiA-Fj-J7C" firstAttribute="top" secondItem="mZH-3V-tyO" secondAttribute="top" constant="18" id="v3c-Hb-Il5"/>
  1147. <constraint firstItem="RRW-yk-46O" firstAttribute="trailing" secondItem="2P0-eF-dg6" secondAttribute="trailing" id="ymO-7K-KZM">
  1148. <variation key="heightClass=regular-widthClass=compact" constant="-5"/>
  1149. </constraint>
  1150. </constraints>
  1151. <variation key="default">
  1152. <mask key="constraints">
  1153. <exclude reference="Jlp-Ao-QvF"/>
  1154. <exclude reference="v3c-Hb-Il5"/>
  1155. <exclude reference="6Iy-jR-09Q"/>
  1156. <exclude reference="kON-CB-ipA"/>
  1157. <exclude reference="9AE-N3-NaN"/>
  1158. <exclude reference="o2Z-Wg-bXs"/>
  1159. <exclude reference="ymO-7K-KZM"/>
  1160. <exclude reference="2fN-LB-oDZ"/>
  1161. <exclude reference="Blh-k3-Ao0"/>
  1162. <exclude reference="ZHm-x0-2ht"/>
  1163. <exclude reference="DKQ-1e-OVK"/>
  1164. <exclude reference="Kjx-vl-CRR"/>
  1165. <exclude reference="Ta4-jZ-BQN"/>
  1166. <exclude reference="gDa-Bo-gKr"/>
  1167. </mask>
  1168. </variation>
  1169. <variation key="heightClass=regular-widthClass=compact">
  1170. <mask key="constraints">
  1171. <include reference="Jlp-Ao-QvF"/>
  1172. <include reference="v3c-Hb-Il5"/>
  1173. <include reference="6Iy-jR-09Q"/>
  1174. <include reference="kON-CB-ipA"/>
  1175. <include reference="9AE-N3-NaN"/>
  1176. <include reference="o2Z-Wg-bXs"/>
  1177. <include reference="ymO-7K-KZM"/>
  1178. <include reference="2fN-LB-oDZ"/>
  1179. <include reference="Blh-k3-Ao0"/>
  1180. <include reference="ZHm-x0-2ht"/>
  1181. <include reference="DKQ-1e-OVK"/>
  1182. <include reference="Kjx-vl-CRR"/>
  1183. <include reference="Ta4-jZ-BQN"/>
  1184. <include reference="gDa-Bo-gKr"/>
  1185. </mask>
  1186. </variation>
  1187. </view>
  1188. </subviews>
  1189. <constraints>
  1190. <constraint firstItem="mZH-3V-tyO" firstAttribute="top" secondItem="agj-A3-Qct" secondAttribute="top" id="Ao4-ps-djr"/>
  1191. <constraint firstAttribute="bottom" secondItem="mZH-3V-tyO" secondAttribute="bottom" id="Eyb-1i-gbZ"/>
  1192. <constraint firstItem="mZH-3V-tyO" firstAttribute="leading" secondItem="agj-A3-Qct" secondAttribute="leading" constant="10" id="Quf-qK-szP"/>
  1193. <constraint firstAttribute="trailing" secondItem="mZH-3V-tyO" secondAttribute="trailing" constant="10" id="y4J-qM-Wkl"/>
  1194. </constraints>
  1195. <variation key="default">
  1196. <mask key="constraints">
  1197. <exclude reference="Ao4-ps-djr"/>
  1198. <exclude reference="Eyb-1i-gbZ"/>
  1199. <exclude reference="Quf-qK-szP"/>
  1200. <exclude reference="y4J-qM-Wkl"/>
  1201. </mask>
  1202. </variation>
  1203. <variation key="heightClass=regular-widthClass=compact">
  1204. <mask key="constraints">
  1205. <include reference="Ao4-ps-djr"/>
  1206. <include reference="Eyb-1i-gbZ"/>
  1207. <include reference="Quf-qK-szP"/>
  1208. <include reference="y4J-qM-Wkl"/>
  1209. </mask>
  1210. </variation>
  1211. </tableViewCellContentView>
  1212. <color key="backgroundColor" red="0.94509803921568625" green="0.94509803921568625" blue="0.94509803921568625" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1213. <connections>
  1214. <outlet property="bottomLine" destination="r08-CZ-UDi" id="Uzh-Fi-8wd"/>
  1215. <outlet property="btnDelete" destination="8u0-0Q-Nf0" id="e9L-fH-STI"/>
  1216. <outlet property="constraintConditionLabelRight" destination="Kjx-vl-CRR" id="lfh-5Z-FXr"/>
  1217. <outlet property="imgvIcon" destination="tiA-Fj-J7C" id="kwN-pp-N2z"/>
  1218. <outlet property="lblCondition" destination="2P0-eF-dg6" id="BPS-nY-KMl"/>
  1219. <outlet property="lblItem" destination="roB-B7-xoe" id="JsK-v8-CwA"/>
  1220. <outlet property="lblSubItem" destination="RRW-yk-46O" id="kim-HQ-uuS"/>
  1221. </connections>
  1222. </tableViewCell>
  1223. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="ConditionCellIdentifier" rowHeight="86" id="geZ-Et-9z1" customClass="RulesConditionTableViewCell">
  1224. <rect key="frame" x="0.0" y="205" width="320" height="86"/>
  1225. <autoresizingMask key="autoresizingMask"/>
  1226. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="geZ-Et-9z1" id="NWN-px-GuH">
  1227. <rect key="frame" x="0.0" y="0.0" width="320" height="85"/>
  1228. <autoresizingMask key="autoresizingMask"/>
  1229. <subviews>
  1230. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="S4O-ED-DYC">
  1231. <rect key="frame" x="10" y="0.0" width="300" height="87"/>
  1232. <subviews>
  1233. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="SoI-fD-fKa" userLabel="View - Line">
  1234. <rect key="frame" x="0.0" y="86" width="300" height="1"/>
  1235. <color key="backgroundColor" red="0.90196079019999997" green="0.90196079019999997" blue="0.90196079019999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1236. <constraints>
  1237. <constraint firstAttribute="height" constant="1" id="RhV-sE-fIc"/>
  1238. </constraints>
  1239. </view>
  1240. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="UKu-zE-iu4" customClass="CustomImageView">
  1241. <rect key="frame" x="8" y="18" width="50" height="50"/>
  1242. <constraints>
  1243. <constraint firstAttribute="height" constant="55" id="ApY-dH-c6x">
  1244. <variation key="heightClass=regular-widthClass=compact" constant="50"/>
  1245. </constraint>
  1246. <constraint firstAttribute="width" constant="55" id="awD-jc-1A3">
  1247. <variation key="heightClass=regular-widthClass=compact" constant="50"/>
  1248. </constraint>
  1249. </constraints>
  1250. </imageView>
  1251. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" placeholderIntrinsicWidth="180" placeholderIntrinsicHeight="20" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="eLH-2g-wZR" customClass="CustomLabel">
  1252. <rect key="frame" x="63" y="33" width="194" height="20"/>
  1253. <constraints>
  1254. <constraint firstAttribute="width" constant="180" id="LtO-JS-fP1">
  1255. <variation key="heightClass=regular-widthClass=compact" constant="194"/>
  1256. </constraint>
  1257. <constraint firstAttribute="height" constant="20" id="R38-Be-z4t"/>
  1258. </constraints>
  1259. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  1260. <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1261. <nil key="highlightedColor"/>
  1262. </label>
  1263. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Ncb-ge-1lC" customClass="CustomButton">
  1264. <rect key="frame" x="265" y="30" width="27" height="27"/>
  1265. <constraints>
  1266. <constraint firstAttribute="height" constant="30" id="SDX-TP-OCc">
  1267. <variation key="heightClass=regular-widthClass=compact" constant="27"/>
  1268. </constraint>
  1269. <constraint firstAttribute="width" constant="30" id="YAj-pp-73d">
  1270. <variation key="heightClass=regular-widthClass=compact" constant="27"/>
  1271. </constraint>
  1272. </constraints>
  1273. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  1274. <state key="normal" image="common_list_btn_delete"/>
  1275. <state key="highlighted" image="common_list_btn_delete_press"/>
  1276. </button>
  1277. </subviews>
  1278. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1279. <constraints>
  1280. <constraint firstAttribute="bottom" secondItem="SoI-fD-fKa" secondAttribute="bottom" id="3Or-py-oUg"/>
  1281. <constraint firstItem="UKu-zE-iu4" firstAttribute="leading" secondItem="S4O-ED-DYC" secondAttribute="leading" constant="8" id="7Se-9Y-HcL"/>
  1282. <constraint firstAttribute="trailing" secondItem="Ncb-ge-1lC" secondAttribute="trailing" constant="8" id="9rr-RK-oat"/>
  1283. <constraint firstItem="Ncb-ge-1lC" firstAttribute="top" secondItem="S4O-ED-DYC" secondAttribute="top" constant="30" id="Ezy-X9-8kC"/>
  1284. <constraint firstAttribute="trailing" secondItem="SoI-fD-fKa" secondAttribute="trailing" id="SRJ-eW-xy3"/>
  1285. <constraint firstItem="SoI-fD-fKa" firstAttribute="leading" secondItem="S4O-ED-DYC" secondAttribute="leading" id="YA1-Z4-Qw3"/>
  1286. <constraint firstItem="UKu-zE-iu4" firstAttribute="top" secondItem="S4O-ED-DYC" secondAttribute="top" constant="18" id="kNK-9Z-j0u"/>
  1287. <constraint firstItem="eLH-2g-wZR" firstAttribute="centerY" secondItem="UKu-zE-iu4" secondAttribute="centerY" id="tGm-er-An2"/>
  1288. <constraint firstItem="eLH-2g-wZR" firstAttribute="leading" secondItem="UKu-zE-iu4" secondAttribute="trailing" constant="7" id="zSl-bG-s3d">
  1289. <variation key="heightClass=regular-widthClass=compact" constant="5"/>
  1290. </constraint>
  1291. </constraints>
  1292. <variation key="default">
  1293. <mask key="constraints">
  1294. <exclude reference="7Se-9Y-HcL"/>
  1295. <exclude reference="kNK-9Z-j0u"/>
  1296. <exclude reference="tGm-er-An2"/>
  1297. <exclude reference="zSl-bG-s3d"/>
  1298. <exclude reference="3Or-py-oUg"/>
  1299. <exclude reference="SRJ-eW-xy3"/>
  1300. <exclude reference="YA1-Z4-Qw3"/>
  1301. <exclude reference="9rr-RK-oat"/>
  1302. <exclude reference="Ezy-X9-8kC"/>
  1303. </mask>
  1304. </variation>
  1305. <variation key="heightClass=regular-widthClass=compact">
  1306. <mask key="constraints">
  1307. <include reference="7Se-9Y-HcL"/>
  1308. <include reference="kNK-9Z-j0u"/>
  1309. <include reference="tGm-er-An2"/>
  1310. <include reference="zSl-bG-s3d"/>
  1311. <include reference="3Or-py-oUg"/>
  1312. <include reference="SRJ-eW-xy3"/>
  1313. <include reference="YA1-Z4-Qw3"/>
  1314. <include reference="9rr-RK-oat"/>
  1315. <include reference="Ezy-X9-8kC"/>
  1316. </mask>
  1317. </variation>
  1318. </view>
  1319. </subviews>
  1320. <constraints>
  1321. <constraint firstAttribute="bottom" secondItem="S4O-ED-DYC" secondAttribute="bottom" constant="1" id="97L-HJ-wxL">
  1322. <variation key="heightClass=regular-widthClass=compact" constant="-1"/>
  1323. </constraint>
  1324. <constraint firstAttribute="trailing" secondItem="S4O-ED-DYC" secondAttribute="trailing" constant="10" id="AN1-21-gkf"/>
  1325. <constraint firstItem="S4O-ED-DYC" firstAttribute="leading" secondItem="NWN-px-GuH" secondAttribute="leading" constant="10" id="BnM-rH-Q6n"/>
  1326. <constraint firstItem="S4O-ED-DYC" firstAttribute="top" secondItem="NWN-px-GuH" secondAttribute="top" id="OPP-h1-mrm"/>
  1327. </constraints>
  1328. <variation key="default">
  1329. <mask key="constraints">
  1330. <exclude reference="97L-HJ-wxL"/>
  1331. <exclude reference="AN1-21-gkf"/>
  1332. <exclude reference="BnM-rH-Q6n"/>
  1333. <exclude reference="OPP-h1-mrm"/>
  1334. </mask>
  1335. </variation>
  1336. <variation key="heightClass=regular-widthClass=compact">
  1337. <mask key="constraints">
  1338. <include reference="97L-HJ-wxL"/>
  1339. <include reference="AN1-21-gkf"/>
  1340. <include reference="BnM-rH-Q6n"/>
  1341. <include reference="OPP-h1-mrm"/>
  1342. </mask>
  1343. </variation>
  1344. </tableViewCellContentView>
  1345. <color key="backgroundColor" red="0.94509803921568625" green="0.94509803921568625" blue="0.94509803921568625" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1346. <connections>
  1347. <outlet property="bottomLine" destination="SoI-fD-fKa" id="a5O-2P-Cnx"/>
  1348. <outlet property="btnDelete" destination="Ncb-ge-1lC" id="6ny-7U-HdZ"/>
  1349. <outlet property="imgvIcon" destination="UKu-zE-iu4" id="l9l-EY-Vks"/>
  1350. <outlet property="lblItem" destination="eLH-2g-wZR" id="yi3-L4-hSt"/>
  1351. </connections>
  1352. </tableViewCell>
  1353. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="FooterCellIdentifier" rowHeight="15" id="1Ri-jt-T30" customClass="RulesConditionFooterTableViewCell">
  1354. <rect key="frame" x="0.0" y="291" width="320" height="15"/>
  1355. <autoresizingMask key="autoresizingMask"/>
  1356. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="1Ri-jt-T30" id="cxG-qc-mKq">
  1357. <rect key="frame" x="0.0" y="0.0" width="320" height="14"/>
  1358. <autoresizingMask key="autoresizingMask"/>
  1359. <subviews>
  1360. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="bgy-m5-3QO" userLabel="View - Line">
  1361. <rect key="frame" x="10" y="0.0" width="300" height="1"/>
  1362. <color key="backgroundColor" red="0.73333333333333328" green="0.73333333333333328" blue="0.73333333333333328" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1363. <constraints>
  1364. <constraint firstAttribute="height" constant="1" id="4qE-q5-ofY"/>
  1365. </constraints>
  1366. </view>
  1367. </subviews>
  1368. <constraints>
  1369. <constraint firstItem="bgy-m5-3QO" firstAttribute="top" secondItem="cxG-qc-mKq" secondAttribute="top" id="0Mb-VH-dPj"/>
  1370. <constraint firstItem="bgy-m5-3QO" firstAttribute="leading" secondItem="cxG-qc-mKq" secondAttribute="leading" constant="10" id="1rO-ct-dcc"/>
  1371. <constraint firstAttribute="trailing" secondItem="bgy-m5-3QO" secondAttribute="trailing" constant="10" id="nF4-lt-hNg"/>
  1372. </constraints>
  1373. </tableViewCellContentView>
  1374. <color key="backgroundColor" red="0.94509803921568625" green="0.94509803921568625" blue="0.94509803921568625" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1375. </tableViewCell>
  1376. </prototypes>
  1377. </tableView>
  1378. </subviews>
  1379. <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1380. <constraints>
  1381. <constraint firstItem="1Wf-vo-AU5" firstAttribute="top" secondItem="Sly-Wf-8hY" secondAttribute="bottom" id="1OE-wt-MSN"/>
  1382. <constraint firstItem="Sly-Wf-8hY" firstAttribute="top" secondItem="Ci7-3A-k16" secondAttribute="top" id="4BE-X8-k8P"/>
  1383. <constraint firstAttribute="trailing" secondItem="Sly-Wf-8hY" secondAttribute="trailing" id="Baz-92-rjV"/>
  1384. <constraint firstItem="Sly-Wf-8hY" firstAttribute="leading" secondItem="Ci7-3A-k16" secondAttribute="leading" id="awK-UW-gBA"/>
  1385. <constraint firstAttribute="trailing" secondItem="Sly-Wf-8hY" secondAttribute="trailing" id="iDo-ca-rhM"/>
  1386. <constraint firstItem="Sly-Wf-8hY" firstAttribute="leading" secondItem="Ci7-3A-k16" secondAttribute="leading" id="vgg-gX-DzQ"/>
  1387. </constraints>
  1388. </view>
  1389. <connections>
  1390. <outlet property="tableView" destination="Sly-Wf-8hY" id="Y4x-ra-J56"/>
  1391. </connections>
  1392. </viewController>
  1393. <placeholder placeholderIdentifier="IBFirstResponder" id="f4c-1S-o79" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1394. </objects>
  1395. <point key="canvasLocation" x="636" y="143.25"/>
  1396. </scene>
  1397. <!--Rules Add Complete View Controller-->
  1398. <scene sceneID="1d1-n9-spK">
  1399. <objects>
  1400. <viewController storyboardIdentifier="RulesAddCompleteViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="RON-UI-HGf" customClass="RulesAddCompleteViewController" sceneMemberID="viewController">
  1401. <layoutGuides>
  1402. <viewControllerLayoutGuide type="top" id="K4V-PP-vFx"/>
  1403. <viewControllerLayoutGuide type="bottom" id="byc-zd-Djm"/>
  1404. </layoutGuides>
  1405. <view key="view" contentMode="scaleToFill" id="P03-NT-yxJ" userLabel="View - ViewController">
  1406. <rect key="frame" x="0.0" y="0.0" width="320" height="568"/>
  1407. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1408. <subviews>
  1409. <view alpha="0.0" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="9qf-PQ-PIO" userLabel="View - Mask">
  1410. <rect key="frame" x="0.0" y="0.0" width="320" height="568"/>
  1411. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1412. </view>
  1413. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="4Wc-Yh-sLS" userLabel="View - Pop">
  1414. <rect key="frame" x="15" y="700" width="290" height="447"/>
  1415. <subviews>
  1416. <view contentMode="scaleToFill" placeholderIntrinsicWidth="290" placeholderIntrinsicHeight="266" translatesAutoresizingMaskIntoConstraints="NO" id="u6H-fu-zfR" userLabel="View - Content">
  1417. <rect key="frame" x="0.0" y="0.0" width="290" height="395"/>
  1418. <subviews>
  1419. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" placeholderIntrinsicWidth="210" placeholderIntrinsicHeight="25" text="성공" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="TI3-Uw-2QD" customClass="CustomLabel">
  1420. <rect key="frame" x="40" y="35" width="210" height="25"/>
  1421. <constraints>
  1422. <constraint firstAttribute="width" constant="210" id="GL6-kz-D3z"/>
  1423. </constraints>
  1424. <fontDescription key="fontDescription" type="system" pointSize="19"/>
  1425. <color key="textColor" red="0.16078431369999999" green="0.55294117649999996" blue="0.80392156859999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1426. <nil key="highlightedColor"/>
  1427. </label>
  1428. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" placeholderIntrinsicWidth="210" placeholderIntrinsicHeight="15" text="규칙을 만들었습니다" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="U5Q-BW-CJu" customClass="CustomLabel">
  1429. <rect key="frame" x="40" y="80" width="210" height="15"/>
  1430. <constraints>
  1431. <constraint firstAttribute="width" constant="210" id="rYH-RW-Oub"/>
  1432. </constraints>
  1433. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  1434. <color key="textColor" red="0.66666666666666663" green="0.66666666666666663" blue="0.66666666666666663" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1435. <nil key="highlightedColor"/>
  1436. </label>
  1437. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" placeholderIntrinsicWidth="260" placeholderIntrinsicHeight="15" text="규칙을 만들었습니다" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="9dj-cC-4pa" customClass="CustomLabel">
  1438. <rect key="frame" x="15" y="273" width="260" height="15"/>
  1439. <constraints>
  1440. <constraint firstAttribute="width" constant="210" id="IyC-WH-Z2F"/>
  1441. </constraints>
  1442. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  1443. <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1444. <nil key="highlightedColor"/>
  1445. <variation key="heightClass=regular-widthClass=compact">
  1446. <mask key="constraints">
  1447. <exclude reference="IyC-WH-Z2F"/>
  1448. </mask>
  1449. </variation>
  1450. </label>
  1451. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" placeholderIntrinsicWidth="90" placeholderIntrinsicHeight="90" translatesAutoresizingMaskIntoConstraints="NO" id="2c0-oX-0yV">
  1452. <rect key="frame" x="100" y="165" width="90" height="90"/>
  1453. <constraints>
  1454. <constraint firstAttribute="width" constant="90" id="FOI-wZ-RfQ"/>
  1455. <constraint firstAttribute="height" constant="90" id="crX-H7-cM0"/>
  1456. </constraints>
  1457. <variation key="default">
  1458. <mask key="constraints">
  1459. <exclude reference="FOI-wZ-RfQ"/>
  1460. <exclude reference="crX-H7-cM0"/>
  1461. </mask>
  1462. </variation>
  1463. <variation key="heightClass=regular-widthClass=compact">
  1464. <mask key="constraints">
  1465. <include reference="FOI-wZ-RfQ"/>
  1466. <include reference="crX-H7-cM0"/>
  1467. </mask>
  1468. </variation>
  1469. </imageView>
  1470. </subviews>
  1471. <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1472. <constraints>
  1473. <constraint firstItem="2c0-oX-0yV" firstAttribute="centerX" secondItem="u6H-fu-zfR" secondAttribute="centerX" id="17o-xB-XBm"/>
  1474. <constraint firstItem="TI3-Uw-2QD" firstAttribute="top" secondItem="u6H-fu-zfR" secondAttribute="top" constant="40" id="9zC-Pn-8AM">
  1475. <variation key="heightClass=regular-widthClass=compact" constant="35"/>
  1476. </constraint>
  1477. <constraint firstItem="U5Q-BW-CJu" firstAttribute="top" secondItem="TI3-Uw-2QD" secondAttribute="bottom" constant="20" id="Ayu-fr-njI"/>
  1478. <constraint firstItem="U5Q-BW-CJu" firstAttribute="centerX" secondItem="u6H-fu-zfR" secondAttribute="centerX" id="C6e-ne-hqj"/>
  1479. <constraint firstItem="9dj-cC-4pa" firstAttribute="top" secondItem="2c0-oX-0yV" secondAttribute="bottom" constant="18" id="FYB-Nk-UNn"/>
  1480. <constraint firstItem="2c0-oX-0yV" firstAttribute="top" secondItem="U5Q-BW-CJu" secondAttribute="bottom" constant="70" id="HPc-BL-zRw"/>
  1481. <constraint firstItem="9dj-cC-4pa" firstAttribute="leading" secondItem="u6H-fu-zfR" secondAttribute="leading" constant="15" id="IAa-i1-LBu"/>
  1482. <constraint firstItem="TI3-Uw-2QD" firstAttribute="centerX" secondItem="u6H-fu-zfR" secondAttribute="centerX" id="fAt-vT-ddO"/>
  1483. <constraint firstAttribute="trailing" secondItem="9dj-cC-4pa" secondAttribute="trailing" constant="15" id="qEU-k2-Tac"/>
  1484. </constraints>
  1485. <variation key="default">
  1486. <mask key="subviews">
  1487. <exclude reference="2c0-oX-0yV"/>
  1488. </mask>
  1489. <mask key="constraints">
  1490. <exclude reference="17o-xB-XBm"/>
  1491. <exclude reference="HPc-BL-zRw"/>
  1492. <exclude reference="FYB-Nk-UNn"/>
  1493. <exclude reference="IAa-i1-LBu"/>
  1494. <exclude reference="qEU-k2-Tac"/>
  1495. </mask>
  1496. </variation>
  1497. <variation key="heightClass=regular-widthClass=compact">
  1498. <mask key="subviews">
  1499. <include reference="2c0-oX-0yV"/>
  1500. </mask>
  1501. <mask key="constraints">
  1502. <include reference="17o-xB-XBm"/>
  1503. <include reference="HPc-BL-zRw"/>
  1504. <include reference="FYB-Nk-UNn"/>
  1505. <include reference="IAa-i1-LBu"/>
  1506. <include reference="qEU-k2-Tac"/>
  1507. </mask>
  1508. </variation>
  1509. </view>
  1510. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="lY6-Ta-DLO" userLabel="View - Container">
  1511. <rect key="frame" x="0.0" y="395" width="290" height="52"/>
  1512. <subviews>
  1513. <button opaque="NO" contentMode="scaleToFill" placeholderIntrinsicWidth="145" placeholderIntrinsicHeight="69" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="C49-al-xWB" customClass="CustomButton">
  1514. <rect key="frame" x="0.0" y="1" width="290" height="51"/>
  1515. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1516. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1517. <state key="normal" title="완료">
  1518. <color key="titleColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1519. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1520. </state>
  1521. <state key="highlighted">
  1522. <color key="titleColor" red="0.16078431369999999" green="0.55294117649999996" blue="0.80392156859999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1523. </state>
  1524. <connections>
  1525. <action selector="btnCompleteTouched:" destination="RON-UI-HGf" eventType="touchUpInside" id="tmW-Qn-8Fl"/>
  1526. </connections>
  1527. </button>
  1528. </subviews>
  1529. <color key="backgroundColor" red="0.73333333333333328" green="0.73333333333333328" blue="0.73333333333333328" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1530. <constraints>
  1531. <constraint firstAttribute="height" constant="70" id="Ixc-gd-SrK">
  1532. <variation key="heightClass=regular-widthClass=compact" constant="52"/>
  1533. </constraint>
  1534. <constraint firstItem="C49-al-xWB" firstAttribute="top" secondItem="lY6-Ta-DLO" secondAttribute="top" constant="1" id="LtH-qh-jnJ"/>
  1535. <constraint firstAttribute="trailing" secondItem="C49-al-xWB" secondAttribute="trailing" id="Z5s-It-FFV"/>
  1536. <constraint firstAttribute="bottom" secondItem="C49-al-xWB" secondAttribute="bottom" id="cWS-Be-VbL"/>
  1537. <constraint firstItem="C49-al-xWB" firstAttribute="leading" secondItem="lY6-Ta-DLO" secondAttribute="leading" id="jSL-rq-t67"/>
  1538. </constraints>
  1539. </view>
  1540. </subviews>
  1541. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1542. <constraints>
  1543. <constraint firstItem="u6H-fu-zfR" firstAttribute="top" secondItem="4Wc-Yh-sLS" secondAttribute="top" id="0oo-YA-38r"/>
  1544. <constraint firstAttribute="width" constant="290" id="3OY-PH-uDI"/>
  1545. <constraint firstItem="u6H-fu-zfR" firstAttribute="leading" secondItem="4Wc-Yh-sLS" secondAttribute="leading" id="CsI-Ev-bzy"/>
  1546. <constraint firstItem="lY6-Ta-DLO" firstAttribute="leading" secondItem="4Wc-Yh-sLS" secondAttribute="leading" id="F2v-kq-I81"/>
  1547. <constraint firstAttribute="bottom" secondItem="lY6-Ta-DLO" secondAttribute="bottom" id="PtY-rj-CiF"/>
  1548. <constraint firstAttribute="trailing" secondItem="u6H-fu-zfR" secondAttribute="trailing" id="YYQ-96-e7u"/>
  1549. <constraint firstItem="lY6-Ta-DLO" firstAttribute="top" secondItem="u6H-fu-zfR" secondAttribute="bottom" id="s2g-Io-0zT"/>
  1550. <constraint firstAttribute="height" constant="400" id="zNY-FA-em7">
  1551. <variation key="heightClass=regular-widthClass=compact" constant="447"/>
  1552. </constraint>
  1553. <constraint firstAttribute="trailing" secondItem="lY6-Ta-DLO" secondAttribute="trailing" id="zqg-YN-CR5"/>
  1554. </constraints>
  1555. <variation key="default">
  1556. <mask key="constraints">
  1557. <exclude reference="0oo-YA-38r"/>
  1558. </mask>
  1559. </variation>
  1560. <variation key="heightClass=regular-widthClass=compact">
  1561. <mask key="constraints">
  1562. <include reference="0oo-YA-38r"/>
  1563. </mask>
  1564. </variation>
  1565. </view>
  1566. </subviews>
  1567. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  1568. <constraints>
  1569. <constraint firstItem="9qf-PQ-PIO" firstAttribute="top" secondItem="P03-NT-yxJ" secondAttribute="top" id="21N-jx-Pyb"/>
  1570. <constraint firstItem="4Wc-Yh-sLS" firstAttribute="centerX" secondItem="P03-NT-yxJ" secondAttribute="centerX" id="XTN-Ap-JfL"/>
  1571. <constraint firstItem="4Wc-Yh-sLS" firstAttribute="top" secondItem="K4V-PP-vFx" secondAttribute="bottom" constant="41" id="fe8-OB-AgZ">
  1572. <variation key="heightClass=regular-widthClass=compact" constant="680"/>
  1573. </constraint>
  1574. <constraint firstAttribute="trailing" secondItem="9qf-PQ-PIO" secondAttribute="trailing" id="p2c-Gp-qFF"/>
  1575. <constraint firstItem="9qf-PQ-PIO" firstAttribute="leading" secondItem="P03-NT-yxJ" secondAttribute="leading" id="pxD-da-OEL"/>
  1576. <constraint firstItem="byc-zd-Djm" firstAttribute="top" secondItem="9qf-PQ-PIO" secondAttribute="bottom" id="tA0-0J-e85"/>
  1577. </constraints>
  1578. </view>
  1579. <connections>
  1580. <outlet property="constraintPopViewTop" destination="fe8-OB-AgZ" id="kDR-pC-B1T"/>
  1581. <outlet property="imgvIcon" destination="2c0-oX-0yV" id="mvF-Jz-iNz"/>
  1582. <outlet property="lblDesc" destination="U5Q-BW-CJu" id="dS4-at-Ssf"/>
  1583. <outlet property="lblRuleName" destination="9dj-cC-4pa" id="o9u-5Q-fY0"/>
  1584. <outlet property="lblTitle" destination="TI3-Uw-2QD" id="gKI-gZ-kY4"/>
  1585. <outlet property="maskView" destination="9qf-PQ-PIO" id="x7v-Vf-ZwZ"/>
  1586. <outlet property="popView" destination="4Wc-Yh-sLS" id="mJc-bC-jHU"/>
  1587. </connections>
  1588. </viewController>
  1589. <placeholder placeholderIdentifier="IBFirstResponder" id="PjU-z8-57N" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1590. </objects>
  1591. <point key="canvasLocation" x="1352" y="143"/>
  1592. </scene>
  1593. <!--Rules Detail View Controller-->
  1594. <scene sceneID="rmr-6Q-zz2">
  1595. <objects>
  1596. <viewController storyboardIdentifier="RulesDetailViewController" automaticallyAdjustsScrollViewInsets="NO" useStoryboardIdentifierAsRestorationIdentifier="YES" id="u0N-2Y-mv7" customClass="RulesDetailViewController" sceneMemberID="viewController">
  1597. <layoutGuides>
  1598. <viewControllerLayoutGuide type="top" id="CJD-L5-TEr"/>
  1599. <viewControllerLayoutGuide type="bottom" id="uhq-Ag-cYz"/>
  1600. </layoutGuides>
  1601. <view key="view" contentMode="scaleToFill" id="lf8-Zc-Oss" userLabel="View - Main">
  1602. <rect key="frame" x="0.0" y="0.0" width="320" height="1568"/>
  1603. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1604. <subviews>
  1605. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="pfS-Ok-rh4" userLabel="View - header">
  1606. <rect key="frame" x="0.0" y="0.0" width="320" height="65"/>
  1607. <subviews>
  1608. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="규칙 상세" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="cj9-78-4k8" customClass="CustomLabel">
  1609. <rect key="frame" x="12" y="20" width="200" height="45"/>
  1610. <constraints>
  1611. <constraint firstAttribute="width" constant="200" id="0Wj-0x-fd3"/>
  1612. </constraints>
  1613. <fontDescription key="fontDescription" type="boldSystem" pointSize="14"/>
  1614. <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1615. <nil key="highlightedColor"/>
  1616. </label>
  1617. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="hf4-DD-L2Y">
  1618. <rect key="frame" x="275" y="20" width="45" height="45"/>
  1619. <constraints>
  1620. <constraint firstAttribute="height" constant="45" id="bH2-zP-YQ8"/>
  1621. <constraint firstAttribute="width" constant="46" id="hry-6j-maf">
  1622. <variation key="heightClass=regular-widthClass=compact" constant="45"/>
  1623. </constraint>
  1624. </constraints>
  1625. <state key="normal" image="common_head_btn_more"/>
  1626. <state key="highlighted" image="common_head_btn_more_press"/>
  1627. <connections>
  1628. <action selector="btnOptionTouched:" destination="u0N-2Y-mv7" eventType="touchUpInside" id="Hac-nZ-pf9"/>
  1629. </connections>
  1630. </button>
  1631. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="RJY-VM-C45" userLabel="View - line">
  1632. <rect key="frame" x="0.0" y="64" width="320" height="1"/>
  1633. <color key="backgroundColor" red="0.86666666670000003" green="0.86666666670000003" blue="0.86666666670000003" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1634. <constraints>
  1635. <constraint firstAttribute="height" constant="1" id="3Wd-HC-yiM"/>
  1636. </constraints>
  1637. </view>
  1638. </subviews>
  1639. <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
  1640. <constraints>
  1641. <constraint firstItem="RJY-VM-C45" firstAttribute="leading" secondItem="pfS-Ok-rh4" secondAttribute="leading" id="KVH-w7-1FJ"/>
  1642. <constraint firstAttribute="bottom" secondItem="cj9-78-4k8" secondAttribute="bottom" id="N3b-Y4-3fZ"/>
  1643. <constraint firstAttribute="trailing" secondItem="RJY-VM-C45" secondAttribute="trailing" id="ZN6-eW-ge8"/>
  1644. <constraint firstAttribute="height" constant="65" id="dwA-1n-YUt"/>
  1645. <constraint firstAttribute="bottom" secondItem="RJY-VM-C45" secondAttribute="bottom" id="l92-g6-rZM"/>
  1646. <constraint firstAttribute="trailing" secondItem="hf4-DD-L2Y" secondAttribute="trailing" constant="8" id="ptY-3c-Rqv">
  1647. <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
  1648. </constraint>
  1649. <constraint firstItem="cj9-78-4k8" firstAttribute="top" secondItem="pfS-Ok-rh4" secondAttribute="top" constant="20" id="qg3-q4-LqE"/>
  1650. <constraint firstAttribute="bottom" secondItem="hf4-DD-L2Y" secondAttribute="bottom" constant="15" id="sxV-xC-ddA">
  1651. <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
  1652. </constraint>
  1653. </constraints>
  1654. </view>
  1655. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="DZS-Lj-Qe4">
  1656. <rect key="frame" x="0.0" y="20" width="12" height="45"/>
  1657. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
  1658. <constraints>
  1659. <constraint firstAttribute="width" constant="12" id="7Af-Z8-1Tz"/>
  1660. </constraints>
  1661. </view>
  1662. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="18" sectionFooterHeight="18" translatesAutoresizingMaskIntoConstraints="NO" id="fuY-Wk-K2F" customClass="CustomTableView">
  1663. <rect key="frame" x="0.0" y="65" width="320" height="1451"/>
  1664. <color key="backgroundColor" red="0.94901960784313721" green="0.94901960784313721" blue="0.94901960784313721" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1665. <prototypes>
  1666. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="TitleCellIdentifier" rowHeight="56" id="C3q-Tu-fkj" customClass="RulesDetailTitleTableViewCell">
  1667. <rect key="frame" x="0.0" y="56" width="320" height="56"/>
  1668. <autoresizingMask key="autoresizingMask"/>
  1669. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="C3q-Tu-fkj" id="eFT-zg-dzR">
  1670. <rect key="frame" x="0.0" y="0.0" width="320" height="55"/>
  1671. <autoresizingMask key="autoresizingMask"/>
  1672. <subviews>
  1673. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Iip-Wr-G94" customClass="CustomLabel">
  1674. <rect key="frame" x="27" y="18" width="277" height="20"/>
  1675. <constraints>
  1676. <constraint firstAttribute="height" constant="30" id="Mep-XH-USU">
  1677. <variation key="heightClass=regular-widthClass=compact" constant="20"/>
  1678. </constraint>
  1679. </constraints>
  1680. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  1681. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1682. <nil key="highlightedColor"/>
  1683. </label>
  1684. </subviews>
  1685. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1686. <constraints>
  1687. <constraint firstItem="Iip-Wr-G94" firstAttribute="top" secondItem="eFT-zg-dzR" secondAttribute="top" constant="10" id="Y08-MX-VkD">
  1688. <variation key="heightClass=regular-widthClass=compact" constant="18"/>
  1689. </constraint>
  1690. <constraint firstAttribute="trailing" secondItem="Iip-Wr-G94" secondAttribute="trailing" constant="16" id="fyy-Yb-a2h"/>
  1691. <constraint firstItem="Iip-Wr-G94" firstAttribute="leading" secondItem="eFT-zg-dzR" secondAttribute="leading" constant="27" id="tAN-ux-si4"/>
  1692. </constraints>
  1693. </tableViewCellContentView>
  1694. <connections>
  1695. <outlet property="lblRuleTitle" destination="Iip-Wr-G94" id="tX5-Yt-bRm"/>
  1696. </connections>
  1697. </tableViewCell>
  1698. <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="HeaderCellIdentifier" rowHeight="75" id="sUn-TA-1qW" customClass="RulesDetailHeaderTableViewCell">
  1699. <rect key="frame" x="0.0" y="112" width="320" height="75"/>
  1700. <autoresizingMask key="autoresizingMask"/>
  1701. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="sUn-TA-1qW" id="Gfk-T5-xzJ">
  1702. <rect key="frame" x="0.0" y="0.0" width="320" height="74"/>
  1703. <autoresizingMask key="autoresizingMask"/>
  1704. <subviews>
  1705. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ycF-wa-5aZ" customClass="CustomLabel">
  1706. <rect key="frame" x="27" y="36" width="278" height="21"/>
  1707. <constraints>
  1708. <constraint firstAttribute="height" constant="30" id="ZwA-fS-0cZ">
  1709. <variation key="heightClass=regular-widthClass=compact" constant="21"/>
  1710. </constraint>
  1711. </constraints>
  1712. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1713. <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1714. <nil key="highlightedColor"/>
  1715. </label>
  1716. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="common_bullet_line" translatesAutoresizingMaskIntoConstraints="NO" id="YH0-YE-MEg">
  1717. <rect key="frame" x="0.0" y="46" width="15" height="2"/>
  1718. <constraints>
  1719. <constraint firstAttribute="height" constant="2" id="Ygv-NC-YEn"/>
  1720. <constraint firstAttribute="width" constant="15" id="ssu-Ub-XCG"/>
  1721. </constraints>
  1722. <variation key="default">
  1723. <mask key="constraints">
  1724. <exclude reference="Ygv-NC-YEn"/>
  1725. <exclude reference="ssu-Ub-XCG"/>
  1726. </mask>
  1727. </variation>
  1728. <variation key="heightClass=regular-widthClass=compact">
  1729. <mask key="constraints">
  1730. <include reference="Ygv-NC-YEn"/>
  1731. <include reference="ssu-Ub-XCG"/>
  1732. </mask>
  1733. </variation>
  1734. </imageView>
  1735. </subviews>
  1736. <constraints>
  1737. <constraint firstItem="ycF-wa-5aZ" firstAttribute="leading" secondItem="YH0-YE-MEg" secondAttribute="trailing" constant="12" id="Kaw-Ug-bKs"/>
  1738. <constraint firstItem="YH0-YE-MEg" firstAttribute="leading" secondItem="Gfk-T5-xzJ" secondAttribute="leading" id="QbN-hb-lcQ"/>
  1739. <constraint firstItem="YH0-YE-MEg" firstAttribute="centerY" secondItem="ycF-wa-5aZ" secondAttribute="centerY" id="ath-MQ-8Mw"/>
  1740. <constraint firstAttribute="trailing" secondItem="ycF-wa-5aZ" secondAttribute="trailing" constant="15" id="sSY-T5-Euc"/>
  1741. <constraint firstItem="ycF-wa-5aZ" firstAttribute="top" secondItem="Gfk-T5-xzJ" secondAttribute="top" constant="40" id="vKN-LQ-rxg">
  1742. <variation key="heightClass=regular-widthClass=compact" constant="36"/>
  1743. </constraint>
  1744. </constraints>
  1745. <variation key="default">
  1746. <mask key="subviews">
  1747. <exclude reference="YH0-YE-MEg"/>
  1748. </mask>
  1749. <mask key="constraints">
  1750. <exclude reference="QbN-hb-lcQ"/>
  1751. <exclude reference="ath-MQ-8Mw"/>
  1752. <exclude reference="Kaw-Ug-bKs"/>
  1753. </mask>
  1754. </variation>
  1755. <variation key="heightClass=regular-widthClass=compact">
  1756. <mask key="subviews">
  1757. <include reference="YH0-YE-MEg"/>
  1758. </mask>
  1759. <mask key="constraints">
  1760. <include reference="QbN-hb-lcQ"/>
  1761. <include reference="ath-MQ-8Mw"/>
  1762. <include reference="Kaw-Ug-bKs"/>
  1763. </mask>
  1764. </variation>
  1765. </tableViewCellContentView>
  1766. <connections>
  1767. <outlet property="lblTitle" destination="ycF-wa-5aZ" id="Ezz-aC-x1H"/>
  1768. </connections>
  1769. </tableViewCell>
  1770. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="RulesCellIdentifier" rowHeight="86" id="KwC-wU-t0G" userLabel="RulesCellIdentifier" customClass="RulesDetailTableViewCell">
  1771. <rect key="frame" x="0.0" y="187" width="320" height="86"/>
  1772. <autoresizingMask key="autoresizingMask"/>
  1773. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="KwC-wU-t0G" id="mbB-ah-EzW">
  1774. <rect key="frame" x="0.0" y="0.0" width="320" height="85"/>
  1775. <autoresizingMask key="autoresizingMask"/>
  1776. <subviews>
  1777. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="CWV-BF-Hg9" userLabel="View - Line">
  1778. <rect key="frame" x="0.0" y="85" width="320" height="1"/>
  1779. <color key="backgroundColor" red="0.8666666666666667" green="0.8666666666666667" blue="0.8666666666666667" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1780. <constraints>
  1781. <constraint firstAttribute="height" constant="1" id="0K3-Y3-xZz"/>
  1782. </constraints>
  1783. </view>
  1784. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3eT-3c-awy" customClass="CustomLabel">
  1785. <rect key="frame" x="70" y="21" width="125" height="23"/>
  1786. <constraints>
  1787. <constraint firstAttribute="height" constant="20" id="6K9-v2-YTD">
  1788. <variation key="heightClass=regular-widthClass=compact" constant="23"/>
  1789. </constraint>
  1790. <constraint firstAttribute="width" constant="110" id="NIH-gc-9Sb">
  1791. <variation key="heightClass=regular-widthClass=compact" constant="125"/>
  1792. </constraint>
  1793. </constraints>
  1794. <fontDescription key="fontDescription" type="system" pointSize="19"/>
  1795. <color key="textColor" red="0.16078431369999999" green="0.55294117649999996" blue="0.80392156859999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1796. <nil key="highlightedColor"/>
  1797. </label>
  1798. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="sLl-2e-Due" customClass="CustomLabel">
  1799. <rect key="frame" x="70" y="50" width="162" height="15"/>
  1800. <constraints>
  1801. <constraint firstAttribute="height" constant="15" id="8ur-wV-AmS"/>
  1802. <constraint firstAttribute="width" constant="110" id="s3N-rY-jyf">
  1803. <variation key="heightClass=regular-widthClass=compact" constant="125"/>
  1804. </constraint>
  1805. </constraints>
  1806. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  1807. <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1808. <nil key="highlightedColor"/>
  1809. <variation key="heightClass=regular-widthClass=compact">
  1810. <mask key="constraints">
  1811. <exclude reference="s3N-rY-jyf"/>
  1812. </mask>
  1813. </variation>
  1814. </label>
  1815. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="252" verticalHuggingPriority="251" placeholderIntrinsicWidth="80" placeholderIntrinsicHeight="15" text="Label" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Rsh-yb-OO7" customClass="CustomLabel">
  1816. <rect key="frame" x="225" y="41" width="80" height="15"/>
  1817. <constraints>
  1818. <constraint firstAttribute="height" constant="15" id="7Fd-W0-BBn"/>
  1819. </constraints>
  1820. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  1821. <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1822. <nil key="highlightedColor"/>
  1823. </label>
  1824. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="r9f-Kz-zdv" customClass="CustomImageView">
  1825. <rect key="frame" x="15" y="18" width="50" height="50"/>
  1826. <constraints>
  1827. <constraint firstAttribute="height" constant="55" id="DRv-Hc-MQc">
  1828. <variation key="heightClass=regular-widthClass=compact" constant="50"/>
  1829. </constraint>
  1830. <constraint firstAttribute="width" constant="55" id="dVX-YI-Ty0">
  1831. <variation key="heightClass=regular-widthClass=compact" constant="50"/>
  1832. </constraint>
  1833. </constraints>
  1834. </imageView>
  1835. </subviews>
  1836. <constraints>
  1837. <constraint firstItem="3eT-3c-awy" firstAttribute="top" secondItem="mbB-ah-EzW" secondAttribute="top" constant="25" id="20I-Ih-K2x">
  1838. <variation key="heightClass=regular-widthClass=compact" constant="21"/>
  1839. </constraint>
  1840. <constraint firstAttribute="trailing" secondItem="CWV-BF-Hg9" secondAttribute="trailing" id="I9b-5Y-k0Q"/>
  1841. <constraint firstItem="r9f-Kz-zdv" firstAttribute="top" secondItem="mbB-ah-EzW" secondAttribute="top" constant="20" id="Ipw-wa-NSu">
  1842. <variation key="heightClass=regular-widthClass=compact" constant="18"/>
  1843. </constraint>
  1844. <constraint firstItem="r9f-Kz-zdv" firstAttribute="leading" secondItem="mbB-ah-EzW" secondAttribute="leading" constant="15" id="cM2-J3-mtt"/>
  1845. <constraint firstAttribute="trailing" secondItem="Rsh-yb-OO7" secondAttribute="trailing" constant="15" id="dM4-u2-XpC"/>
  1846. <constraint firstItem="sLl-2e-Due" firstAttribute="leading" secondItem="3eT-3c-awy" secondAttribute="leading" id="dYe-OP-YLp"/>
  1847. <constraint firstItem="Rsh-yb-OO7" firstAttribute="top" secondItem="mbB-ah-EzW" secondAttribute="top" constant="41" id="f7Q-5d-Vho"/>
  1848. <constraint firstItem="CWV-BF-Hg9" firstAttribute="leading" secondItem="mbB-ah-EzW" secondAttribute="leading" id="h4y-Nq-ylv"/>
  1849. <constraint firstItem="sLl-2e-Due" firstAttribute="leading" secondItem="r9f-Kz-zdv" secondAttribute="trailing" constant="5" id="hK6-EA-Y12"/>
  1850. <constraint firstItem="Rsh-yb-OO7" firstAttribute="leading" secondItem="sLl-2e-Due" secondAttribute="trailing" constant="-7" id="lVt-cf-kaB"/>
  1851. <constraint firstItem="sLl-2e-Due" firstAttribute="top" secondItem="3eT-3c-awy" secondAttribute="bottom" constant="15" id="pQA-n7-7Qm">
  1852. <variation key="heightClass=regular-widthClass=compact" constant="6"/>
  1853. </constraint>
  1854. <constraint firstItem="3eT-3c-awy" firstAttribute="leading" secondItem="r9f-Kz-zdv" secondAttribute="trailing" constant="5" id="t1R-yZ-diU"/>
  1855. <constraint firstAttribute="bottom" secondItem="CWV-BF-Hg9" secondAttribute="bottom" constant="-1" id="ttr-lw-EB7">
  1856. <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
  1857. </constraint>
  1858. </constraints>
  1859. <variation key="default">
  1860. <mask key="constraints">
  1861. <exclude reference="t1R-yZ-diU"/>
  1862. <exclude reference="dM4-u2-XpC"/>
  1863. <exclude reference="lVt-cf-kaB"/>
  1864. </mask>
  1865. </variation>
  1866. <variation key="heightClass=regular-widthClass=compact">
  1867. <mask key="constraints">
  1868. <include reference="t1R-yZ-diU"/>
  1869. <exclude reference="hK6-EA-Y12"/>
  1870. <include reference="dM4-u2-XpC"/>
  1871. <include reference="lVt-cf-kaB"/>
  1872. </mask>
  1873. </variation>
  1874. </tableViewCellContentView>
  1875. <connections>
  1876. <outlet property="bottomLine" destination="CWV-BF-Hg9" id="KYS-0A-KHS"/>
  1877. <outlet property="imgvIcon" destination="r9f-Kz-zdv" id="djt-wh-OEp"/>
  1878. <outlet property="lblCondition" destination="Rsh-yb-OO7" id="Vny-aZ-agS"/>
  1879. <outlet property="lblItem" destination="3eT-3c-awy" id="Sd6-u8-W8H"/>
  1880. <outlet property="lblSubItem" destination="sLl-2e-Due" id="Ztb-su-OTZ"/>
  1881. </connections>
  1882. </tableViewCell>
  1883. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="PushCellIdentifier" rowHeight="61" id="O2M-nJ-QAx" customClass="RulesDetailPushTableViewCell">
  1884. <rect key="frame" x="0.0" y="273" width="320" height="61"/>
  1885. <autoresizingMask key="autoresizingMask"/>
  1886. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="O2M-nJ-QAx" id="u9g-Vv-oaW">
  1887. <rect key="frame" x="0.0" y="0.0" width="320" height="60"/>
  1888. <autoresizingMask key="autoresizingMask"/>
  1889. <subviews>
  1890. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="img_rule_icon_message" translatesAutoresizingMaskIntoConstraints="NO" id="Vl9-rV-zyi" customClass="CustomImageView">
  1891. <rect key="frame" x="15" y="0.0" width="50" height="50"/>
  1892. <constraints>
  1893. <constraint firstAttribute="width" constant="55" id="BTn-dp-bLi">
  1894. <variation key="heightClass=regular-widthClass=compact" constant="50"/>
  1895. </constraint>
  1896. <constraint firstAttribute="height" constant="55" id="g4r-j1-Jos">
  1897. <variation key="heightClass=regular-widthClass=compact" constant="50"/>
  1898. </constraint>
  1899. </constraints>
  1900. </imageView>
  1901. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="4Qi-fG-KF1" customClass="CustomLabel">
  1902. <rect key="frame" x="75" y="12" width="230" height="18"/>
  1903. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  1904. <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1905. <nil key="highlightedColor"/>
  1906. </label>
  1907. </subviews>
  1908. <constraints>
  1909. <constraint firstItem="4Qi-fG-KF1" firstAttribute="top" secondItem="u9g-Vv-oaW" secondAttribute="top" constant="15" id="6HC-gc-Pcz">
  1910. <variation key="heightClass=regular-widthClass=compact" constant="12"/>
  1911. </constraint>
  1912. <constraint firstAttribute="trailing" secondItem="4Qi-fG-KF1" secondAttribute="trailing" constant="15" id="6iO-nn-Xsb"/>
  1913. <constraint firstItem="4Qi-fG-KF1" firstAttribute="leading" secondItem="Vl9-rV-zyi" secondAttribute="trailing" constant="5" id="Gx4-mZ-6iR">
  1914. <variation key="heightClass=regular-widthClass=compact" constant="10"/>
  1915. </constraint>
  1916. <constraint firstItem="Vl9-rV-zyi" firstAttribute="top" secondItem="u9g-Vv-oaW" secondAttribute="top" id="QNg-PJ-K7n"/>
  1917. <constraint firstItem="Vl9-rV-zyi" firstAttribute="centerY" secondItem="4Qi-fG-KF1" secondAttribute="centerY" constant="-2.5" id="ljl-co-f3P">
  1918. <variation key="heightClass=regular-widthClass=compact" constant="4"/>
  1919. </constraint>
  1920. <constraint firstItem="Vl9-rV-zyi" firstAttribute="leading" secondItem="u9g-Vv-oaW" secondAttribute="leading" constant="15" id="skf-I8-X2T"/>
  1921. </constraints>
  1922. <variation key="default">
  1923. <mask key="constraints">
  1924. <exclude reference="QNg-PJ-K7n"/>
  1925. </mask>
  1926. </variation>
  1927. <variation key="heightClass=regular-widthClass=compact">
  1928. <mask key="constraints">
  1929. <include reference="QNg-PJ-K7n"/>
  1930. <exclude reference="ljl-co-f3P"/>
  1931. </mask>
  1932. </variation>
  1933. </tableViewCellContentView>
  1934. <connections>
  1935. <outlet property="imgvPush" destination="Vl9-rV-zyi" id="z9Q-OD-mQF"/>
  1936. <outlet property="lblMessage" destination="4Qi-fG-KF1" id="W89-RO-59t"/>
  1937. </connections>
  1938. </tableViewCell>
  1939. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="ConditionHeaderCellIdentifier" rowHeight="91" id="sol-wu-t7q" userLabel="ConditionHeaderCellIdentifier" customClass="RulesDetailConditionHeaderTableViewCell">
  1940. <rect key="frame" x="0.0" y="334" width="320" height="91"/>
  1941. <autoresizingMask key="autoresizingMask"/>
  1942. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="sol-wu-t7q" id="x2d-Ob-O1p">
  1943. <rect key="frame" x="0.0" y="0.0" width="320" height="90"/>
  1944. <autoresizingMask key="autoresizingMask"/>
  1945. <subviews>
  1946. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" placeholderIntrinsicWidth="80" placeholderIntrinsicHeight="27" text="● 추가조건" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Nw1-P6-GxN" customClass="CustomLabel">
  1947. <rect key="frame" x="15" y="36" width="80" height="27"/>
  1948. <constraints>
  1949. <constraint firstAttribute="height" constant="30" id="XY6-kq-SHt">
  1950. <variation key="heightClass=regular-widthClass=compact" constant="27"/>
  1951. </constraint>
  1952. </constraints>
  1953. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1954. <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1955. <nil key="highlightedColor"/>
  1956. </label>
  1957. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Zx4-JQ-pS8" userLabel="View - Line">
  1958. <rect key="frame" x="100" y="49" width="160" height="1"/>
  1959. <color key="backgroundColor" red="0.73333333329999995" green="0.73333333329999995" blue="0.73333333329999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1960. <constraints>
  1961. <constraint firstAttribute="height" constant="1" id="CmN-Hi-wvu"/>
  1962. </constraints>
  1963. </view>
  1964. </subviews>
  1965. <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1966. <constraints>
  1967. <constraint firstAttribute="trailing" secondItem="Zx4-JQ-pS8" secondAttribute="trailing" constant="60" id="8gW-n4-e9v"/>
  1968. <constraint firstItem="Nw1-P6-GxN" firstAttribute="leading" secondItem="x2d-Ob-O1p" secondAttribute="leading" constant="15" id="9K7-gR-tnv"/>
  1969. <constraint firstItem="Zx4-JQ-pS8" firstAttribute="leading" secondItem="Nw1-P6-GxN" secondAttribute="trailing" constant="5" id="QlQ-2u-NAg"/>
  1970. <constraint firstItem="Nw1-P6-GxN" firstAttribute="top" secondItem="x2d-Ob-O1p" secondAttribute="top" constant="36" id="jK1-Wl-tdj"/>
  1971. <constraint firstItem="Zx4-JQ-pS8" firstAttribute="centerY" secondItem="Nw1-P6-GxN" secondAttribute="centerY" id="pdd-Gh-rWA"/>
  1972. </constraints>
  1973. <variation key="default">
  1974. <mask key="subviews">
  1975. <exclude reference="Nw1-P6-GxN"/>
  1976. <exclude reference="Zx4-JQ-pS8"/>
  1977. </mask>
  1978. <mask key="constraints">
  1979. <exclude reference="9K7-gR-tnv"/>
  1980. <exclude reference="jK1-Wl-tdj"/>
  1981. <exclude reference="8gW-n4-e9v"/>
  1982. <exclude reference="QlQ-2u-NAg"/>
  1983. <exclude reference="pdd-Gh-rWA"/>
  1984. </mask>
  1985. </variation>
  1986. <variation key="heightClass=regular-widthClass=compact">
  1987. <mask key="subviews">
  1988. <include reference="Nw1-P6-GxN"/>
  1989. <include reference="Zx4-JQ-pS8"/>
  1990. </mask>
  1991. <mask key="constraints">
  1992. <include reference="9K7-gR-tnv"/>
  1993. <include reference="jK1-Wl-tdj"/>
  1994. <include reference="8gW-n4-e9v"/>
  1995. <include reference="QlQ-2u-NAg"/>
  1996. <include reference="pdd-Gh-rWA"/>
  1997. </mask>
  1998. </variation>
  1999. </tableViewCellContentView>
  2000. <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2001. </tableViewCell>
  2002. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="ConditionCellIdentifier" rowHeight="234" id="F60-Jy-GKn" customClass="RulesDetailConditionTableViewCell">
  2003. <rect key="frame" x="0.0" y="425" width="320" height="234"/>
  2004. <autoresizingMask key="autoresizingMask"/>
  2005. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="F60-Jy-GKn" id="41z-cO-ScW">
  2006. <rect key="frame" x="0.0" y="0.0" width="320" height="233"/>
  2007. <autoresizingMask key="autoresizingMask"/>
  2008. <subviews>
  2009. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Xio-08-zvg" userLabel="View - child view container">
  2010. <rect key="frame" x="0.0" y="0.0" width="320" height="234"/>
  2011. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2012. <constraints>
  2013. <constraint firstAttribute="height" constant="255" id="NDB-Z7-lMo">
  2014. <variation key="heightClass=regular-widthClass=compact" constant="234"/>
  2015. </constraint>
  2016. </constraints>
  2017. </view>
  2018. </subviews>
  2019. <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2020. <constraints>
  2021. <constraint firstAttribute="trailing" secondItem="Xio-08-zvg" secondAttribute="trailing" id="aEL-i1-qsO"/>
  2022. <constraint firstItem="Xio-08-zvg" firstAttribute="top" secondItem="41z-cO-ScW" secondAttribute="top" id="jrF-zC-SXf"/>
  2023. <constraint firstItem="Xio-08-zvg" firstAttribute="leading" secondItem="41z-cO-ScW" secondAttribute="leading" id="key-gC-bT3"/>
  2024. </constraints>
  2025. </tableViewCellContentView>
  2026. <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2027. <connections>
  2028. <outlet property="constraintContainerHeight" destination="NDB-Z7-lMo" id="mLh-wP-tSv"/>
  2029. <outlet property="container" destination="Xio-08-zvg" id="HNL-hR-lGz"/>
  2030. </connections>
  2031. </tableViewCell>
  2032. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="ExecutionCellIdentifier" rowHeight="190" id="PeZ-UO-vg2" customClass="RulesDetailExecutionTableViewCell">
  2033. <rect key="frame" x="0.0" y="659" width="320" height="190"/>
  2034. <autoresizingMask key="autoresizingMask"/>
  2035. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="PeZ-UO-vg2" id="0m9-Sf-UwG">
  2036. <rect key="frame" x="0.0" y="0.0" width="320" height="189"/>
  2037. <autoresizingMask key="autoresizingMask"/>
  2038. <subviews>
  2039. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="SxE-ob-zas" userLabel="View - container" customClass="KNView">
  2040. <rect key="frame" x="0.0" y="35" width="320" height="155"/>
  2041. <subviews>
  2042. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="0w7-OO-dQ3" userLabel="View - Status" customClass="KNView">
  2043. <rect key="frame" x="0.0" y="0.0" width="320" height="75"/>
  2044. <subviews>
  2045. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="common_bullet_circle_gray" translatesAutoresizingMaskIntoConstraints="NO" id="fB9-Wp-UjA">
  2046. <rect key="frame" x="15" y="43" width="8" height="8"/>
  2047. <constraints>
  2048. <constraint firstAttribute="width" constant="8" id="9VR-lN-Ldz"/>
  2049. <constraint firstAttribute="height" constant="8" id="bv1-O5-hjI"/>
  2050. </constraints>
  2051. <variation key="default">
  2052. <mask key="constraints">
  2053. <exclude reference="9VR-lN-Ldz"/>
  2054. <exclude reference="bv1-O5-hjI"/>
  2055. </mask>
  2056. </variation>
  2057. <variation key="heightClass=regular-widthClass=compact">
  2058. <mask key="constraints">
  2059. <include reference="9VR-lN-Ldz"/>
  2060. <include reference="bv1-O5-hjI"/>
  2061. </mask>
  2062. </variation>
  2063. </imageView>
  2064. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="규칙 상태" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="YhM-wB-ck7" customClass="CustomLabel">
  2065. <rect key="frame" x="27" y="36" width="100" height="21"/>
  2066. <constraints>
  2067. <constraint firstAttribute="width" constant="100" id="TnS-Eh-UXb"/>
  2068. <constraint firstAttribute="height" constant="20" id="dUv-Ak-cKL">
  2069. <variation key="heightClass=regular-widthClass=compact" constant="21"/>
  2070. </constraint>
  2071. </constraints>
  2072. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2073. <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2074. <nil key="highlightedColor"/>
  2075. </label>
  2076. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="OFD-KW-S8x" customClass="CustomButton">
  2077. <rect key="frame" x="251" y="32" width="54" height="27"/>
  2078. <constraints>
  2079. <constraint firstAttribute="height" constant="30" id="wwt-9p-6gi">
  2080. <variation key="heightClass=regular-widthClass=compact" constant="27"/>
  2081. </constraint>
  2082. <constraint firstAttribute="width" constant="50" id="zgU-KU-Dut">
  2083. <variation key="heightClass=regular-widthClass=compact" constant="54"/>
  2084. </constraint>
  2085. </constraints>
  2086. <state key="normal" image="img_rule_list_playbtn_active"/>
  2087. </button>
  2088. </subviews>
  2089. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2090. <constraints>
  2091. <constraint firstItem="OFD-KW-S8x" firstAttribute="top" secondItem="0w7-OO-dQ3" secondAttribute="top" constant="15" id="EYI-xT-7hS">
  2092. <variation key="heightClass=regular-widthClass=compact" constant="32"/>
  2093. </constraint>
  2094. <constraint firstItem="fB9-Wp-UjA" firstAttribute="leading" secondItem="0w7-OO-dQ3" secondAttribute="leading" constant="15" identifier="G2f-Zc-XbD" id="G2f-Zc-XbD"/>
  2095. <constraint firstItem="fB9-Wp-UjA" firstAttribute="centerY" secondItem="YhM-wB-ck7" secondAttribute="centerY" id="Ghe-ax-297"/>
  2096. <constraint firstItem="YhM-wB-ck7" firstAttribute="leading" secondItem="fB9-Wp-UjA" secondAttribute="trailing" constant="4" id="LZe-yF-YdM"/>
  2097. <constraint firstItem="YhM-wB-ck7" firstAttribute="top" secondItem="0w7-OO-dQ3" secondAttribute="top" constant="20" id="hCh-Na-8hy">
  2098. <variation key="heightClass=regular-widthClass=compact" constant="36"/>
  2099. </constraint>
  2100. <constraint firstAttribute="height" constant="60" id="j5d-gc-BhW">
  2101. <variation key="heightClass=regular-widthClass=compact" constant="75"/>
  2102. </constraint>
  2103. <constraint firstAttribute="trailing" secondItem="OFD-KW-S8x" secondAttribute="trailing" constant="15" id="p4b-oK-zO0"/>
  2104. </constraints>
  2105. <variation key="default">
  2106. <mask key="subviews">
  2107. <exclude reference="fB9-Wp-UjA"/>
  2108. </mask>
  2109. <mask key="constraints">
  2110. <exclude reference="G2f-Zc-XbD"/>
  2111. <exclude reference="Ghe-ax-297"/>
  2112. <exclude reference="LZe-yF-YdM"/>
  2113. </mask>
  2114. </variation>
  2115. <variation key="heightClass=regular-widthClass=compact">
  2116. <mask key="subviews">
  2117. <include reference="fB9-Wp-UjA"/>
  2118. </mask>
  2119. <mask key="constraints">
  2120. <include reference="G2f-Zc-XbD"/>
  2121. <include reference="Ghe-ax-297"/>
  2122. <include reference="LZe-yF-YdM"/>
  2123. </mask>
  2124. </variation>
  2125. </view>
  2126. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="최근 실행" textAlignment="right" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="IQk-FF-ctY" customClass="CustomLabel">
  2127. <rect key="frame" x="149" y="94" width="156" height="20"/>
  2128. <constraints>
  2129. <constraint firstAttribute="width" constant="156" id="eC9-kr-nNt"/>
  2130. <constraint firstAttribute="height" constant="20" id="jmc-4V-Afe"/>
  2131. </constraints>
  2132. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  2133. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2134. <nil key="highlightedColor"/>
  2135. </label>
  2136. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="common_bullet_circle_gray" translatesAutoresizingMaskIntoConstraints="NO" id="huH-u1-I9k">
  2137. <rect key="frame" x="15" y="100" width="8" height="8"/>
  2138. <constraints>
  2139. <constraint firstAttribute="width" constant="8" id="0nr-HH-T2o"/>
  2140. <constraint firstAttribute="height" constant="8" id="kqU-KN-w5N"/>
  2141. </constraints>
  2142. <variation key="default">
  2143. <mask key="constraints">
  2144. <exclude reference="0nr-HH-T2o"/>
  2145. <exclude reference="kqU-KN-w5N"/>
  2146. </mask>
  2147. </variation>
  2148. <variation key="heightClass=regular-widthClass=compact">
  2149. <mask key="constraints">
  2150. <include reference="0nr-HH-T2o"/>
  2151. <include reference="kqU-KN-w5N"/>
  2152. </mask>
  2153. </variation>
  2154. </imageView>
  2155. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="최근 실행" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="5Ng-bw-hbB" customClass="CustomLabel">
  2156. <rect key="frame" x="27" y="93" width="100" height="21"/>
  2157. <constraints>
  2158. <constraint firstAttribute="height" constant="20" id="9cs-Su-zDn">
  2159. <variation key="heightClass=regular-widthClass=compact" constant="21"/>
  2160. </constraint>
  2161. <constraint firstAttribute="width" constant="100" id="Xcd-AV-AfR"/>
  2162. </constraints>
  2163. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2164. <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2165. <nil key="highlightedColor"/>
  2166. </label>
  2167. </subviews>
  2168. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2169. <constraints>
  2170. <constraint firstItem="IQk-FF-ctY" firstAttribute="centerY" secondItem="5Ng-bw-hbB" secondAttribute="centerY" id="1us-8o-fNt"/>
  2171. <constraint firstItem="0w7-OO-dQ3" firstAttribute="leading" secondItem="SxE-ob-zas" secondAttribute="leading" id="9kH-JW-LWh"/>
  2172. <constraint firstItem="5Ng-bw-hbB" firstAttribute="leading" secondItem="huH-u1-I9k" secondAttribute="trailing" constant="4" id="DUn-kn-Xm2"/>
  2173. <constraint firstItem="huH-u1-I9k" firstAttribute="centerY" secondItem="5Ng-bw-hbB" secondAttribute="centerY" id="TXC-Xu-qmA"/>
  2174. <constraint firstAttribute="trailing" secondItem="IQk-FF-ctY" secondAttribute="trailing" constant="15" id="epm-xW-QVb"/>
  2175. <constraint firstItem="huH-u1-I9k" firstAttribute="leading" secondItem="SxE-ob-zas" secondAttribute="leading" constant="15" id="hHD-5Z-BYJ"/>
  2176. <constraint firstAttribute="trailing" secondItem="0w7-OO-dQ3" secondAttribute="trailing" id="iYm-e0-08q"/>
  2177. <constraint firstItem="0w7-OO-dQ3" firstAttribute="top" secondItem="SxE-ob-zas" secondAttribute="top" id="w47-Ky-PGH"/>
  2178. <constraint firstItem="5Ng-bw-hbB" firstAttribute="top" secondItem="0w7-OO-dQ3" secondAttribute="bottom" constant="18" id="xx8-gv-kJI"/>
  2179. </constraints>
  2180. <variation key="default">
  2181. <mask key="subviews">
  2182. <exclude reference="huH-u1-I9k"/>
  2183. <exclude reference="5Ng-bw-hbB"/>
  2184. </mask>
  2185. <mask key="constraints">
  2186. <exclude reference="TXC-Xu-qmA"/>
  2187. <exclude reference="hHD-5Z-BYJ"/>
  2188. <exclude reference="DUn-kn-Xm2"/>
  2189. <exclude reference="xx8-gv-kJI"/>
  2190. <exclude reference="1us-8o-fNt"/>
  2191. </mask>
  2192. </variation>
  2193. <variation key="heightClass=regular-widthClass=compact">
  2194. <mask key="subviews">
  2195. <include reference="huH-u1-I9k"/>
  2196. <include reference="5Ng-bw-hbB"/>
  2197. </mask>
  2198. <mask key="constraints">
  2199. <include reference="TXC-Xu-qmA"/>
  2200. <include reference="hHD-5Z-BYJ"/>
  2201. <include reference="DUn-kn-Xm2"/>
  2202. <include reference="xx8-gv-kJI"/>
  2203. <include reference="1us-8o-fNt"/>
  2204. </mask>
  2205. </variation>
  2206. </view>
  2207. </subviews>
  2208. <constraints>
  2209. <constraint firstItem="SxE-ob-zas" firstAttribute="top" secondItem="0m9-Sf-UwG" secondAttribute="top" constant="35" id="482-5S-bDx"/>
  2210. <constraint firstAttribute="bottom" secondItem="SxE-ob-zas" secondAttribute="bottom" constant="-1" id="4cy-GW-iyg">
  2211. <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
  2212. </constraint>
  2213. <constraint firstAttribute="trailing" secondItem="SxE-ob-zas" secondAttribute="trailing" id="lm7-og-WL8"/>
  2214. <constraint firstItem="SxE-ob-zas" firstAttribute="leading" secondItem="0m9-Sf-UwG" secondAttribute="leading" id="pex-gR-rtz"/>
  2215. </constraints>
  2216. </tableViewCellContentView>
  2217. <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2218. <connections>
  2219. <outlet property="btnUseRule" destination="OFD-KW-S8x" id="oFp-oX-oq6"/>
  2220. <outlet property="constraintStatusViewBottom" destination="xx8-gv-kJI" id="ejx-q6-sQ6"/>
  2221. <outlet property="constraintStatusViewHeight" destination="j5d-gc-BhW" id="nBF-aH-XCg"/>
  2222. <outlet property="lblExecutionDate" destination="IQk-FF-ctY" id="BbB-1X-Lnl"/>
  2223. <outlet property="statusView" destination="0w7-OO-dQ3" id="f4b-nw-n08"/>
  2224. </connections>
  2225. </tableViewCell>
  2226. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="FooterCellIdentifier" rowHeight="15" id="sLC-uE-eKS" customClass="RulesDetailFooterTableViewCell">
  2227. <rect key="frame" x="0.0" y="849" width="320" height="15"/>
  2228. <autoresizingMask key="autoresizingMask"/>
  2229. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="sLC-uE-eKS" id="nmS-Rg-aZV">
  2230. <rect key="frame" x="0.0" y="0.0" width="320" height="14"/>
  2231. <autoresizingMask key="autoresizingMask"/>
  2232. <subviews>
  2233. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="wYw-pR-XMg" userLabel="View - Line">
  2234. <rect key="frame" x="0.0" y="0.0" width="320" height="1"/>
  2235. <color key="backgroundColor" red="0.73333333333333328" green="0.73333333333333328" blue="0.73333333333333328" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2236. <constraints>
  2237. <constraint firstAttribute="height" relation="greaterThanOrEqual" constant="1" id="e9r-Cu-oEb"/>
  2238. <constraint firstAttribute="height" constant="1" id="jra-dS-3Uu"/>
  2239. </constraints>
  2240. <variation key="heightClass=regular-widthClass=compact">
  2241. <mask key="constraints">
  2242. <exclude reference="e9r-Cu-oEb"/>
  2243. </mask>
  2244. </variation>
  2245. </view>
  2246. </subviews>
  2247. <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2248. <constraints>
  2249. <constraint firstItem="wYw-pR-XMg" firstAttribute="top" secondItem="nmS-Rg-aZV" secondAttribute="top" id="IFA-ZK-JxF"/>
  2250. <constraint firstItem="wYw-pR-XMg" firstAttribute="leading" secondItem="nmS-Rg-aZV" secondAttribute="leading" id="gLA-9U-16B"/>
  2251. <constraint firstAttribute="trailing" secondItem="wYw-pR-XMg" secondAttribute="trailing" id="sKE-KW-LTx"/>
  2252. </constraints>
  2253. </tableViewCellContentView>
  2254. <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2255. <connections>
  2256. <outlet property="topLine" destination="wYw-pR-XMg" id="a8T-B5-Awy"/>
  2257. </connections>
  2258. </tableViewCell>
  2259. </prototypes>
  2260. </tableView>
  2261. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="IvV-xs-RBq" userLabel="View - actionTab">
  2262. <rect key="frame" x="0.0" y="1516" width="320" height="52"/>
  2263. <subviews>
  2264. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="jB8-qR-axW" customClass="CustomButton">
  2265. <rect key="frame" x="0.0" y="1" width="320" height="51"/>
  2266. <color key="backgroundColor" red="0.94509803920000002" green="0.94509803920000002" blue="0.94509803920000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2267. <constraints>
  2268. <constraint firstAttribute="height" constant="51" id="cHH-I6-FQ3"/>
  2269. </constraints>
  2270. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2271. <state key="normal" title="닫기">
  2272. <color key="titleColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2273. </state>
  2274. <connections>
  2275. <action selector="btnCloseTouched:" destination="u0N-2Y-mv7" eventType="touchUpInside" id="Vtg-Bq-p06"/>
  2276. </connections>
  2277. </button>
  2278. </subviews>
  2279. <color key="backgroundColor" red="0.73333333329999995" green="0.73333333329999995" blue="0.73333333329999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2280. <constraints>
  2281. <constraint firstItem="jB8-qR-axW" firstAttribute="top" secondItem="IvV-xs-RBq" secondAttribute="top" constant="1" id="1Sg-qv-sQS"/>
  2282. <constraint firstAttribute="height" constant="52" id="HHr-Tz-wAI"/>
  2283. <constraint firstItem="jB8-qR-axW" firstAttribute="leading" secondItem="IvV-xs-RBq" secondAttribute="leading" id="Q90-lS-bjX"/>
  2284. <constraint firstAttribute="trailing" secondItem="jB8-qR-axW" secondAttribute="trailing" id="qcN-VT-1HY"/>
  2285. </constraints>
  2286. </view>
  2287. </subviews>
  2288. <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2289. <constraints>
  2290. <constraint firstAttribute="trailing" secondItem="IvV-xs-RBq" secondAttribute="trailing" id="3m8-Df-AkZ"/>
  2291. <constraint firstAttribute="trailing" secondItem="fuY-Wk-K2F" secondAttribute="trailing" id="7EJ-vA-vlq"/>
  2292. <constraint firstItem="pfS-Ok-rh4" firstAttribute="top" secondItem="lf8-Zc-Oss" secondAttribute="top" id="FBa-UJ-b9j"/>
  2293. <constraint firstItem="IvV-xs-RBq" firstAttribute="leading" secondItem="lf8-Zc-Oss" secondAttribute="leading" id="Gjk-uj-ItK"/>
  2294. <constraint firstItem="fuY-Wk-K2F" firstAttribute="top" secondItem="pfS-Ok-rh4" secondAttribute="bottom" id="Hqt-pJ-is6"/>
  2295. <constraint firstItem="pfS-Ok-rh4" firstAttribute="leading" secondItem="lf8-Zc-Oss" secondAttribute="leading" id="IbW-l6-cjh"/>
  2296. <constraint firstItem="cj9-78-4k8" firstAttribute="leading" secondItem="DZS-Lj-Qe4" secondAttribute="trailing" id="Nzc-i4-DEv"/>
  2297. <constraint firstItem="DZS-Lj-Qe4" firstAttribute="top" secondItem="cj9-78-4k8" secondAttribute="top" id="PTa-BC-zTd"/>
  2298. <constraint firstItem="DZS-Lj-Qe4" firstAttribute="leading" secondItem="lf8-Zc-Oss" secondAttribute="leading" id="g7m-ou-Gas"/>
  2299. <constraint firstAttribute="bottom" secondItem="IvV-xs-RBq" secondAttribute="bottom" id="hp9-nj-q59"/>
  2300. <constraint firstItem="fuY-Wk-K2F" firstAttribute="top" secondItem="DZS-Lj-Qe4" secondAttribute="bottom" id="o2M-33-sCU"/>
  2301. <constraint firstItem="IvV-xs-RBq" firstAttribute="top" secondItem="fuY-Wk-K2F" secondAttribute="bottom" id="x3b-Ap-lVa"/>
  2302. <constraint firstItem="fuY-Wk-K2F" firstAttribute="leading" secondItem="lf8-Zc-Oss" secondAttribute="leading" id="xxw-2p-Av6"/>
  2303. <constraint firstAttribute="trailing" secondItem="pfS-Ok-rh4" secondAttribute="trailing" id="zLY-0v-zKj"/>
  2304. </constraints>
  2305. </view>
  2306. <simulatedStatusBarMetrics key="simulatedStatusBarMetrics"/>
  2307. <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
  2308. <size key="freeformSize" width="320" height="1568"/>
  2309. <connections>
  2310. <outlet property="lblTitle" destination="cj9-78-4k8" id="P4b-Kw-k1G"/>
  2311. <outlet property="tableView" destination="fuY-Wk-K2F" id="Ea4-Vt-EPU"/>
  2312. </connections>
  2313. </viewController>
  2314. <placeholder placeholderIdentifier="IBFirstResponder" id="Xtd-hR-vcs" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2315. </objects>
  2316. <point key="canvasLocation" x="-840" y="671"/>
  2317. </scene>
  2318. </scenes>
  2319. <resources>
  2320. <image name="color_body_01" width="2" height="2"/>
  2321. <image name="common_bullet_alert" width="30" height="30"/>
  2322. <image name="common_bullet_circle_gray" width="10" height="10"/>
  2323. <image name="common_bullet_circle_red" width="10" height="10"/>
  2324. <image name="common_bullet_line" width="1" height="1"/>
  2325. <image name="common_checkbox_checked" width="32" height="32"/>
  2326. <image name="common_checkbox_default" width="32" height="32"/>
  2327. <image name="common_head_btn_close" width="50" height="50"/>
  2328. <image name="common_head_btn_close_press" width="50" height="50"/>
  2329. <image name="common_head_btn_more" width="50" height="50"/>
  2330. <image name="common_head_btn_more_press" width="50" height="50"/>
  2331. <image name="common_list_btn_add" width="40" height="40"/>
  2332. <image name="common_list_btn_add_press" width="40" height="40"/>
  2333. <image name="common_list_btn_big_add" width="44" height="44"/>
  2334. <image name="common_list_btn_big_add_press" width="44" height="44"/>
  2335. <image name="common_list_btn_delete" width="40" height="40"/>
  2336. <image name="common_list_btn_delete_press" width="40" height="40"/>
  2337. <image name="img_1depth_invitation" width="150" height="150"/>
  2338. <image name="img_input_round_bg_default" width="50" height="35"/>
  2339. <image name="img_rule_icon_message" width="50" height="50"/>
  2340. <image name="img_rule_list_playbtn_active" width="54" height="27"/>
  2341. <image name="img_things_list_btn_delete" width="41" height="32"/>
  2342. <image name="img_things_list_btn_delete_press" width="41" height="32"/>
  2343. <image name="shadow_top" width="1" height="1"/>
  2344. </resources>
  2345. </document>