123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995 |
- <?xml version="1.0" encoding="UTF-8"?>
- <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="17701" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="4">
- <device id="retina4_7" orientation="portrait" appearance="light"/>
- <dependencies>
- <deployment identifier="iOS"/>
- <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="17703"/>
- <capability name="Safe area layout guides" minToolsVersion="9.0"/>
- <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
- </dependencies>
- <scenes>
- <!--Main Tab Bar Controller-->
- <scene sceneID="15">
- <objects>
- <tabBarController storyboardIdentifier="tabBarController" id="4" customClass="MainTabBarController" sceneMemberID="viewController">
- <nil key="simulatedBottomBarMetrics"/>
- <tabBar key="tabBar" contentMode="scaleToFill" id="5">
- <rect key="frame" x="0.0" y="431" width="320" height="49"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
- <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- </tabBar>
- <connections>
- <segue destination="jkA-kt-EVh" kind="relationship" relationship="viewControllers" id="78a-91-TLZ"/>
- <segue destination="4Fs-j8-Z1S" kind="relationship" relationship="viewControllers" id="mhn-Fn-s9p"/>
- <segue destination="uvv-Ko-dQ8" kind="relationship" relationship="viewControllers" id="3w4-zc-fqJ"/>
- <segue destination="OHY-cO-A6g" kind="relationship" relationship="viewControllers" id="odg-P3-ril"/>
- </connections>
- </tabBarController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="14" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-3848" y="417.39130434782612"/>
- </scene>
- <!--Settings-->
- <scene sceneID="FZG-wn-tpM">
- <objects>
- <navigationController id="OHY-cO-A6g" customClass="SettingsNavigationController" sceneMemberID="viewController">
- <tabBarItem key="tabBarItem" title="Settings" image="TabBar-Settings" id="b04-Gg-ZdB"/>
- <toolbarItems/>
- <navigationBar key="navigationBar" contentMode="scaleToFill" largeTitles="YES" id="vZ5-yv-BbA" customClass="StatusNavigationBar">
- <rect key="frame" x="0.0" y="0.0" width="375" height="96"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- <nil name="viewControllers"/>
- <connections>
- <segue destination="ZLF-cK-NEK" kind="relationship" relationship="rootViewController" id="gSb-XT-IM4"/>
- </connections>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="EDa-Yt-oNt" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-3849.6000000000004" y="1414.0929535232385"/>
- </scene>
- <!--SettingsStoryboard-->
- <scene sceneID="Vwq-OV-zvP">
- <objects>
- <viewControllerPlaceholder storyboardName="SettingsStoryboard" id="ZLF-cK-NEK" sceneMemberID="viewController">
- <navigationItem key="navigationItem" id="b0f-us-Bo5"/>
- </viewControllerPlaceholder>
- <placeholder placeholderIdentifier="IBFirstResponder" id="cuf-Wo-GSo" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-3849.6000000000004" y="1899.8500749625189"/>
- </scene>
- <!--Messages-->
- <scene sceneID="zrk-Dk-DBQ">
- <objects>
- <tableViewController storyboardIdentifier="conversationsViewController" id="Kji-Zw-ER6" customClass="ConversationsViewController" sceneMemberID="viewController">
- <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="NLv-zJ-wYm">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" systemColor="groupTableViewBackgroundColor"/>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ConversationCell" id="fS2-HP-qI3" customClass="ConversationCell">
- <rect key="frame" x="0.0" y="55.5" width="375" height="85"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="fS2-HP-qI3" id="0k9-3d-wSA">
- <rect key="frame" x="0.0" y="0.0" width="375" height="85"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="100" contentMode="left" verticalCompressionResistancePriority="751" text="Name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="aU9-dp-bDt">
- <rect key="frame" x="88" y="11" width="47" height="20.5"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="101" contentMode="left" verticalCompressionResistancePriority="751" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="4a3-95-oYU" customClass="TTTAttributedLabel">
- <rect key="frame" x="88" y="35.5" width="224" height="38"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
- <string key="text">Message preview q fasdf asdf asd fasd fasd fa
- efgjsk djflg</string>
- <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
- <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="jgm-G8-s6A">
- <rect key="frame" x="0.0" y="0.0" width="8" height="85"/>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- <constraints>
- <constraint firstAttribute="width" constant="8" id="Z8y-yS-s2r"/>
- </constraints>
- </view>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="751" image="UnknownPerson" translatesAutoresizingMaskIntoConstraints="NO" id="n9J-oC-ByX">
- <rect key="frame" x="21" y="15" width="56" height="55"/>
- <constraints>
- <constraint firstAttribute="width" constant="56" id="7nV-J4-Oyy"/>
- <constraint firstAttribute="height" constant="55" id="NcJ-2d-a1t"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </imageView>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Iln-4R-Iqw" customClass="MKNumberBadgeView">
- <rect key="frame" x="55" y="45" width="36" height="28"/>
- <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="height" constant="28" id="LCB-w5-NYL"/>
- <constraint firstAttribute="width" constant="36" id="kua-nz-L0j"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </view>
- <imageView hidden="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" image="Typing.png" highlightedImage="Typing.png" translatesAutoresizingMaskIntoConstraints="NO" id="wjR-z3-XEA">
- <rect key="frame" x="341" y="35.5" width="18" height="20"/>
- <constraints>
- <constraint firstAttribute="width" constant="18" id="DW1-l7-Kh1"/>
- <constraint firstAttribute="height" constant="20" id="viR-q8-f87"/>
- </constraints>
- </imageView>
- <imageView hidden="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="MessageStatus_sent" highlightedImage="MessageStatus_sent" translatesAutoresizingMaskIntoConstraints="NO" id="E7l-qj-NZ6">
- <rect key="frame" x="342" y="35.5" width="17" height="16"/>
- <constraints>
- <constraint firstAttribute="width" constant="17" id="X1Q-oi-nJu"/>
- <constraint firstAttribute="height" constant="16" id="mlI-fX-Zkd"/>
- </constraints>
- </imageView>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="102" contentMode="left" horizontalHuggingPriority="251" text="Date" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="XTa-xS-cOR">
- <rect key="frame" x="330" y="11" width="29" height="16"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
- <color key="textColor" red="0.42745098040000001" green="0.42745098040000001" blue="0.42745098040000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="102" contentMode="left" horizontalCompressionResistancePriority="751" text="Draft" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="jlK-CM-mIS">
- <rect key="frame" x="328" y="11" width="31" height="16.5"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
- <color key="textColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="WorkContact.png" translatesAutoresizingMaskIntoConstraints="NO" id="T8B-vl-wTs">
- <rect key="frame" x="21" y="49" width="20" height="20"/>
- <constraints>
- <constraint firstAttribute="width" constant="20" id="NkH-GP-wus"/>
- <constraint firstAttribute="height" constant="20" id="j1N-5o-yUQ"/>
- </constraints>
- </imageView>
- <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="Cj7-Ax-YSf">
- <rect key="frame" x="88" y="35.5" width="0.0" height="0.0"/>
- <constraints>
- <constraint firstAttribute="height" id="h7t-im-hEA"/>
- <constraint firstAttribute="width" secondItem="Cj7-Ax-YSf" secondAttribute="height" multiplier="5:4" id="m9p-UO-oBf"/>
- </constraints>
- </imageView>
- <imageView hidden="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="Bell" translatesAutoresizingMaskIntoConstraints="NO" id="2RG-L3-FA4">
- <rect key="frame" x="317" y="35.5" width="17" height="16"/>
- <constraints>
- <constraint firstAttribute="height" constant="16" id="HwT-ia-7Bp"/>
- <constraint firstAttribute="width" constant="17" id="qYL-aq-7ps"/>
- </constraints>
- </imageView>
- </subviews>
- <constraints>
- <constraint firstItem="4a3-95-oYU" firstAttribute="top" secondItem="aU9-dp-bDt" secondAttribute="bottom" constant="4" id="04F-Ih-g6F"/>
- <constraint firstItem="2RG-L3-FA4" firstAttribute="leading" secondItem="4a3-95-oYU" secondAttribute="trailing" constant="5" id="166-Pq-kgt"/>
- <constraint firstItem="jlK-CM-mIS" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="aU9-dp-bDt" secondAttribute="trailing" constant="10" id="1hf-Hy-QIP"/>
- <constraint firstItem="2RG-L3-FA4" firstAttribute="centerY" secondItem="E7l-qj-NZ6" secondAttribute="centerY" id="38c-4V-eUM"/>
- <constraint firstItem="n9J-oC-ByX" firstAttribute="top" relation="greaterThanOrEqual" secondItem="0k9-3d-wSA" secondAttribute="topMargin" priority="750" constant="2" id="6zZ-On-HWB"/>
- <constraint firstItem="Iln-4R-Iqw" firstAttribute="bottom" secondItem="n9J-oC-ByX" secondAttribute="bottom" constant="3" id="8rf-GD-XJ9"/>
- <constraint firstAttribute="bottom" secondItem="jgm-G8-s6A" secondAttribute="bottom" id="Atk-uH-tf4"/>
- <constraint firstItem="jlK-CM-mIS" firstAttribute="top" secondItem="0k9-3d-wSA" secondAttribute="topMargin" id="C7u-Xn-eLb"/>
- <constraint firstAttribute="trailingMargin" secondItem="wjR-z3-XEA" secondAttribute="trailing" id="Gyc-ly-JzJ"/>
- <constraint firstItem="Cj7-Ax-YSf" firstAttribute="top" secondItem="4a3-95-oYU" secondAttribute="top" id="KgT-ca-Eyc"/>
- <constraint firstItem="jgm-G8-s6A" firstAttribute="top" secondItem="0k9-3d-wSA" secondAttribute="top" id="NcF-gA-ZbS"/>
- <constraint firstItem="XTa-xS-cOR" firstAttribute="top" secondItem="0k9-3d-wSA" secondAttribute="topMargin" id="OeW-U4-yfO"/>
- <constraint firstItem="Cj7-Ax-YSf" firstAttribute="leading" secondItem="4a3-95-oYU" secondAttribute="leading" id="OoJ-pH-gvh"/>
- <constraint firstItem="wjR-z3-XEA" firstAttribute="top" secondItem="jlK-CM-mIS" secondAttribute="bottom" constant="8" symbolic="YES" id="PZc-ne-XTJ"/>
- <constraint firstAttribute="trailingMargin" secondItem="E7l-qj-NZ6" secondAttribute="trailing" id="RNp-4M-tww"/>
- <constraint firstItem="n9J-oC-ByX" firstAttribute="centerY" secondItem="0k9-3d-wSA" secondAttribute="centerY" id="Rvp-OY-AXM"/>
- <constraint firstItem="aU9-dp-bDt" firstAttribute="top" secondItem="0k9-3d-wSA" secondAttribute="topMargin" id="UmZ-zk-kha"/>
- <constraint firstItem="E7l-qj-NZ6" firstAttribute="leading" secondItem="2RG-L3-FA4" secondAttribute="trailing" constant="8" id="asI-ZV-0ln"/>
- <constraint firstItem="E7l-qj-NZ6" firstAttribute="top" secondItem="4a3-95-oYU" secondAttribute="top" id="d41-9g-Nc2"/>
- <constraint firstItem="T8B-vl-wTs" firstAttribute="bottom" secondItem="n9J-oC-ByX" secondAttribute="bottom" constant="-1" id="d42-Wc-ddk"/>
- <constraint firstItem="XTa-xS-cOR" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="aU9-dp-bDt" secondAttribute="trailing" constant="10" id="dLF-Cn-MfJ"/>
- <constraint firstItem="wjR-z3-XEA" firstAttribute="top" secondItem="4a3-95-oYU" secondAttribute="top" id="eJh-7r-h3z"/>
- <constraint firstAttribute="bottomMargin" relation="greaterThanOrEqual" secondItem="n9J-oC-ByX" secondAttribute="bottom" priority="750" constant="2" id="erD-iu-ziV"/>
- <constraint firstItem="Iln-4R-Iqw" firstAttribute="trailing" secondItem="n9J-oC-ByX" secondAttribute="trailing" constant="14" id="fg3-Ls-Y78"/>
- <constraint firstItem="jgm-G8-s6A" firstAttribute="leading" secondItem="0k9-3d-wSA" secondAttribute="leading" id="hZ3-Ts-i1o"/>
- <constraint firstAttribute="trailingMargin" secondItem="XTa-xS-cOR" secondAttribute="trailing" id="kyv-By-uou"/>
- <constraint firstAttribute="trailingMargin" secondItem="jlK-CM-mIS" secondAttribute="trailing" id="lAm-fy-Wb3"/>
- <constraint firstItem="T8B-vl-wTs" firstAttribute="leading" secondItem="n9J-oC-ByX" secondAttribute="leading" id="nRs-4F-Gpj"/>
- <constraint firstItem="aU9-dp-bDt" firstAttribute="leading" secondItem="n9J-oC-ByX" secondAttribute="trailing" constant="11" id="tIQ-0X-5ET"/>
- <constraint firstItem="4a3-95-oYU" firstAttribute="leading" secondItem="n9J-oC-ByX" secondAttribute="trailing" constant="11" id="u5q-dx-bhg"/>
- <constraint firstItem="n9J-oC-ByX" firstAttribute="leading" secondItem="0k9-3d-wSA" secondAttribute="leadingMargin" constant="5" id="uGC-Iz-KPv"/>
- <constraint firstAttribute="bottomMargin" relation="greaterThanOrEqual" secondItem="4a3-95-oYU" secondAttribute="bottom" id="wKB-mr-qUI"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <outlet property="badgeView" destination="Iln-4R-Iqw" id="Y2J-Gf-zzU"/>
- <outlet property="callImageHeight" destination="h7t-im-hEA" id="RlC-9A-gbv"/>
- <outlet property="callImageView" destination="Cj7-Ax-YSf" id="CTc-Yp-Ejl"/>
- <outlet property="contactImage" destination="n9J-oC-ByX" id="f5k-Bu-6Ik"/>
- <outlet property="dateLabel" destination="XTa-xS-cOR" id="EoZ-Dt-H5s"/>
- <outlet property="draftLabel" destination="jlK-CM-mIS" id="gvQ-aS-lqq"/>
- <outlet property="markedView" destination="jgm-G8-s6A" id="48a-6k-Vix"/>
- <outlet property="messagePreviewLabel" destination="4a3-95-oYU" id="FgL-sw-zFR"/>
- <outlet property="nameLabel" destination="aU9-dp-bDt" id="ThP-XP-d44"/>
- <outlet property="notificationIcon" destination="2RG-L3-FA4" id="84n-AU-fNF"/>
- <outlet property="statusIcon" destination="E7l-qj-NZ6" id="o0Z-ee-ABW"/>
- <outlet property="threemaTypeIcon" destination="T8B-vl-wTs" id="m0h-ii-Ff1"/>
- <outlet property="typingIndicator" destination="wjR-z3-XEA" id="ge1-2h-juP"/>
- </connections>
- </tableViewCell>
- </prototypes>
- <connections>
- <outlet property="dataSource" destination="Kji-Zw-ER6" id="qOQ-Zq-lST"/>
- <outlet property="delegate" destination="Kji-Zw-ER6" id="Ule-cm-hhS"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Messages" id="vkp-6o-Lct">
- <barButtonItem key="leftBarButtonItem" systemItem="edit" id="yNs-w7-9pI"/>
- <barButtonItem key="rightBarButtonItem" image="Compose" id="Hqe-Yz-nuJ">
- <connections>
- <action selector="newMessage:" destination="Kji-Zw-ER6" id="BD6-PH-8aA"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <connections>
- <outlet property="createMessageBarButtonItem" destination="Hqe-Yz-nuJ" id="W3y-lb-oxr"/>
- <segue destination="v1R-9K-OZW" kind="show" identifier="ShowConversation" id="pFA-Tp-dth"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="pta-Eu-i3V" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-1456.8" y="416.94152923538235"/>
- </scene>
- <!--ContactDetails-->
- <scene sceneID="pxa-1i-UrO">
- <objects>
- <tableViewController storyboardIdentifier="contactDetailsViewController" id="MbJ-IV-2f9" userLabel="ContactDetails" customClass="ContactDetailsViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
- <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="pXs-iG-LIG">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <view key="tableHeaderView" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" id="4J2-j2-aqd">
- <rect key="frame" x="0.0" y="0.0" width="375" height="300"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <stackView opaque="NO" contentMode="scaleAspectFit" axis="vertical" distribution="equalSpacing" alignment="center" spacing="10" translatesAutoresizingMaskIntoConstraints="NO" id="hXY-LY-hEN">
- <rect key="frame" x="16" y="16" width="343" height="268"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="ewE-oj-bc5">
- <rect key="frame" x="71.5" y="0.0" width="200" height="200"/>
- <subviews>
- <imageView contentMode="scaleToFill" image="UnknownPerson" translatesAutoresizingMaskIntoConstraints="NO" id="C5h-Sy-nCc">
- <rect key="frame" x="0.0" y="0.0" width="200" height="200"/>
- <constraints>
- <constraint firstAttribute="height" relation="lessThanOrEqual" constant="200" id="H1w-TD-Ezp"/>
- <constraint firstAttribute="width" constant="200" id="OL5-rJ-P0w"/>
- <constraint firstAttribute="width" secondItem="C5h-Sy-nCc" secondAttribute="height" multiplier="1:1" id="xvA-vq-1yV"/>
- </constraints>
- </imageView>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="j85-AA-x4F">
- <rect key="frame" x="0.0" y="150" width="50" height="50"/>
- <constraints>
- <constraint firstAttribute="width" secondItem="j85-AA-x4F" secondAttribute="height" multiplier="1:1" id="jFI-4e-Bwq"/>
- </constraints>
- <state key="normal" title="Button"/>
- <connections>
- <action selector="workInfoButtonTappedWithSender:" destination="MbJ-IV-2f9" eventType="touchUpInside" id="EJo-VY-ifj"/>
- </connections>
- </button>
- </subviews>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- <constraints>
- <constraint firstItem="C5h-Sy-nCc" firstAttribute="leading" secondItem="ewE-oj-bc5" secondAttribute="leading" id="F4e-cv-7qx"/>
- <constraint firstAttribute="bottom" secondItem="C5h-Sy-nCc" secondAttribute="bottom" id="Fys-F6-xQu"/>
- <constraint firstAttribute="trailing" secondItem="C5h-Sy-nCc" secondAttribute="trailing" id="J06-Ab-njl"/>
- <constraint firstItem="j85-AA-x4F" firstAttribute="bottom" secondItem="C5h-Sy-nCc" secondAttribute="bottom" id="Ve2-of-z12"/>
- <constraint firstItem="C5h-Sy-nCc" firstAttribute="top" secondItem="ewE-oj-bc5" secondAttribute="top" id="a0W-kY-yNa"/>
- <constraint firstItem="j85-AA-x4F" firstAttribute="leading" secondItem="C5h-Sy-nCc" secondAttribute="leading" id="mD3-YE-qI7"/>
- <constraint firstItem="j85-AA-x4F" firstAttribute="width" secondItem="C5h-Sy-nCc" secondAttribute="height" multiplier="1:4" id="zZR-ig-eDW"/>
- </constraints>
- </view>
- <stackView opaque="NO" contentMode="scaleToFill" alignment="center" spacing="5" translatesAutoresizingMaskIntoConstraints="NO" id="lUZ-nd-qdA">
- <rect key="frame" x="118" y="214.5" width="107.5" height="22"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="749" verticalCompressionResistancePriority="749" text="First Last" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="DfM-u6-9Pl">
- <rect key="frame" x="0.0" y="0.0" width="80.5" height="22"/>
- <constraints>
- <constraint firstAttribute="height" constant="22" id="oVy-p5-nR7"/>
- </constraints>
- <fontDescription key="fontDescription" style="UICTFontTextStyleTitle3"/>
- <nil key="highlightedColor"/>
- <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <size key="shadowOffset" width="0.0" height="1"/>
- </label>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="gta-RS-LoS">
- <rect key="frame" x="85.5" y="0.0" width="22" height="22"/>
- <state key="normal" image="Edit"/>
- </button>
- </subviews>
- </stackView>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="751" text="Company Name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="wLS-iM-q79">
- <rect key="frame" x="123.5" y="251" width="96.5" height="17"/>
- <constraints>
- <constraint firstAttribute="height" constant="17" id="cbG-0q-iXI"/>
- </constraints>
- <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
- <color key="textColor" red="0.29803921570000003" green="0.33725490200000002" blue="0.42352941179999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <size key="shadowOffset" width="0.0" height="1"/>
- </label>
- </subviews>
- </stackView>
- </subviews>
- <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="hXY-LY-hEN" secondAttribute="trailing" constant="16" id="EFa-Jx-0b4"/>
- <constraint firstItem="hXY-LY-hEN" firstAttribute="top" secondItem="4J2-j2-aqd" secondAttribute="top" constant="16" id="apl-yV-sfs"/>
- <constraint firstItem="hXY-LY-hEN" firstAttribute="leading" secondItem="4J2-j2-aqd" secondAttribute="leading" constant="16" id="cAr-hU-ALH"/>
- <constraint firstAttribute="bottom" secondItem="hXY-LY-hEN" secondAttribute="bottom" constant="16" id="sNx-ba-kP7"/>
- </constraints>
- </view>
- <prototypes>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="IdentityCell" textLabel="Li7-m2-jkf" detailTextLabel="D8z-NN-iT9" style="IBUITableViewCellStyleValue1" id="lAz-z2-lf5">
- <rect key="frame" x="0.0" y="355.5" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="lAz-z2-lf5" id="EbA-id-9cq">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Threema ID" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="Li7-m2-jkf">
- <rect key="frame" x="16" y="12" width="88" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" multipleTouchEnabled="YES" tag="100" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="D8z-NN-iT9" customClass="CopyLabel" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="315" y="12" width="44" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="yUN-4i-VRj">
- <rect key="frame" x="175" y="9.5" width="25" height="25"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <state key="normal" image="Share"/>
- <connections>
- <action selector="shareButtonTappedWithSender:" destination="MbJ-IV-2f9" eventType="touchUpInside" id="7lT-YQ-dhG"/>
- </connections>
- </button>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="yUN-4i-VRj" id="5RA-gO-5TL"/>
- </connections>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="PublicNicknameCell" textLabel="EpZ-nu-d7H" detailTextLabel="AyW-jc-MkD" style="IBUITableViewCellStyleValue1" id="Y5Z-Gg-lgB">
- <rect key="frame" x="0.0" y="399" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="Y5Z-Gg-lgB" id="fdt-zZ-gl5">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Nickname" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="EpZ-nu-d7H">
- <rect key="frame" x="16" y="12" width="76" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" multipleTouchEnabled="YES" tag="101" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="AyW-jc-MkD">
- <rect key="frame" x="315" y="12" width="44" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" accessoryType="disclosureIndicator" indentationWidth="10" reuseIdentifier="LinkedContactCell" textLabel="HUp-wZ-oF0" detailTextLabel="wVo-z6-Ml9" style="IBUITableViewCellStyleValue1" id="Ldn-SC-BPP" customClass="LinkedContactCell" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="0.0" y="442.5" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="Ldn-SC-BPP" id="eTC-qt-ugh">
- <rect key="frame" x="0.0" y="0.0" width="348" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Linked contact" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="HUp-wZ-oF0">
- <rect key="frame" x="16" y="12" width="112.5" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="wVo-z6-Ml9">
- <rect key="frame" x="296" y="12" width="44" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="displayNameLabel" destination="wVo-z6-Ml9" id="FwU-uX-rtp"/>
- <outlet property="linkedContactLabel" destination="HUp-wZ-oF0" id="Msr-Ub-XQX"/>
- </connections>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" accessoryType="disclosureIndicator" indentationWidth="10" reuseIdentifier="GroupMembershipCell" textLabel="b8z-Gr-9hX" detailTextLabel="8GS-Yt-ab7" style="IBUITableViewCellStyleValue1" id="NsV-NK-7RD">
- <rect key="frame" x="0.0" y="486" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="NsV-NK-7RD" id="4LB-RX-n1L">
- <rect key="frame" x="0.0" y="0.0" width="348" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Member in groups" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="b8z-Gr-9hX">
- <rect key="frame" x="16" y="12" width="139" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" multipleTouchEnabled="YES" tag="102" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="8GS-Yt-ab7">
- <rect key="frame" x="296" y="12" width="44" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" accessoryType="disclosureIndicator" indentationWidth="10" reuseIdentifier="VerificationLevelCell" id="wNt-UD-Lxa" customClass="VerificationLevelCell" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="0.0" y="529.5" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="wNt-UD-Lxa" id="rA9-fH-g92">
- <rect key="frame" x="0.0" y="0.0" width="348" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="spN-GT-ek4" userLabel="Verification Level">
- <rect key="frame" x="16" y="11.5" width="41.5" height="20.5"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-2.png" translatesAutoresizingMaskIntoConstraints="NO" id="exu-hx-kP4">
- <rect key="frame" x="288" y="16" width="48" height="12"/>
- <constraints>
- <constraint firstAttribute="width" constant="48" id="MZw-tp-7YB"/>
- <constraint firstAttribute="height" constant="12" id="wqr-Ue-okP"/>
- </constraints>
- </imageView>
- </subviews>
- <constraints>
- <constraint firstAttribute="trailingMargin" secondItem="exu-hx-kP4" secondAttribute="trailing" constant="4" id="9MS-nE-slI"/>
- <constraint firstItem="exu-hx-kP4" firstAttribute="centerY" secondItem="rA9-fH-g92" secondAttribute="centerY" id="igy-eM-7iZ"/>
- <constraint firstItem="spN-GT-ek4" firstAttribute="leading" secondItem="rA9-fH-g92" secondAttribute="leadingMargin" id="k53-Iy-36i"/>
- <constraint firstItem="spN-GT-ek4" firstAttribute="centerY" secondItem="rA9-fH-g92" secondAttribute="centerY" id="vIR-oe-h2X"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <outlet property="levelImage" destination="exu-hx-kP4" id="3PD-os-bKV"/>
- <outlet property="titleLabel" destination="spN-GT-ek4" id="C2g-d3-SbU"/>
- <segue destination="BHJ-uI-yhd" kind="show" identifier="VerificationSegue" id="gsX-9s-4uY"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="KeyFingerprintCell" id="hoB-s0-utM" customClass="KeyFingerprintCell" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="0.0" y="573" width="375" height="69"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="hoB-s0-utM" id="5qh-9Z-qN6">
- <rect key="frame" x="0.0" y="0.0" width="375" height="69"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" verticalCompressionResistancePriority="751" ambiguous="YES" preservesSuperviewLayoutMargins="YES" text="Key Fingerprint" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="LrC-J2-IWd">
- <rect key="frame" x="16" y="14" width="343" height="14"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" ambiguous="YES" preservesSuperviewLayoutMargins="YES" text="00000000000000000000000000000000" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="8S8-W1-o1S" customClass="CopyLabel" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="16" y="30" width="343" height="0.0"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
- <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstAttribute="bottomMargin" secondItem="8S8-W1-o1S" secondAttribute="bottom" constant="3" id="G3f-TV-cYi"/>
- <constraint firstItem="8S8-W1-o1S" firstAttribute="top" secondItem="LrC-J2-IWd" secondAttribute="bottom" constant="2" id="Tfd-Ik-rrc"/>
- <constraint firstAttribute="trailingMargin" secondItem="LrC-J2-IWd" secondAttribute="trailing" id="XWK-yP-zxf"/>
- <constraint firstItem="8S8-W1-o1S" firstAttribute="leading" secondItem="5qh-9Z-qN6" secondAttribute="leadingMargin" id="Z0x-yM-kmz"/>
- <constraint firstAttribute="trailingMargin" secondItem="8S8-W1-o1S" secondAttribute="trailing" id="a0p-hb-UxO"/>
- <constraint firstItem="LrC-J2-IWd" firstAttribute="top" secondItem="5qh-9Z-qN6" secondAttribute="topMargin" constant="3" id="gQ4-dd-JOL"/>
- <constraint firstItem="LrC-J2-IWd" firstAttribute="leading" secondItem="5qh-9Z-qN6" secondAttribute="leadingMargin" id="vqj-YK-ObG"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <outlet property="fingerprintLabel" destination="LrC-J2-IWd" id="YFx-gW-FZ0"/>
- <outlet property="fingerprintValueLabel" destination="8S8-W1-o1S" id="mXz-3M-Tf4"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SendMessageCell" id="xYA-Ea-q30" customClass="ContactSendMessageCell" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="0.0" y="642" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="xYA-Ea-q30" id="cJR-FO-GBd">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="SendMessage" translatesAutoresizingMaskIntoConstraints="NO" id="yVb-PA-4z6">
- <rect key="frame" x="16" y="11" width="24" height="22"/>
- <constraints>
- <constraint firstAttribute="width" constant="24" id="gl7-Sf-smT"/>
- <constraint firstAttribute="height" constant="22" id="kwk-jv-3sD"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </imageView>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="751" text="Send Message" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="cHE-Oc-08d">
- <rect key="frame" x="56" y="11.5" width="303" height="20.5"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstAttribute="trailingMargin" secondItem="cHE-Oc-08d" secondAttribute="trailing" id="4Aw-hD-sZ3"/>
- <constraint firstItem="cHE-Oc-08d" firstAttribute="centerY" secondItem="cJR-FO-GBd" secondAttribute="centerY" id="XLL-I6-hL4"/>
- <constraint firstItem="cHE-Oc-08d" firstAttribute="leading" secondItem="yVb-PA-4z6" secondAttribute="trailing" constant="16" id="dr1-Pc-c7f"/>
- <constraint firstItem="yVb-PA-4z6" firstAttribute="centerY" secondItem="cJR-FO-GBd" secondAttribute="centerY" id="jwT-bn-gMh"/>
- <constraint firstItem="yVb-PA-4z6" firstAttribute="leading" secondItem="cJR-FO-GBd" secondAttribute="leadingMargin" id="o8j-29-DeH"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <outlet property="sendMessageImageView" destination="yVb-PA-4z6" id="Ar9-Lm-6sP"/>
- <outlet property="sendMessageLabel" destination="cHE-Oc-08d" id="35m-Q5-6Zl"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleAspectFit" preservesSuperviewLayoutMargins="YES" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ExportConversationCell" id="m6w-9r-Xy1" customClass="ExportConversationCell" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="0.0" y="685.5" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="m6w-9r-Xy1" id="gz3-6B-yR4">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="751" ambiguous="YES" text="Export Conversation" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="MjB-gx-MEm">
- <rect key="frame" x="56" y="11.5" width="303" height="20.5"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" image="ExportConversation" translatesAutoresizingMaskIntoConstraints="NO" id="7cF-sc-aCb">
- <rect key="frame" x="16" y="11" width="24" height="22"/>
- <constraints>
- <constraint firstAttribute="height" constant="22" id="7kx-gl-qMt"/>
- <constraint firstAttribute="width" constant="24" id="DGx-xp-fFa"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </imageView>
- </subviews>
- <constraints>
- <constraint firstItem="MjB-gx-MEm" firstAttribute="leading" secondItem="7cF-sc-aCb" secondAttribute="trailing" constant="16" id="AWK-W1-qfg"/>
- <constraint firstItem="7cF-sc-aCb" firstAttribute="centerY" secondItem="gz3-6B-yR4" secondAttribute="centerY" id="QDM-1i-T2n"/>
- <constraint firstItem="MjB-gx-MEm" firstAttribute="centerY" secondItem="gz3-6B-yR4" secondAttribute="centerY" id="RB9-sF-Lxg"/>
- <constraint firstAttribute="trailingMargin" secondItem="MjB-gx-MEm" secondAttribute="trailing" id="ckk-Py-CXp"/>
- <constraint firstItem="7cF-sc-aCb" firstAttribute="leading" secondItem="gz3-6B-yR4" secondAttribute="leadingMargin" id="oSp-WC-vL3"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <outlet property="exportConversationImageView" destination="7cF-sc-aCb" id="ZID-qd-qmG"/>
- <outlet property="exportConversationLabel" destination="MjB-gx-MEm" id="kNK-Ur-nFd"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ThreemaCallCell" id="zzQ-kr-FRG" customClass="ContactThreemaCallCell" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="0.0" y="729" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="zzQ-kr-FRG" id="xRf-GP-tFV">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="751" ambiguous="YES" text="Threema Call" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="5Ea-OE-GRI">
- <rect key="frame" x="56" y="11.5" width="303" height="20.5"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" image="ThreemaPhone" translatesAutoresizingMaskIntoConstraints="NO" id="wX0-AX-zM3">
- <rect key="frame" x="16" y="9.5" width="25" height="25"/>
- <constraints>
- <constraint firstAttribute="width" constant="25" id="YGn-kw-D3Z"/>
- <constraint firstAttribute="height" constant="25" id="sbg-RC-4Gd"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </imageView>
- </subviews>
- <constraints>
- <constraint firstItem="wX0-AX-zM3" firstAttribute="centerY" secondItem="xRf-GP-tFV" secondAttribute="centerY" id="8ys-P7-292"/>
- <constraint firstItem="5Ea-OE-GRI" firstAttribute="centerY" secondItem="xRf-GP-tFV" secondAttribute="centerY" id="Nex-JF-nYT"/>
- <constraint firstItem="5Ea-OE-GRI" firstAttribute="leading" secondItem="wX0-AX-zM3" secondAttribute="trailing" constant="15" id="WSI-TY-XWu"/>
- <constraint firstAttribute="trailingMargin" secondItem="5Ea-OE-GRI" secondAttribute="trailing" id="cDn-Wz-RS0"/>
- <constraint firstItem="wX0-AX-zM3" firstAttribute="leading" secondItem="xRf-GP-tFV" secondAttribute="leadingMargin" id="gbo-0X-7ip"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <outlet property="threemaCallImageView" destination="wX0-AX-zM3" id="5LD-hC-pda"/>
- <outlet property="threemaCallLabel" destination="5Ea-OE-GRI" id="kBj-m6-ZfZ"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" indentationWidth="10" reuseIdentifier="BlockCell" textLabel="okc-AP-jvX" style="IBUITableViewCellStyleDefault" id="OyV-Kc-kkl" customClass="BlockContactCell" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="0.0" y="772.5" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="OyV-Kc-kkl" id="yq1-pz-P7n">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" text="Block Contact" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="okc-AP-jvX">
- <rect key="frame" x="15" y="0.0" width="352" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" ambiguous="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="lzZ-zu-OFi">
- <rect key="frame" x="161" y="6" width="50" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <color key="onTintColor" red="1" green="0.23137254900000001" blue="0.18823529410000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <connections>
- <action selector="blockSwitchChanged:" destination="OyV-Kc-kkl" eventType="valueChanged" id="9rE-Yf-EMX"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="lzZ-zu-OFi" id="pS9-tb-L1i"/>
- <outlet property="blockContactLabel" destination="okc-AP-jvX" id="hOb-wg-B71"/>
- <outlet property="blockContactSwitch" destination="lzZ-zu-OFi" id="NWU-Ir-pzH"/>
- </connections>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" accessoryType="disclosureIndicator" indentationWidth="10" reuseIdentifier="PushSettingCell" textLabel="XoR-5p-xDo" style="IBUITableViewCellStyleDefault" id="bAN-PO-fyf">
- <rect key="frame" x="0.0" y="816" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="bAN-PO-fyf" id="dct-WZ-Arc">
- <rect key="frame" x="0.0" y="0.0" width="356" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" text="Push setting" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="XoR-5p-xDo">
- <rect key="frame" x="15" y="0.0" width="333" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="7sc-E3-vaH" kind="show" identifier="ShowPushSetting" id="ptU-i0-583"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ScanIDCell" id="7DS-oe-Mqj" customClass="ContactScanCell" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="0.0" y="859.5" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="7DS-oe-Mqj" id="sV9-Ue-Zsn">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" image="QRScan" translatesAutoresizingMaskIntoConstraints="NO" id="JDb-HV-uuX">
- <rect key="frame" x="16" y="11" width="24" height="22"/>
- <constraints>
- <constraint firstAttribute="height" constant="22" id="NWh-dD-XE6"/>
- <constraint firstAttribute="width" constant="24" id="oBg-Wm-lbX"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </imageView>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="751" ambiguous="YES" text="Scan ID" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="b4I-LV-xkG" userLabel="Scan ID">
- <rect key="frame" x="56" y="11.5" width="303" height="20.5"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstAttribute="trailingMargin" secondItem="b4I-LV-xkG" secondAttribute="trailing" id="Pl6-ON-TSR"/>
- <constraint firstItem="JDb-HV-uuX" firstAttribute="centerY" secondItem="sV9-Ue-Zsn" secondAttribute="centerY" id="WEU-mc-847"/>
- <constraint firstItem="b4I-LV-xkG" firstAttribute="leading" secondItem="JDb-HV-uuX" secondAttribute="trailing" constant="16" id="Zth-wC-MAP"/>
- <constraint firstItem="JDb-HV-uuX" firstAttribute="leading" secondItem="sV9-Ue-Zsn" secondAttribute="leadingMargin" id="jYv-SR-nfw"/>
- <constraint firstItem="b4I-LV-xkG" firstAttribute="centerY" secondItem="sV9-Ue-Zsn" secondAttribute="centerY" id="oUw-JX-4o1"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <outlet property="scanContactImageView" destination="JDb-HV-uuX" id="HCs-N9-1PL"/>
- <outlet property="scanContactLabel" destination="b4I-LV-xkG" id="Kgt-ah-myT"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SendProfilePictureCell" id="txT-4c-Lzf" customClass="ContactSendPictureCell" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="0.0" y="903" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="txT-4c-Lzf" id="W6q-eP-yJc">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="751" ambiguous="YES" text="Send profile picture now" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="nw5-78-OP1">
- <rect key="frame" x="56" y="11.5" width="303" height="20.5"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" image="ProfilePicture" translatesAutoresizingMaskIntoConstraints="NO" id="aGm-Gp-vUl">
- <rect key="frame" x="16" y="11" width="24" height="22"/>
- <constraints>
- <constraint firstAttribute="width" constant="24" id="OTF-pW-8qF"/>
- <constraint firstAttribute="height" constant="22" id="YK0-Kf-fhx"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </imageView>
- </subviews>
- <constraints>
- <constraint firstAttribute="trailingMargin" secondItem="nw5-78-OP1" secondAttribute="trailing" id="Hor-Zh-4Ef"/>
- <constraint firstItem="aGm-Gp-vUl" firstAttribute="leading" secondItem="W6q-eP-yJc" secondAttribute="leadingMargin" id="LDF-zl-zIa"/>
- <constraint firstItem="nw5-78-OP1" firstAttribute="leading" secondItem="aGm-Gp-vUl" secondAttribute="trailing" constant="16" id="YHt-Oa-nJM"/>
- <constraint firstItem="aGm-Gp-vUl" firstAttribute="centerY" secondItem="W6q-eP-yJc" secondAttribute="centerY" id="mBN-we-65j"/>
- <constraint firstItem="nw5-78-OP1" firstAttribute="centerY" secondItem="W6q-eP-yJc" secondAttribute="centerY" id="rs4-8A-sLJ"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <outlet property="sendPictureImageView" destination="aGm-Gp-vUl" id="r5d-eg-bQs"/>
- <outlet property="sendPictureLabel" destination="nw5-78-OP1" id="0eq-9M-Hjo"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="ProfilePictureRecipientCell" textLabel="nmk-Tk-7Kq" style="IBUITableViewCellStyleDefault" id="KTc-Ah-8X8" customClass="ProfilePictureRecipientCell" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="0.0" y="946.5" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="KTc-Ah-8X8" id="afC-xu-ql9">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" text="Profile picture recipient" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="nmk-Tk-7Kq">
- <rect key="frame" x="15" y="0.0" width="352" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" ambiguous="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="qqb-fp-VOI">
- <rect key="frame" x="163" y="6" width="48" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="profilePictureRecipientSwitchChanged:" destination="KTc-Ah-8X8" eventType="valueChanged" id="Krg-wg-8sy"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="qqb-fp-VOI" id="ErF-oX-RMZ"/>
- <outlet property="profilePictureRecipientLabel" destination="nmk-Tk-7Kq" id="k5m-PL-D3W"/>
- <outlet property="profilePictureRecipientSwitch" destination="qqb-fp-VOI" id="VGW-g1-xQF"/>
- </connections>
- </tableViewCell>
- </prototypes>
- <sections/>
- <connections>
- <outlet property="dataSource" destination="MbJ-IV-2f9" id="VQ6-nd-9e4"/>
- <outlet property="delegate" destination="MbJ-IV-2f9" id="6Rc-lt-Ehf"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="First Last" largeTitleDisplayMode="never" id="Wsn-z9-eRi">
- <barButtonItem key="rightBarButtonItem" image="QRScan" id="ydd-ZP-cHN">
- <connections>
- <action selector="scanQrCodeActionWithSender:" destination="MbJ-IV-2f9" id="uyY-qL-Oi4"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <connections>
- <outlet property="companyNameLabel" destination="wLS-iM-q79" id="rQo-wF-0UW"/>
- <outlet property="disclosureButton" destination="gta-RS-LoS" id="HnU-W9-6Ti"/>
- <outlet property="headerView" destination="4J2-j2-aqd" id="nu9-xE-Scc"/>
- <outlet property="imageView" destination="C5h-Sy-nCc" id="CoE-js-cSN"/>
- <outlet property="nameLabel" destination="DfM-u6-9Pl" id="XoH-fN-tsE"/>
- <outlet property="scanQrCodeBarButtonItem" destination="ydd-ZP-cHN" id="ObJ-lV-e2E"/>
- <outlet property="threemaTypeIcon" destination="j85-AA-x4F" id="sKz-jc-Nou"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="1eN-yn-5dz" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="1084" y="-365.66716641679164"/>
- </scene>
- <!--ContactDetails-->
- <scene sceneID="Ugy-sC-V6n">
- <objects>
- <tableViewController storyboardIdentifier="meContactDetailsViewController" id="xtp-zM-Vgy" userLabel="ContactDetails" customClass="MeContactDetailsViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
- <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="NCO-Sz-pJi">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <view key="tableHeaderView" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" id="7lm-e6-Lka">
- <rect key="frame" x="0.0" y="0.0" width="375" height="270"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <stackView opaque="NO" contentMode="scaleAspectFit" axis="vertical" distribution="equalSpacing" alignment="center" spacing="10" translatesAutoresizingMaskIntoConstraints="NO" id="SxH-9O-pam">
- <rect key="frame" x="16" y="16" width="343" height="238"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="ZnY-6p-Dgu">
- <rect key="frame" x="71.5" y="0.0" width="200" height="200"/>
- <subviews>
- <imageView contentMode="scaleToFill" image="UnknownPerson" translatesAutoresizingMaskIntoConstraints="NO" id="bSk-bS-iIF">
- <rect key="frame" x="0.0" y="0.0" width="200" height="200"/>
- <constraints>
- <constraint firstAttribute="height" relation="lessThanOrEqual" constant="200" id="Ssb-3n-Uhj"/>
- <constraint firstAttribute="width" constant="200" id="TIH-27-HhN"/>
- <constraint firstAttribute="width" secondItem="bSk-bS-iIF" secondAttribute="height" multiplier="1:1" id="cjc-Jc-5zQ"/>
- </constraints>
- </imageView>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="WorkContact.png" translatesAutoresizingMaskIntoConstraints="NO" id="JMS-hZ-GH8">
- <rect key="frame" x="0.0" y="150" width="50" height="50"/>
- <constraints>
- <constraint firstAttribute="width" secondItem="JMS-hZ-GH8" secondAttribute="height" multiplier="1:1" id="yKt-QI-JEo"/>
- </constraints>
- </imageView>
- </subviews>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- <constraints>
- <constraint firstItem="JMS-hZ-GH8" firstAttribute="leading" secondItem="bSk-bS-iIF" secondAttribute="leading" id="3Xi-zL-BtM"/>
- <constraint firstItem="bSk-bS-iIF" firstAttribute="leading" secondItem="ZnY-6p-Dgu" secondAttribute="leading" id="Anr-w4-ZcS"/>
- <constraint firstItem="bSk-bS-iIF" firstAttribute="top" secondItem="ZnY-6p-Dgu" secondAttribute="top" id="By8-oE-P11"/>
- <constraint firstAttribute="trailing" secondItem="bSk-bS-iIF" secondAttribute="trailing" id="Hyx-84-fP2"/>
- <constraint firstItem="JMS-hZ-GH8" firstAttribute="width" secondItem="bSk-bS-iIF" secondAttribute="height" multiplier="1:4" id="Nzm-Rh-5aB"/>
- <constraint firstItem="JMS-hZ-GH8" firstAttribute="bottom" secondItem="bSk-bS-iIF" secondAttribute="bottom" id="d51-vM-cTI"/>
- <constraint firstAttribute="bottom" secondItem="bSk-bS-iIF" secondAttribute="bottom" id="vhj-Dl-P91"/>
- </constraints>
- </view>
- <stackView opaque="NO" contentMode="scaleToFill" alignment="center" spacing="5" translatesAutoresizingMaskIntoConstraints="NO" id="7bJ-wQ-2j3">
- <rect key="frame" x="131.5" y="216" width="80.5" height="22"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="749" verticalCompressionResistancePriority="749" text="First Last" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Kap-D0-eRe">
- <rect key="frame" x="0.0" y="0.0" width="80.5" height="22"/>
- <constraints>
- <constraint firstAttribute="height" constant="22" id="0mg-xw-Uq7"/>
- </constraints>
- <fontDescription key="fontDescription" style="UICTFontTextStyleTitle3"/>
- <nil key="highlightedColor"/>
- <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <size key="shadowOffset" width="0.0" height="1"/>
- </label>
- </subviews>
- </stackView>
- </subviews>
- </stackView>
- </subviews>
- <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstItem="SxH-9O-pam" firstAttribute="top" secondItem="7lm-e6-Lka" secondAttribute="top" constant="16" id="290-S0-n5b"/>
- <constraint firstAttribute="trailing" secondItem="SxH-9O-pam" secondAttribute="trailing" constant="16" id="6Kw-Br-kaO"/>
- <constraint firstItem="SxH-9O-pam" firstAttribute="leading" secondItem="7lm-e6-Lka" secondAttribute="leading" constant="16" id="UxX-Ah-yWE"/>
- <constraint firstAttribute="bottom" secondItem="SxH-9O-pam" secondAttribute="bottom" constant="16" id="VaZ-OU-Rct"/>
- </constraints>
- </view>
- <prototypes>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="IdentityCell" textLabel="IDl-ul-tY3" detailTextLabel="1F4-9N-fcI" style="IBUITableViewCellStyleValue1" id="86z-kQ-Unl">
- <rect key="frame" x="0.0" y="325.5" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="86z-kQ-Unl" id="hUI-6c-KFf">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Threema ID" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="IDl-ul-tY3">
- <rect key="frame" x="16" y="12" width="88" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" multipleTouchEnabled="YES" tag="100" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="1F4-9N-fcI" customClass="CopyLabel" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="315" y="12" width="44" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="PublicNicknameCell" textLabel="cdG-mM-SxM" detailTextLabel="pQe-OG-f3M" style="IBUITableViewCellStyleValue1" id="hNM-pD-Zyf">
- <rect key="frame" x="0.0" y="369" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="hNM-pD-Zyf" id="Qz4-3b-EE6">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Nickname" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="cdG-mM-SxM">
- <rect key="frame" x="16" y="12" width="76" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" multipleTouchEnabled="YES" tag="101" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="pQe-OG-f3M">
- <rect key="frame" x="315" y="12" width="44" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="KeyFingerprintCell" id="qSb-Du-RMH" customClass="KeyFingerprintCell" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="0.0" y="412.5" width="375" height="69"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="qSb-Du-RMH" id="MkE-G6-aMt">
- <rect key="frame" x="0.0" y="0.0" width="375" height="69"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" verticalCompressionResistancePriority="751" ambiguous="YES" preservesSuperviewLayoutMargins="YES" text="Key Fingerprint" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Uhh-8Z-kvD">
- <rect key="frame" x="16" y="14" width="343" height="14"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" ambiguous="YES" preservesSuperviewLayoutMargins="YES" text="00000000000000000000000000000000" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="15d-ji-q7j" customClass="CopyLabel" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="16" y="30" width="343" height="0.0"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
- <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="Uhh-8Z-kvD" firstAttribute="leading" secondItem="MkE-G6-aMt" secondAttribute="leadingMargin" id="2Gv-f3-MQe"/>
- <constraint firstItem="15d-ji-q7j" firstAttribute="top" secondItem="Uhh-8Z-kvD" secondAttribute="bottom" constant="2" id="3Cb-e6-eqK"/>
- <constraint firstAttribute="trailingMargin" secondItem="15d-ji-q7j" secondAttribute="trailing" id="Ej7-7v-Xt9"/>
- <constraint firstItem="15d-ji-q7j" firstAttribute="leading" secondItem="MkE-G6-aMt" secondAttribute="leadingMargin" id="EzS-T9-oe7"/>
- <constraint firstItem="Uhh-8Z-kvD" firstAttribute="top" secondItem="MkE-G6-aMt" secondAttribute="topMargin" constant="3" id="OAo-Lw-T28"/>
- <constraint firstAttribute="trailingMargin" secondItem="Uhh-8Z-kvD" secondAttribute="trailing" id="gZF-B2-19B"/>
- <constraint firstAttribute="bottomMargin" secondItem="15d-ji-q7j" secondAttribute="bottom" constant="3" id="lmp-K4-3EN"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <outlet property="fingerprintLabel" destination="15d-ji-q7j" id="8aI-5l-hHp"/>
- <outlet property="fingerprintValueLabel" destination="15d-ji-q7j" id="wlI-Mz-CHE"/>
- </connections>
- </tableViewCell>
- </prototypes>
- <sections/>
- <connections>
- <outlet property="dataSource" destination="xtp-zM-Vgy" id="jOf-i1-O5o"/>
- <outlet property="delegate" destination="xtp-zM-Vgy" id="phP-45-h15"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="First Last" largeTitleDisplayMode="never" id="AEe-kf-VNo"/>
- <connections>
- <outlet property="headerView" destination="7lm-e6-Lka" id="71G-O7-WQr"/>
- <outlet property="imageView" destination="bSk-bS-iIF" id="DeU-Mk-eiU"/>
- <outlet property="nameLabel" destination="Kap-D0-eRe" id="KYL-xd-7TC"/>
- <outlet property="threemaTypeIcon" destination="JMS-hZ-GH8" id="hNW-CO-jfH"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="zPr-xd-TOK" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-25" y="-761"/>
- </scene>
- <!--Contact Group Membership View Controller-->
- <scene sceneID="FZb-Rm-ih3">
- <objects>
- <tableViewController storyboardIdentifier="contactGroupMembershipViewController" id="NM5-wF-syo" customClass="ContactGroupMembershipViewController" sceneMemberID="viewController">
- <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="O26-dn-MxF">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ContactGroupCell" rowHeight="60" id="1Pw-XH-5MU" userLabel="PickerGroupCell" customClass="ContactGroupCell">
- <rect key="frame" x="0.0" y="28" width="375" height="60"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="1Pw-XH-5MU" id="AmC-vC-feO">
- <rect key="frame" x="0.0" y="0.0" width="375" height="60"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" verticalHuggingPriority="251" verticalCompressionResistancePriority="751" text="Group Name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Y4G-EW-Gux">
- <rect key="frame" x="64" y="11" width="295" height="20.5"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="UnknownPerson" translatesAutoresizingMaskIntoConstraints="NO" id="Efb-rW-izl">
- <rect key="frame" x="16" y="10" width="40" height="40"/>
- <constraints>
- <constraint firstAttribute="width" constant="40" id="5pv-wW-zBA"/>
- <constraint firstAttribute="height" constant="40" id="C2k-2P-bCY"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </imageView>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Creator name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="NUe-Ut-5hr">
- <rect key="frame" x="64" y="35.5" width="82.5" height="12"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
- <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="# members" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="9H6-Np-ifa">
- <rect key="frame" x="290" y="31.5" width="69" height="16"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
- <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="Efb-rW-izl" firstAttribute="leading" secondItem="AmC-vC-feO" secondAttribute="leadingMargin" id="0cT-6n-S8x"/>
- <constraint firstItem="NUe-Ut-5hr" firstAttribute="leading" secondItem="Efb-rW-izl" secondAttribute="trailing" constant="8" id="0hr-mx-ibB"/>
- <constraint firstAttribute="trailingMargin" secondItem="Y4G-EW-Gux" secondAttribute="trailing" id="294-lZ-3Gh"/>
- <constraint firstItem="Efb-rW-izl" firstAttribute="top" relation="greaterThanOrEqual" secondItem="AmC-vC-feO" secondAttribute="top" constant="2" id="423-WF-XJQ"/>
- <constraint firstAttribute="bottom" relation="greaterThanOrEqual" secondItem="Efb-rW-izl" secondAttribute="bottom" constant="2" id="5ZO-ee-hKb"/>
- <constraint firstAttribute="bottomMargin" secondItem="NUe-Ut-5hr" secondAttribute="bottom" constant="1.5" id="6gX-o7-3bA"/>
- <constraint firstItem="NUe-Ut-5hr" firstAttribute="bottom" secondItem="9H6-Np-ifa" secondAttribute="bottom" id="9N0-A7-wNH"/>
- <constraint firstAttribute="trailingMargin" secondItem="9H6-Np-ifa" secondAttribute="trailing" id="FhY-9h-iQP"/>
- <constraint firstItem="Y4G-EW-Gux" firstAttribute="leading" secondItem="Efb-rW-izl" secondAttribute="trailing" constant="8" id="NTP-NH-LiB"/>
- <constraint firstItem="9H6-Np-ifa" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="NUe-Ut-5hr" secondAttribute="trailing" constant="8" symbolic="YES" id="TBO-aQ-58g"/>
- <constraint firstItem="Efb-rW-izl" firstAttribute="leading" secondItem="AmC-vC-feO" secondAttribute="leadingMargin" id="WNh-pX-2pa"/>
- <constraint firstItem="Y4G-EW-Gux" firstAttribute="top" secondItem="AmC-vC-feO" secondAttribute="topMargin" id="cUN-IC-E40"/>
- <constraint firstItem="NUe-Ut-5hr" firstAttribute="top" secondItem="Y4G-EW-Gux" secondAttribute="bottom" constant="4" id="h1s-To-eLt"/>
- <constraint firstItem="Efb-rW-izl" firstAttribute="centerY" secondItem="AmC-vC-feO" secondAttribute="centerY" id="pTo-wC-Mf7"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <outlet property="avatarImage" destination="Efb-rW-izl" id="CK1-gh-Y3c"/>
- <outlet property="countMembersLabel" destination="9H6-Np-ifa" id="NMF-fM-8Au"/>
- <outlet property="creatorNameLabel" destination="NUe-Ut-5hr" id="hy2-s0-HJg"/>
- <outlet property="nameLabel" destination="Y4G-EW-Gux" id="nPY-L4-bYr"/>
- </connections>
- </tableViewCell>
- </prototypes>
- <connections>
- <outlet property="dataSource" destination="NM5-wF-syo" id="AZ8-ou-ky9"/>
- <outlet property="delegate" destination="NM5-wF-syo" id="5L3-fm-JRE"/>
- </connections>
- </tableView>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="cSz-CB-Ik8" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="3491.2000000000003" y="-313.04347826086962"/>
- </scene>
- <!--Edit Contact-->
- <scene sceneID="VNo-4r-iGn">
- <objects>
- <tableViewController storyboardIdentifier="EditContactViewController" id="B4x-zQ-paX" customClass="EditContactViewController" sceneMemberID="viewController">
- <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="9B2-uJ-PYl">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <sections>
- <tableViewSection id="bCA-fU-mLq">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="102" id="rfi-kc-yYx">
- <rect key="frame" x="0.0" y="17.5" width="375" height="102"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="rfi-kc-yYx" id="1Aq-Ag-ucy">
- <rect key="frame" x="0.0" y="0.0" width="375" height="102"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="zbC-wn-7Hd" customClass="EditableAvatarView">
- <rect key="frame" x="16" y="9" width="84" height="84"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="width" constant="84" id="5vr-sb-vKG"/>
- <constraint firstAttribute="height" constant="84" id="7Ms-40-wPC"/>
- </constraints>
- </view>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="4LU-0A-V3c">
- <rect key="frame" x="110" y="26.5" width="249" height="49"/>
- <subviews>
- <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="Last name" adjustsFontForContentSizeCategory="YES" minimumFontSize="17" clearButtonMode="whileEditing" translatesAutoresizingMaskIntoConstraints="NO" id="wpY-cw-D2O">
- <rect key="frame" x="0.0" y="27" width="249" height="22"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <textInputTraits key="textInputTraits" autocapitalizationType="words"/>
- </textField>
- <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="First name" adjustsFontForContentSizeCategory="YES" minimumFontSize="17" clearButtonMode="whileEditing" translatesAutoresizingMaskIntoConstraints="NO" id="uv8-Zw-8w0">
- <rect key="frame" x="0.0" y="0.0" width="249" height="22"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <textInputTraits key="textInputTraits" autocapitalizationType="words"/>
- </textField>
- </subviews>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstAttribute="bottom" secondItem="wpY-cw-D2O" secondAttribute="bottom" id="1fJ-GW-xnl"/>
- <constraint firstAttribute="trailing" secondItem="uv8-Zw-8w0" secondAttribute="trailing" id="3zO-pI-ynZ"/>
- <constraint firstItem="wpY-cw-D2O" firstAttribute="leading" secondItem="4LU-0A-V3c" secondAttribute="leading" id="H0u-WG-PLe"/>
- <constraint firstItem="uv8-Zw-8w0" firstAttribute="top" secondItem="4LU-0A-V3c" secondAttribute="top" id="JEV-28-C0H"/>
- <constraint firstItem="wpY-cw-D2O" firstAttribute="top" secondItem="uv8-Zw-8w0" secondAttribute="bottom" constant="5" id="Nqm-hE-DvH"/>
- <constraint firstItem="uv8-Zw-8w0" firstAttribute="leading" secondItem="4LU-0A-V3c" secondAttribute="leading" id="Xdm-wi-J9Y"/>
- <constraint firstAttribute="trailing" secondItem="wpY-cw-D2O" secondAttribute="trailing" id="nmL-Ik-VAk"/>
- </constraints>
- </view>
- </subviews>
- <constraints>
- <constraint firstAttribute="trailingMargin" secondItem="4LU-0A-V3c" secondAttribute="trailing" id="1nb-Qv-6gW"/>
- <constraint firstItem="4LU-0A-V3c" firstAttribute="centerY" secondItem="1Aq-Ag-ucy" secondAttribute="centerY" id="FV9-p2-cL6"/>
- <constraint firstAttribute="bottom" relation="greaterThanOrEqual" secondItem="zbC-wn-7Hd" secondAttribute="bottom" constant="9" id="HWE-z5-eh0"/>
- <constraint firstItem="zbC-wn-7Hd" firstAttribute="leading" secondItem="1Aq-Ag-ucy" secondAttribute="leadingMargin" id="WMl-3z-6zQ"/>
- <constraint firstItem="zbC-wn-7Hd" firstAttribute="top" relation="greaterThanOrEqual" secondItem="1Aq-Ag-ucy" secondAttribute="top" constant="9" id="imf-cd-3SI"/>
- <constraint firstItem="4LU-0A-V3c" firstAttribute="leading" secondItem="zbC-wn-7Hd" secondAttribute="trailing" constant="10" id="t6d-Ex-dEk"/>
- <constraint firstItem="zbC-wn-7Hd" firstAttribute="centerY" secondItem="1Aq-Ag-ucy" secondAttribute="centerY" id="x4V-7w-m1m"/>
- </constraints>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="B4x-zQ-paX" id="emW-0o-qYZ"/>
- <outlet property="delegate" destination="B4x-zQ-paX" id="w1S-2u-X36"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Edit Contact" id="Leg-Pw-PQ8"/>
- <connections>
- <outlet property="avatarView" destination="zbC-wn-7Hd" id="RyT-AV-aEz"/>
- <outlet property="firstNameTextField" destination="uv8-Zw-8w0" id="5Bd-rI-V3y"/>
- <outlet property="lastNameTextField" destination="wpY-cw-D2O" id="khN-3B-geE"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="b8z-Hz-rif" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="4380" y="2766.5667166416792"/>
- </scene>
- <!--Choose contact-->
- <scene sceneID="Ixe-lK-McQ">
- <objects>
- <viewController id="OvB-ud-WFO" customClass="ContactPickerViewController" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" id="976-Ac-Msp">
- <rect key="frame" x="0.0" y="0.0" width="375" height="623"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <subviews>
- <tableView opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="5iW-dy-4an">
- <rect key="frame" x="0.0" y="0.0" width="375" height="623"/>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ContactCell" id="fIg-c6-rDT" customClass="ContactCell">
- <rect key="frame" x="0.0" y="28" width="375" height="60.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="fIg-c6-rDT" id="ayi-jk-XZC">
- <rect key="frame" x="0.0" y="0.0" width="375" height="60.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="UnknownPerson" translatesAutoresizingMaskIntoConstraints="NO" id="3y7-fF-JLx">
- <rect key="frame" x="16" y="10.5" width="40" height="40"/>
- <constraints>
- <constraint firstAttribute="width" constant="40" id="Glk-ZE-GoY"/>
- <constraint firstAttribute="height" constant="40" id="LNn-ec-Mkm"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </imageView>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="249" verticalHuggingPriority="251" horizontalCompressionResistancePriority="749" verticalCompressionResistancePriority="751" text="MacBook Office 10 7" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="lrl-UM-94p" customClass="ContactNameLabel">
- <rect key="frame" x="64" y="11" width="163.5" height="20.5"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification32-2.png" translatesAutoresizingMaskIntoConstraints="NO" id="lOu-si-XPC">
- <rect key="frame" x="327" y="17.5" width="32" height="8"/>
- <constraints>
- <constraint firstAttribute="height" constant="8" id="Qqm-hx-ZeC"/>
- <constraint firstAttribute="width" constant="32" id="jHn-tE-Gm7"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="-5" minY="0.0" maxX="5" maxY="0.0"/>
- </imageView>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="101" contentMode="left" text="Nickname" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="tr2-Ia-imu" customClass="SSLabel">
- <rect key="frame" x="64" y="31.5" width="60.5" height="16.5"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
- <color key="textColor" red="0.49803921569999998" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.50196078430000002" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="253" horizontalCompressionResistancePriority="753" text="IDENTITY" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="NFg-lg-c4C">
- <rect key="frame" x="308" y="34" width="51" height="14"/>
- <inset key="insetFor6xAndEarlier" minX="-5" minY="0.0" maxX="5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleCaption2"/>
- <color key="textColor" red="0.49803921569999998" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.50196078430000002" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="WorkContact.png" translatesAutoresizingMaskIntoConstraints="NO" id="U20-ts-c3j">
- <rect key="frame" x="16" y="36.5" width="14" height="14"/>
- <constraints>
- <constraint firstAttribute="width" constant="14" id="KNM-pk-klf"/>
- <constraint firstAttribute="height" constant="14" id="e6r-Ul-1RL"/>
- </constraints>
- </imageView>
- </subviews>
- <constraints>
- <constraint firstItem="3y7-fF-JLx" firstAttribute="centerY" secondItem="ayi-jk-XZC" secondAttribute="centerY" id="2Og-JH-fyj"/>
- <constraint firstItem="tr2-Ia-imu" firstAttribute="top" secondItem="lrl-UM-94p" secondAttribute="bottom" id="55S-MT-oPo"/>
- <constraint firstAttribute="bottomMargin" secondItem="tr2-Ia-imu" secondAttribute="bottom" constant="1.5" id="Fca-jw-iar"/>
- <constraint firstItem="3y7-fF-JLx" firstAttribute="top" relation="greaterThanOrEqual" secondItem="ayi-jk-XZC" secondAttribute="top" constant="2" id="GFH-9S-QcV"/>
- <constraint firstAttribute="bottom" relation="greaterThanOrEqual" secondItem="3y7-fF-JLx" secondAttribute="bottom" constant="2" id="I3r-UV-EYc"/>
- <constraint firstItem="NFg-lg-c4C" firstAttribute="bottom" secondItem="tr2-Ia-imu" secondAttribute="bottom" id="LvN-rA-byN"/>
- <constraint firstItem="U20-ts-c3j" firstAttribute="leading" secondItem="3y7-fF-JLx" secondAttribute="leading" id="RJl-gm-NDc"/>
- <constraint firstItem="U20-ts-c3j" firstAttribute="bottom" secondItem="3y7-fF-JLx" secondAttribute="bottom" id="Rna-Cg-whS"/>
- <constraint firstItem="lrl-UM-94p" firstAttribute="top" secondItem="ayi-jk-XZC" secondAttribute="topMargin" id="Sns-Xs-HZm"/>
- <constraint firstItem="lOu-si-XPC" firstAttribute="centerY" secondItem="lrl-UM-94p" secondAttribute="centerY" id="Y9y-s0-dWd"/>
- <constraint firstItem="NFg-lg-c4C" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="lrl-UM-94p" secondAttribute="trailing" constant="5" id="aDN-KL-If7"/>
- <constraint firstItem="NFg-lg-c4C" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="tr2-Ia-imu" secondAttribute="trailing" constant="5" id="eEG-1A-f90"/>
- <constraint firstItem="tr2-Ia-imu" firstAttribute="leading" secondItem="3y7-fF-JLx" secondAttribute="trailing" constant="8" id="fA3-bc-xU5"/>
- <constraint firstItem="3y7-fF-JLx" firstAttribute="leading" secondItem="ayi-jk-XZC" secondAttribute="leadingMargin" id="hmk-CC-pBn"/>
- <constraint firstItem="lOu-si-XPC" firstAttribute="trailing" secondItem="ayi-jk-XZC" secondAttribute="trailingMargin" id="j5v-lS-EQs"/>
- <constraint firstItem="NFg-lg-c4C" firstAttribute="trailing" secondItem="ayi-jk-XZC" secondAttribute="trailingMargin" id="mLQ-36-i6u"/>
- <constraint firstItem="lrl-UM-94p" firstAttribute="leading" secondItem="3y7-fF-JLx" secondAttribute="trailing" constant="8" id="xCq-7C-2uc"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <outlet property="contactImage" destination="3y7-fF-JLx" id="43H-vD-Ohk"/>
- <outlet property="identityLabel" destination="NFg-lg-c4C" id="Dqh-P2-sqB"/>
- <outlet property="nameLabel" destination="lrl-UM-94p" id="nid-ek-C2D"/>
- <outlet property="nicknameLabel" destination="tr2-Ia-imu" id="RN5-gF-vPC"/>
- <outlet property="threemaTypeIcon" destination="U20-ts-c3j" id="Rsq-vu-i6S"/>
- <outlet property="verificationLevel" destination="lOu-si-XPC" id="nlb-3F-7no"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="GroupCell" id="ZbD-YV-ZCh" customClass="GroupCell">
- <rect key="frame" x="0.0" y="88.5" width="375" height="64.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="ZbD-YV-ZCh" id="99g-HH-Dbc">
- <rect key="frame" x="0.0" y="0.0" width="375" height="64.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" verticalHuggingPriority="251" verticalCompressionResistancePriority="751" text="Group Name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="VFn-jg-cfh">
- <rect key="frame" x="64" y="11" width="295" height="20.5"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Group creator" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="FaC-iq-fy4">
- <rect key="frame" x="64" y="35.5" width="84" height="16.5"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
- <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="UnknownPerson" translatesAutoresizingMaskIntoConstraints="NO" id="tr3-GZ-bGs">
- <rect key="frame" x="16" y="12.5" width="40" height="40"/>
- <constraints>
- <constraint firstAttribute="height" constant="40" id="pPQ-K4-Rrn"/>
- <constraint firstAttribute="width" constant="40" id="t5x-3u-Uwp"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </imageView>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="# members" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="pk3-Z5-GK7">
- <rect key="frame" x="290" y="36" width="69" height="16"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
- <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="tr3-GZ-bGs" firstAttribute="centerY" secondItem="99g-HH-Dbc" secondAttribute="centerY" id="3KA-8G-A8V"/>
- <constraint firstItem="VFn-jg-cfh" firstAttribute="leading" secondItem="tr3-GZ-bGs" secondAttribute="trailing" constant="8" id="89J-8c-SCY"/>
- <constraint firstItem="tr3-GZ-bGs" firstAttribute="top" relation="greaterThanOrEqual" secondItem="99g-HH-Dbc" secondAttribute="top" constant="2" id="8ME-cf-hoP"/>
- <constraint firstAttribute="bottomMargin" secondItem="FaC-iq-fy4" secondAttribute="bottom" constant="1.5" id="CeB-r0-N1V"/>
- <constraint firstItem="tr3-GZ-bGs" firstAttribute="leading" secondItem="99g-HH-Dbc" secondAttribute="leadingMargin" id="EQm-Bi-Nwf"/>
- <constraint firstItem="FaC-iq-fy4" firstAttribute="top" secondItem="VFn-jg-cfh" secondAttribute="bottom" constant="4" id="IcH-Ry-SQ9"/>
- <constraint firstAttribute="bottom" relation="greaterThanOrEqual" secondItem="tr3-GZ-bGs" secondAttribute="bottom" constant="2" id="Nww-dX-cp3"/>
- <constraint firstItem="pk3-Z5-GK7" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="FaC-iq-fy4" secondAttribute="trailing" constant="8" symbolic="YES" id="P7Y-Om-tni"/>
- <constraint firstAttribute="trailingMargin" secondItem="pk3-Z5-GK7" secondAttribute="trailing" id="WOL-bz-0S3"/>
- <constraint firstAttribute="trailingMargin" secondItem="VFn-jg-cfh" secondAttribute="trailing" id="aL7-rc-Sb8"/>
- <constraint firstItem="tr3-GZ-bGs" firstAttribute="leading" secondItem="99g-HH-Dbc" secondAttribute="leadingMargin" id="dQf-O7-1jI"/>
- <constraint firstItem="VFn-jg-cfh" firstAttribute="top" secondItem="99g-HH-Dbc" secondAttribute="topMargin" id="pgV-OF-aJN"/>
- <constraint firstItem="FaC-iq-fy4" firstAttribute="bottom" secondItem="pk3-Z5-GK7" secondAttribute="bottom" id="qBn-wy-b6E"/>
- <constraint firstItem="FaC-iq-fy4" firstAttribute="leading" secondItem="tr3-GZ-bGs" secondAttribute="trailing" constant="8" id="w1T-ua-OGE"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <outlet property="countMemberLabel" destination="pk3-Z5-GK7" id="1YU-g3-fA5"/>
- <outlet property="creatorLabel" destination="FaC-iq-fy4" id="dd5-hP-e6J"/>
- <outlet property="groupImage" destination="tr3-GZ-bGs" id="5YH-7b-L6T"/>
- <outlet property="groupNameLabel" destination="VFn-jg-cfh" id="jVD-Xn-cTq"/>
- </connections>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="CreateGroupCell" textLabel="JLU-Sq-XK3" style="IBUITableViewCellStyleDefault" id="lMr-gE-rGs" customClass="CreateGroupCell">
- <rect key="frame" x="0.0" y="153" width="375" height="49.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="lMr-gE-rGs" id="j69-lB-yrj">
- <rect key="frame" x="0.0" y="0.0" width="375" height="49.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Create new group" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="JLU-Sq-XK3">
- <rect key="frame" x="16" y="0.0" width="343" height="49.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleTitle3"/>
- <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="titleLabel" destination="JLU-Sq-XK3" id="uHF-On-9bL"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="CompanyDirectoryCell" rowHeight="60" id="xWj-eT-KEf" customClass="CompanyDirectoryCell" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="0.0" y="202.5" width="375" height="60"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="xWj-eT-KEf" id="OpJ-ps-QHm">
- <rect key="frame" x="0.0" y="0.0" width="348" height="60"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="Asterisk" translatesAutoresizingMaskIntoConstraints="NO" id="w7r-l5-58G">
- <rect key="frame" x="16" y="10" width="40" height="40"/>
- <constraints>
- <constraint firstAttribute="height" constant="40" id="OAe-aJ-T9j"/>
- <constraint firstAttribute="width" constant="40" id="f4T-ct-zOY"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </imageView>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="249" verticalHuggingPriority="251" horizontalCompressionResistancePriority="749" verticalCompressionResistancePriority="751" text="Company Directory" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="akQ-gG-9WP" customClass="ContactNameLabel">
- <rect key="frame" x="64" y="11" width="154" height="20.5"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="101" contentMode="left" text="Search for employees" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="YKn-tL-59L" customClass="SSLabel">
- <rect key="frame" x="64" y="31.5" width="131.5" height="16"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
- <color key="textColor" red="0.49803921569999998" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.50196078430000002" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="w7r-l5-58G" firstAttribute="centerY" secondItem="OpJ-ps-QHm" secondAttribute="centerY" id="0uA-yx-SPt"/>
- <constraint firstAttribute="bottom" relation="greaterThanOrEqual" secondItem="w7r-l5-58G" secondAttribute="bottom" constant="2" id="1A9-XC-0LK"/>
- <constraint firstItem="akQ-gG-9WP" firstAttribute="top" secondItem="OpJ-ps-QHm" secondAttribute="topMargin" id="4bS-TQ-GOe"/>
- <constraint firstAttribute="bottomMargin" secondItem="YKn-tL-59L" secondAttribute="bottom" constant="1.5" id="9LY-zO-Nc7"/>
- <constraint firstItem="akQ-gG-9WP" firstAttribute="leading" secondItem="w7r-l5-58G" secondAttribute="trailing" constant="8" id="B79-5m-5vG"/>
- <constraint firstItem="YKn-tL-59L" firstAttribute="top" secondItem="akQ-gG-9WP" secondAttribute="bottom" id="Gkz-jv-fk7"/>
- <constraint firstItem="YKn-tL-59L" firstAttribute="leading" secondItem="w7r-l5-58G" secondAttribute="trailing" constant="8" id="Sui-0U-e9t"/>
- <constraint firstItem="w7r-l5-58G" firstAttribute="top" relation="greaterThanOrEqual" secondItem="OpJ-ps-QHm" secondAttribute="top" constant="2" id="p3n-q9-mig"/>
- <constraint firstItem="w7r-l5-58G" firstAttribute="leading" secondItem="OpJ-ps-QHm" secondAttribute="leadingMargin" id="pYS-OF-mGg"/>
- </constraints>
- </tableViewCellContentView>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <connections>
- <outlet property="companyAvatar" destination="w7r-l5-58G" id="ZkY-kz-clc"/>
- <outlet property="descriptionLabel" destination="YKn-tL-59L" id="XMj-yM-6SA"/>
- <outlet property="titleLabel" destination="akQ-gG-9WP" id="Ybk-dZ-mB3"/>
- </connections>
- </tableViewCell>
- </prototypes>
- <connections>
- <outlet property="dataSource" destination="OvB-ud-WFO" id="3bF-1n-nf4"/>
- <outlet property="delegate" destination="OvB-ud-WFO" id="IGI-aC-z3S"/>
- </connections>
- </tableView>
- </subviews>
- <viewLayoutGuide key="safeArea" id="EDR-v1-M6d"/>
- <constraints>
- <constraint firstItem="5iW-dy-4an" firstAttribute="leading" secondItem="EDR-v1-M6d" secondAttribute="leading" id="3fj-Lf-dsC"/>
- <constraint firstItem="5iW-dy-4an" firstAttribute="bottom" secondItem="EDR-v1-M6d" secondAttribute="bottom" id="9Hs-uS-bWY"/>
- <constraint firstItem="5iW-dy-4an" firstAttribute="top" secondItem="EDR-v1-M6d" secondAttribute="top" id="K23-gB-JnG"/>
- <constraint firstItem="5iW-dy-4an" firstAttribute="trailing" secondItem="EDR-v1-M6d" secondAttribute="trailing" id="tlD-Bz-st2"/>
- </constraints>
- </view>
- <extendedEdge key="edgesForExtendedLayout"/>
- <navigationItem key="navigationItem" title="Choose contact" id="cNq-Pt-Uma">
- <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="j0Z-qX-yv0">
- <connections>
- <action selector="cancelAction:" destination="OvB-ud-WFO" id="ekI-B1-O1R"/>
- </connections>
- </barButtonItem>
- <segmentedControl key="titleView" opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="top" segmentControlStyle="bar" selectedSegmentIndex="0" id="9mW-FX-ba3">
- <rect key="frame" x="107" y="6" width="161" height="32"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <segments>
- <segment title="" image="Contact"/>
- <segment title="" image="Group"/>
- </segments>
- <connections>
- <action selector="segmentedControlChanged:" destination="OvB-ud-WFO" eventType="valueChanged" id="4yc-4d-osa"/>
- </connections>
- </segmentedControl>
- <barButtonItem key="rightBarButtonItem" enabled="NO" style="done" systemItem="done" id="ddH-MT-HLn"/>
- </navigationItem>
- <connections>
- <outlet property="segmentedControl" destination="9mW-FX-ba3" id="lyQ-bl-hSC"/>
- <outlet property="tableView" destination="5iW-dy-4an" id="u72-fo-6AJ"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="mXW-PO-p2r" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="3494" y="2069"/>
- </scene>
- <!--Messages-->
- <scene sceneID="JMs-VF-NWu">
- <objects>
- <navigationController storyboardIdentifier="chatNavigationController" id="4Fs-j8-Z1S" customClass="ChatNavigationController" sceneMemberID="viewController">
- <tabBarItem key="tabBarItem" title="Messages" image="TabBar-Chats" id="nZg-gf-uED"/>
- <toolbarItems/>
- <navigationBar key="navigationBar" contentMode="scaleToFill" largeTitles="YES" id="3xP-bT-Tja" customClass="StatusNavigationBar">
- <rect key="frame" x="0.0" y="0.0" width="375" height="96"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- <nil name="viewControllers"/>
- <connections>
- <segue destination="Kji-Zw-ER6" kind="relationship" relationship="rootViewController" id="6Jn-Ta-Ldg"/>
- </connections>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="n2J-3l-9bm" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-2785.6000000000004" y="417.39130434782612"/>
- </scene>
- <!--New Contact-->
- <scene sceneID="VLu-R9-fjo">
- <objects>
- <tableViewController id="bcN-Ct-OaD" customClass="NewScannedContactViewController" sceneMemberID="viewController">
- <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="Bmo-Py-2FX">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <view key="tableHeaderView" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" id="mDw-g7-tCz">
- <rect key="frame" x="0.0" y="0.0" width="375" height="275"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <stackView opaque="NO" contentMode="scaleAspectFit" axis="vertical" distribution="equalSpacing" alignment="center" spacing="10" translatesAutoresizingMaskIntoConstraints="NO" id="vpD-bR-GcW">
- <rect key="frame" x="16" y="16" width="343" height="243"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="tQ5-LZ-OQX">
- <rect key="frame" x="71.5" y="0.0" width="200" height="200"/>
- <subviews>
- <imageView contentMode="scaleToFill" image="UnknownPerson" translatesAutoresizingMaskIntoConstraints="NO" id="ViT-nH-bX9">
- <rect key="frame" x="0.0" y="0.0" width="200" height="200"/>
- <constraints>
- <constraint firstAttribute="height" relation="lessThanOrEqual" constant="200" id="ETf-AX-E6V"/>
- <constraint firstAttribute="width" constant="200" id="Pss-OC-Dod"/>
- <constraint firstAttribute="width" secondItem="ViT-nH-bX9" secondAttribute="height" multiplier="1:1" id="o3G-d3-75T"/>
- </constraints>
- </imageView>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="WorkContact.png" translatesAutoresizingMaskIntoConstraints="NO" id="18I-qp-Ree">
- <rect key="frame" x="0.0" y="150" width="50" height="50"/>
- <constraints>
- <constraint firstAttribute="width" secondItem="18I-qp-Ree" secondAttribute="height" multiplier="1:1" id="xsW-9D-muL"/>
- </constraints>
- </imageView>
- </subviews>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="ViT-nH-bX9" secondAttribute="trailing" id="7GN-vN-s2r"/>
- <constraint firstItem="18I-qp-Ree" firstAttribute="width" secondItem="ViT-nH-bX9" secondAttribute="height" multiplier="1:4" id="9hI-6U-qcz"/>
- <constraint firstItem="ViT-nH-bX9" firstAttribute="top" secondItem="tQ5-LZ-OQX" secondAttribute="top" id="Rhe-4i-sFH"/>
- <constraint firstAttribute="bottom" secondItem="ViT-nH-bX9" secondAttribute="bottom" id="UwJ-AP-3Lm"/>
- <constraint firstItem="18I-qp-Ree" firstAttribute="bottom" secondItem="ViT-nH-bX9" secondAttribute="bottom" id="aTe-Xf-1Fw"/>
- <constraint firstItem="18I-qp-Ree" firstAttribute="leading" secondItem="ViT-nH-bX9" secondAttribute="leading" id="dI3-9f-J6o"/>
- <constraint firstItem="ViT-nH-bX9" firstAttribute="leading" secondItem="tQ5-LZ-OQX" secondAttribute="leading" id="kzf-vJ-aZ5"/>
- </constraints>
- </view>
- <stackView opaque="NO" contentMode="scaleToFill" alignment="center" spacing="5" translatesAutoresizingMaskIntoConstraints="NO" id="G98-du-wlx">
- <rect key="frame" x="118" y="221" width="107.5" height="22"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="749" verticalCompressionResistancePriority="749" text="First Last" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="k43-1S-VjC">
- <rect key="frame" x="0.0" y="0.0" width="80.5" height="22"/>
- <constraints>
- <constraint firstAttribute="height" constant="22" id="AGA-dV-0J5"/>
- </constraints>
- <fontDescription key="fontDescription" style="UICTFontTextStyleTitle3"/>
- <nil key="highlightedColor"/>
- <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <size key="shadowOffset" width="0.0" height="1"/>
- </label>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="9Rd-Zb-XJ8">
- <rect key="frame" x="85.5" y="0.0" width="22" height="22"/>
- <state key="normal" image="Edit"/>
- <connections>
- <action selector="editContact:" destination="bcN-Ct-OaD" eventType="touchUpInside" id="zb1-hL-Vct"/>
- </connections>
- </button>
- </subviews>
- </stackView>
- </subviews>
- </stackView>
- </subviews>
- <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstItem="vpD-bR-GcW" firstAttribute="top" secondItem="mDw-g7-tCz" secondAttribute="top" constant="16" id="E5X-Ve-iHV"/>
- <constraint firstAttribute="trailing" secondItem="vpD-bR-GcW" secondAttribute="trailing" constant="16" id="MGE-96-zEX"/>
- <constraint firstAttribute="bottom" secondItem="vpD-bR-GcW" secondAttribute="bottom" constant="16" id="Sgy-NI-YfV"/>
- <constraint firstItem="vpD-bR-GcW" firstAttribute="leading" secondItem="mDw-g7-tCz" secondAttribute="leading" constant="16" id="erj-Eo-nfR"/>
- </constraints>
- </view>
- <sections>
- <tableViewSection id="hid-mP-yqG">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="3zz-BI-IiZ" detailTextLabel="6GC-h6-PJ3" style="IBUITableViewCellStyleValue1" id="Cdn-Kp-IS7">
- <rect key="frame" x="0.0" y="292.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Cdn-Kp-IS7" id="hLi-10-QMB">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Threema ID" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="3zz-BI-IiZ">
- <rect key="frame" x="16" y="12" width="88" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="XXXXXXXX" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="6GC-h6-PJ3" customClass="CopyLabel">
- <rect key="frame" x="270" y="12" width="89" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="KeyFingerprintCell" id="Gxf-cF-d4l" customClass="KeyFingerprintCell" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="0.0" y="336.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="Gxf-cF-d4l" id="uEj-ph-AJF">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" verticalCompressionResistancePriority="751" preservesSuperviewLayoutMargins="YES" text="Key Fingerprint" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3r3-TQ-lzw">
- <rect key="frame" x="16" y="14" width="343" height="14"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" preservesSuperviewLayoutMargins="YES" text="00000000000000000000000000000000" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="sVW-vw-h0n" customClass="CopyLabel">
- <rect key="frame" x="16" y="30" width="343" height="0.0"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
- <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstAttribute="trailingMargin" secondItem="sVW-vw-h0n" secondAttribute="trailing" id="4P1-ST-xvV"/>
- <constraint firstItem="3r3-TQ-lzw" firstAttribute="top" secondItem="uEj-ph-AJF" secondAttribute="topMargin" constant="3" id="812-Yv-Uua"/>
- <constraint firstItem="sVW-vw-h0n" firstAttribute="top" secondItem="3r3-TQ-lzw" secondAttribute="bottom" constant="2" id="BUv-OK-phK"/>
- <constraint firstItem="sVW-vw-h0n" firstAttribute="leading" secondItem="uEj-ph-AJF" secondAttribute="leadingMargin" id="Gd3-Lh-QFU"/>
- <constraint firstItem="3r3-TQ-lzw" firstAttribute="leading" secondItem="uEj-ph-AJF" secondAttribute="leadingMargin" id="UPW-XZ-Zfn"/>
- <constraint firstAttribute="bottomMargin" secondItem="sVW-vw-h0n" secondAttribute="bottom" constant="3" id="oIz-G2-Vby"/>
- <constraint firstAttribute="trailingMargin" secondItem="3r3-TQ-lzw" secondAttribute="trailing" id="xGb-3f-7oC"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <outlet property="fingerprintLabel" destination="3r3-TQ-lzw" id="A9g-7K-lNN"/>
- <outlet property="fingerprintValueLabel" destination="sVW-vw-h0n" id="4Pd-BK-zw6"/>
- </connections>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="VerificationLevelCell" textLabel="LID-K1-9a6" style="IBUITableViewCellStyleDefault" id="fkw-wz-RH1" customClass="VerificationLevelCell" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="0.0" y="380.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="fkw-wz-RH1" id="nTN-Wd-vvJ">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Verification Level" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="LID-K1-9a6">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-2.png" translatesAutoresizingMaskIntoConstraints="NO" id="Wio-t3-LqW">
- <rect key="frame" x="163" y="17" width="49" height="11"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="Wio-t3-LqW" id="SwF-yM-rE0"/>
- <outlet property="levelImage" destination="Wio-t3-LqW" id="fqM-XR-HY0"/>
- <outlet property="titleLabel" destination="LID-K1-9a6" id="rKE-hc-Kwb"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection id="kqn-ag-dj2">
- <cells>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SendMessageCell" id="AhW-Jk-Nhy" customClass="ContactSendMessageCell" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="0.0" y="459.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="AhW-Jk-Nhy" id="rSz-Du-HpX">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="SendMessage" translatesAutoresizingMaskIntoConstraints="NO" id="vIQ-dZ-fF3">
- <rect key="frame" x="16" y="11" width="24" height="22"/>
- <constraints>
- <constraint firstAttribute="height" constant="22" id="DxM-Fi-rTx"/>
- <constraint firstAttribute="width" constant="24" id="Kcn-4t-fHp"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </imageView>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="751" text="Send Message" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="oGf-Sp-Z3O">
- <rect key="frame" x="56" y="11.5" width="303" height="21"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="vIQ-dZ-fF3" firstAttribute="centerY" secondItem="rSz-Du-HpX" secondAttribute="centerY" id="5N3-39-Fps"/>
- <constraint firstItem="vIQ-dZ-fF3" firstAttribute="leading" secondItem="rSz-Du-HpX" secondAttribute="leadingMargin" id="Dh7-uX-3LK"/>
- <constraint firstAttribute="trailingMargin" secondItem="oGf-Sp-Z3O" secondAttribute="trailing" id="VQt-f5-gYs"/>
- <constraint firstItem="oGf-Sp-Z3O" firstAttribute="leading" secondItem="vIQ-dZ-fF3" secondAttribute="trailing" constant="16" id="hvE-dh-sOS"/>
- <constraint firstItem="oGf-Sp-Z3O" firstAttribute="centerY" secondItem="rSz-Du-HpX" secondAttribute="centerY" id="wDM-7p-hVR"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <outlet property="sendMessageImageView" destination="vIQ-dZ-fF3" id="rI8-0L-4IK"/>
- <outlet property="sendMessageLabel" destination="oGf-Sp-Z3O" id="uhn-FF-qaI"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ThreemaCallCell" id="EyO-a3-ItH" customClass="ContactThreemaCallCell" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="0.0" y="503.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="EyO-a3-ItH" id="pQ2-zx-K5T">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="751" text="Threema Call" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="zj8-Bo-VYE">
- <rect key="frame" x="56" y="11.5" width="303" height="21"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ThreemaPhone" translatesAutoresizingMaskIntoConstraints="NO" id="6x7-qd-ShZ">
- <rect key="frame" x="16" y="9.5" width="25" height="25"/>
- <constraints>
- <constraint firstAttribute="height" constant="25" id="QxN-r5-4kJ"/>
- <constraint firstAttribute="width" constant="25" id="Uew-Qh-oPl"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </imageView>
- </subviews>
- <constraints>
- <constraint firstAttribute="trailingMargin" secondItem="zj8-Bo-VYE" secondAttribute="trailing" id="1YO-hX-QQb"/>
- <constraint firstItem="zj8-Bo-VYE" firstAttribute="centerY" secondItem="pQ2-zx-K5T" secondAttribute="centerY" id="GZ6-hm-rz8"/>
- <constraint firstItem="6x7-qd-ShZ" firstAttribute="centerY" secondItem="pQ2-zx-K5T" secondAttribute="centerY" id="QMe-oK-fds"/>
- <constraint firstItem="6x7-qd-ShZ" firstAttribute="leading" secondItem="pQ2-zx-K5T" secondAttribute="leadingMargin" id="swE-yK-Cje"/>
- <constraint firstItem="zj8-Bo-VYE" firstAttribute="leading" secondItem="6x7-qd-ShZ" secondAttribute="trailing" constant="15" id="zx5-Z7-GNZ"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <outlet property="threemaCallImageView" destination="6x7-qd-ShZ" id="y8l-0u-eEy"/>
- <outlet property="threemaCallLabel" destination="zj8-Bo-VYE" id="M88-Pc-Fow"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection id="CWO-cs-viZ">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="eOy-rx-zHg">
- <rect key="frame" x="0.0" y="582.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="eOy-rx-zHg" id="DXX-JY-KD5">
- <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Link to Contact" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="otC-iO-wzt">
- <rect key="frame" x="16" y="11" width="324" height="0.0"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" verticalHuggingPriority="251" verticalCompressionResistancePriority="751" text="John Doe" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="iJa-K2-2uc">
- <rect key="frame" x="16" y="18" width="324" height="15"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
- <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="iJa-K2-2uc" firstAttribute="top" secondItem="otC-iO-wzt" secondAttribute="bottom" constant="7" id="8Y9-zy-Vv7"/>
- <constraint firstAttribute="bottomMargin" secondItem="iJa-K2-2uc" secondAttribute="bottom" id="Bis-6l-IH6"/>
- <constraint firstItem="otC-iO-wzt" firstAttribute="top" secondItem="DXX-JY-KD5" secondAttribute="topMargin" id="Hen-dR-Lt6"/>
- <constraint firstItem="otC-iO-wzt" firstAttribute="leading" secondItem="DXX-JY-KD5" secondAttribute="leadingMargin" id="WKW-vz-S2M"/>
- <constraint firstItem="iJa-K2-2uc" firstAttribute="leading" secondItem="DXX-JY-KD5" secondAttribute="leadingMargin" id="vdd-WK-Ckg"/>
- <constraint firstAttribute="trailingMargin" secondItem="otC-iO-wzt" secondAttribute="trailing" id="vt8-gi-3Mh"/>
- <constraint firstAttribute="trailingMargin" secondItem="iJa-K2-2uc" secondAttribute="trailing" id="yZV-Ka-haU"/>
- </constraints>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="bcN-Ct-OaD" id="ipn-iV-5Ib"/>
- <outlet property="delegate" destination="bcN-Ct-OaD" id="EUy-ek-oeQ"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="New Contact" id="BAB-op-TwI">
- <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="azp-gT-Imw">
- <connections>
- <action selector="cancel:" destination="bcN-Ct-OaD" id="LV1-iu-ccE"/>
- </connections>
- </barButtonItem>
- <barButtonItem key="rightBarButtonItem" style="done" systemItem="save" id="yh8-Dg-I1o">
- <connections>
- <action selector="save:" destination="bcN-Ct-OaD" id="YqD-KL-VXp"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <connections>
- <outlet property="contactImage" destination="ViT-nH-bX9" id="eLd-ay-1Fg"/>
- <outlet property="editNameButton" destination="9Rd-Zb-XJ8" id="g1c-T8-14D"/>
- <outlet property="headerView" destination="mDw-g7-tCz" id="Xr3-xg-YZ8"/>
- <outlet property="identityLabel" destination="6GC-h6-PJ3" id="NhF-vn-TGH"/>
- <outlet property="keyFingerprintCell" destination="Gxf-cF-d4l" id="mu6-BN-IHP"/>
- <outlet property="linkToContactCell" destination="eOy-rx-zHg" id="Yrp-YK-4fH"/>
- <outlet property="linkedContactNameLabel" destination="iJa-K2-2uc" id="ggG-bA-XqH"/>
- <outlet property="nameLabel" destination="k43-1S-VjC" id="NuN-mh-eLg"/>
- <outlet property="sendMessageCell" destination="AhW-Jk-Nhy" id="ovb-BL-HV7"/>
- <outlet property="sendMessageLabel" destination="oGf-Sp-Z3O" id="Xae-CE-oFt"/>
- <outlet property="threemaCallCell" destination="EyO-a3-ItH" id="ct3-q3-n6P"/>
- <outlet property="threemaCallLabel" destination="zj8-Bo-VYE" id="tf8-YF-hkI"/>
- <outlet property="threemaTypeIcon" destination="18I-qp-Ree" id="4pm-H4-Ahe"/>
- <outlet property="verificationLevelCell" destination="fkw-wz-RH1" id="dc4-zY-pOr"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="jtL-yP-Df5" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="3497" y="2812"/>
- </scene>
- <!--Group details-->
- <scene sceneID="0Bo-NM-iRc">
- <objects>
- <tableViewController storyboardIdentifier="groupDetailsViewController" id="Ms8-he-mHa" customClass="GroupDetailsViewController" sceneMemberID="viewController">
- <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="jYd-6J-1Qe">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <view key="tableHeaderView" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" id="bzV-0r-R3g">
- <rect key="frame" x="0.0" y="0.0" width="375" height="277"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <stackView opaque="NO" contentMode="scaleAspectFit" axis="vertical" distribution="equalSpacing" alignment="center" spacing="10" translatesAutoresizingMaskIntoConstraints="NO" id="jfD-uD-K9p">
- <rect key="frame" x="16" y="16" width="343" height="261"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="hzi-zD-BuJ">
- <rect key="frame" x="71.5" y="0.0" width="200" height="200"/>
- <subviews>
- <imageView contentMode="scaleToFill" image="UnknownPerson" translatesAutoresizingMaskIntoConstraints="NO" id="Tvp-rg-Bl2">
- <rect key="frame" x="0.0" y="0.0" width="200" height="200"/>
- <constraints>
- <constraint firstAttribute="width" constant="200" id="31b-iJ-aJm"/>
- <constraint firstAttribute="width" secondItem="Tvp-rg-Bl2" secondAttribute="height" multiplier="1:1" id="P7D-49-I18"/>
- <constraint firstAttribute="height" relation="lessThanOrEqual" constant="200" id="fOL-71-gJe"/>
- </constraints>
- </imageView>
- </subviews>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- <constraints>
- <constraint firstItem="Tvp-rg-Bl2" firstAttribute="top" secondItem="hzi-zD-BuJ" secondAttribute="top" id="1PF-Hb-zPY"/>
- <constraint firstItem="Tvp-rg-Bl2" firstAttribute="leading" secondItem="hzi-zD-BuJ" secondAttribute="leading" id="471-zK-kLc"/>
- <constraint firstAttribute="trailing" secondItem="Tvp-rg-Bl2" secondAttribute="trailing" id="ajP-y4-67V"/>
- <constraint firstAttribute="bottom" secondItem="Tvp-rg-Bl2" secondAttribute="bottom" id="yAz-HR-S8e"/>
- </constraints>
- </view>
- <stackView opaque="NO" contentMode="scaleToFill" alignment="center" spacing="5" translatesAutoresizingMaskIntoConstraints="NO" id="D9Z-ff-dlU">
- <rect key="frame" x="102.5" y="210" width="138" height="25"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="749" verticalCompressionResistancePriority="751" text="Group Name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="6W1-LE-5ka" userLabel="Group Name">
- <rect key="frame" x="0.0" y="0.0" width="111" height="25"/>
- <constraints>
- <constraint firstAttribute="height" constant="25" id="le5-G7-D5a"/>
- </constraints>
- <fontDescription key="fontDescription" style="UICTFontTextStyleTitle3"/>
- <nil key="highlightedColor"/>
- <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <size key="shadowOffset" width="0.0" height="1"/>
- </label>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="h2q-Gv-kFh">
- <rect key="frame" x="116" y="1.5" width="22" height="22"/>
- <state key="normal" image="Edit"/>
- </button>
- </subviews>
- </stackView>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Creator: Name gy" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="dsp-g0-auI" userLabel="Creator">
- <rect key="frame" x="118.5" y="245" width="106.5" height="16"/>
- <constraints>
- <constraint firstAttribute="height" constant="16" id="FLX-1E-mZc"/>
- </constraints>
- <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
- <color key="textColor" red="0.29803921570000003" green="0.33725490200000002" blue="0.42352941179999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <size key="shadowOffset" width="0.0" height="1"/>
- </label>
- </subviews>
- </stackView>
- </subviews>
- <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="jfD-uD-K9p" secondAttribute="trailing" constant="16" id="TCe-JR-KrN"/>
- <constraint firstItem="jfD-uD-K9p" firstAttribute="top" secondItem="bzV-0r-R3g" secondAttribute="top" constant="16" id="eud-gq-ew9"/>
- <constraint firstItem="jfD-uD-K9p" firstAttribute="leading" secondItem="bzV-0r-R3g" secondAttribute="leading" constant="16" id="faQ-Ys-mhv"/>
- <constraint firstAttribute="bottom" secondItem="jfD-uD-K9p" secondAttribute="bottom" id="krh-kU-cEi"/>
- </constraints>
- </view>
- <prototypes>
- <tableViewCell clipsSubviews="YES" tag="3" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="GroupMemberCell" id="Uo2-o4-j8V" customClass="GroupMemberCell">
- <rect key="frame" x="0.0" y="332.5" width="375" height="64.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="Uo2-o4-j8V" id="pmm-iT-OFC">
- <rect key="frame" x="0.0" y="0.0" width="348" height="64.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="UnknownPerson" translatesAutoresizingMaskIntoConstraints="NO" id="wOG-v3-9L7">
- <rect key="frame" x="16" y="8.5" width="48" height="48"/>
- <constraints>
- <constraint firstAttribute="width" constant="48" id="Ozb-dq-5Sf"/>
- <constraint firstAttribute="height" constant="48" id="key-bo-8xt"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </imageView>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="John Doe" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="g8r-Dc-Sp0" customClass="ContactNameLabel">
- <rect key="frame" x="74" y="22" width="266" height="20.5"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="WorkContact.png" translatesAutoresizingMaskIntoConstraints="NO" id="EXb-fD-XYP">
- <rect key="frame" x="16" y="38.5" width="18" height="18"/>
- <constraints>
- <constraint firstAttribute="width" constant="18" id="1oe-ST-uIy"/>
- <constraint firstAttribute="height" constant="18" id="G2Q-av-mvE"/>
- </constraints>
- </imageView>
- </subviews>
- <constraints>
- <constraint firstItem="EXb-fD-XYP" firstAttribute="leading" secondItem="wOG-v3-9L7" secondAttribute="leading" id="GoJ-KT-wY7"/>
- <constraint firstItem="wOG-v3-9L7" firstAttribute="centerY" secondItem="pmm-iT-OFC" secondAttribute="centerY" id="Tnb-2R-QbX"/>
- <constraint firstItem="EXb-fD-XYP" firstAttribute="bottom" secondItem="wOG-v3-9L7" secondAttribute="bottom" id="Z0H-dV-eQA"/>
- <constraint firstItem="g8r-Dc-Sp0" firstAttribute="leading" secondItem="wOG-v3-9L7" secondAttribute="trailing" constant="10" id="ffF-gQ-VK5"/>
- <constraint firstItem="wOG-v3-9L7" firstAttribute="top" secondItem="pmm-iT-OFC" secondAttribute="top" priority="750" constant="8" id="g97-Px-bow"/>
- <constraint firstItem="wOG-v3-9L7" firstAttribute="leading" secondItem="pmm-iT-OFC" secondAttribute="leadingMargin" id="oka-wv-pbb"/>
- <constraint firstAttribute="bottom" secondItem="wOG-v3-9L7" secondAttribute="bottom" priority="750" constant="8" id="r3F-ND-1TB"/>
- <constraint firstAttribute="trailingMargin" secondItem="g8r-Dc-Sp0" secondAttribute="trailing" id="uIw-90-0pe"/>
- <constraint firstItem="g8r-Dc-Sp0" firstAttribute="centerY" secondItem="pmm-iT-OFC" secondAttribute="centerY" id="yu9-hB-scX"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <outlet property="contactImage" destination="wOG-v3-9L7" id="iQL-ko-Yyb"/>
- <outlet property="nameLabel" destination="g8r-Dc-Sp0" id="2F6-SG-pDK"/>
- <outlet property="threemaTypeIcon" destination="EXb-fD-XYP" id="mNH-yA-ok6"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="AddMemberCell" id="fC4-24-uG5" customClass="AddMemberCell">
- <rect key="frame" x="0.0" y="397" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="fC4-24-uG5" id="AKi-Qr-4oL">
- <rect key="frame" x="0.0" y="0.0" width="348" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="AddMember" translatesAutoresizingMaskIntoConstraints="NO" id="4yk-L5-gn8">
- <rect key="frame" x="16" y="11" width="22" height="22"/>
- <constraints>
- <constraint firstAttribute="width" constant="22" id="0l5-k0-LpE"/>
- <constraint firstAttribute="height" constant="22" id="auP-JR-xwl"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </imageView>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Edit Members..." lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="AHX-FD-Cmx">
- <rect key="frame" x="54" y="11.5" width="286" height="20.5"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="AHX-FD-Cmx" firstAttribute="leading" secondItem="4yk-L5-gn8" secondAttribute="trailing" constant="16" id="FNm-CX-0s9"/>
- <constraint firstAttribute="trailingMargin" secondItem="AHX-FD-Cmx" secondAttribute="trailing" id="JkM-s3-zCC"/>
- <constraint firstItem="4yk-L5-gn8" firstAttribute="centerY" secondItem="AKi-Qr-4oL" secondAttribute="centerY" id="XO1-e3-gm0"/>
- <constraint firstItem="4yk-L5-gn8" firstAttribute="leading" secondItem="AKi-Qr-4oL" secondAttribute="leadingMargin" id="cCh-bQ-zYZ"/>
- <constraint firstItem="AHX-FD-Cmx" firstAttribute="centerY" secondItem="AKi-Qr-4oL" secondAttribute="centerY" id="tb7-Sb-nkz"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <outlet property="addLabel" destination="AHX-FD-Cmx" id="gY6-Om-C45"/>
- <outlet property="plusImage" destination="4yk-L5-gn8" id="Ge5-9A-2FU"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SyncCell" id="xXC-Dv-KXG" customClass="GroupSyncCell">
- <rect key="frame" x="0.0" y="440.5" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="xXC-Dv-KXG" id="2cg-ld-dil">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="759-refresh-2.png" translatesAutoresizingMaskIntoConstraints="NO" id="fb0-Jl-ahI">
- <rect key="frame" x="16" y="11" width="22" height="22"/>
- <constraints>
- <constraint firstAttribute="width" constant="22" id="EHk-wN-SlM"/>
- <constraint firstAttribute="height" constant="22" id="c73-R0-lQZ"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </imageView>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Synchronize group" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="MEa-Te-wbA">
- <rect key="frame" x="54" y="11.5" width="305" height="20.5"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="MEa-Te-wbA" firstAttribute="centerY" secondItem="2cg-ld-dil" secondAttribute="centerY" id="2Gz-Vt-O7X"/>
- <constraint firstItem="MEa-Te-wbA" firstAttribute="leading" secondItem="fb0-Jl-ahI" secondAttribute="trailing" constant="16" id="7Iy-1o-j6S"/>
- <constraint firstAttribute="trailingMargin" secondItem="MEa-Te-wbA" secondAttribute="trailing" id="ERp-sj-Jep"/>
- <constraint firstItem="fb0-Jl-ahI" firstAttribute="centerY" secondItem="2cg-ld-dil" secondAttribute="centerY" id="Kpg-eK-R4O"/>
- <constraint firstItem="fb0-Jl-ahI" firstAttribute="leading" secondItem="2cg-ld-dil" secondAttribute="leadingMargin" id="V30-VU-SUp"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <outlet property="syncGroupImageView" destination="fb0-Jl-ahI" id="ftZ-c1-57P"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="CloneCell" id="jRQ-4m-f1h" customClass="GroupCloneCell">
- <rect key="frame" x="0.0" y="484" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="jRQ-4m-f1h" id="WJV-sz-sJA">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="Copy" translatesAutoresizingMaskIntoConstraints="NO" id="ZSB-Hg-FxO">
- <rect key="frame" x="16" y="11" width="22" height="22"/>
- <constraints>
- <constraint firstAttribute="width" constant="22" id="2lF-fq-bML"/>
- <constraint firstAttribute="height" constant="22" id="Tnw-Wf-6KR"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </imageView>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Clone group" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="6Z4-do-02L">
- <rect key="frame" x="54" y="11.5" width="305" height="20.5"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstAttribute="trailingMargin" secondItem="6Z4-do-02L" secondAttribute="trailing" id="E5m-Jg-EcY"/>
- <constraint firstItem="ZSB-Hg-FxO" firstAttribute="centerY" secondItem="WJV-sz-sJA" secondAttribute="centerY" id="Qr1-7x-YW4"/>
- <constraint firstItem="ZSB-Hg-FxO" firstAttribute="leading" secondItem="WJV-sz-sJA" secondAttribute="leadingMargin" id="WhQ-KK-TNJ"/>
- <constraint firstItem="6Z4-do-02L" firstAttribute="centerY" secondItem="WJV-sz-sJA" secondAttribute="centerY" id="f2j-xJ-2f0"/>
- <constraint firstItem="6Z4-do-02L" firstAttribute="leading" secondItem="ZSB-Hg-FxO" secondAttribute="trailing" constant="16" id="xvo-5b-Dwt"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <outlet property="cloneGroupImageView" destination="ZSB-Hg-FxO" id="7hN-dV-ffs"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SendMessageCell" id="peh-TI-pZu" customClass="ContactSendMessageCell" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="0.0" y="527.5" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="peh-TI-pZu" id="JBz-BW-rZr">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="TabBar-Chats" translatesAutoresizingMaskIntoConstraints="NO" id="exT-YR-9ID">
- <rect key="frame" x="16" y="10" width="22" height="24"/>
- <constraints>
- <constraint firstAttribute="height" constant="24" id="RGG-0J-RpT"/>
- <constraint firstAttribute="width" constant="22" id="Uye-Lg-9BY"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </imageView>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Send Message" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="IpT-Hm-dLe">
- <rect key="frame" x="54" y="11.5" width="305" height="20.5"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="exT-YR-9ID" firstAttribute="leading" secondItem="JBz-BW-rZr" secondAttribute="leadingMargin" id="7je-9t-3X6"/>
- <constraint firstItem="exT-YR-9ID" firstAttribute="centerY" secondItem="JBz-BW-rZr" secondAttribute="centerY" id="QfR-0U-a8T"/>
- <constraint firstItem="IpT-Hm-dLe" firstAttribute="centerY" secondItem="JBz-BW-rZr" secondAttribute="centerY" id="csC-ob-feD"/>
- <constraint firstItem="IpT-Hm-dLe" firstAttribute="leading" secondItem="exT-YR-9ID" secondAttribute="trailing" constant="16" id="e0h-tN-7q9"/>
- <constraint firstAttribute="trailingMargin" secondItem="IpT-Hm-dLe" secondAttribute="trailing" id="liV-uY-LwN"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <outlet property="sendMessageImageView" destination="exT-YR-9ID" id="FFC-Fj-r0l"/>
- <outlet property="sendMessageLabel" destination="IpT-Hm-dLe" id="Chc-Wr-jL8"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ExportConversationCell" id="bGt-GQ-Qv7" customClass="ExportConversationCell" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="0.0" y="571" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="bGt-GQ-Qv7" id="OyY-Gf-QsX">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ExportConversation" translatesAutoresizingMaskIntoConstraints="NO" id="Nb1-fd-in7">
- <rect key="frame" x="16" y="11" width="24" height="22"/>
- <constraints>
- <constraint firstAttribute="width" constant="24" id="NU3-Zg-xME"/>
- <constraint firstAttribute="height" constant="22" id="wLp-Mj-SYA"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </imageView>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Export Conversation" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="bFb-Sh-rtO">
- <rect key="frame" x="56" y="11.5" width="303" height="20.5"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="Nb1-fd-in7" firstAttribute="centerY" secondItem="OyY-Gf-QsX" secondAttribute="centerY" id="AOo-Td-cLP"/>
- <constraint firstItem="bFb-Sh-rtO" firstAttribute="leading" secondItem="Nb1-fd-in7" secondAttribute="trailing" constant="16" id="FSU-jk-3pa"/>
- <constraint firstAttribute="trailingMargin" secondItem="bFb-Sh-rtO" secondAttribute="trailing" id="bCw-Dc-RN6"/>
- <constraint firstItem="Nb1-fd-in7" firstAttribute="leading" secondItem="OyY-Gf-QsX" secondAttribute="leadingMargin" id="hB6-BT-fx2"/>
- <constraint firstItem="bFb-Sh-rtO" firstAttribute="centerY" secondItem="OyY-Gf-QsX" secondAttribute="centerY" id="q2t-0Z-QsK"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <outlet property="exportConversationImageView" destination="Nb1-fd-in7" id="E2G-3x-Ezx"/>
- <outlet property="exportConversationLabel" destination="bFb-Sh-rtO" id="asf-SN-UIY"/>
- </connections>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" accessoryType="disclosureIndicator" indentationWidth="10" reuseIdentifier="PushSettingCell" textLabel="bne-OA-inf" style="IBUITableViewCellStyleDefault" id="ADK-Cy-nBz">
- <rect key="frame" x="0.0" y="614.5" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="ADK-Cy-nBz" id="c7n-Na-7wX">
- <rect key="frame" x="0.0" y="0.0" width="348" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Push setting" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="bne-OA-inf">
- <rect key="frame" x="16" y="0.0" width="324" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="7sc-E3-vaH" kind="show" identifier="ShowPushSetting" id="kxG-iI-tln"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" indentationWidth="10" reuseIdentifier="LeaveGroupCell" textLabel="74M-ip-a37" rowHeight="66" style="IBUITableViewCellStyleDefault" id="gpp-XW-9pS">
- <rect key="frame" x="0.0" y="658" width="375" height="66"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="gpp-XW-9pS" id="KAV-n6-XbO">
- <rect key="frame" x="0.0" y="0.0" width="375" height="66"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Leave Group" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="74M-ip-a37">
- <rect key="frame" x="16" y="0.0" width="343" height="66"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="1" green="0.14489134100141676" blue="0.028320687089866792" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </prototypes>
- <connections>
- <outlet property="dataSource" destination="Ms8-he-mHa" id="Wjd-4D-frU"/>
- <outlet property="delegate" destination="Ms8-he-mHa" id="3W6-xU-yBi"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Group details" largeTitleDisplayMode="never" id="oEX-1h-I2a"/>
- <connections>
- <outlet property="creatorLabel" destination="dsp-g0-auI" id="ZrO-Z5-oOM"/>
- <outlet property="disclosureButton" destination="h2q-Gv-kFh" id="nQ0-X5-kom"/>
- <outlet property="headerView" destination="bzV-0r-R3g" id="P6p-qZ-xmo"/>
- <outlet property="imageView" destination="Tvp-rg-Bl2" id="9b3-P1-8d5"/>
- <outlet property="nameLabel" destination="6W1-LE-5ka" id="Phh-OA-Gn9"/>
- <segue destination="MbJ-IV-2f9" kind="show" identifier="ShowContact" id="oPU-me-pkQ"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="PFS-PI-sZe" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="368.80000000000001" y="416.94152923538235"/>
- </scene>
- <!--Notification Setting View Controller-->
- <scene sceneID="t2q-jE-ooX">
- <objects>
- <tableViewController id="7sc-E3-vaH" customClass="NotificationSettingViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
- <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="18" sectionFooterHeight="18" id="h3x-93-SK5">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" systemColor="groupTableViewBackgroundColor"/>
- <sections>
- <tableViewSection headerTitle="Notification" id="iNd-G8-O6k">
- <cells>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" accessoryType="disclosureIndicator" indentationWidth="10" reuseIdentifier="DoNotDisturbCell" id="6ex-ym-hG0" customClass="DoNotDisturbCell" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="0.0" y="55.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="6ex-ym-hG0" id="Uz4-Oo-TkS">
- <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="249" verticalHuggingPriority="249" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="751" text="Do Not Disturb" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="uwC-cP-33R">
- <rect key="frame" x="16" y="12" width="113.5" height="20.5"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" horizontalCompressionResistancePriority="749" verticalCompressionResistancePriority="749" text="Off" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Sjz-Xi-DOn">
- <rect key="frame" x="315.5" y="15" width="24.5" height="14"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="Sjz-Xi-DOn" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="uwC-cP-33R" secondAttribute="trailing" constant="10" id="FeD-wL-sNR"/>
- <constraint firstItem="Sjz-Xi-DOn" firstAttribute="top" relation="greaterThanOrEqual" secondItem="Uz4-Oo-TkS" secondAttribute="topMargin" constant="4" id="Iyz-PG-L0y"/>
- <constraint firstAttribute="bottomMargin" relation="greaterThanOrEqual" secondItem="Sjz-Xi-DOn" secondAttribute="bottom" constant="4" id="KPv-84-8yt"/>
- <constraint firstItem="uwC-cP-33R" firstAttribute="leading" secondItem="Uz4-Oo-TkS" secondAttribute="leadingMargin" id="OPd-e6-3aW"/>
- <constraint firstItem="Sjz-Xi-DOn" firstAttribute="centerY" secondItem="Uz4-Oo-TkS" secondAttribute="centerY" id="Rg3-9a-xP4"/>
- <constraint firstItem="Sjz-Xi-DOn" firstAttribute="trailing" secondItem="Uz4-Oo-TkS" secondAttribute="trailingMargin" id="UVi-1W-mQV"/>
- <constraint firstItem="uwC-cP-33R" firstAttribute="centerY" secondItem="Uz4-Oo-TkS" secondAttribute="centerY" id="jwm-5h-h92"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <outlet property="detailLabel" destination="Sjz-Xi-DOn" id="458-dR-o4u"/>
- <outlet property="titleLabel" destination="uwC-cP-33R" id="LPO-V6-naU"/>
- <segue destination="gfr-ze-btC" kind="show" identifier="ShowDoNotDisturb" id="3tb-bU-QO2"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" indentationWidth="10" reuseIdentifier="MentionsCell" textLabel="GY1-sO-0wR" style="IBUITableViewCellStyleDefault" id="Poh-36-mK0">
- <rect key="frame" x="0.0" y="99.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="Poh-36-mK0" id="eIP-2o-DYY">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Mentions" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="GY1-sO-0wR">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" translatesAutoresizingMaskIntoConstraints="NO" id="4CF-oO-XE4">
- <rect key="frame" x="162" y="6" width="50" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="mentionsSwitchChangedWithSender:" destination="7sc-E3-vaH" eventType="valueChanged" id="DlI-LE-0bm"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="4CF-oO-XE4" id="ATc-7U-09t"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection headerTitle="Notification sound" id="JEB-UJ-EFF">
- <cells>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" indentationWidth="10" reuseIdentifier="SilentCell" textLabel="iId-KD-odT" style="IBUITableViewCellStyleDefault" id="Ldp-4S-iiR">
- <rect key="frame" x="0.0" y="199.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="Ldp-4S-iiR" id="QNZ-em-v00">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Sound" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="iId-KD-odT">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" translatesAutoresizingMaskIntoConstraints="NO" id="xXL-24-uBz">
- <rect key="frame" x="162" y="6" width="50" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="soundSwitchChangedWithSender:" destination="7sc-E3-vaH" eventType="valueChanged" id="w4a-1I-Aqz"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="xXL-24-uBz" id="ult-XP-aiK"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="7sc-E3-vaH" id="bTt-jg-6nP"/>
- <outlet property="delegate" destination="7sc-E3-vaH" id="Vfa-fY-ctm"/>
- </connections>
- </tableView>
- <connections>
- <outlet property="doNotDisturbCell" destination="6ex-ym-hG0" id="OuL-O0-zw2"/>
- <outlet property="masterDndInfoImageView" destination="HhM-hD-Gie" id="J5U-WT-FXt"/>
- <outlet property="masterDndInfoLabel" destination="VRU-Fw-VBt" id="c69-vC-mpC"/>
- <outlet property="masterDndView" destination="XKU-xa-J1t" id="gcO-mZ-yAi"/>
- <outlet property="mentionsCell" destination="Poh-36-mK0" id="oMb-TO-9wP"/>
- <outlet property="mentionsSwitch" destination="4CF-oO-XE4" id="MIH-lr-kyu"/>
- <outlet property="soundCell" destination="Ldp-4S-iiR" id="vdT-bB-Wwk"/>
- <outlet property="soundSwitch" destination="xXL-24-uBz" id="egU-h4-oMg"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="i0t-Wl-8Tj" userLabel="First Responder" sceneMemberID="firstResponder"/>
- <view contentMode="scaleToFill" id="XKU-xa-J1t">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <subviews>
- <stackView opaque="NO" contentMode="scaleToFill" spacing="16" translatesAutoresizingMaskIntoConstraints="NO" id="eIf-71-Y2s">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <subviews>
- <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="center" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="imageView:HhM-hD-Gie:image" translatesAutoresizingMaskIntoConstraints="NO" id="HhM-hD-Gie">
- <rect key="frame" x="0.0" y="0.0" width="50" height="44"/>
- <constraints>
- <constraint firstAttribute="width" constant="50" id="38Z-Z9-gBg"/>
- <constraint firstAttribute="height" constant="50" id="iR6-T2-dzl"/>
- </constraints>
- </imageView>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="VRU-Fw-VBt">
- <rect key="frame" x="66" y="0.0" width="277" height="44"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </stackView>
- </subviews>
- <viewLayoutGuide key="safeArea" id="FDB-eh-b3c"/>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- <constraints>
- <constraint firstAttribute="bottomMargin" secondItem="eIf-71-Y2s" secondAttribute="bottom" id="QFV-XB-hWj"/>
- <constraint firstItem="eIf-71-Y2s" firstAttribute="top" secondItem="XKU-xa-J1t" secondAttribute="topMargin" id="de6-Ul-Q8h"/>
- <constraint firstAttribute="trailingMargin" secondItem="eIf-71-Y2s" secondAttribute="trailing" id="teQ-hw-Qer"/>
- <constraint firstItem="eIf-71-Y2s" firstAttribute="leading" secondItem="XKU-xa-J1t" secondAttribute="leadingMargin" id="xHr-Qx-BNW"/>
- </constraints>
- </view>
- </objects>
- <point key="canvasLocation" x="1344.8" y="416.94152923538235"/>
- </scene>
- <!--Do Not Disturb View Controller-->
- <scene sceneID="7Tm-HT-3S8">
- <objects>
- <tableViewController id="gfr-ze-btC" customClass="DoNotDisturbViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
- <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="18" sectionFooterHeight="18" id="amK-NL-EWc">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" systemColor="groupTableViewBackgroundColor"/>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" accessoryType="checkmark" indentationWidth="10" reuseIdentifier="SelectionCell" textLabel="70C-9T-QSE" style="IBUITableViewCellStyleDefault" id="Lau-Yi-Bea">
- <rect key="frame" x="0.0" y="55.5" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="Lau-Yi-Bea" id="zCd-hl-tml">
- <rect key="frame" x="0.0" y="0.0" width="335" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Off" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="70C-9T-QSE">
- <rect key="frame" x="16" y="0.0" width="311" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" indentationWidth="10" reuseIdentifier="PickerCell" rowHeight="162" id="lnL-bi-p9R">
- <rect key="frame" x="0.0" y="99" width="375" height="162"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="lnL-bi-p9R" id="StM-8t-aSC">
- <rect key="frame" x="0.0" y="0.0" width="375" height="162"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <pickerView contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Dji-2W-Rhp">
- <rect key="frame" x="0.0" y="0.0" width="375" height="162"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <connections>
- <outlet property="dataSource" destination="gfr-ze-btC" id="nca-k1-M8p"/>
- <outlet property="delegate" destination="gfr-ze-btC" id="1JV-ZW-7qM"/>
- </connections>
- </pickerView>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </prototypes>
- <sections/>
- <connections>
- <outlet property="dataSource" destination="gfr-ze-btC" id="evH-G9-zuM"/>
- <outlet property="delegate" destination="gfr-ze-btC" id="FkR-zc-szh"/>
- </connections>
- </tableView>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="hu8-rO-UW1" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="2081" y="417"/>
- </scene>
- <!--Verification Level-->
- <scene sceneID="X1e-I4-oAv">
- <objects>
- <viewController automaticallyAdjustsScrollViewInsets="NO" id="BHJ-uI-yhd" customClass="VerificationViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" id="IK2-gw-H44">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <subviews>
- <scrollView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" showsHorizontalScrollIndicator="NO" translatesAutoresizingMaskIntoConstraints="NO" id="nk0-Pv-adz">
- <rect key="frame" x="0.0" y="44" width="375" height="623"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Ty5-zL-WXa">
- <rect key="frame" x="0.0" y="0.0" width="375" height="604"/>
- <subviews>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="The dots are an indicator for a contact's verification level." lineBreakMode="tailTruncation" numberOfLines="6" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="DxA-AM-Zv1" customClass="SSLabel">
- <rect key="frame" x="16" y="25" width="343" height="38"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Threema Work contact. The administrator has pre-configured this contact." lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" minimumFontSize="12" adjustsFontForContentSizeCategory="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Dkl-lv-Gfl" customClass="SSLabel">
- <rect key="frame" x="91" y="133.5" width="268" height="58"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-3.png" translatesAutoresizingMaskIntoConstraints="NO" id="qY0-DT-vWa">
- <rect key="frame" x="16" y="139.5" width="50" height="12"/>
- <constraints>
- <constraint firstAttribute="height" constant="12" id="5k8-Kk-Uv6"/>
- <constraint firstAttribute="width" constant="50" id="qJr-rY-KSw"/>
- </constraints>
- </imageView>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-3.png" translatesAutoresizingMaskIntoConstraints="NO" id="RPe-iX-zJj">
- <rect key="frame" x="16" y="227.5" width="50" height="12"/>
- <constraints>
- <constraint firstAttribute="height" constant="12" id="CAv-E1-jdn"/>
- <constraint firstAttribute="width" constant="50" id="Q56-MA-u0R"/>
- </constraints>
- </imageView>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Threema Work contact. The administrator has pre-configured this contact." lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" minimumFontSize="12" adjustsFontForContentSizeCategory="YES" translatesAutoresizingMaskIntoConstraints="NO" id="KbO-86-RBn" customClass="SSLabel">
- <rect key="frame" x="91" y="221.5" width="268" height="58"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="You reach the highest verification level only by scanning the QR Code of a contact in person." lineBreakMode="tailTruncation" numberOfLines="6" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Zxb-Je-9CC" customClass="SSLabel">
- <rect key="frame" x="91" y="350" width="268" height="58"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-1.png" translatesAutoresizingMaskIntoConstraints="NO" id="iDJ-jh-Gt9">
- <rect key="frame" x="16" y="444" width="50" height="12"/>
- <constraints>
- <constraint firstAttribute="width" constant="50" id="JQt-hO-r3v"/>
- <constraint firstAttribute="height" constant="12" id="iDC-Ek-2d9"/>
- </constraints>
- </imageView>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="The contact matches with a verified phone number or email address in your address book." lineBreakMode="tailTruncation" numberOfLines="6" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Y9L-O2-c5C" customClass="SSLabel">
- <rect key="frame" x="91" y="438" width="268" height="58"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-2.png" translatesAutoresizingMaskIntoConstraints="NO" id="JV7-wB-ei5">
- <rect key="frame" x="16" y="356" width="50" height="12"/>
- <constraints>
- <constraint firstAttribute="height" constant="12" id="1sH-i8-Ddy"/>
- <constraint firstAttribute="width" constant="50" id="fdw-NT-h24"/>
- </constraints>
- </imageView>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Anonymous contact. The ID could not be matched with a contact in your address book." lineBreakMode="tailTruncation" numberOfLines="5" baselineAdjustment="alignBaselines" minimumFontSize="12" adjustsFontForContentSizeCategory="YES" translatesAutoresizingMaskIntoConstraints="NO" id="1xB-q0-ZXX" customClass="SSLabel">
- <rect key="frame" x="91" y="526" width="268" height="58"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-0.png" translatesAutoresizingMaskIntoConstraints="NO" id="GFO-oV-PP3">
- <rect key="frame" x="16" y="532" width="50" height="12"/>
- <constraints>
- <constraint firstAttribute="width" constant="50" id="J0K-TU-Xrt"/>
- <constraint firstAttribute="height" constant="12" id="XNC-AV-2Bv"/>
- </constraints>
- </imageView>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Contacts in your Organization" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="8y4-Kc-IzK" customClass="SSLabel">
- <rect key="frame" x="16" y="93" width="343" height="20.5"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Other Contacts" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ZgX-VT-k2O" customClass="SSLabel">
- <rect key="frame" x="16" y="309.5" width="343" height="20.5"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="8y4-Kc-IzK" firstAttribute="leading" secondItem="Ty5-zL-WXa" secondAttribute="leading" constant="16" id="0gy-7C-1ed"/>
- <constraint firstItem="8y4-Kc-IzK" firstAttribute="top" secondItem="DxA-AM-Zv1" secondAttribute="bottom" constant="30" id="4Hc-3X-sBH"/>
- <constraint firstAttribute="trailing" secondItem="8y4-Kc-IzK" secondAttribute="trailing" constant="16" id="4Ib-Zg-MWO"/>
- <constraint firstItem="KbO-86-RBn" firstAttribute="top" secondItem="Dkl-lv-Gfl" secondAttribute="bottom" constant="30" id="5St-Hp-FZh"/>
- <constraint firstItem="Y9L-O2-c5C" firstAttribute="leading" secondItem="iDJ-jh-Gt9" secondAttribute="trailing" constant="25" id="6PZ-xX-WJX"/>
- <constraint firstItem="1xB-q0-ZXX" firstAttribute="leading" secondItem="GFO-oV-PP3" secondAttribute="trailing" constant="25" id="8w4-Oz-cef"/>
- <constraint firstItem="GFO-oV-PP3" firstAttribute="top" secondItem="1xB-q0-ZXX" secondAttribute="top" constant="6" id="D8z-qu-H6N"/>
- <constraint firstAttribute="trailing" secondItem="ZgX-VT-k2O" secondAttribute="trailing" constant="16" id="Dt7-sb-YD0"/>
- <constraint firstAttribute="trailing" secondItem="DxA-AM-Zv1" secondAttribute="trailing" constant="16" id="EC9-hG-1zW"/>
- <constraint firstItem="ZgX-VT-k2O" firstAttribute="top" secondItem="KbO-86-RBn" secondAttribute="bottom" constant="30" id="Fs8-So-xJt"/>
- <constraint firstItem="iDJ-jh-Gt9" firstAttribute="top" secondItem="Y9L-O2-c5C" secondAttribute="top" constant="6" id="Gjn-8t-8UZ"/>
- <constraint firstItem="DxA-AM-Zv1" firstAttribute="top" secondItem="Ty5-zL-WXa" secondAttribute="top" constant="25" id="HTj-dp-i64"/>
- <constraint firstAttribute="bottom" secondItem="1xB-q0-ZXX" secondAttribute="bottom" constant="20" id="ICh-Xm-kW2"/>
- <constraint firstAttribute="trailing" secondItem="Zxb-Je-9CC" secondAttribute="trailing" constant="16" id="Ijv-MA-VJP"/>
- <constraint firstItem="DxA-AM-Zv1" firstAttribute="leading" secondItem="Ty5-zL-WXa" secondAttribute="leading" constant="16" id="Imx-Tz-tdK"/>
- <constraint firstItem="Dkl-lv-Gfl" firstAttribute="leading" secondItem="qY0-DT-vWa" secondAttribute="trailing" constant="25" id="J1P-Sb-XOj"/>
- <constraint firstItem="RPe-iX-zJj" firstAttribute="top" secondItem="KbO-86-RBn" secondAttribute="top" constant="6" id="NEr-jv-kVt"/>
- <constraint firstItem="Zxb-Je-9CC" firstAttribute="top" secondItem="ZgX-VT-k2O" secondAttribute="bottom" constant="20" id="OKz-xC-LpC"/>
- <constraint firstItem="Zxb-Je-9CC" firstAttribute="top" secondItem="DxA-AM-Zv1" secondAttribute="bottom" priority="250" constant="40" id="QOm-aD-13l"/>
- <constraint firstItem="iDJ-jh-Gt9" firstAttribute="leading" secondItem="Ty5-zL-WXa" secondAttribute="leading" constant="16" id="WI1-NM-dXL"/>
- <constraint firstItem="1xB-q0-ZXX" firstAttribute="top" secondItem="Y9L-O2-c5C" secondAttribute="bottom" constant="30" id="c5O-xD-O3G"/>
- <constraint firstItem="JV7-wB-ei5" firstAttribute="leading" secondItem="Ty5-zL-WXa" secondAttribute="leading" constant="16" id="cEv-w6-ZSP"/>
- <constraint firstItem="Zxb-Je-9CC" firstAttribute="leading" secondItem="JV7-wB-ei5" secondAttribute="trailing" constant="25" id="ew0-Fg-b2Y"/>
- <constraint firstItem="GFO-oV-PP3" firstAttribute="leading" secondItem="Ty5-zL-WXa" secondAttribute="leading" constant="16" id="jet-DC-WFH"/>
- <constraint firstAttribute="trailing" secondItem="KbO-86-RBn" secondAttribute="trailing" constant="16" id="jrm-eh-biy"/>
- <constraint firstItem="Y9L-O2-c5C" firstAttribute="top" secondItem="Zxb-Je-9CC" secondAttribute="bottom" constant="30" id="lu3-ry-CEa"/>
- <constraint firstAttribute="trailing" secondItem="Y9L-O2-c5C" secondAttribute="trailing" constant="16" id="nqA-zB-SBC"/>
- <constraint firstItem="RPe-iX-zJj" firstAttribute="leading" secondItem="Ty5-zL-WXa" secondAttribute="leading" constant="16" id="pfW-NI-j6z"/>
- <constraint firstItem="Dkl-lv-Gfl" firstAttribute="top" secondItem="8y4-Kc-IzK" secondAttribute="bottom" constant="20" id="rZU-9l-ZSv"/>
- <constraint firstAttribute="trailing" secondItem="Dkl-lv-Gfl" secondAttribute="trailing" constant="16" id="slu-tP-kz0"/>
- <constraint firstItem="qY0-DT-vWa" firstAttribute="leading" secondItem="Ty5-zL-WXa" secondAttribute="leading" constant="16" id="sob-M3-aJh"/>
- <constraint firstAttribute="trailing" secondItem="1xB-q0-ZXX" secondAttribute="trailing" constant="16" id="uVq-2a-NPQ"/>
- <constraint firstItem="JV7-wB-ei5" firstAttribute="top" secondItem="Zxb-Je-9CC" secondAttribute="top" constant="6" id="udV-jd-RxJ"/>
- <constraint firstItem="qY0-DT-vWa" firstAttribute="top" secondItem="Dkl-lv-Gfl" secondAttribute="top" constant="6" id="uo7-qh-Iec"/>
- <constraint firstItem="KbO-86-RBn" firstAttribute="leading" secondItem="RPe-iX-zJj" secondAttribute="trailing" constant="25" id="vas-Vh-mvQ"/>
- <constraint firstItem="ZgX-VT-k2O" firstAttribute="leading" secondItem="Ty5-zL-WXa" secondAttribute="leading" constant="16" id="xQR-et-VEU"/>
- </constraints>
- </view>
- </subviews>
- <constraints>
- <constraint firstAttribute="width" secondItem="Ty5-zL-WXa" secondAttribute="width" id="Blp-yM-Rp3"/>
- <constraint firstAttribute="trailing" secondItem="Ty5-zL-WXa" secondAttribute="trailing" id="LEW-NZ-9e2"/>
- <constraint firstItem="Ty5-zL-WXa" firstAttribute="top" secondItem="nk0-Pv-adz" secondAttribute="top" id="LU1-Hd-1KD"/>
- <constraint firstAttribute="bottom" secondItem="Ty5-zL-WXa" secondAttribute="bottom" constant="101" id="NEo-Po-Z3V"/>
- <constraint firstItem="Ty5-zL-WXa" firstAttribute="leading" secondItem="nk0-Pv-adz" secondAttribute="leading" id="O31-ZH-h9u"/>
- </constraints>
- </scrollView>
- </subviews>
- <viewLayoutGuide key="safeArea" id="j9V-WY-ES0"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstItem="nk0-Pv-adz" firstAttribute="trailing" secondItem="j9V-WY-ES0" secondAttribute="trailing" id="2Bn-Gp-FgK"/>
- <constraint firstItem="nk0-Pv-adz" firstAttribute="leading" secondItem="j9V-WY-ES0" secondAttribute="leading" id="7kf-PQ-ryd"/>
- <constraint firstItem="nk0-Pv-adz" firstAttribute="bottom" secondItem="j9V-WY-ES0" secondAttribute="bottom" id="DZA-8X-vEG"/>
- <constraint firstItem="nk0-Pv-adz" firstAttribute="top" secondItem="j9V-WY-ES0" secondAttribute="top" id="qc3-0h-ufz"/>
- </constraints>
- </view>
- <navigationItem key="navigationItem" title="Verification Level" largeTitleDisplayMode="never" id="RYr-oG-d5j"/>
- <nil key="simulatedBottomBarMetrics"/>
- <connections>
- <outlet property="descriptionText" destination="DxA-AM-Zv1" id="NAd-Ds-Joh"/>
- <outlet property="imageLevel0" destination="GFO-oV-PP3" id="CmD-kj-AXc"/>
- <outlet property="imageLevel1" destination="iDJ-jh-Gt9" id="VAS-hw-WXf"/>
- <outlet property="imageLevel2" destination="JV7-wB-ei5" id="owp-g3-SWf"/>
- <outlet property="imageLevel3" destination="RPe-iX-zJj" id="fox-uC-BFa"/>
- <outlet property="imageLevel4" destination="qY0-DT-vWa" id="q2q-dO-spv"/>
- <outlet property="labelLevel0" destination="1xB-q0-ZXX" id="u8h-UT-7bx"/>
- <outlet property="labelLevel1" destination="Y9L-O2-c5C" id="Nwp-3c-C5r"/>
- <outlet property="labelLevel2" destination="Zxb-Je-9CC" id="T4F-md-SLa"/>
- <outlet property="labelLevel3" destination="KbO-86-RBn" id="Yha-ND-8M8"/>
- <outlet property="labelLevel4" destination="Dkl-lv-Gfl" id="zIO-CJ-ak6"/>
- <outlet property="otherTitle" destination="ZgX-VT-k2O" id="j0B-3Q-FSG"/>
- <outlet property="scrollView" destination="nk0-Pv-adz" id="tHE-oa-v06"/>
- <outlet property="threemaConstraint" destination="QOm-aD-13l" id="9eY-ck-FUv"/>
- <outlet property="workConstraint" destination="OKz-xC-LpC" id="mCs-Nu-1oy"/>
- <outlet property="workTitle" destination="8y4-Kc-IzK" id="yea-BC-LCA"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="O9J-dO-Gby" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="1920.8" y="-364.7676161919041"/>
- </scene>
- <!--Add Contact-->
- <scene sceneID="oOX-bu-bWV">
- <objects>
- <tableViewController id="G1V-ju-hH8" customClass="AddContactViewController" sceneMemberID="viewController">
- <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="K6b-41-Rkh">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <sections>
- <tableViewSection id="72X-QI-1f3">
- <cells>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="al9-Xu-cio">
- <rect key="frame" x="0.0" y="17.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="al9-Xu-cio" id="3J9-nj-Hgy">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" verticalHuggingPriority="251" verticalCompressionResistancePriority="751" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="ID" adjustsFontForContentSizeCategory="YES" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="YoS-Np-Z37">
- <rect key="frame" x="16" y="23" width="343" height="10"/>
- <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
- <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleTitle1"/>
- <textInputTraits key="textInputTraits" autocapitalizationType="allCharacters" autocorrectionType="no" returnKeyType="done" enablesReturnKeyAutomatically="YES"/>
- <connections>
- <outlet property="delegate" destination="G1V-ju-hH8" id="3rH-1t-iUw"/>
- </connections>
- </textField>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Enter ID manually" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="zYA-qz-iwe">
- <rect key="frame" x="16" y="11" width="343" height="0.0"/>
- <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="YoS-Np-Z37" firstAttribute="top" secondItem="zYA-qz-iwe" secondAttribute="bottom" constant="12" id="70f-eF-iiy"/>
- <constraint firstAttribute="bottomMargin" secondItem="YoS-Np-Z37" secondAttribute="bottom" id="PT8-yF-h8g"/>
- <constraint firstItem="zYA-qz-iwe" firstAttribute="leading" secondItem="3J9-nj-Hgy" secondAttribute="leadingMargin" id="TKD-kJ-W42"/>
- <constraint firstAttribute="trailingMargin" secondItem="YoS-Np-Z37" secondAttribute="trailing" id="XS6-wl-6vx"/>
- <constraint firstAttribute="trailingMargin" secondItem="zYA-qz-iwe" secondAttribute="trailing" id="dCQ-zF-Shp"/>
- <constraint firstItem="zYA-qz-iwe" firstAttribute="top" secondItem="3J9-nj-Hgy" secondAttribute="topMargin" id="eGi-n3-15y"/>
- <constraint firstItem="YoS-Np-Z37" firstAttribute="leading" secondItem="3J9-nj-Hgy" secondAttribute="leadingMargin" id="fEh-2D-8MZ"/>
- </constraints>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection id="e9k-VH-lsl">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="YPC-ic-pTa" imageView="BKc-YV-enp" style="IBUITableViewCellStyleDefault" id="cdb-1L-fZu">
- <rect key="frame" x="0.0" y="96.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="cdb-1L-fZu" id="xik-ar-cyW">
- <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Scan an ID" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="YPC-ic-pTa">
- <rect key="frame" x="53" y="0.0" width="287" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" image="QRScan" highlightedImage="QRScan" id="BKc-YV-enp">
- <rect key="frame" x="16" y="11" width="22" height="22"/>
- <autoresizingMask key="autoresizingMask"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- <inset key="separatorInset" minX="15" minY="0.0" maxX="0.0" maxY="0.0"/>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="xRZ-tM-3dS" style="IBUITableViewCellStyleDefault" id="Tr4-JV-PPU">
- <rect key="frame" x="0.0" y="140.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Tr4-JV-PPU" id="6SY-iN-gCj">
- <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Invite a Friend" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="xRZ-tM-3dS">
- <rect key="frame" x="16" y="0.0" width="324" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="G1V-ju-hH8" id="lOd-gQ-aA4"/>
- <outlet property="delegate" destination="G1V-ju-hH8" id="prm-rV-y9u"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Add Contact" id="Eq0-ED-f11">
- <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="1WQ-02-3J0">
- <connections>
- <action selector="cancelAction:" destination="G1V-ju-hH8" id="4tc-43-LcQ"/>
- </connections>
- </barButtonItem>
- <barButtonItem key="rightBarButtonItem" enabled="NO" style="done" systemItem="done" id="VEq-T8-yyu">
- <connections>
- <action selector="doneAction:" destination="G1V-ju-hH8" id="TMy-Sd-G9r"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <connections>
- <outlet property="identityTextField" destination="YoS-Np-Z37" id="h0l-zX-7fe"/>
- <outlet property="scanIdentityCell" destination="cdb-1L-fZu" id="TWi-lx-If4"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="WWb-st-0qa" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="3490.4000000000001" y="-1027.736131934033"/>
- </scene>
- <!--Contacts-->
- <scene sceneID="VaV-F2-hej">
- <objects>
- <navigationController id="jkA-kt-EVh" customClass="ContactsNavigationController" sceneMemberID="viewController">
- <tabBarItem key="tabBarItem" title="Contacts" image="TabBar-Contacts" id="JXW-2V-ftV"/>
- <toolbarItems/>
- <navigationBar key="navigationBar" contentMode="scaleToFill" largeTitles="YES" id="5Ob-0j-Mcg" customClass="StatusNavigationBar">
- <rect key="frame" x="0.0" y="0.0" width="375" height="96"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- <nil name="viewControllers"/>
- <connections>
- <segue destination="v7U-vl-J3v" kind="relationship" relationship="rootViewController" id="I0Z-ra-Thg"/>
- </connections>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="DXi-bE-KsG" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-2787.2000000000003" y="-362.51874062968517"/>
- </scene>
- <!--Contacts-->
- <scene sceneID="1lj-Ih-dGg">
- <objects>
- <tableViewController storyboardIdentifier="contactsViewController" extendedLayoutIncludesOpaqueBars="YES" id="v7U-vl-J3v" customClass="ContactsViewController" sceneMemberID="viewController">
- <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="8Yy-MV-Y5g">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ContactCell" id="vvE-0J-ugd" customClass="ContactCell">
- <rect key="frame" x="0.0" y="28" width="375" height="60.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="vvE-0J-ugd" id="eLT-ov-fMR">
- <rect key="frame" x="0.0" y="0.0" width="375" height="60.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="UnknownPerson" translatesAutoresizingMaskIntoConstraints="NO" id="UXz-Z9-gqS">
- <rect key="frame" x="16" y="10.5" width="40" height="40"/>
- <constraints>
- <constraint firstAttribute="width" constant="40" id="6tg-Cy-tuz"/>
- <constraint firstAttribute="height" constant="40" id="Z5D-ij-9kN"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </imageView>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="249" verticalHuggingPriority="251" horizontalCompressionResistancePriority="749" verticalCompressionResistancePriority="751" text="MacBook Office 10 7" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="bsh-sy-Xwu" customClass="ContactNameLabel">
- <rect key="frame" x="64" y="11" width="163.5" height="20.5"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification32-2.png" translatesAutoresizingMaskIntoConstraints="NO" id="Jej-pI-YGq">
- <rect key="frame" x="327" y="17.5" width="32" height="8"/>
- <constraints>
- <constraint firstAttribute="width" constant="32" id="NRs-7Y-97r"/>
- <constraint firstAttribute="height" constant="8" id="pl6-aE-RrS"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="-5" minY="0.0" maxX="5" maxY="0.0"/>
- </imageView>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="101" contentMode="left" text="Nickname" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="p0V-dq-HkU" customClass="SSLabel">
- <rect key="frame" x="64" y="31.5" width="60.5" height="16.5"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
- <color key="textColor" red="0.49803921569999998" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.50196078430000002" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="253" horizontalCompressionResistancePriority="753" text="IDENTITY" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="n7x-y4-2CM">
- <rect key="frame" x="308" y="34" width="51" height="14"/>
- <inset key="insetFor6xAndEarlier" minX="-5" minY="0.0" maxX="5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleCaption2"/>
- <color key="textColor" red="0.49803921569999998" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.50196078430000002" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="WorkContact.png" translatesAutoresizingMaskIntoConstraints="NO" id="eQt-pS-2t8">
- <rect key="frame" x="16" y="36.5" width="14" height="14"/>
- <constraints>
- <constraint firstAttribute="width" constant="14" id="S4j-jr-rVp"/>
- <constraint firstAttribute="height" constant="14" id="xBk-mZ-vfL"/>
- </constraints>
- </imageView>
- </subviews>
- <constraints>
- <constraint firstItem="p0V-dq-HkU" firstAttribute="top" secondItem="bsh-sy-Xwu" secondAttribute="bottom" id="1y1-zL-ud5"/>
- <constraint firstAttribute="bottom" relation="greaterThanOrEqual" secondItem="UXz-Z9-gqS" secondAttribute="bottom" constant="2" id="40l-yb-6En"/>
- <constraint firstItem="p0V-dq-HkU" firstAttribute="leading" secondItem="UXz-Z9-gqS" secondAttribute="trailing" constant="8" id="Cr8-mR-joh"/>
- <constraint firstItem="eQt-pS-2t8" firstAttribute="leading" secondItem="UXz-Z9-gqS" secondAttribute="leading" id="DS4-nD-57h"/>
- <constraint firstItem="eQt-pS-2t8" firstAttribute="bottom" secondItem="UXz-Z9-gqS" secondAttribute="bottom" id="HqP-7w-rBy"/>
- <constraint firstItem="bsh-sy-Xwu" firstAttribute="top" secondItem="eLT-ov-fMR" secondAttribute="topMargin" id="NoQ-yl-SqY"/>
- <constraint firstItem="UXz-Z9-gqS" firstAttribute="centerY" secondItem="eLT-ov-fMR" secondAttribute="centerY" id="UD0-ve-g3c"/>
- <constraint firstItem="n7x-y4-2CM" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="bsh-sy-Xwu" secondAttribute="trailing" constant="5" id="XcO-Kh-REo"/>
- <constraint firstAttribute="bottomMargin" secondItem="p0V-dq-HkU" secondAttribute="bottom" constant="1.5" id="dsD-7c-UCs"/>
- <constraint firstItem="UXz-Z9-gqS" firstAttribute="top" relation="greaterThanOrEqual" secondItem="eLT-ov-fMR" secondAttribute="top" constant="2" id="hxa-X1-VdQ"/>
- <constraint firstItem="n7x-y4-2CM" firstAttribute="trailing" secondItem="eLT-ov-fMR" secondAttribute="trailingMargin" id="ifC-lC-ap7"/>
- <constraint firstItem="Jej-pI-YGq" firstAttribute="centerY" secondItem="bsh-sy-Xwu" secondAttribute="centerY" id="lio-Z5-C3w"/>
- <constraint firstItem="Jej-pI-YGq" firstAttribute="trailing" secondItem="eLT-ov-fMR" secondAttribute="trailingMargin" id="pun-9S-mUL"/>
- <constraint firstItem="bsh-sy-Xwu" firstAttribute="leading" secondItem="UXz-Z9-gqS" secondAttribute="trailing" constant="8" id="qGJ-Fm-3oq"/>
- <constraint firstItem="n7x-y4-2CM" firstAttribute="bottom" secondItem="p0V-dq-HkU" secondAttribute="bottom" id="tA7-TP-75b"/>
- <constraint firstItem="n7x-y4-2CM" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="p0V-dq-HkU" secondAttribute="trailing" constant="5" id="vP6-kL-gpU"/>
- <constraint firstItem="UXz-Z9-gqS" firstAttribute="leading" secondItem="eLT-ov-fMR" secondAttribute="leadingMargin" id="yKU-0O-cxp"/>
- </constraints>
- </tableViewCellContentView>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <connections>
- <outlet property="contactImage" destination="UXz-Z9-gqS" id="ozH-je-B4e"/>
- <outlet property="identityLabel" destination="n7x-y4-2CM" id="vSI-vt-P6I"/>
- <outlet property="nameLabel" destination="bsh-sy-Xwu" id="aC6-o0-hvj"/>
- <outlet property="nicknameLabel" destination="p0V-dq-HkU" id="aF0-8V-tIl"/>
- <outlet property="threemaTypeIcon" destination="eQt-pS-2t8" id="55d-IW-btb"/>
- <outlet property="verificationLevel" destination="Jej-pI-YGq" id="i9u-5M-h1w"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="GroupCell" id="re3-Mj-syT" customClass="GroupCell">
- <rect key="frame" x="0.0" y="88.5" width="375" height="64.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="re3-Mj-syT" id="JoE-5s-hGS">
- <rect key="frame" x="0.0" y="0.0" width="375" height="64.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" verticalHuggingPriority="251" verticalCompressionResistancePriority="751" text="Group Name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ds7-P9-imN">
- <rect key="frame" x="64" y="11" width="295" height="20.5"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Group creator" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="KRl-DY-AIA">
- <rect key="frame" x="64" y="35.5" width="84" height="16.5"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
- <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="UnknownPerson" translatesAutoresizingMaskIntoConstraints="NO" id="Svq-z8-6SM">
- <rect key="frame" x="16" y="12.5" width="40" height="40"/>
- <constraints>
- <constraint firstAttribute="width" constant="40" id="C5o-bN-AUh"/>
- <constraint firstAttribute="height" constant="40" id="jXq-0n-Xfx"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </imageView>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="# members" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="I8P-9o-uIi">
- <rect key="frame" x="290" y="36" width="69" height="16"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
- <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstAttribute="trailingMargin" secondItem="I8P-9o-uIi" secondAttribute="trailing" id="6A4-4b-RxZ"/>
- <constraint firstItem="ds7-P9-imN" firstAttribute="top" secondItem="JoE-5s-hGS" secondAttribute="topMargin" id="7EH-of-TwK"/>
- <constraint firstItem="Svq-z8-6SM" firstAttribute="leading" secondItem="JoE-5s-hGS" secondAttribute="leadingMargin" id="BoH-5o-ITr"/>
- <constraint firstItem="I8P-9o-uIi" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="KRl-DY-AIA" secondAttribute="trailing" constant="8" symbolic="YES" id="Ery-gg-BgN"/>
- <constraint firstAttribute="bottom" relation="greaterThanOrEqual" secondItem="Svq-z8-6SM" secondAttribute="bottom" constant="2" id="FoJ-Cs-wxD"/>
- <constraint firstItem="KRl-DY-AIA" firstAttribute="leading" secondItem="Svq-z8-6SM" secondAttribute="trailing" constant="8" id="GcX-uc-uKx"/>
- <constraint firstItem="ds7-P9-imN" firstAttribute="leading" secondItem="Svq-z8-6SM" secondAttribute="trailing" constant="8" id="JPM-Gg-hzA"/>
- <constraint firstItem="KRl-DY-AIA" firstAttribute="top" secondItem="ds7-P9-imN" secondAttribute="bottom" constant="4" id="O6V-xp-QVK"/>
- <constraint firstItem="KRl-DY-AIA" firstAttribute="bottom" secondItem="I8P-9o-uIi" secondAttribute="bottom" id="VPU-n3-ERJ"/>
- <constraint firstAttribute="trailingMargin" secondItem="ds7-P9-imN" secondAttribute="trailing" id="WYN-1X-WuC"/>
- <constraint firstItem="Svq-z8-6SM" firstAttribute="centerY" secondItem="JoE-5s-hGS" secondAttribute="centerY" id="oen-N6-33P"/>
- <constraint firstItem="Svq-z8-6SM" firstAttribute="leading" secondItem="JoE-5s-hGS" secondAttribute="leadingMargin" id="tvT-nd-bML"/>
- <constraint firstItem="Svq-z8-6SM" firstAttribute="top" relation="greaterThanOrEqual" secondItem="JoE-5s-hGS" secondAttribute="top" constant="2" id="vsI-2m-X5z"/>
- <constraint firstAttribute="bottomMargin" secondItem="KRl-DY-AIA" secondAttribute="bottom" constant="1.5" id="yas-p7-ueU"/>
- </constraints>
- </tableViewCellContentView>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <connections>
- <outlet property="countMemberLabel" destination="I8P-9o-uIi" id="uzE-fb-Ofk"/>
- <outlet property="creatorLabel" destination="KRl-DY-AIA" id="Rrc-Xz-Y3M"/>
- <outlet property="groupImage" destination="Svq-z8-6SM" id="6eO-oi-C9B"/>
- <outlet property="groupNameLabel" destination="ds7-P9-imN" id="Tc1-wt-idM"/>
- </connections>
- </tableViewCell>
- </prototypes>
- <connections>
- <outlet property="dataSource" destination="v7U-vl-J3v" id="apf-82-oZ1"/>
- <outlet property="delegate" destination="v7U-vl-J3v" id="BcX-FA-4bi"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Contacts" id="Ll3-Ew-izw">
- <barButtonItem key="leftBarButtonItem" style="plain" systemItem="edit" id="KFB-eU-OKt"/>
- <segmentedControl key="titleView" opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="top" segmentControlStyle="bar" selectedSegmentIndex="0" id="77n-al-llJ">
- <rect key="frame" x="107" y="6" width="161" height="32"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <segments>
- <segment title="" image="Contact"/>
- <segment title="" image="Group"/>
- </segments>
- <connections>
- <action selector="segmentedControlChanged:" destination="v7U-vl-J3v" eventType="valueChanged" id="dRp-Sb-3bP"/>
- </connections>
- </segmentedControl>
- <barButtonItem key="rightBarButtonItem" style="plain" systemItem="add" id="hiG-bl-yv5">
- <connections>
- <action selector="addAction:" destination="v7U-vl-J3v" id="gmp-gk-V2B"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <refreshControl key="refreshControl" opaque="NO" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" enabled="NO" contentHorizontalAlignment="center" contentVerticalAlignment="center" id="y3Y-Em-XjT">
- <rect key="frame" x="0.0" y="0.0" width="1000" height="1000"/>
- <autoresizingMask key="autoresizingMask"/>
- <connections>
- <action selector="pulledForRefresh:" destination="v7U-vl-J3v" eventType="valueChanged" id="mh8-xh-PLQ"/>
- </connections>
- </refreshControl>
- <connections>
- <outlet property="companyDirectoryCell" destination="Qs7-Af-fEJ" id="jwD-Ic-aqg"/>
- <outlet property="countContactsFooterLabel" destination="uT9-uH-vrD" id="gMC-79-QVC"/>
- <outlet property="countContactsFooterView" destination="ITQ-HT-0We" id="WfP-CD-Jda"/>
- <outlet property="noContactsMessageLabel" destination="zFq-Zo-ECJ" id="ZPe-eT-aHg"/>
- <outlet property="noContactsTitleLabel" destination="Ofe-BC-uXe" id="fNM-6u-pCk"/>
- <outlet property="noContactsView" destination="XYi-sW-ceR" id="gMs-Sf-Dd0"/>
- <outlet property="segmentedControl" destination="77n-al-llJ" id="SlC-Pa-59N"/>
- <segue destination="MbJ-IV-2f9" kind="show" identifier="ShowContact" id="Xi4-er-hN6"/>
- </connections>
- </tableViewController>
- <view contentMode="scaleToFill" id="ITQ-HT-0We">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="123" contentMode="left" text="X contacts" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="uT9-uH-vrD">
- <rect key="frame" x="26" y="12" width="323" height="21"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
- <color key="textColor" red="0.66666666669999997" green="0.66666666669999997" blue="0.66666666669999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <viewLayoutGuide key="safeArea" id="Kdi-Aw-yri"/>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstItem="uT9-uH-vrD" firstAttribute="leading" secondItem="Kdi-Aw-yri" secondAttribute="leading" constant="26" id="6Mi-OC-DMP"/>
- <constraint firstItem="Kdi-Aw-yri" firstAttribute="trailing" secondItem="uT9-uH-vrD" secondAttribute="trailing" constant="26" id="hwx-zp-p1U"/>
- <constraint firstItem="uT9-uH-vrD" firstAttribute="top" secondItem="Kdi-Aw-yri" secondAttribute="top" constant="12" id="kwM-Ag-58A"/>
- <constraint firstItem="Kdi-Aw-yri" firstAttribute="bottom" secondItem="uT9-uH-vrD" secondAttribute="bottom" constant="11" id="lY0-3E-2Kb"/>
- </constraints>
- </view>
- <view contentMode="scaleToFill" id="XYi-sW-ceR">
- <rect key="frame" x="0.0" y="0.0" width="375" height="120"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="101" contentMode="left" text="You don't have any contacts. Turn on synchronization, or add contacts manually using the + button." textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="6" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="zFq-Zo-ECJ">
- <rect key="frame" x="30" y="51" width="315" height="58"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
- <color key="textColor" red="0.66666666669999997" green="0.66666666669999997" blue="0.66666666669999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="No contacts" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Ofe-BC-uXe">
- <rect key="frame" x="30" y="20" width="315" height="21"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
- <color key="textColor" red="0.66666666669999997" green="0.66666666669999997" blue="0.66666666669999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <viewLayoutGuide key="safeArea" id="f7L-c4-ypy"/>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstItem="Ofe-BC-uXe" firstAttribute="top" secondItem="f7L-c4-ypy" secondAttribute="top" constant="20" id="0zs-m7-L4Y"/>
- <constraint firstItem="zFq-Zo-ECJ" firstAttribute="leading" secondItem="f7L-c4-ypy" secondAttribute="leading" constant="30" id="D5s-4N-8gV"/>
- <constraint firstItem="Ofe-BC-uXe" firstAttribute="leading" secondItem="f7L-c4-ypy" secondAttribute="leading" constant="30" id="OCF-N5-Tjd"/>
- <constraint firstItem="f7L-c4-ypy" firstAttribute="trailing" secondItem="zFq-Zo-ECJ" secondAttribute="trailing" constant="30" id="nSq-cz-pFo"/>
- <constraint firstItem="zFq-Zo-ECJ" firstAttribute="top" secondItem="Ofe-BC-uXe" secondAttribute="bottom" constant="10" id="vEb-ul-dDM"/>
- <constraint firstItem="f7L-c4-ypy" firstAttribute="trailing" secondItem="Ofe-BC-uXe" secondAttribute="trailing" constant="30" id="y53-6d-sdZ"/>
- </constraints>
- </view>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="CompanyDirectoryCell" rowHeight="60" id="Qs7-Af-fEJ" customClass="CompanyDirectoryCell" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="0.0" y="0.0" width="375" height="60"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Qs7-Af-fEJ" id="xsb-YD-UKR">
- <rect key="frame" x="0.0" y="0.0" width="348" height="60"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="Asterisk" translatesAutoresizingMaskIntoConstraints="NO" id="P69-Ak-X1l">
- <rect key="frame" x="16" y="10" width="40" height="40"/>
- <constraints>
- <constraint firstAttribute="height" constant="40" id="2qa-Do-KVM"/>
- <constraint firstAttribute="width" constant="40" id="fJR-Sm-FSN"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </imageView>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="249" verticalHuggingPriority="251" horizontalCompressionResistancePriority="749" verticalCompressionResistancePriority="751" text="Company Directory" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="tM0-nk-pXd" customClass="ContactNameLabel">
- <rect key="frame" x="64" y="11" width="154" height="20.5"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="101" contentMode="left" text="Search for employees" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="sUm-6k-kdq" customClass="SSLabel">
- <rect key="frame" x="64" y="31.5" width="131.5" height="16"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
- <color key="textColor" red="0.49803921569999998" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.50196078430000002" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="P69-Ak-X1l" firstAttribute="leading" secondItem="xsb-YD-UKR" secondAttribute="leadingMargin" id="8zS-3f-leC"/>
- <constraint firstItem="sUm-6k-kdq" firstAttribute="leading" secondItem="P69-Ak-X1l" secondAttribute="trailing" constant="8" id="E1P-WS-gJt"/>
- <constraint firstAttribute="bottomMargin" secondItem="sUm-6k-kdq" secondAttribute="bottom" constant="1.5" id="NzG-BH-lv1"/>
- <constraint firstItem="tM0-nk-pXd" firstAttribute="top" secondItem="xsb-YD-UKR" secondAttribute="topMargin" id="QOP-zM-ySp"/>
- <constraint firstAttribute="bottom" relation="greaterThanOrEqual" secondItem="P69-Ak-X1l" secondAttribute="bottom" constant="2" id="R3d-6X-MDS"/>
- <constraint firstItem="P69-Ak-X1l" firstAttribute="top" relation="greaterThanOrEqual" secondItem="xsb-YD-UKR" secondAttribute="top" constant="2" id="XDv-J1-8VU"/>
- <constraint firstItem="P69-Ak-X1l" firstAttribute="centerY" secondItem="xsb-YD-UKR" secondAttribute="centerY" id="dEg-qh-Wqo"/>
- <constraint firstItem="tM0-nk-pXd" firstAttribute="leading" secondItem="P69-Ak-X1l" secondAttribute="trailing" constant="8" id="gDg-Dy-Tv6"/>
- <constraint firstItem="sUm-6k-kdq" firstAttribute="top" secondItem="tM0-nk-pXd" secondAttribute="bottom" id="ppC-qb-oSD"/>
- </constraints>
- </tableViewCellContentView>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <connections>
- <outlet property="companyAvatar" destination="P69-Ak-X1l" id="TKY-hy-yX0"/>
- <outlet property="descriptionLabel" destination="sUm-6k-kdq" id="3Gw-D5-drJ"/>
- <outlet property="titleLabel" destination="tM0-nk-pXd" id="MqT-Ch-dMu"/>
- </connections>
- </tableViewCell>
- <placeholder placeholderIdentifier="IBFirstResponder" id="v33-rG-pnV" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-1458.4000000000001" y="-363.86806596701655"/>
- </scene>
- <!--My Profile-->
- <scene sceneID="Juw-dJ-4IQ">
- <objects>
- <navigationController id="uvv-Ko-dQ8" customClass="MyIdentityNavigationController" sceneMemberID="viewController">
- <tabBarItem key="tabBarItem" title="My Profile" image="TabBar-Id" id="5lj-oy-IYs"/>
- <toolbarItems/>
- <navigationBar key="navigationBar" contentMode="scaleToFill" largeTitles="YES" id="ySu-3e-OwE" customClass="StatusNavigationBar">
- <rect key="frame" x="0.0" y="0.0" width="375" height="96"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- <nil name="viewControllers"/>
- <connections>
- <segue destination="2cv-d2-Ign" kind="relationship" relationship="rootViewController" id="wYd-em-mRz"/>
- </connections>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="RxJ-yK-Fe6" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-2912" y="1414.0929535232385"/>
- </scene>
- <!--MyIdentityStoryboard-->
- <scene sceneID="1d1-Ba-MTy">
- <objects>
- <viewControllerPlaceholder storyboardName="MyIdentityStoryboard" id="2cv-d2-Ign" sceneMemberID="viewController">
- <navigationItem key="navigationItem" id="AeO-sJ-Kkx"/>
- </viewControllerPlaceholder>
- <placeholder placeholderIdentifier="IBFirstResponder" id="fMk-6r-pjN" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-2913.6000000000004" y="1899.8500749625189"/>
- </scene>
- <!--Modal Navigation Controller-->
- <scene sceneID="oa6-Aq-F4t">
- <objects>
- <navigationController storyboardIdentifier="NewScannedContact" id="udX-d0-cyB" customClass="ModalNavigationController" sceneMemberID="viewController">
- <toolbarItems/>
- <navigationBar key="navigationBar" contentMode="scaleToFill" id="Q0G-EA-t5Z" customClass="StatusNavigationBar">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- <nil name="viewControllers"/>
- <connections>
- <segue destination="bcN-Ct-OaD" kind="relationship" relationship="rootViewController" id="MvH-hT-pfP"/>
- </connections>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="Tst-lN-YQp" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="2791" y="2812"/>
- </scene>
- <!--Chat View Controller-->
- <scene sceneID="0PO-DN-NhL">
- <objects>
- <viewController storyboardIdentifier="chatViewController" autoresizesArchivedViewToFullSize="NO" hidesBottomBarWhenPushed="YES" id="v1R-9K-OZW" customClass="ChatViewController" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" id="qMd-WF-uDa">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="ZhQ-2Z-mYP">
- <rect key="frame" x="0.0" y="0.0" width="375" height="40"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <subviews>
- <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="WuX-yK-0RJ">
- <rect key="frame" x="8" y="4" width="358" height="32"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="14"/>
- <size key="titleShadowOffset" width="1" height="1"/>
- <state key="normal" title="Load Earlier Messages">
- <color key="titleColor" red="0.19607843459999999" green="0.30980393290000002" blue="0.52156865600000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="titleShadowColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- </state>
- <state key="highlighted">
- <color key="titleColor" red="0.19607843459999999" green="0.30980393290000002" blue="0.52156865600000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </state>
- <connections>
- <action selector="loadEarlierMessagesAction:" destination="v1R-9K-OZW" eventType="touchUpInside" id="IcO-Sz-Dj3"/>
- </connections>
- </button>
- </subviews>
- <viewLayoutGuide key="safeArea" id="xOE-nB-SUe"/>
- <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- </subviews>
- <viewLayoutGuide key="safeArea" id="9wi-kr-sqA"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- <navigationItem key="navigationItem" largeTitleDisplayMode="never" id="uYf-zy-tOB"/>
- <connections>
- <outlet property="chatContentHeader" destination="ZhQ-2Z-mYP" id="7vq-AJ-cwL"/>
- <outlet property="headerView" destination="ZhQ-2Z-mYP" id="zqP-cB-jca"/>
- <outlet property="loadEarlierMessages" destination="WuX-yK-0RJ" id="vcS-wC-de0"/>
- <segue destination="MbJ-IV-2f9" kind="show" identifier="ShowContact" id="rOK-24-MIK"/>
- <segue destination="FVk-BM-jrL" kind="show" identifier="ShowLocation" id="WV3-3M-WJY"/>
- <segue destination="E7y-fb-wyM" kind="show" identifier="ShowDetails" id="c6z-1E-Rur"/>
- <segue destination="Ms8-he-mHa" kind="show" identifier="ShowGroupInfo" id="iDo-S6-WeN"/>
- <segue destination="xtp-zM-Vgy" kind="show" identifier="ShowMeContact" id="uVG-ah-GIv"/>
- <segue destination="7sc-E3-vaH" kind="show" identifier="ShowPushSetting" id="v8v-US-Bo6"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="bM3-IQ-bac" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-683.20000000000005" y="417.39130434782612"/>
- </scene>
- <!--Preview-->
- <scene sceneID="ZQM-N7-ABW">
- <objects>
- <viewController storyboardIdentifier="PreviewImage" id="xFf-fm-QrO" customClass="PreviewImageViewController" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" id="eVy-LW-gwf">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" translatesAutoresizingMaskIntoConstraints="NO" id="94h-MW-FVh">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- </imageView>
- </subviews>
- <viewLayoutGuide key="safeArea" id="QoE-dW-Pbi"/>
- <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstItem="94h-MW-FVh" firstAttribute="top" secondItem="eVy-LW-gwf" secondAttribute="top" id="Gxm-09-kmt"/>
- <constraint firstItem="94h-MW-FVh" firstAttribute="bottom" secondItem="QoE-dW-Pbi" secondAttribute="bottom" id="Jsj-84-Ebs"/>
- <constraint firstItem="94h-MW-FVh" firstAttribute="leading" secondItem="QoE-dW-Pbi" secondAttribute="leading" id="bG5-UA-oAD"/>
- <constraint firstItem="94h-MW-FVh" firstAttribute="trailing" secondItem="QoE-dW-Pbi" secondAttribute="trailing" id="ckp-XM-GYJ"/>
- </constraints>
- </view>
- <navigationItem key="navigationItem" title="Preview" id="wPu-F7-kf1">
- <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="YCy-tZ-DQg">
- <connections>
- <action selector="cancelAction:" destination="xFf-fm-QrO" id="33e-eE-gCh"/>
- </connections>
- </barButtonItem>
- <barButtonItem key="rightBarButtonItem" title="Send" style="done" id="25C-Te-sfW">
- <connections>
- <action selector="sendAction:" destination="xFf-fm-QrO" id="GMR-ZL-Qz8"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <simulatedNavigationBarMetrics key="simulatedTopBarMetrics" barStyle="black" prompted="NO"/>
- <connections>
- <outlet property="imageView" destination="94h-MW-FVh" id="15h-Ag-y2z"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="LwV-KW-DFP" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="4177" y="417"/>
- </scene>
- <!--Modal Navigation Controller-->
- <scene sceneID="I9d-0A-aFE">
- <objects>
- <navigationController storyboardIdentifier="ContactPickerNav" id="X2J-pF-E4b" customClass="ModalNavigationController" sceneMemberID="viewController">
- <toolbarItems/>
- <navigationBar key="navigationBar" contentMode="scaleToFill" id="ZlH-8V-PkV" customClass="StatusNavigationBar">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- <nil name="viewControllers"/>
- <connections>
- <segue destination="OvB-ud-WFO" kind="relationship" relationship="rootViewController" id="ls1-VK-yb6"/>
- </connections>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="nxw-Dj-CRk" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="2748" y="2069"/>
- </scene>
- <!--Modal Navigation Controller-->
- <scene sceneID="D9S-JR-67e">
- <objects>
- <navigationController storyboardIdentifier="VerifyScannedContact" id="c2x-1I-hYh" customClass="ModalNavigationController" sceneMemberID="viewController">
- <toolbarItems/>
- <navigationBar key="navigationBar" contentMode="scaleToFill" id="ife-ea-aDH" customClass="StatusNavigationBar">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- <nil name="viewControllers"/>
- <connections>
- <segue destination="CJa-dK-jp4" kind="relationship" relationship="rootViewController" id="718-Kk-eTH"/>
- </connections>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="pO8-XU-dTk" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="2806" y="3595"/>
- </scene>
- <!--ID Verified-->
- <scene sceneID="QYY-E3-5fH">
- <objects>
- <tableViewController id="CJa-dK-jp4" customClass="IdentityVerifiedViewController" sceneMemberID="viewController">
- <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="yAX-VY-6pV">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <view key="tableHeaderView" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" id="ixC-bT-5cw">
- <rect key="frame" x="0.0" y="0.0" width="375" height="275"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <stackView opaque="NO" contentMode="scaleAspectFit" axis="vertical" distribution="equalSpacing" alignment="center" spacing="10" translatesAutoresizingMaskIntoConstraints="NO" id="HNG-Jj-vno">
- <rect key="frame" x="16" y="16" width="343" height="243"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="TcL-P5-PEX">
- <rect key="frame" x="71.5" y="0.0" width="200" height="200"/>
- <subviews>
- <imageView contentMode="scaleToFill" image="UnknownPerson" translatesAutoresizingMaskIntoConstraints="NO" id="xFV-V4-xV9">
- <rect key="frame" x="0.0" y="0.0" width="200" height="200"/>
- <constraints>
- <constraint firstAttribute="width" constant="200" id="2Fk-pW-wbn"/>
- <constraint firstAttribute="height" relation="lessThanOrEqual" constant="200" id="lP1-aJ-cAj"/>
- <constraint firstAttribute="width" secondItem="xFV-V4-xV9" secondAttribute="height" multiplier="1:1" id="t7f-tH-mVt"/>
- </constraints>
- </imageView>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="WorkContact.png" translatesAutoresizingMaskIntoConstraints="NO" id="z8K-7a-y8S">
- <rect key="frame" x="0.0" y="150" width="50" height="50"/>
- <constraints>
- <constraint firstAttribute="width" secondItem="z8K-7a-y8S" secondAttribute="height" multiplier="1:1" id="uDD-n3-6hw"/>
- </constraints>
- </imageView>
- </subviews>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- <constraints>
- <constraint firstAttribute="bottom" secondItem="xFV-V4-xV9" secondAttribute="bottom" id="B9B-gl-Np9"/>
- <constraint firstItem="z8K-7a-y8S" firstAttribute="bottom" secondItem="xFV-V4-xV9" secondAttribute="bottom" id="HmU-uV-T5k"/>
- <constraint firstItem="z8K-7a-y8S" firstAttribute="width" secondItem="xFV-V4-xV9" secondAttribute="height" multiplier="1:4" id="KpO-0S-FSZ"/>
- <constraint firstAttribute="trailing" secondItem="xFV-V4-xV9" secondAttribute="trailing" id="Wzt-lb-f3A"/>
- <constraint firstItem="xFV-V4-xV9" firstAttribute="top" secondItem="TcL-P5-PEX" secondAttribute="top" id="gB2-U5-2Rx"/>
- <constraint firstItem="xFV-V4-xV9" firstAttribute="leading" secondItem="TcL-P5-PEX" secondAttribute="leading" id="otj-rb-gZw"/>
- <constraint firstItem="z8K-7a-y8S" firstAttribute="leading" secondItem="xFV-V4-xV9" secondAttribute="leading" id="yu8-k6-AbP"/>
- </constraints>
- </view>
- <stackView opaque="NO" contentMode="scaleToFill" alignment="center" spacing="5" translatesAutoresizingMaskIntoConstraints="NO" id="gdf-DD-bDm">
- <rect key="frame" x="131.5" y="221" width="80.5" height="22"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="749" verticalCompressionResistancePriority="749" text="First Last" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="F29-qq-lEF">
- <rect key="frame" x="0.0" y="0.0" width="80.5" height="22"/>
- <constraints>
- <constraint firstAttribute="height" constant="22" id="Bcc-2n-fQC"/>
- </constraints>
- <fontDescription key="fontDescription" style="UICTFontTextStyleTitle3"/>
- <nil key="highlightedColor"/>
- <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <size key="shadowOffset" width="0.0" height="1"/>
- </label>
- </subviews>
- </stackView>
- </subviews>
- </stackView>
- </subviews>
- <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstItem="HNG-Jj-vno" firstAttribute="top" secondItem="ixC-bT-5cw" secondAttribute="top" constant="16" id="RXb-Pc-Iec"/>
- <constraint firstItem="HNG-Jj-vno" firstAttribute="leading" secondItem="ixC-bT-5cw" secondAttribute="leading" constant="16" id="n9c-y5-GvU"/>
- <constraint firstAttribute="bottom" secondItem="HNG-Jj-vno" secondAttribute="bottom" constant="16" id="nfm-BJ-ihY"/>
- <constraint firstAttribute="trailing" secondItem="HNG-Jj-vno" secondAttribute="trailing" constant="16" id="t3y-4z-Hr6"/>
- </constraints>
- </view>
- <view key="tableFooterView" contentMode="scaleToFill" id="XW3-1v-D2N">
- <rect key="frame" x="0.0" y="565" width="375" height="140"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="The ID and public key of this contact have been verified." textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="4Js-Fh-l8T">
- <rect key="frame" x="46.5" y="83" width="282" height="49"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verificationbig-2.png" translatesAutoresizingMaskIntoConstraints="NO" id="sqy-M6-DC0">
- <rect key="frame" x="106" y="31" width="163" height="41"/>
- <constraints>
- <constraint firstAttribute="width" constant="163" id="HIc-U9-jOu"/>
- <constraint firstAttribute="height" constant="41" id="Viy-vh-0yR"/>
- </constraints>
- </imageView>
- </subviews>
- <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstItem="4Js-Fh-l8T" firstAttribute="centerX" secondItem="XW3-1v-D2N" secondAttribute="centerX" id="4AZ-m6-TIx"/>
- <constraint firstItem="sqy-M6-DC0" firstAttribute="top" secondItem="XW3-1v-D2N" secondAttribute="top" constant="31" id="9xS-56-lKm"/>
- <constraint firstItem="4Js-Fh-l8T" firstAttribute="top" secondItem="sqy-M6-DC0" secondAttribute="bottom" constant="11" id="VgH-MI-x5p"/>
- <constraint firstAttribute="trailing" relation="greaterThanOrEqual" secondItem="4Js-Fh-l8T" secondAttribute="trailing" constant="40" id="fCM-zF-iko"/>
- <constraint firstItem="sqy-M6-DC0" firstAttribute="centerX" secondItem="XW3-1v-D2N" secondAttribute="centerX" id="hZi-rb-f7U"/>
- <constraint firstAttribute="bottomMargin" secondItem="4Js-Fh-l8T" secondAttribute="bottom" id="kZ0-tQ-yCk"/>
- <constraint firstItem="4Js-Fh-l8T" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="XW3-1v-D2N" secondAttribute="leading" constant="40" id="lNR-KJ-aSk"/>
- </constraints>
- </view>
- <sections>
- <tableViewSection id="U03-zs-DLa">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="sJF-Ib-o6C" detailTextLabel="wXd-jf-kGm" style="IBUITableViewCellStyleValue1" id="dGX-FG-UJD">
- <rect key="frame" x="0.0" y="292.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="dGX-FG-UJD" id="u4M-e1-rHe">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Threema ID" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="sJF-Ib-o6C">
- <rect key="frame" x="16" y="12" width="88" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="XXXXXXXX" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="wXd-jf-kGm" customClass="CopyLabel">
- <rect key="frame" x="270" y="12" width="89" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" textLabel="lH9-a1-MBS" style="IBUITableViewCellStyleDefault" id="gtJ-OO-ieh" customClass="VerificationLevelCell" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="0.0" y="336.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="gtJ-OO-ieh" id="U9L-xV-lkd">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Verification Level" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="lH9-a1-MBS">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-2.png" translatesAutoresizingMaskIntoConstraints="NO" id="lQL-W6-i9B">
- <rect key="frame" x="163" y="17" width="49" height="11"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="lQL-W6-i9B" id="OhK-c9-Bfp"/>
- <outlet property="levelImage" destination="lQL-W6-i9B" id="va6-vk-rko"/>
- <outlet property="titleLabel" destination="lH9-a1-MBS" id="m6T-uD-HA4"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="KeyFingerprintCell" id="tMj-Mw-b7D" customClass="KeyFingerprintCell" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="0.0" y="380.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="tMj-Mw-b7D" id="8ZS-NJ-Dhm">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" verticalCompressionResistancePriority="751" preservesSuperviewLayoutMargins="YES" text="Key Fingerprint" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="aGy-xg-eRi">
- <rect key="frame" x="16" y="14" width="343" height="14"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" preservesSuperviewLayoutMargins="YES" text="00000000000000000000000000000000" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="bt1-G0-NzZ" customClass="CopyLabel">
- <rect key="frame" x="16" y="30" width="343" height="0.0"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
- <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="aGy-xg-eRi" firstAttribute="leading" secondItem="8ZS-NJ-Dhm" secondAttribute="leadingMargin" id="Ckk-0A-8Yj"/>
- <constraint firstAttribute="bottomMargin" secondItem="bt1-G0-NzZ" secondAttribute="bottom" constant="3" id="Dvc-Ed-Rgw"/>
- <constraint firstAttribute="trailingMargin" secondItem="aGy-xg-eRi" secondAttribute="trailing" id="Ep0-gd-qFa"/>
- <constraint firstItem="bt1-G0-NzZ" firstAttribute="top" secondItem="aGy-xg-eRi" secondAttribute="bottom" constant="2" id="HlB-57-JcR"/>
- <constraint firstItem="aGy-xg-eRi" firstAttribute="top" secondItem="8ZS-NJ-Dhm" secondAttribute="topMargin" constant="3" id="atf-Gd-O2x"/>
- <constraint firstAttribute="trailingMargin" secondItem="bt1-G0-NzZ" secondAttribute="trailing" id="qda-VA-0uF"/>
- <constraint firstItem="bt1-G0-NzZ" firstAttribute="leading" secondItem="8ZS-NJ-Dhm" secondAttribute="leadingMargin" id="qr3-E3-gnk"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <outlet property="fingerprintLabel" destination="bt1-G0-NzZ" id="7Hf-YB-uB8"/>
- <outlet property="fingerprintValueLabel" destination="bt1-G0-NzZ" id="tfG-19-pUA"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection id="njn-BS-Y6W">
- <cells>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SendMessageCell" id="6Kr-3Y-Yos" customClass="ContactSendMessageCell" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="0.0" y="459.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="6Kr-3Y-Yos" id="fM9-Sn-RR2">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="SendMessage" translatesAutoresizingMaskIntoConstraints="NO" id="D8j-5R-rzg">
- <rect key="frame" x="16" y="11" width="24" height="22"/>
- <constraints>
- <constraint firstAttribute="height" constant="22" id="FfK-xJ-TnI"/>
- <constraint firstAttribute="width" constant="24" id="gZ6-rV-qAL"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </imageView>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="751" text="Send Message" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="29s-0j-pO7">
- <rect key="frame" x="56" y="11.5" width="303" height="21"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="D8j-5R-rzg" firstAttribute="centerY" secondItem="fM9-Sn-RR2" secondAttribute="centerY" id="4CM-Er-eGz"/>
- <constraint firstAttribute="trailingMargin" secondItem="29s-0j-pO7" secondAttribute="trailing" id="HU2-h7-3Tj"/>
- <constraint firstItem="29s-0j-pO7" firstAttribute="centerY" secondItem="fM9-Sn-RR2" secondAttribute="centerY" id="c9i-G7-5aw"/>
- <constraint firstItem="29s-0j-pO7" firstAttribute="leading" secondItem="D8j-5R-rzg" secondAttribute="trailing" constant="16" id="r0O-Eb-Xcw"/>
- <constraint firstItem="D8j-5R-rzg" firstAttribute="leading" secondItem="fM9-Sn-RR2" secondAttribute="leadingMargin" id="zHG-Og-R9F"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <outlet property="sendMessageImageView" destination="D8j-5R-rzg" id="PZ1-An-jbY"/>
- <outlet property="sendMessageLabel" destination="29s-0j-pO7" id="9e9-94-YJH"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ThreemaCallCell" id="HVd-bi-PPa" customClass="ContactThreemaCallCell" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="0.0" y="503.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="HVd-bi-PPa" id="iaK-0I-Psf">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="751" text="Threema Call" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Loc-jL-c6X">
- <rect key="frame" x="56" y="11.5" width="303" height="21"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ThreemaPhone" translatesAutoresizingMaskIntoConstraints="NO" id="ieD-Fv-A0g">
- <rect key="frame" x="16" y="9.5" width="25" height="25"/>
- <constraints>
- <constraint firstAttribute="width" constant="25" id="XZD-CN-q9c"/>
- <constraint firstAttribute="height" constant="25" id="q2v-LN-hjR"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </imageView>
- </subviews>
- <constraints>
- <constraint firstItem="Loc-jL-c6X" firstAttribute="centerY" secondItem="iaK-0I-Psf" secondAttribute="centerY" id="0qm-Id-Smo"/>
- <constraint firstItem="Loc-jL-c6X" firstAttribute="leading" secondItem="ieD-Fv-A0g" secondAttribute="trailing" constant="15" id="CC1-q8-7vO"/>
- <constraint firstItem="ieD-Fv-A0g" firstAttribute="centerY" secondItem="iaK-0I-Psf" secondAttribute="centerY" id="Kei-qd-s2H"/>
- <constraint firstItem="ieD-Fv-A0g" firstAttribute="leading" secondItem="iaK-0I-Psf" secondAttribute="leadingMargin" id="LNn-Tr-a8c"/>
- <constraint firstAttribute="trailingMargin" secondItem="Loc-jL-c6X" secondAttribute="trailing" id="ZBW-N6-jMb"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <outlet property="threemaCallImageView" destination="ieD-Fv-A0g" id="8Yy-9h-jzG"/>
- <outlet property="threemaCallLabel" destination="Loc-jL-c6X" id="ROr-FG-3Og"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="CJa-dK-jp4" id="n4A-Pp-fHy"/>
- <outlet property="delegate" destination="CJa-dK-jp4" id="nqO-dn-tRc"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="ID Verified" id="sik-yL-35n">
- <barButtonItem key="rightBarButtonItem" systemItem="done" id="StH-Kj-2q2">
- <connections>
- <action selector="done:" destination="CJa-dK-jp4" id="RWR-bW-cRX"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <connections>
- <outlet property="contactImage" destination="xFV-V4-xV9" id="YD2-ug-dK8"/>
- <outlet property="identityLabel" destination="wXd-jf-kGm" id="H9d-Hh-DBf"/>
- <outlet property="keyFingerprintCell" destination="tMj-Mw-b7D" id="oWu-Tu-Nm9"/>
- <outlet property="nameLabel" destination="F29-qq-lEF" id="GZD-Nh-5rk"/>
- <outlet property="sendMessageCell" destination="6Kr-3Y-Yos" id="fYj-rZ-miE"/>
- <outlet property="sendMessageLabel" destination="29s-0j-pO7" id="ot3-mg-Vff"/>
- <outlet property="threemaCallCell" destination="HVd-bi-PPa" id="21l-D9-XCl"/>
- <outlet property="threemaCallLabel" destination="Loc-jL-c6X" id="EV3-11-k9z"/>
- <outlet property="threemaTypeIcon" destination="z8K-7a-y8S" id="uo3-c9-wJZ"/>
- <outlet property="verificationLevelCell" destination="gtJ-OO-ieh" id="gcR-5h-aAJ"/>
- <outlet property="verificationLevelImage" destination="sqy-M6-DC0" id="Eze-Qb-R2Q"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="uwR-It-Ztf" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="3584.8000000000002" y="3594.1529235382313"/>
- </scene>
- <!--Modal Navigation Controller-->
- <scene sceneID="YhH-yK-u78">
- <objects>
- <navigationController storyboardIdentifier="AddContactNavigationController" id="f9d-eO-Il0" customClass="ModalNavigationController" sceneMemberID="viewController">
- <toolbarItems/>
- <navigationBar key="navigationBar" contentMode="scaleToFill" id="3xB-fy-EQG" customClass="StatusNavigationBar">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- <nil name="viewControllers"/>
- <connections>
- <segue destination="G1V-ju-hH8" kind="relationship" relationship="rootViewController" id="M0V-He-65Y"/>
- </connections>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="TMY-VX-QLz" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="2745.6000000000004" y="-1027.2863568215894"/>
- </scene>
- <!--Location-->
- <scene sceneID="WKh-CG-rTy">
- <objects>
- <viewController id="Wkx-66-6GX" customClass="PreviewLocationViewController" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" id="iQb-3C-dOf">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <mapView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" horizontalHuggingPriority="249" verticalHuggingPriority="249" mapType="standard" showsUserLocation="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Je0-Vz-Lkn">
- <rect key="frame" x="0.0" y="44" width="375" height="310.5"/>
- <connections>
- <outlet property="delegate" destination="Wkx-66-6GX" id="Ilv-OF-du2"/>
- </connections>
- </mapView>
- <tableView clipsSubviews="YES" contentMode="scaleToFill" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="751" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="FDN-uT-vuM">
- <rect key="frame" x="0.0" y="356.5" width="375" height="310.5"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="PoiCell" id="sEJ-nE-fjD" customClass="PoiTableViewCell">
- <rect key="frame" x="0.0" y="28" width="375" height="60.5"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="sEJ-nE-fjD" id="Ibb-lQ-JQA">
- <rect key="frame" x="0.0" y="0.0" width="375" height="60.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="252" verticalCompressionResistancePriority="751" text="Label" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="gsp-ed-V8R">
- <rect key="frame" x="20" y="11" width="339" height="19"/>
- <fontDescription key="fontDescription" type="system" pointSize="16"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="pVJ-rQ-2qD">
- <rect key="frame" x="20" y="33" width="339" height="16.5"/>
- <fontDescription key="fontDescription" type="system" pointSize="13"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstAttribute="trailingMargin" secondItem="pVJ-rQ-2qD" secondAttribute="trailing" id="JQB-U2-n13"/>
- <constraint firstItem="pVJ-rQ-2qD" firstAttribute="top" secondItem="gsp-ed-V8R" secondAttribute="bottom" constant="3" id="NJf-KD-KKp"/>
- <constraint firstItem="gsp-ed-V8R" firstAttribute="top" secondItem="Ibb-lQ-JQA" secondAttribute="topMargin" id="UDk-h3-aty"/>
- <constraint firstAttribute="trailingMargin" secondItem="gsp-ed-V8R" secondAttribute="trailing" id="eCg-1n-g8L"/>
- <constraint firstItem="pVJ-rQ-2qD" firstAttribute="leading" secondItem="Ibb-lQ-JQA" secondAttribute="leading" constant="20" symbolic="YES" id="i3m-dP-8am"/>
- <constraint firstItem="gsp-ed-V8R" firstAttribute="leading" secondItem="Ibb-lQ-JQA" secondAttribute="leading" constant="20" symbolic="YES" id="u3N-aA-bVb"/>
- <constraint firstAttribute="bottomMargin" secondItem="pVJ-rQ-2qD" secondAttribute="bottom" id="vIb-dR-bMh"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <outlet property="addressLabel" destination="pVJ-rQ-2qD" id="fzc-Y5-wg1"/>
- <outlet property="nameLabel" destination="gsp-ed-V8R" id="AVe-nC-vkv"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="NoPlacesFoundCell" id="ZEa-VT-VrF">
- <rect key="frame" x="0.0" y="88.5" width="375" height="39.5"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="ZEa-VT-VrF" id="xEF-es-Ppz">
- <rect key="frame" x="0.0" y="0.0" width="375" height="39.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="No places found in current location" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="jSK-DO-xV2">
- <rect key="frame" x="16" y="11" width="343" height="17.5"/>
- <fontDescription key="fontDescription" type="italicSystem" pointSize="14"/>
- <color key="textColor" red="0.66666666666666663" green="0.66666666666666663" blue="0.66666666666666663" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="jSK-DO-xV2" firstAttribute="top" secondItem="xEF-es-Ppz" secondAttribute="topMargin" id="HEa-6c-erj"/>
- <constraint firstItem="jSK-DO-xV2" firstAttribute="leading" secondItem="xEF-es-Ppz" secondAttribute="leadingMargin" id="McD-A1-pXB"/>
- <constraint firstAttribute="bottomMargin" secondItem="jSK-DO-xV2" secondAttribute="bottom" id="jH9-s4-lOL"/>
- <constraint firstAttribute="trailingMargin" secondItem="jSK-DO-xV2" secondAttribute="trailing" id="xde-H8-ef1"/>
- </constraints>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="EnterQueryCell" id="yd1-gI-T17">
- <rect key="frame" x="0.0" y="128" width="375" height="39.5"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="yd1-gI-T17" id="a9c-xg-g6E">
- <rect key="frame" x="0.0" y="0.0" width="375" height="39.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Enter a query to search for places" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="oXh-5e-M7J">
- <rect key="frame" x="16" y="11" width="343" height="17.5"/>
- <fontDescription key="fontDescription" type="italicSystem" pointSize="14"/>
- <color key="textColor" red="0.66666666669999997" green="0.66666666669999997" blue="0.66666666669999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstAttribute="bottomMargin" secondItem="oXh-5e-M7J" secondAttribute="bottom" id="0md-qA-Of3"/>
- <constraint firstAttribute="trailingMargin" secondItem="oXh-5e-M7J" secondAttribute="trailing" id="65H-p0-JLg"/>
- <constraint firstItem="oXh-5e-M7J" firstAttribute="top" secondItem="a9c-xg-g6E" secondAttribute="topMargin" id="GYZ-CH-j4Q"/>
- <constraint firstItem="oXh-5e-M7J" firstAttribute="leading" secondItem="a9c-xg-g6E" secondAttribute="leadingMargin" id="VBF-dL-WaY"/>
- </constraints>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="SpinnerCell" id="t7Z-a3-P0r">
- <rect key="frame" x="0.0" y="167.5" width="375" height="42.5"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="t7Z-a3-P0r" id="u3F-pD-HYF">
- <rect key="frame" x="0.0" y="0.0" width="375" height="42.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <activityIndicatorView opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" animating="YES" style="gray" translatesAutoresizingMaskIntoConstraints="NO" id="pQw-UF-py6">
- <rect key="frame" x="177.5" y="11" width="20" height="20.5"/>
- </activityIndicatorView>
- </subviews>
- <constraints>
- <constraint firstAttribute="bottomMargin" secondItem="pQw-UF-py6" secondAttribute="bottom" id="Jhh-dG-N1d"/>
- <constraint firstItem="pQw-UF-py6" firstAttribute="centerX" secondItem="u3F-pD-HYF" secondAttribute="centerX" id="QeL-XX-lEx"/>
- <constraint firstItem="pQw-UF-py6" firstAttribute="top" secondItem="u3F-pD-HYF" secondAttribute="topMargin" id="trL-Ym-vcQ"/>
- </constraints>
- </tableViewCellContentView>
- </tableViewCell>
- </prototypes>
- <connections>
- <outlet property="dataSource" destination="Wkx-66-6GX" id="ATU-i1-c8v"/>
- <outlet property="delegate" destination="Wkx-66-6GX" id="f3c-vQ-Lpc"/>
- </connections>
- </tableView>
- </subviews>
- <viewLayoutGuide key="safeArea" id="XJb-g2-fw4"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstItem="FDN-uT-vuM" firstAttribute="height" secondItem="Je0-Vz-Lkn" secondAttribute="height" multiplier="1:1" id="19a-iD-O8T"/>
- <constraint firstItem="Je0-Vz-Lkn" firstAttribute="top" secondItem="iQb-3C-dOf" secondAttribute="topMargin" id="6fg-4f-MuX"/>
- <constraint firstItem="FDN-uT-vuM" firstAttribute="top" secondItem="Je0-Vz-Lkn" secondAttribute="bottom" constant="2" id="Dt9-nR-VQl"/>
- <constraint firstItem="XJb-g2-fw4" firstAttribute="bottom" secondItem="Je0-Vz-Lkn" secondAttribute="bottom" priority="750" id="F3I-qa-eLG"/>
- <constraint firstItem="Je0-Vz-Lkn" firstAttribute="leading" secondItem="XJb-g2-fw4" secondAttribute="leading" id="V3m-ci-PF6"/>
- <constraint firstItem="FDN-uT-vuM" firstAttribute="trailing" secondItem="XJb-g2-fw4" secondAttribute="trailing" id="b1p-NH-I2k"/>
- <constraint firstItem="FDN-uT-vuM" firstAttribute="bottom" secondItem="XJb-g2-fw4" secondAttribute="bottom" id="bVj-GQ-wj2"/>
- <constraint firstItem="FDN-uT-vuM" firstAttribute="leading" secondItem="XJb-g2-fw4" secondAttribute="leading" id="h1M-qh-QHH"/>
- <constraint firstItem="Je0-Vz-Lkn" firstAttribute="trailing" secondItem="XJb-g2-fw4" secondAttribute="trailing" id="lBf-Lp-Mfs"/>
- </constraints>
- </view>
- <navigationItem key="navigationItem" title="Location" id="eXF-nx-MbG">
- <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="gbL-qc-nD4">
- <connections>
- <action selector="cancelAction:" destination="Wkx-66-6GX" id="3wq-nj-z6i"/>
- </connections>
- </barButtonItem>
- <barButtonItem key="rightBarButtonItem" title="Send" style="done" id="aQb-a9-JtU">
- <connections>
- <action selector="sendAction:" destination="Wkx-66-6GX" id="vj5-3j-sA0"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <connections>
- <outlet property="mapView" destination="Je0-Vz-Lkn" id="b6u-Rt-HOF"/>
- <outlet property="poiTableView" destination="FDN-uT-vuM" id="Be4-BD-mFX"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="cAf-3k-pix" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="3584.8000000000002" y="1273.313343328336"/>
- </scene>
- <!--Location-->
- <scene sceneID="Z2f-4e-iax">
- <objects>
- <viewController id="FVk-BM-jrL" customClass="LocationViewController" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" id="rJc-tG-ypl">
- <rect key="frame" x="0.0" y="0.0" width="375" height="618"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <mapView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" mapType="standard" translatesAutoresizingMaskIntoConstraints="NO" id="S8H-J6-Ghl">
- <rect key="frame" x="0.0" y="0.0" width="375" height="574"/>
- <connections>
- <outlet property="delegate" destination="FVk-BM-jrL" id="B0B-6H-r0n"/>
- </connections>
- </mapView>
- <toolbar opaque="NO" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Pwh-dA-MBJ">
- <rect key="frame" x="0.0" y="574" width="375" height="44"/>
- <viewLayoutGuide key="safeArea" id="WzG-2F-Wt4"/>
- <items>
- <barButtonItem image="CurrentLocation" id="5k3-jD-RBI">
- <connections>
- <action selector="gotoUserLocationButtonTapped:" destination="FVk-BM-jrL" id="wLI-dZ-HUZ"/>
- </connections>
- </barButtonItem>
- <barButtonItem style="plain" systemItem="flexibleSpace" id="ZKQ-1p-YQv"/>
- <barButtonItem style="plain" id="gQF-5H-Z1H">
- <segmentedControl key="customView" opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="top" segmentControlStyle="bar" selectedSegmentIndex="0" id="M1P-ix-V2L">
- <rect key="frame" x="74" y="6" width="227" height="32"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <segments>
- <segment title="Standard"/>
- <segment title="Hybrid"/>
- <segment title="Satellite"/>
- </segments>
- <connections>
- <action selector="mapTypeChanged:" destination="FVk-BM-jrL" eventType="valueChanged" id="VxI-Gv-4nf"/>
- </connections>
- </segmentedControl>
- </barButtonItem>
- <barButtonItem style="plain" systemItem="flexibleSpace" id="Oxk-XT-dDa"/>
- <barButtonItem image="Location" id="C0u-5z-beZ">
- <connections>
- <action selector="gotoLocationButtonTapped:" destination="FVk-BM-jrL" id="UbN-h8-KQu"/>
- </connections>
- </barButtonItem>
- <barButtonItem width="4" style="plain" systemItem="fixedSpace" id="YBk-mo-fhm"/>
- </items>
- </toolbar>
- </subviews>
- <viewLayoutGuide key="safeArea" id="IaX-z7-doe"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="Pwh-dA-MBJ" secondAttribute="trailing" id="9XE-tn-tas"/>
- <constraint firstItem="Pwh-dA-MBJ" firstAttribute="top" secondItem="S8H-J6-Ghl" secondAttribute="bottom" id="GRg-dQ-2eT"/>
- <constraint firstItem="Pwh-dA-MBJ" firstAttribute="leading" secondItem="rJc-tG-ypl" secondAttribute="leading" id="Kei-Ji-CCB"/>
- <constraint firstItem="S8H-J6-Ghl" firstAttribute="top" secondItem="rJc-tG-ypl" secondAttribute="top" id="P9E-H3-5R7"/>
- <constraint firstItem="S8H-J6-Ghl" firstAttribute="trailing" secondItem="IaX-z7-doe" secondAttribute="trailing" id="qeT-or-oZc"/>
- <constraint firstItem="S8H-J6-Ghl" firstAttribute="leading" secondItem="IaX-z7-doe" secondAttribute="leading" id="reP-f7-qqF"/>
- <constraint firstItem="Pwh-dA-MBJ" firstAttribute="top" secondItem="S8H-J6-Ghl" secondAttribute="bottom" id="tPN-AZ-Waf"/>
- <constraint firstAttribute="bottomMargin" secondItem="Pwh-dA-MBJ" secondAttribute="bottom" id="vf5-H7-oM9"/>
- </constraints>
- </view>
- <extendedEdge key="edgesForExtendedLayout" top="YES"/>
- <navigationItem key="navigationItem" title="Location" largeTitleDisplayMode="never" id="uA6-FU-2ms">
- <barButtonItem key="rightBarButtonItem" image="Share" id="g63-mL-9aV">
- <connections>
- <action selector="actionButton:" destination="FVk-BM-jrL" id="k7Z-FE-B7H"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <connections>
- <outlet property="mapTypeControl" destination="M1P-ix-V2L" id="SYk-3D-PWa"/>
- <outlet property="mapView" destination="S8H-J6-Ghl" id="9CB-fL-wrH"/>
- <outlet property="toolbar" destination="Pwh-dA-MBJ" id="d68-db-Qd7"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="imr-ga-5Ay" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="174.40000000000001" y="1235.0824587706147"/>
- </scene>
- <!--Backup-->
- <scene sceneID="aZM-S6-hXI">
- <objects>
- <tableViewController storyboardIdentifier="BackupIdentityViewController" id="gAo-8A-eYi" customClass="BackupIdentityViewController" sceneMemberID="viewController">
- <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="sZM-Dq-rH8">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <sections>
- <tableViewSection footerTitle="#do not translate#The encrypted ID backup will be included when you back up your phone via iTunes or iCloud." id="eEV-l3-MXP">
- <cells>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" textLabel="d2g-FC-ibo" style="IBUITableViewCellStyleDefault" id="SjH-bw-For">
- <rect key="frame" x="0.0" y="10" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="SjH-bw-For" id="fQd-2D-97K">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Include in phone backup" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="d2g-FC-ibo">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="EbD-7M-51F">
- <rect key="frame" x="160" y="5" width="54" height="32"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="phoneBackupSwitchChanged:" destination="gAo-8A-eYi" eventType="valueChanged" id="o6c-l0-Bca"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="EbD-7M-51F" id="NQM-i6-mPk"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection id="dgK-0J-UrZ">
- <string key="footerTitle">#do not translate#This data, along with the password that you have chosen, can be used to restore your ID on another device. You can copy & paste it to a suitable location, email it to yourself or scan the QR code using another device.</string>
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="CCC-bg-9EV">
- <rect key="frame" x="0.0" y="126" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="CCC-bg-9EV" id="6vo-th-Uu5">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Your ID backup" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ZIq-dn-JdH">
- <rect key="frame" x="16" y="11" width="343" height="0.0"/>
- <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" verticalCompressionResistancePriority="751" text="XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX" lineBreakMode="wordWrap" numberOfLines="8" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="UbM-As-itV" customClass="CopyLabel" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="16" y="26" width="343" height="7"/>
- <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleTitle3"/>
- <color key="textColor" red="0.33333333333333331" green="0.33333333333333331" blue="0.33333333333333331" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstAttribute="trailingMargin" secondItem="ZIq-dn-JdH" secondAttribute="trailing" id="CKB-6c-Kv6"/>
- <constraint firstAttribute="bottomMargin" secondItem="UbM-As-itV" secondAttribute="bottom" id="EfZ-9M-jXa"/>
- <constraint firstAttribute="trailingMargin" secondItem="UbM-As-itV" secondAttribute="trailing" id="V95-EB-EHa"/>
- <constraint firstItem="ZIq-dn-JdH" firstAttribute="top" secondItem="6vo-th-Uu5" secondAttribute="topMargin" id="Z2F-F0-bEm"/>
- <constraint firstItem="UbM-As-itV" firstAttribute="top" secondItem="ZIq-dn-JdH" secondAttribute="bottom" constant="15" id="fE5-4d-Lsm"/>
- <constraint firstItem="UbM-As-itV" firstAttribute="leading" secondItem="6vo-th-Uu5" secondAttribute="leadingMargin" id="uhv-Gs-GS8"/>
- <constraint firstItem="ZIq-dn-JdH" firstAttribute="leading" secondItem="6vo-th-Uu5" secondAttribute="leadingMargin" id="yhk-Wh-D1u"/>
- </constraints>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="i0e-YI-l7h">
- <rect key="frame" x="0.0" y="170" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="i0e-YI-l7h" id="QPu-lW-7f1">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="kRn-kl-WMg">
- <rect key="frame" x="87.5" y="12" width="200" height="200"/>
- <constraints>
- <constraint firstAttribute="height" constant="200" id="AKa-om-r9l"/>
- <constraint firstAttribute="width" constant="200" id="YSe-Ph-SIZ"/>
- </constraints>
- </imageView>
- </subviews>
- <constraints>
- <constraint firstAttribute="bottom" secondItem="kRn-kl-WMg" secondAttribute="bottom" constant="12" id="D0h-2n-kzW"/>
- <constraint firstItem="kRn-kl-WMg" firstAttribute="centerY" secondItem="QPu-lW-7f1" secondAttribute="centerY" id="X4E-xw-lpF"/>
- <constraint firstItem="kRn-kl-WMg" firstAttribute="top" secondItem="QPu-lW-7f1" secondAttribute="top" constant="12" id="ost-iQ-DJK"/>
- <constraint firstItem="kRn-kl-WMg" firstAttribute="centerX" secondItem="QPu-lW-7f1" secondAttribute="centerX" id="w4M-vk-lkH"/>
- </constraints>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="gAo-8A-eYi" id="se1-gl-h6d"/>
- <outlet property="delegate" destination="gAo-8A-eYi" id="6gX-95-2Ir"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Backup" id="tUV-iz-VQc">
- <barButtonItem key="leftBarButtonItem" title="Item" image="Share" id="6rx-8S-8dN">
- <connections>
- <action selector="actionAction:" destination="gAo-8A-eYi" id="HoY-DV-TVY"/>
- </connections>
- </barButtonItem>
- <barButtonItem key="rightBarButtonItem" style="done" systemItem="done" id="BHs-xY-jVH">
- <connections>
- <action selector="doneAction:" destination="gAo-8A-eYi" id="sPG-bB-UgV"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <connections>
- <outlet property="identityBackupLabel" destination="UbM-As-itV" id="snU-Nd-bbt"/>
- <outlet property="phoneBackupSwitch" destination="EbD-7M-51F" id="Q2Q-zG-TNJ"/>
- <outlet property="qrImageView" destination="kRn-kl-WMg" id="UpV-b7-z41"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="b8h-ot-G05" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="3492" y="-1729.385307346327"/>
- </scene>
- <!--Modal Navigation Controller-->
- <scene sceneID="6uV-Dd-70q">
- <objects>
- <navigationController storyboardIdentifier="PreviewImageNav" id="DJG-Qa-Yg3" customClass="ModalNavigationController" sceneMemberID="viewController">
- <toolbarItems/>
- <navigationBar key="navigationBar" contentMode="scaleToFill" id="npS-lz-iH9" customClass="StatusNavigationBar">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- <nil name="viewControllers"/>
- <connections>
- <segue destination="xFf-fm-QrO" kind="relationship" relationship="rootViewController" id="q48-tN-sD4"/>
- </connections>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="pRS-65-HaS" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="3430" y="417"/>
- </scene>
- <!--Modal Navigation Controller-->
- <scene sceneID="r0I-Pl-MjX">
- <objects>
- <navigationController storyboardIdentifier="PreviewLocationNav" id="e4t-hK-I8I" customClass="ModalNavigationController" sceneMemberID="viewController">
- <toolbarItems/>
- <navigationBar key="navigationBar" contentMode="scaleToFill" id="Y2Y-vI-g7b" customClass="StatusNavigationBar">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- <nil name="viewControllers"/>
- <connections>
- <segue destination="Wkx-66-6GX" kind="relationship" relationship="rootViewController" id="3Lk-6y-Uhp"/>
- </connections>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="Bn8-Po-FKe" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="2748" y="1274"/>
- </scene>
- <!--Message Details-->
- <scene sceneID="Cv9-FB-47s">
- <objects>
- <tableViewController id="E7y-fb-wyM" customClass="MessageDetailsViewController" sceneMemberID="viewController">
- <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="jvs-rb-KIX">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <sections>
- <tableViewSection id="XfY-AL-XVD">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="yWO-wH-mIW" detailTextLabel="6bQ-Vj-jcf" style="IBUITableViewCellStyleValue1" id="Bp8-mc-hzQ">
- <rect key="frame" x="0.0" y="17.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Bp8-mc-hzQ" id="JeJ-md-9Ou">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Sent" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="yWO-wH-mIW">
- <rect key="frame" x="16" y="12" width="35" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="headTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="6bQ-Vj-jcf">
- <rect key="frame" x="315" y="12" width="44" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="qNO-eF-kmI" detailTextLabel="kaj-lV-4MC" style="IBUITableViewCellStyleValue1" id="EbI-pt-9xY">
- <rect key="frame" x="0.0" y="61.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="EbI-pt-9xY" id="GFp-1y-UAg">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Delivered" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="qNO-eF-kmI">
- <rect key="frame" x="16" y="12" width="72" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="headTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="kaj-lV-4MC">
- <rect key="frame" x="315" y="12" width="44" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="Zrm-eG-ewD" detailTextLabel="6On-uo-xuU" style="IBUITableViewCellStyleValue1" id="LdK-5e-ndU">
- <rect key="frame" x="0.0" y="105.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="LdK-5e-ndU" id="66f-43-i0T">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Read" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="Zrm-eG-ewD">
- <rect key="frame" x="16" y="12" width="39" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="headTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="6On-uo-xuU">
- <rect key="frame" x="315" y="12" width="44" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="VRy-nm-s0X" detailTextLabel="5Ca-aK-dv0" style="IBUITableViewCellStyleValue1" id="jhc-3O-3ED">
- <rect key="frame" x="0.0" y="149.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="jhc-3O-3ED" id="3lf-c1-KWQ">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Acknowledged" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="VRy-nm-s0X">
- <rect key="frame" x="16" y="12" width="112.5" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="headTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="5Ca-aK-dv0">
- <rect key="frame" x="315" y="12" width="44" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="CyG-aF-qUX" detailTextLabel="eK9-D8-pFP" style="IBUITableViewCellStyleValue1" id="HID-Ph-AlL">
- <rect key="frame" x="0.0" y="193.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="HID-Ph-AlL" id="Qy4-H5-L7t">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Message-ID" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="CyG-aF-qUX">
- <rect key="frame" x="16" y="12" width="92.5" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="headTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="eK9-D8-pFP" customClass="CopyLabel">
- <rect key="frame" x="315" y="12" width="44" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="E7y-fb-wyM" id="LdU-3k-7vK"/>
- <outlet property="delegate" destination="E7y-fb-wyM" id="gPG-RT-yhf"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Message Details" largeTitleDisplayMode="never" id="LsJ-Ts-xZd"/>
- <connections>
- <outlet property="ackDateLabel" destination="5Ca-aK-dv0" id="p8M-Jl-onh"/>
- <outlet property="deliveredDateLabel" destination="kaj-lV-4MC" id="2F5-Cf-6vI"/>
- <outlet property="messageIdLabel" destination="eK9-D8-pFP" id="Fbc-lv-gnI"/>
- <outlet property="readDateLabel" destination="6On-uo-xuU" id="Q6N-Ru-waC"/>
- <outlet property="sendDateLabel" destination="6bQ-Vj-jcf" id="Qcr-nH-KwS"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="dXE-vh-e84" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-681.60000000000002" y="1235.0824587706147"/>
- </scene>
- <!--Navigation Controller-->
- <scene sceneID="pMC-N0-lCt">
- <objects>
- <navigationController storyboardIdentifier="BackupIdentityNavigationController" automaticallyAdjustsScrollViewInsets="NO" id="kOn-02-WX5" sceneMemberID="viewController">
- <toolbarItems/>
- <navigationBar key="navigationBar" contentMode="scaleToFill" id="aqn-Eo-p5r">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- <nil name="viewControllers"/>
- <connections>
- <segue destination="gAo-8A-eYi" kind="relationship" relationship="rootViewController" id="f97-Kd-K1p"/>
- </connections>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="id9-wn-aP0" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="2745" y="-1729"/>
- </scene>
- <!--Company Directory View Controller-->
- <scene sceneID="r7m-A8-Z28">
- <objects>
- <viewController storyboardIdentifier="CompanyDirectoryViewController" id="NhG-YL-Zj2" customClass="CompanyDirectoryViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" id="MvB-84-7l9">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <subviews>
- <searchBar contentMode="redraw" searchBarStyle="prominent" translatesAutoresizingMaskIntoConstraints="NO" id="WDp-BX-b9r" customClass="SearchBarWithoutCancelButton" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="0.0" y="44" width="375" height="56"/>
- <textInputTraits key="textInputTraits"/>
- <connections>
- <outlet property="delegate" destination="NhG-YL-Zj2" id="h0m-e1-kgr"/>
- </connections>
- </searchBar>
- <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="1Px-aE-PC8">
- <rect key="frame" x="0.0" y="100" width="375" height="567"/>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- <scrollView key="tableHeaderView" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" ambiguous="YES" id="JJm-hr-WcJ">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <stackView opaque="NO" contentMode="scaleToFill" ambiguous="YES" distribution="equalSpacing" spacing="17" translatesAutoresizingMaskIntoConstraints="NO" id="hlP-2o-LUy">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- </stackView>
- </subviews>
- <constraints>
- <constraint firstItem="hlP-2o-LUy" firstAttribute="leading" secondItem="JJm-hr-WcJ" secondAttribute="leading" constant="15" id="IIX-Js-uH2"/>
- <constraint firstAttribute="bottom" secondItem="hlP-2o-LUy" secondAttribute="bottom" id="jl8-Ts-AlN"/>
- <constraint firstItem="hlP-2o-LUy" firstAttribute="top" secondItem="JJm-hr-WcJ" secondAttribute="top" id="k4j-lc-wB0"/>
- <constraint firstItem="hlP-2o-LUy" firstAttribute="height" secondItem="JJm-hr-WcJ" secondAttribute="height" id="l2V-EV-HeU"/>
- <constraint firstAttribute="trailing" secondItem="hlP-2o-LUy" secondAttribute="trailing" constant="15" id="qqs-tw-XEg"/>
- </constraints>
- </scrollView>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="CompanyDirectoryContactCell" id="4qL-ur-1HB" customClass="CompanyDirectoryContactCell" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="0.0" y="72" width="375" height="83"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="4qL-ur-1HB" id="tPI-LK-sev">
- <rect key="frame" x="0.0" y="0.0" width="375" height="83"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="UnknownPerson" translatesAutoresizingMaskIntoConstraints="NO" id="czh-Bv-0GA">
- <rect key="frame" x="16" y="21.5" width="40" height="40"/>
- <constraints>
- <constraint firstAttribute="width" constant="40" id="XIX-ze-IOM"/>
- <constraint firstAttribute="height" constant="40" id="sdy-Ua-FmS"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </imageView>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="253" horizontalCompressionResistancePriority="753" text="IDENTITY" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="0lc-S9-AQW">
- <rect key="frame" x="308" y="37" width="51" height="14"/>
- <inset key="insetFor6xAndEarlier" minX="-5" minY="0.0" maxX="5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleCaption2"/>
- <color key="textColor" red="0.49803921569999998" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.50196078430000002" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification32-2.png" translatesAutoresizingMaskIntoConstraints="NO" id="Jpr-y8-NiA">
- <rect key="frame" x="327" y="17" width="32" height="8"/>
- <constraints>
- <constraint firstAttribute="width" constant="32" id="ORw-rg-xdz"/>
- <constraint firstAttribute="height" constant="8" id="cvr-8Y-4NC"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="-5" minY="0.0" maxX="5" maxY="0.0"/>
- </imageView>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="249" verticalHuggingPriority="253" horizontalCompressionResistancePriority="749" verticalCompressionResistancePriority="753" text="MacBook Office 10 7" lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="PGA-fl-u3I">
- <rect key="frame" x="64" y="11" width="239" height="20.5"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="101" contentMode="left" ambiguous="YES" text="Nickname" lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="5uj-zQ-HDk">
- <rect key="frame" x="64" y="36" width="239" height="16"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
- <color key="textColor" red="0.49803921569999998" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.50196078430000002" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="101" contentMode="left" ambiguous="YES" text="Nickname" lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="y6w-qJ-WpE">
- <rect key="frame" x="64" y="56" width="239" height="16"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
- <color key="textColor" red="0.49803921569999998" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.50196078430000002" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="0lc-S9-AQW" firstAttribute="leading" secondItem="PGA-fl-u3I" secondAttribute="trailing" constant="5" id="21c-a9-Djq"/>
- <constraint firstAttribute="bottomMargin" relation="greaterThanOrEqual" secondItem="0lc-S9-AQW" secondAttribute="bottom" id="4wt-WE-nJB"/>
- <constraint firstItem="Jpr-y8-NiA" firstAttribute="top" secondItem="PGA-fl-u3I" secondAttribute="top" constant="6" id="9GR-Df-XfH"/>
- <constraint firstItem="czh-Bv-0GA" firstAttribute="centerY" secondItem="tPI-LK-sev" secondAttribute="centerY" id="CnM-28-Fac"/>
- <constraint firstItem="5uj-zQ-HDk" firstAttribute="leading" secondItem="czh-Bv-0GA" secondAttribute="trailing" constant="8" id="Emz-yp-Itf"/>
- <constraint firstItem="0lc-S9-AQW" firstAttribute="leading" relation="lessThanOrEqual" secondItem="5uj-zQ-HDk" secondAttribute="trailing" constant="5" id="H1J-36-oy4"/>
- <constraint firstAttribute="trailingMargin" secondItem="0lc-S9-AQW" secondAttribute="trailing" id="Jfn-dn-dDI"/>
- <constraint firstAttribute="bottomMargin" secondItem="y6w-qJ-WpE" secondAttribute="bottom" id="LEE-8w-EAh"/>
- <constraint firstItem="y6w-qJ-WpE" firstAttribute="top" secondItem="5uj-zQ-HDk" secondAttribute="bottom" constant="4" id="LLj-wZ-cjc"/>
- <constraint firstItem="PGA-fl-u3I" firstAttribute="leading" secondItem="czh-Bv-0GA" secondAttribute="trailing" constant="8" id="MAc-FL-h1v"/>
- <constraint firstItem="y6w-qJ-WpE" firstAttribute="leading" secondItem="czh-Bv-0GA" secondAttribute="trailing" constant="8" id="SMG-0P-IhS"/>
- <constraint firstItem="5uj-zQ-HDk" firstAttribute="top" secondItem="PGA-fl-u3I" secondAttribute="bottom" constant="4" id="TZE-8L-NeP"/>
- <constraint firstAttribute="trailingMargin" secondItem="Jpr-y8-NiA" secondAttribute="trailing" id="aQZ-g7-OgW"/>
- <constraint firstItem="czh-Bv-0GA" firstAttribute="leading" secondItem="tPI-LK-sev" secondAttribute="leadingMargin" id="dfb-EF-E5U"/>
- <constraint firstItem="0lc-S9-AQW" firstAttribute="leading" secondItem="y6w-qJ-WpE" secondAttribute="trailing" constant="5" id="hZ3-km-u06"/>
- <constraint firstAttribute="bottom" relation="greaterThanOrEqual" secondItem="czh-Bv-0GA" secondAttribute="bottom" priority="750" constant="5" id="hpx-QR-TG5"/>
- <constraint firstItem="czh-Bv-0GA" firstAttribute="top" relation="greaterThanOrEqual" secondItem="tPI-LK-sev" secondAttribute="top" priority="750" constant="5" id="twL-hz-fWg"/>
- <constraint firstItem="0lc-S9-AQW" firstAttribute="top" secondItem="Jpr-y8-NiA" secondAttribute="bottom" constant="12" id="uE3-Bu-3BH"/>
- <constraint firstItem="PGA-fl-u3I" firstAttribute="top" secondItem="tPI-LK-sev" secondAttribute="topMargin" id="vSZ-hQ-9bQ"/>
- </constraints>
- </tableViewCellContentView>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <connections>
- <outlet property="avatar" destination="czh-Bv-0GA" id="Q9h-o2-qmM"/>
- <outlet property="categoryLabel" destination="y6w-qJ-WpE" id="i38-An-L8x"/>
- <outlet property="csiLabel" destination="5uj-zQ-HDk" id="TIX-Iu-u7M"/>
- <outlet property="identityLabel" destination="0lc-S9-AQW" id="j8B-SO-Mhi"/>
- <outlet property="nameLabel" destination="PGA-fl-u3I" id="sga-KH-UzZ"/>
- <outlet property="verificationLevel" destination="Jpr-y8-NiA" id="lJt-GQ-PK7"/>
- </connections>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" indentationWidth="10" reuseIdentifier="LoadMoreCell" textLabel="aBL-4d-MSk" rowHeight="50" style="IBUITableViewCellStyleDefault" id="1va-za-gCU">
- <rect key="frame" x="0.0" y="155" width="375" height="50"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="1va-za-gCU" id="Zaq-wd-CsZ">
- <rect key="frame" x="0.0" y="0.0" width="375" height="50"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Load more" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="aBL-4d-MSk">
- <rect key="frame" x="16" y="0.0" width="343" height="50"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </prototypes>
- <connections>
- <outlet property="dataSource" destination="NhG-YL-Zj2" id="PKu-Ka-Xr0"/>
- <outlet property="delegate" destination="NhG-YL-Zj2" id="K8C-He-vHn"/>
- </connections>
- </tableView>
- </subviews>
- <viewLayoutGuide key="safeArea" id="Su7-uY-Y77"/>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- <constraints>
- <constraint firstItem="WDp-BX-b9r" firstAttribute="trailing" secondItem="Su7-uY-Y77" secondAttribute="trailing" id="4rQ-j9-PMj"/>
- <constraint firstItem="1Px-aE-PC8" firstAttribute="bottom" secondItem="Su7-uY-Y77" secondAttribute="bottom" id="7Pw-ml-kZW"/>
- <constraint firstItem="1Px-aE-PC8" firstAttribute="top" secondItem="WDp-BX-b9r" secondAttribute="bottom" id="9vM-sq-WJb"/>
- <constraint firstItem="1Px-aE-PC8" firstAttribute="trailing" secondItem="Su7-uY-Y77" secondAttribute="trailing" id="Czd-C6-zRb"/>
- <constraint firstItem="WDp-BX-b9r" firstAttribute="top" secondItem="Su7-uY-Y77" secondAttribute="top" id="LM2-xX-I7g"/>
- <constraint firstItem="WDp-BX-b9r" firstAttribute="leading" secondItem="Su7-uY-Y77" secondAttribute="leading" id="UH5-vV-T31"/>
- <constraint firstItem="1Px-aE-PC8" firstAttribute="leading" secondItem="Su7-uY-Y77" secondAttribute="leading" id="xp3-b3-sxh"/>
- </constraints>
- </view>
- <simulatedNavigationBarMetrics key="simulatedTopBarMetrics" prompted="NO"/>
- <connections>
- <outlet property="activeFiltersView" destination="hlP-2o-LUy" id="wUG-n6-LoF"/>
- <outlet property="noEntriesFoundDescriptionLabel" destination="Pqv-bT-HSz" id="EM2-RK-pMU"/>
- <outlet property="noEntriesFoundTitleLabel" destination="TxQ-av-ynQ" id="E4Q-av-SE6"/>
- <outlet property="noEntriesFoundView" destination="1Yr-jO-led" id="KsR-gw-2oQ"/>
- <outlet property="scrollView" destination="JJm-hr-WcJ" id="cft-2J-yaz"/>
- <outlet property="searchBar" destination="WDp-BX-b9r" id="83h-wY-BFV"/>
- <outlet property="tableView" destination="1Px-aE-PC8" id="Yet-l6-Gdm"/>
- <segue destination="K1S-JP-hMM" kind="show" identifier="ShowFilterSegue" id="uXG-BF-BP7"/>
- </connections>
- </viewController>
- <view contentMode="scaleToFill" id="1Yr-jO-led">
- <rect key="frame" x="0.0" y="0.0" width="375" height="120"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="101" contentMode="left" text="Please enter at least 3 characters of a name to begin searching in your company's directory of Threema users" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="6" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Pqv-bT-HSz">
- <rect key="frame" x="30" y="51" width="315" height="58"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
- <color key="textColor" red="0.66666666669999997" green="0.66666666669999997" blue="0.66666666669999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="No entries found" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="TxQ-av-ynQ">
- <rect key="frame" x="30" y="20" width="315" height="21"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
- <color key="textColor" red="0.66666666669999997" green="0.66666666669999997" blue="0.66666666669999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <viewLayoutGuide key="safeArea" id="eb7-Bl-32K"/>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstItem="Pqv-bT-HSz" firstAttribute="leading" secondItem="eb7-Bl-32K" secondAttribute="leading" constant="30" id="7je-BR-7lR"/>
- <constraint firstItem="Pqv-bT-HSz" firstAttribute="top" secondItem="TxQ-av-ynQ" secondAttribute="bottom" constant="10" id="Nb3-in-AxU"/>
- <constraint firstItem="eb7-Bl-32K" firstAttribute="trailing" secondItem="Pqv-bT-HSz" secondAttribute="trailing" constant="30" id="Vbs-HB-uLo"/>
- <constraint firstItem="eb7-Bl-32K" firstAttribute="trailing" secondItem="TxQ-av-ynQ" secondAttribute="trailing" constant="30" id="Xh0-Pq-DkK"/>
- <constraint firstItem="TxQ-av-ynQ" firstAttribute="top" secondItem="eb7-Bl-32K" secondAttribute="top" constant="20" id="fnJ-pm-lWN"/>
- <constraint firstItem="TxQ-av-ynQ" firstAttribute="leading" secondItem="eb7-Bl-32K" secondAttribute="leading" constant="30" id="tzn-h2-1C7"/>
- </constraints>
- </view>
- <placeholder placeholderIdentifier="IBFirstResponder" id="VEI-di-cTB" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-1458.4000000000001" y="-1116.7916041979011"/>
- </scene>
- <!--Company Directory Category View Controller-->
- <scene sceneID="qqM-8i-yZ6">
- <objects>
- <tableViewController storyboardIdentifier="CompanyDirectoryCategoryViewController" id="K1S-JP-hMM" customClass="CompanyDirectoryCategoryViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
- <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="18" sectionFooterHeight="18" id="8N7-7X-nQJ">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" systemColor="groupTableViewBackgroundColor"/>
- <prototypes>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" accessoryType="checkmark" indentationWidth="10" reuseIdentifier="CategoryCell" textLabel="pTV-j2-YY0" style="IBUITableViewCellStyleDefault" id="wQo-6V-kiE">
- <rect key="frame" x="0.0" y="55.5" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="wQo-6V-kiE" id="Dly-kX-har">
- <rect key="frame" x="0.0" y="0.0" width="335" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Title" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="pTV-j2-YY0">
- <rect key="frame" x="16" y="0.0" width="311" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </prototypes>
- <connections>
- <outlet property="dataSource" destination="K1S-JP-hMM" id="nLm-jO-iVx"/>
- <outlet property="delegate" destination="K1S-JP-hMM" id="vJy-lK-1cc"/>
- </connections>
- </tableView>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="yc8-vY-8sS" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-791" y="-1117"/>
- </scene>
- </scenes>
- <designables>
- <designable name="4a3-95-oYU">
- <size key="intrinsicContentSize" width="317.5" height="38"/>
- </designable>
- </designables>
- <inferredMetricsTieBreakers>
- <segue reference="v8v-US-Bo6"/>
- <segue reference="rOK-24-MIK"/>
- </inferredMetricsTieBreakers>
- <resources>
- <image name="759-refresh-2.png" width="28" height="28"/>
- <image name="AddMember" width="22" height="22"/>
- <image name="Asterisk" width="200" height="200"/>
- <image name="Bell" width="22" height="22"/>
- <image name="Compose" width="22" height="23"/>
- <image name="Contact" width="15" height="15"/>
- <image name="Copy" width="26" height="22"/>
- <image name="CurrentLocation" width="22" height="22"/>
- <image name="Edit" width="22" height="22"/>
- <image name="ExportConversation" width="20" height="25"/>
- <image name="Group" width="31" height="15"/>
- <image name="Location" width="23" height="25"/>
- <image name="MessageStatus_sent" width="20" height="18"/>
- <image name="ProfilePicture" width="22" height="22"/>
- <image name="QRScan" width="22" height="22"/>
- <image name="SendMessage" width="25" height="25"/>
- <image name="Share" width="25" height="25"/>
- <image name="TabBar-Chats" width="37" height="23"/>
- <image name="TabBar-Contacts" width="37" height="23"/>
- <image name="TabBar-Id" width="37" height="23"/>
- <image name="TabBar-Settings" width="37" height="26"/>
- <image name="ThreemaPhone" width="25" height="25"/>
- <image name="Typing.png" width="22" height="20"/>
- <image name="UnknownPerson" width="200" height="200"/>
- <image name="WorkContact.png" width="20" height="20"/>
- <image name="imageView:HhM-hD-Gie:image" width="22" height="22">
- <mutableData key="keyedArchiveRepresentation">
- YnBsaXN0MDDUAQIDBAUGBwpYJHZlcnNpb25ZJGFyY2hpdmVyVCR0b3BYJG9iamVjdHMSAAGGoF8QD05T
- S2V5ZWRBcmNoaXZlctEICVRyb290gAGvEBcLDBkaIRQmKisyNTo9PkNGR0pUXF1hZFUkbnVsbNYNDg8Q
- ERITFBUWFxhWTlNTaXplXk5TUmVzaXppbmdNb2RlViRjbGFzc1xOU0ltYWdlRmxhZ3NWTlNSZXBzV05T
- Q29sb3KAAhAAgBYSIMAAAIADgBFYezIyLCAyMn3SGw8cIFpOUy5vYmplY3Rzox0eH4AEgAqADYAQ0hsP
- IiWiIySABYAGgAnSJw8oKV8QFE5TVElGRlJlcHJlc2VudGF0aW9ugAeACE8RFLZNTQAqAAAHmAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAA8PDw9oaGhosrKysuLi4uL5+fn5+fn5+eHh4eGwsLCwZmZmZg4ODg4A
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgYGBnNzc3Pu7u7u///////////6
- +vr64eHh4eLi4uL6+vr6///////////s7OzscHBwcAUFBQUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAFhYWFsXFxcX/////9PT09IuLi4s3Nzc3AQEBAQAAAAAAAAAAAgICAjg4ODiNjY2N9fX19f/////C
- wsLCFRUVFQAAAAAAAAAAAAAAAAAAAAAAAAAAFhYWFt7e3t7/////r6+vrxcXFxcAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAABkZGRmzs7Oz/////9zc3NwVFRUVAAAAAAAAAAAAAAAABgYGBsXFxcX/
- ////j4+PjwEBAQEAAAAAAAAAAAAAAAALCwsLioqKinV1dXUAAAAAAAAAAAAAAAAAAAAAAgICApOTk5P/
- ////wsLCwgUFBQUAAAAAAAAAAHJycnL/////sbGxsQEBAQEAAAAAAAAAAAAAAAAAAAAAbW1tbf//////
- ////Ozs7OwAAAAAAAAAAAAAAAAAAAAACAgICs7Ozs/////9wcHBwAAAAAA8PDw/t7e3t9fX19RgYGBgA
- AAAAAAAAAAAAAAAAAAAAAAAAAD09PT35+fn56+vr6xkZGRkAAAAAAAAAAAAAAAAAAAAAAAAAABkZGRn1
- 9fX17Ozs7A4ODg5nZ2dn/////46Ojo4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAExMTEwsLCwsA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjo6Ojv////9mZmZmsbGxsf////86Ojo6AAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAACAgICAkJCQkEBAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADk5OTn/
- ////sbGxseLi4uL7+/v7AgICAgAAAAAAAAAAAAAAAAAAAAAAAAAAX19fX///////////8vLy8hMTExMA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgIC+/v7++Hh4eH5+fn55OTk5AAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAB0dHR12dnZ2w8PDw/////8qKioqAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOLi4uL5
- +fn5+fn5+eTk5OQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIyMjIz/////KioqKgAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAADh4eHh+fn5+eHh4eH7+/v7AgICAgAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAACMjIyM/////yoqKioAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEB+fn5+eHh4eGx
- sbGx/////zo6OjoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjIyMjP////8qKioqAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAANjY2Nv////+xsbGxZ2dnZ/////+Ojo6OAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAIyMjIz/////KioqKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIuLi4v/////Z2dnZw8PDw/t
- 7e3t9fX19RkZGRkAAAAAAAAAAAAAAAAAAAAAQkJCQpOTk5PPz8/P/////6WlpaWLi4uLEBAQEAAAAAAA
- AAAAAAAAABcXFxf09PT07e3t7Q8PDw8AAAAAcnJycv////+xsbGxAQEBAQAAAAAAAAAAAAAAAH5+fn7u
- 7u7u7u7u7u7u7u7u7u7u5ubm5ikpKSkAAAAAAAAAAAEBAQGvr6+v/////3FxcXEAAAAAAAAAAAYGBgbF
- xcXF/////5CQkJABAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQGP
- j4+P/////8TExMQGBgYGAAAAAAAAAAAAAAAAFhYWFt7e3t7/////sLCwsBgYGBgAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAABgYGBiwsLCw/////93d3d0WFhYWAAAAAAAAAAAAAAAAAAAAAAAAAAAW
- FhYWxcXFxf/////09PT0i4uLizc3NzcBAQEBAAAAAAAAAAACAgICNzc3N4yMjIz09PT0/////8TExMQW
- FhYWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYGBgZycnJy7e3t7f//////////+vr6+uLi4uLi
- 4uLi+vr6+v//////////7e3t7XJycnIGBgYGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAA8PDw9nZ2dnsbGxseHh4eH5+fn5+fn5+eHh4eGxsbGxZ2dnZw8PDw8AAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAEAEAAAMAAAABABYAAAEBAAMAAAABABYAAAECAAMAAAAEAAAIXgEDAAMAAAABAAEA
- AAEGAAMAAAABAAIAAAEKAAMAAAABAAEAAAERAAQAAAABAAAACAESAAMAAAABAAEAAAEVAAMAAAABAAQA
- AAEWAAMAAAABABYAAAEXAAQAAAABAAAHkAEcAAMAAAABAAEAAAEoAAMAAAABAAIAAAFSAAMAAAABAAEA
- AAFTAAMAAAAEAAAIZodzAAcAAAxIAAAIbgAAAAAACAAIAAgACAABAAEAAQABAAAMSExpbm8CEAAAbW50
- clJHQiBYWVogB84AAgAJAAYAMQAAYWNzcE1TRlQAAAAASUVDIHNSR0IAAAAAAAAAAAAAAAAAAPbWAAEA
- AAAA0y1IUCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARY3By
- dAAAAVAAAAAzZGVzYwAAAYQAAABsd3RwdAAAAfAAAAAUYmtwdAAAAgQAAAAUclhZWgAAAhgAAAAUZ1hZ
- WgAAAiwAAAAUYlhZWgAAAkAAAAAUZG1uZAAAAlQAAABwZG1kZAAAAsQAAACIdnVlZAAAA0wAAACGdmll
- dwAAA9QAAAAkbHVtaQAAA/gAAAAUbWVhcwAABAwAAAAkdGVjaAAABDAAAAAMclRSQwAABDwAAAgMZ1RS
- QwAABDwAAAgMYlRSQwAABDwAAAgMdGV4dAAAAABDb3B5cmlnaHQgKGMpIDE5OTggSGV3bGV0dC1QYWNr
- YXJkIENvbXBhbnkAAGRlc2MAAAAAAAAAEnNSR0IgSUVDNjE5NjYtMi4xAAAAAAAAAAAAAAASc1JHQiBJ
- RUM2MTk2Ni0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AFhZWiAAAAAAAADzUQABAAAAARbMWFlaIAAAAAAAAAAAAAAAAAAAAABYWVogAAAAAAAAb6IAADj1AAAD
- kFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9kZXNjAAAAAAAAABZJRUMgaHR0
- cDovL3d3dy5pZWMuY2gAAAAAAAAAAAAAABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGVzYwAAAAAAAAAuSUVDIDYxOTY2LTIuMSBE
- ZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAuSUVDIDYxOTY2LTIuMSBEZWZh
- dWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRlc2MAAAAAAAAA
- LFJlZmVyZW5jZSBWaWV3aW5nIENvbmRpdGlvbiBpbiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAACxSZWZl
- cmVuY2UgVmlld2luZyBDb25kaXRpb24gaW4gSUVDNjE5NjYtMi4xAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAB2aWV3AAAAAAATpP4AFF8uABDPFAAD7cwABBMLAANcngAAAAFYWVogAAAAAABMCVYAUAAAAFcf
- 521lYXMAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAKPAAAAAnNpZyAAAAAAQ1JUIGN1cnYAAAAAAAAE
- AAAAAAUACgAPABQAGQAeACMAKAAtADIANwA7AEAARQBKAE8AVABZAF4AYwBoAG0AcgB3AHwAgQCGAIsA
- kACVAJoAnwCkAKkArgCyALcAvADBAMYAywDQANUA2wDgAOUA6wDwAPYA+wEBAQcBDQETARkBHwElASsB
- MgE4AT4BRQFMAVIBWQFgAWcBbgF1AXwBgwGLAZIBmgGhAakBsQG5AcEByQHRAdkB4QHpAfIB+gIDAgwC
- FAIdAiYCLwI4AkECSwJUAl0CZwJxAnoChAKOApgCogKsArYCwQLLAtUC4ALrAvUDAAMLAxYDIQMtAzgD
- QwNPA1oDZgNyA34DigOWA6IDrgO6A8cD0wPgA+wD+QQGBBMEIAQtBDsESARVBGMEcQR+BIwEmgSoBLYE
- xATTBOEE8AT+BQ0FHAUrBToFSQVYBWcFdwWGBZYFpgW1BcUF1QXlBfYGBgYWBicGNwZIBlkGagZ7BowG
- nQavBsAG0QbjBvUHBwcZBysHPQdPB2EHdAeGB5kHrAe/B9IH5Qf4CAsIHwgyCEYIWghuCIIIlgiqCL4I
- 0gjnCPsJEAklCToJTwlkCXkJjwmkCboJzwnlCfsKEQonCj0KVApqCoEKmAquCsUK3ArzCwsLIgs5C1EL
- aQuAC5gLsAvIC+EL+QwSDCoMQwxcDHUMjgynDMAM2QzzDQ0NJg1ADVoNdA2ODakNww3eDfgOEw4uDkkO
- ZA5/DpsOtg7SDu4PCQ8lD0EPXg96D5YPsw/PD+wQCRAmEEMQYRB+EJsQuRDXEPURExExEU8RbRGMEaoR
- yRHoEgcSJhJFEmQShBKjEsMS4xMDEyMTQxNjE4MTpBPFE+UUBhQnFEkUahSLFK0UzhTwFRIVNBVWFXgV
- mxW9FeAWAxYmFkkWbBaPFrIW1hb6Fx0XQRdlF4kXrhfSF/cYGxhAGGUYihivGNUY+hkgGUUZaxmRGbcZ
- 3RoEGioaURp3Gp4axRrsGxQbOxtjG4obshvaHAIcKhxSHHscoxzMHPUdHh1HHXAdmR3DHeweFh5AHmoe
- lB6+HukfEx8+H2kflB+/H+ogFSBBIGwgmCDEIPAhHCFIIXUhoSHOIfsiJyJVIoIiryLdIwojOCNmI5Qj
- wiPwJB8kTSR8JKsk2iUJJTglaCWXJccl9yYnJlcmhya3JugnGCdJJ3onqyfcKA0oPyhxKKIo1CkGKTgp
- aymdKdAqAio1KmgqmyrPKwIrNitpK50r0SwFLDksbiyiLNctDC1BLXYtqy3hLhYuTC6CLrcu7i8kL1ov
- kS/HL/4wNTBsMKQw2zESMUoxgjG6MfIyKjJjMpsy1DMNM0YzfzO4M/E0KzRlNJ402DUTNU01hzXCNf02
- NzZyNq426TckN2A3nDfXOBQ4UDiMOMg5BTlCOX85vDn5OjY6dDqyOu87LTtrO6o76DwnPGU8pDzjPSI9
- YT2hPeA+ID5gPqA+4D8hP2E/oj/iQCNAZECmQOdBKUFqQaxB7kIwQnJCtUL3QzpDfUPARANER0SKRM5F
- EkVVRZpF3kYiRmdGq0bwRzVHe0fASAVIS0iRSNdJHUljSalJ8Eo3Sn1KxEsMS1NLmkviTCpMcky6TQJN
- Sk2TTdxOJU5uTrdPAE9JT5NP3VAnUHFQu1EGUVBRm1HmUjFSfFLHUxNTX1OqU/ZUQlSPVNtVKFV1VcJW
- D1ZcVqlW91dEV5JX4FgvWH1Yy1kaWWlZuFoHWlZaplr1W0VblVvlXDVchlzWXSddeF3JXhpebF69Xw9f
- YV+zYAVgV2CqYPxhT2GiYfViSWKcYvBjQ2OXY+tkQGSUZOllPWWSZedmPWaSZuhnPWeTZ+loP2iWaOxp
- Q2maafFqSGqfavdrT2una/9sV2yvbQhtYG25bhJua27Ebx5veG/RcCtwhnDgcTpxlXHwcktypnMBc11z
- uHQUdHB0zHUodYV14XY+dpt2+HdWd7N4EXhueMx5KnmJeed6RnqlewR7Y3vCfCF8gXzhfUF9oX4BfmJ+
- wn8jf4R/5YBHgKiBCoFrgc2CMIKSgvSDV4O6hB2EgITjhUeFq4YOhnKG14c7h5+IBIhpiM6JM4mZif6K
- ZIrKizCLlov8jGOMyo0xjZiN/45mjs6PNo+ekAaQbpDWkT+RqJIRknqS45NNk7aUIJSKlPSVX5XJljSW
- n5cKl3WX4JhMmLiZJJmQmfyaaJrVm0Kbr5wcnImc951kndKeQJ6unx2fi5/6oGmg2KFHobaiJqKWowaj
- dqPmpFakx6U4pammGqaLpv2nbqfgqFKoxKk3qamqHKqPqwKrdavprFys0K1ErbiuLa6hrxavi7AAsHWw
- 6rFgsdayS7LCszizrrQltJy1E7WKtgG2ebbwt2i34LhZuNG5SrnCuju6tbsuu6e8IbybvRW9j74KvoS+
- /796v/XAcMDswWfB48JfwtvDWMPUxFHEzsVLxcjGRsbDx0HHv8g9yLzJOsm5yjjKt8s2y7bMNcy1zTXN
- tc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp22vvbgNwF3Ird
- EN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb6uXrcOv77Ibt
- Ee2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn+3f8B/yY/Sn9
- uv5L/tz/bf//0iwtLi9aJGNsYXNzbmFtZVgkY2xhc3Nlc18QEE5TQml0bWFwSW1hZ2VSZXCjLjAxWk5T
- SW1hZ2VSZXBYTlNPYmplY3TSLC0zNFdOU0FycmF5ojMx0hsPNiWiIziABYALgAnSJw87KYAMgAhPESuO
- TU0AKgAAHkgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAICAgIQ0NDQ4SEhISwsLCw19fX1+zs7Oz5+fn5+fn5+evr6+vW1tbWrq6uroGBgYFAQEBA
- BwcHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEBA
- oqKiovT09PT////////////////////////////////////////////////////////////////y8vLy
- np6enjs7OzsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRkZGx8fHx///////////
- ////////////////////////////////////////////////////////////////////////////////
- /////8LCwsJAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaGhoarKysrP//////////////////////////
- ///////////7+/v72dnZ2b29vb2wsLCwsbGxsb6+vr7b29vb/Pz8/P//////////////////////////
- //////////+mpqamFxcXFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASEhISOvr6+v//////////////////////////9ra2tqBgYGB
- PDw8PAYGBgYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHBwcHPz8/P4WFhYXe3t7e////////////////
- ///////////o6OjoQkJCQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAHBwcHD+/v7+/////////////////////76+vr5CQkJCAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQFISEhIw8PDw///////////
- ///////////9/f39aGhoaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAACBgYGB/////////////////////+Li4uJQUFBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVlZWVubm5ub/////
- ////////////////enp6egAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- b29vb/////////////////////+zs7OzEhISEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFRUVFbi4uLj/////
- ////////////////aWlpaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEhISEj+/v7+
- ////////////////lJSUlAICAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALCwsL
- RERERDIyMjIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwMDA5ubm5v/////
- ///////////9/f39Q0NDQwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaGhoa6+vr6///////////
- /////5WVlZUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALi4uLuPj4+P/////
- /////6urq6sCAgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJubm5v/////
- ///////////o6OjoFxcXFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKysrKz///////////////+1tbW1
- AgICAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADHx8fH////////////////
- /////2NjY2MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwMDA7m5ubn/////
- //////////+np6enAAAAAAAAAAAAAAAAAAAAAAAAAABFRUVF////////////////5OTk5BMTExMAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPn5+fn/////////////////////
- lZWVlQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFRUVFebm5ub/////
- //////////9BQUFBAAAAAAAAAAAAAAAAAAAAAMbGxsb///////////////9UVFRUAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAycnJyf////////////////////9mZmZm
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAV1dXV///////////
- /////8PDw8MAAAAAAAAAAAAAAAA/Pz8/////////////////wsLCwgAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwMDAw5eXl5f//////////r6+vrwMDAwMAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxMTExP//////////
- /////zw8PDwAAAAAAAAAAKGhoaH///////////////9ISEhIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANDQ0NSEhISDY2NjYAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABJSUlJ////////////////
- n5+fnwAAAAAICAgI9PT09P//////////39/f3wEBAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQHf39/f///////////z8/Pz
- BwcHB0NDQ0P///////////////+Hh4eHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIWFhYX///////////////9BQUFB
- g4ODg////////////////0JCQkIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAADAwMDBMTExMTExMTExMTExAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAQP///////////////4KCgoKwsLCw
- ///////////9/f39CQkJCQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAJCQkJD//////////////////////////8rKysoHBwcHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgI/Pz8/P//////////r6+vr9fX19f/////
- /////9/f398AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- 7u7u7v///////////////////////////////0ZGRkYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADc3Nzc///////////W1tbW7Ozs7P//////////
- w8PDwwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1dXV1
- 6enp6fHx8fHy8vLy////////////////VFRUVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAL+/v7///////////+zs7Oz5+fn5//////////+2tra2
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAABkZGRn///////////////9UVFRUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsbGxsf//////////+fn5+fn5+fn//////////7a2trYAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- GRkZGf///////////////1RUVFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAACwsLCw///////////5+fn57Ozs7P//////////w8PDwwAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGRkZ
- ////////////////VFRUVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAL29vb3//////////+zs7OzX19fX///////////f39/fAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkZGRn/////
- //////////9UVFRUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAA2dnZ2f//////////19fX17CwsLD///////////39/f0JCQkJAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRkZGf//////////
- /////1RUVFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAUFBQX7+/v7//////////+vr6+vg4ODg////////////////0JCQkIAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGRkZ////////////////
- VFRUVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- Ozs7O////////////////4ODg4NDQ0ND////////////////h4eHhwAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkZGRn///////////////9UVFRU
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICA
- ////////////////QkJCQggICAj09PT0///////////f39/fAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRkZGf///////////////1RUVFQAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANra2tr/////
- //////Pz8/MICAgIAAAAAKGhoaH///////////////9ISEhIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGRkZ////////////////VFRUVAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABCQkJC////////////////
- oKCgoAAAAAAAAAAAPz8/P////////////////8LCwsIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAgICAgnJycnKCgoKD09PT3///////////////9vb29vKCgoKCgoKCgQEBAQ
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAL29vb3///////////////8+Pj4+
- AAAAAAAAAAAAAAAAxsbGxv///////////////1RUVFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAZGRkZ5ubm5v////////////////////////////////////////////////f39/dCQkJC
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPT09P////////////////xcXFxQAAAAAAAAAA
- AAAAAAAAAABFRUVF////////////////5OTk5BMTExMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAEtLS0v//////////////////////////////////////////////////////////4WFhYUAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEREREeLi4uL///////////////9EREREAAAAAAAAAAAAAAAA
- AAAAAAAAAACrq6ur////////////////tbW1tQICAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- BwcHB6ampqbb29vb3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Ny9vb29ICAgIAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAICAgKysrKy////////////////qqqqqgAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAABoaGhrr6+vr////////////////lpaWlgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAk5OTk////////////////+rq6uoZGRkZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAEdHR0f+/v7+////////////////lZWVlQICAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AgICApOTk5P////////////////9/f39RkZGRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAG9vb2//////////////////////s7OzsxISEhIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABISEhKysrKy
- /////////////////////21tbW0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAICAgID/////////////////////4+Pj41FRUVEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRUVFR4+Pj4///////////
- //////////9+fn5+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAG9vb2/+/v7+/////////////////////7+/v79EREREAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEREREv7+/v//////////////////////9/f39
- bW1tbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAEhISEjr6+vr///////////////////////////b29vbgoKCgj09PT0GBgYGAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAABgYGBj09PT2CgoKC3Nzc3P//////////////////////////6urq6kZGRkYAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAABoaGhqrq6ur//////////////////////////////////////v7+/va2travr6+vrGxsbGxsbGx
- vr6+vtra2tr7+/v7/////////////////////////////////////6qqqqoZGRkZAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAABFRUVFxsbGxv//////////////////////////////////////////////////////////
- /////////////////////////////////////8XFxcVEREREAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAPz8/P6GhoaH09PT0////////////////////////////////////////////////
- ////////////////8/Pz86CgoKA+Pj4+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAgICAhDQ0NDg4ODg7CwsLDX19fX7Ozs7Pn5+fn5+fn57Ozs7NfX19ewsLCw
- g4ODg0JCQkIICAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAABIBAAADAAAAAQAsAAABAQADAAAAAQAsAAABAgADAAAABAAAHzYBAwADAAAAAQAB
- AAABBgADAAAAAQACAAABCgADAAAAAQABAAABEQAEAAAAAQAAAAgBEgADAAAAAQABAAABFQADAAAAAQAE
- AAABFgADAAAAAQAsAAABFwAEAAAAAQAAHkABGgAFAAAAAQAAHyYBGwAFAAAAAQAAHy4BHAADAAAAAQAB
- AAABKAADAAAAAQACAAABUgADAAAAAQABAAABUwADAAAABAAAHz6HcwAHAAAMSAAAH0YAAAAAAAAAkAAA
- AAEAAACQAAAAAQAIAAgACAAIAAEAAQABAAEAAAxITGlubwIQAABtbnRyUkdCIFhZWiAHzgACAAkABgAx
- AABhY3NwTVNGVAAAAABJRUMgc1JHQgAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLUhQICAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFjcHJ0AAABUAAAADNkZXNjAAABhAAA
- AGx3dHB0AAAB8AAAABRia3B0AAACBAAAABRyWFlaAAACGAAAABRnWFlaAAACLAAAABRiWFlaAAACQAAA
- ABRkbW5kAAACVAAAAHBkbWRkAAACxAAAAIh2dWVkAAADTAAAAIZ2aWV3AAAD1AAAACRsdW1pAAAD+AAA
- ABRtZWFzAAAEDAAAACR0ZWNoAAAEMAAAAAxyVFJDAAAEPAAACAxnVFJDAAAEPAAACAxiVFJDAAAEPAAA
- CAx0ZXh0AAAAAENvcHlyaWdodCAoYykgMTk5OCBIZXdsZXR0LVBhY2thcmQgQ29tcGFueQAAZGVzYwAA
- AAAAAAASc1JHQiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAABJzUkdCIElFQzYxOTY2LTIuMQAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWFlaIAAAAAAAAPNRAAEAAAAB
- FsxYWVogAAAAAAAAAAAAAAAAAAAAAFhZWiAAAAAAAABvogAAOPUAAAOQWFlaIAAAAAAAAGKZAAC3hQAA
- GNpYWVogAAAAAAAAJKAAAA+EAAC2z2Rlc2MAAAAAAAAAFklFQyBodHRwOi8vd3d3LmllYy5jaAAAAAAA
- AAAAAAAAFklFQyBodHRwOi8vd3d3LmllYy5jaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAABkZXNjAAAAAAAAAC5JRUMgNjE5NjYtMi4xIERlZmF1bHQgUkdCIGNvbG91ciBz
- cGFjZSAtIHNSR0IAAAAAAAAAAAAAAC5JRUMgNjE5NjYtMi4xIERlZmF1bHQgUkdCIGNvbG91ciBzcGFj
- ZSAtIHNSR0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGVzYwAAAAAAAAAsUmVmZXJlbmNlIFZpZXdpbmcg
- Q29uZGl0aW9uIGluIElFQzYxOTY2LTIuMQAAAAAAAAAAAAAALFJlZmVyZW5jZSBWaWV3aW5nIENvbmRp
- dGlvbiBpbiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHZpZXcAAAAAABOk/gAU
- Xy4AEM8UAAPtzAAEEwsAA1yeAAAAAVhZWiAAAAAAAEwJVgBQAAAAVx/nbWVhcwAAAAAAAAABAAAAAAAA
- AAAAAAAAAAAAAAAAAo8AAAACc2lnIAAAAABDUlQgY3VydgAAAAAAAAQAAAAABQAKAA8AFAAZAB4AIwAo
- AC0AMgA3ADsAQABFAEoATwBUAFkAXgBjAGgAbQByAHcAfACBAIYAiwCQAJUAmgCfAKQAqQCuALIAtwC8
- AMEAxgDLANAA1QDbAOAA5QDrAPAA9gD7AQEBBwENARMBGQEfASUBKwEyATgBPgFFAUwBUgFZAWABZwFu
- AXUBfAGDAYsBkgGaAaEBqQGxAbkBwQHJAdEB2QHhAekB8gH6AgMCDAIUAh0CJgIvAjgCQQJLAlQCXQJn
- AnECegKEAo4CmAKiAqwCtgLBAssC1QLgAusC9QMAAwsDFgMhAy0DOANDA08DWgNmA3IDfgOKA5YDogOu
- A7oDxwPTA+AD7AP5BAYEEwQgBC0EOwRIBFUEYwRxBH4EjASaBKgEtgTEBNME4QTwBP4FDQUcBSsFOgVJ
- BVgFZwV3BYYFlgWmBbUFxQXVBeUF9gYGBhYGJwY3BkgGWQZqBnsGjAadBq8GwAbRBuMG9QcHBxkHKwc9
- B08HYQd0B4YHmQesB78H0gflB/gICwgfCDIIRghaCG4IggiWCKoIvgjSCOcI+wkQCSUJOglPCWQJeQmP
- CaQJugnPCeUJ+woRCicKPQpUCmoKgQqYCq4KxQrcCvMLCwsiCzkLUQtpC4ALmAuwC8gL4Qv5DBIMKgxD
- DFwMdQyODKcMwAzZDPMNDQ0mDUANWg10DY4NqQ3DDd4N+A4TDi4OSQ5kDn8Omw62DtIO7g8JDyUPQQ9e
- D3oPlg+zD88P7BAJECYQQxBhEH4QmxC5ENcQ9RETETERTxFtEYwRqhHJEegSBxImEkUSZBKEEqMSwxLj
- EwMTIxNDE2MTgxOkE8UT5RQGFCcUSRRqFIsUrRTOFPAVEhU0FVYVeBWbFb0V4BYDFiYWSRZsFo8WshbW
- FvoXHRdBF2UXiReuF9IX9xgbGEAYZRiKGK8Y1Rj6GSAZRRlrGZEZtxndGgQaKhpRGncanhrFGuwbFBs7
- G2MbihuyG9ocAhwqHFIcexyjHMwc9R0eHUcdcB2ZHcMd7B4WHkAeah6UHr4e6R8THz4faR+UH78f6iAV
- IEEgbCCYIMQg8CEcIUghdSGhIc4h+yInIlUigiKvIt0jCiM4I2YjlCPCI/AkHyRNJHwkqyTaJQklOCVo
- JZclxyX3JicmVyaHJrcm6CcYJ0kneierJ9woDSg/KHEooijUKQYpOClrKZ0p0CoCKjUqaCqbKs8rAis2
- K2krnSvRLAUsOSxuLKIs1y0MLUEtdi2rLeEuFi5MLoIuty7uLyQvWi+RL8cv/jA1MGwwpDDbMRIxSjGC
- Mbox8jIqMmMymzLUMw0zRjN/M7gz8TQrNGU0njTYNRM1TTWHNcI1/TY3NnI2rjbpNyQ3YDecN9c4FDhQ
- OIw4yDkFOUI5fzm8Ofk6Njp0OrI67zstO2s7qjvoPCc8ZTykPOM9Ij1hPaE94D4gPmA+oD7gPyE/YT+i
- P+JAI0BkQKZA50EpQWpBrEHuQjBCckK1QvdDOkN9Q8BEA0RHRIpEzkUSRVVFmkXeRiJGZ0arRvBHNUd7
- R8BIBUhLSJFI10kdSWNJqUnwSjdKfUrESwxLU0uaS+JMKkxyTLpNAk1KTZNN3E4lTm5Ot08AT0lPk0/d
- UCdQcVC7UQZRUFGbUeZSMVJ8UsdTE1NfU6pT9lRCVI9U21UoVXVVwlYPVlxWqVb3V0RXklfgWC9YfVjL
- WRpZaVm4WgdaVlqmWvVbRVuVW+VcNVyGXNZdJ114XcleGl5sXr1fD19hX7NgBWBXYKpg/GFPYaJh9WJJ
- Ypxi8GNDY5dj62RAZJRk6WU9ZZJl52Y9ZpJm6Gc9Z5Nn6Wg/aJZo7GlDaZpp8WpIap9q92tPa6dr/2xX
- bK9tCG1gbbluEm5rbsRvHm94b9FwK3CGcOBxOnGVcfByS3KmcwFzXXO4dBR0cHTMdSh1hXXhdj52m3b4
- d1Z3s3gReG54zHkqeYl553pGeqV7BHtje8J8IXyBfOF9QX2hfgF+Yn7CfyN/hH/lgEeAqIEKgWuBzYIw
- gpKC9INXg7qEHYSAhOOFR4Wrhg6GcobXhzuHn4gEiGmIzokziZmJ/opkisqLMIuWi/yMY4zKjTGNmI3/
- jmaOzo82j56QBpBukNaRP5GokhGSepLjk02TtpQglIqU9JVflcmWNJaflwqXdZfgmEyYuJkkmZCZ/Jpo
- mtWbQpuvnByciZz3nWSd0p5Anq6fHZ+Ln/qgaaDYoUehtqImopajBqN2o+akVqTHpTilqaYapoum/adu
- p+CoUqjEqTepqaocqo+rAqt1q+msXKzQrUStuK4trqGvFq+LsACwdbDqsWCx1rJLssKzOLOutCW0nLUT
- tYq2AbZ5tvC3aLfguFm40blKucK6O7q1uy67p7whvJu9Fb2Pvgq+hL7/v3q/9cBwwOzBZ8Hjwl/C28NY
- w9TEUcTOxUvFyMZGxsPHQce/yD3IvMk6ybnKOMq3yzbLtsw1zLXNNc21zjbOts83z7jQOdC60TzRvtI/
- 0sHTRNPG1EnUy9VO1dHWVdbY11zX4Nhk2OjZbNnx2nba+9uA3AXcit0Q3ZbeHN6i3ynfr+A24L3hROHM
- 4lPi2+Nj4+vkc+T85YTmDeaW5x/nqegy6LzpRunQ6lvq5etw6/vshu0R7ZzuKO6070DvzPBY8OXxcvH/
- 8ozzGfOn9DT0wvVQ9d72bfb794r4Gfio+Tj5x/pX+uf7d/wH/Jj9Kf26/kv+3P9t///SGw8/JaIjQYAF
- gA6ACdInD0QpgA+ACE8RUV5NTQAqAABEGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAYGBgYVVVVVX9/f3+np6enzc3Nzd/f39/s7Ozs+fn5+fj4+Pjr6+vr3t7e3srKysqkpKSkfHx8
- fFFRUVEUFBQUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAA7Ozs7kZGRkdXV1dX/////////////////////////////////////////
- ///////////////////////////////////////+/v7+0NDQ0IyMjIw0NDQ0AAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUFBQUfHx8fNvb29v/////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////1dXV1XV1dXUQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGBgYGIyMjIz09PT0////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////w8PDwhISEhBMTExMAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAUFBQV4eHh49fX19f//////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////Hx8fFvb29vAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAPDw8PNbW1tb/////////////////////////////////////////
- ///////////////////////k5OTkvb29vZ+fn5+SkpKShoaGhoaGhoaTk5OToaGhob+/v7/m5ubm////
- ////////////////////////////////////////////////////////////z8/PzzQ0NDQAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQF6enp6/Pz8/P//////////////
- /////////////////////////////////9TU1NSLi4uLSUlJSQ0NDQ0AAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAEREREU5OTk6Pj4+P2tra2v//////////////////////////////
- //////////////////r6+vpwcHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQ
- ELi4uLj///////////////////////////////////////////Hx8fGPj4+PMTExMQAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- ADg4ODiWlpaW9fX19f//////////////////////////////////////////r6+vrwwMDAwAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAaGhoa0tLS0v/////////////////////////////////////u7u7ufX19
- fRAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFRUVFYWFhYXy8vLy////////////////////
- /////////////////8rKysoUFBQUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQkJCTf39/f////////////////////
- /////////////v7+/p+fn58VFRUVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAaGhoaqKioqP/////////////////////////////////////Z2dnZHh4eHgAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRkZ
- Gd/f39/////////////////////////////////m5ubmQUFBQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEtLS0vr6+vr////////////////////
- ////////////2dnZ2RUVFRUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAQEBAQ0dHR0f///////////////////////////////7y8vLwWFhYWAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAbGxsbxMTExP///////////////////////////////8vLy8sMDAwMAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQG4uLi4////////////////////
- ////////////o6OjowUFBQUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwcHB6ysrKz/////////////////////////
- //////+vr6+vAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AHl5eXn///////////////////////////////+Tk5OTAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFBQUFDExMTE7u7u7t3d3d2KioqKDg4O
- DgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAICAgKdnZ2d////////////////////////////////cXFxcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAOzs7O/z8/Pz//////////////////////////6WlpaUBAQEBAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAc3Nz
- c///////////////////////////0dHR0QwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICra2trf//////////////////////////+vr6
- +jU1NTUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFBQUF1dXV1f//////////////
- ////////////vr6+vgUFBQUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAdHR0d+vr6+v///////////////////////////////4KCgoIAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwcH
- B8XFxcX//////////////////////////9DQ0NADAwMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAB2dnZ2///////////////////////////o6OjoGBgYGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnZ2dn////////////////////
- /////////////////9LS0tIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwcHBzs7Ozs//////////////////////////9wcHBwAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcXFxf09PT0//////////////////////////9GRkZGAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAB3d3d3/////////////////////////////////////+Li4uIAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMTExM////
- ///////////////////////y8vLyFBQUFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIuLi4v/////////
- /////////////////6WlpaUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMTExM////////////////////////////////////
- /7a2trYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAqampqf//////////////////////////hoaGhgAAAAAAAAAAAAAA
- AAAAAAAAAAAAExMTE/Pz8/P/////////////////////8vLy8hkZGRkAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAwMD09PT
- 0////////////////////////////v7+/kNDQ0MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGxsbG/Pz8/P/////////
- ////////////8fHx8REREREAAAAAAAAAAAAAAAAAAAAAenp6ev//////////////////////////hISE
- hAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAISEhIdLS0tL////////////////39/f3Z2dnZwAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAIeHh4f//////////////////////////3d3d3cAAAAAAAAAAAAAAAAAAAAA2dnZ
- 2f/////////////////////19fX1FBQUFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMDAwNJSUlJdHR0
- dGJiYmIYGBgYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABUVFRX19fX1////////////////////
- /9bW1tYAAAAAAAAAAAAAAAA5OTk5//////////////////////////+YmJiYAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAACYmJiY//////////////////////////82NjY2AAAAAAAAAACQkJCQ////////////////////
- //////86Ojo6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA5OTk5//////////////////////////+NjY2NAAAA
- AAAAAADT09PT/////////////////////93d3d0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA29vb
- 2//////////////////////R0dHRAAAAABcXFxf//////////////////////////5SUlJQAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAkZGRkf/////////////////////+/v7+FhYWFlRUVFT/////////
- /////////////////1NTU1MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwMDAwdHR0dHR0dHR0dHR0dHR0dHR0d
- HR0dHR0NDQ0NAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAT09PT///////////////
- ////////////U1NTU35+fn7//////////////////////////xYWFhYAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICoaGh
- of7+/v7////////////////////////////////9/f39jY2NjQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAEhISEv//////////////////////////fX19faampqb/////////////////////7Ozs
- 7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAABSUlJS////////////////////////////////////////////////////
- /z09PT0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOfn5+f/////////////////////paWl
- pczMzMz/////////////////////xsbGxgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmZmZm////////////////////
- /////////////////////////////////3Nzc3MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AMDAwMD/////////////////////y8vLy9/f39//////////////////////qKioqAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAUFBQU4uLi4v///////////////////////////////////////////////35+fn4AAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKGhoaH/////////////////////3t7e3uzs7Oz/////////
- ////////////m5ubmwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADw8PD1hYWFhqampqampqampqamrLy8vL////
- /////////////////35+fn4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJSUlJT/////////
- ////////////7Ozs7Pn5+fn/////////////////////jo6OjgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAACmpqam/////////////////////35+fn4AAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAIaGhob/////////////////////+fn5+fn5+fn/////////////////////jo6O
- jgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACmpqam////////////////////
- /35+fn4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIaGhob/////////////////////+fn5
- +ezs7Oz/////////////////////m5ubmwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAACmpqam/////////////////////35+fn4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AJKSkpL/////////////////////7Ozs7N/f39//////////////////////qKioqAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACmpqam/////////////////////35+fn4AAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ+fn5//////////////////////3t7e3szMzMz/////////
- ////////////xsbGxgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACmpqam////
- /////////////////35+fn4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALy8vLz/////////
- ////////////zMzMzKWlpaX/////////////////////7Ozs7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAACmpqam/////////////////////35+fn4AAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAOPj4+P/////////////////////paWlpX5+fn7/////////////////////////
- /xYWFhYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACmpqam////////////////////
- /35+fn4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQ0NDf7+/v7/////////////////////fX19
- fVRUVFT//////////////////////////1JSUlIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAACmpqam/////////////////////35+fn4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASUlJ
- Sf//////////////////////////U1NTUxcXFxf//////////////////////////5SUlJQAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACmpqam/////////////////////35+fn4AAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAioqKiv//////////////////////////FhYWFgAAAADT09PT////
- /////////////////93d3d0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACmpqam////
- /////////////////35+fn4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA1NTU1P//////////////
- ///////T09PTAAAAAAAAAACQkJCQ//////////////////////////86Ojo6AAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAACmpqam/////////////////////35+fn4AAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAwMDAw//////////////////////////+Pj4+PAAAAAAAAAAA5OTk5////////////////////
- //////+YmJiYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACmpqam////////////////////
- /35+fn4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACOjo6O//////////////////////////84ODg4AAAA
- AAAAAAAAAAAA2tra2v/////////////////////19fX1FBQUFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAACmpqam/////////////////////35+fn4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEBDx8fHx////
- /////////////////9nZ2dkAAAAAAAAAAAAAAAAAAAAAe3t7e///////////////////////////hISE
- hAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACmpqam/////////////////////35+fn4AAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAHx8fHz//////////////////////////3l5eXkAAAAAAAAAAAAAAAAAAAAAExMT
- E/Pz8/P/////////////////////8fHx8RkZGRkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARERERi4uLi7m5ubm8vLy8vLy8vLy8vLzo6Ojo////
- /////////////////93d3d28vLy8vLy8vLy8vLy2tra2eXl5eQYGBgYAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFBQUFO7u7u7/////////////////////8/Pz
- 8xISEhIAAAAAAAAAAAAAAAAAAAAAAAAAAIuLi4v//////////////////////////6WlpaUAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC2tra2////
- ////////////////////////////////////////////////////////////////////////////////
- /42NjY0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnZ2d
- nf//////////////////////////iYmJiQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcXFxf19fX1////
- //////////////////////9GRkZGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAD4+Pj4////////////////////////////////////////////////////
- /////////////////////////////////9DQ0NAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAABAQEBA/v7+/v/////////////////////09PT0FhYWFgAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAB3d3d3///////////////////////////p6enpGBgYGAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAwMDA////////////////////
- /////////////////////////////////////////////////////////////////5iYmJgAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABUVFRXl5eXl////////////////////
- //////91dXV1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFBQUF1dXV1f//////////////
- ////////////v7+/vwUFBQUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAZGRkZnJycnMnJycnLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vL
- y8vLy8vFxcXFi4uLiwwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQE
- BLu7u7v//////////////////////////9PT09MEBAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAOjo6Ovz8/Pz//////////////////////////6WlpaUBAQEBAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAABAQEBoaGhof//////////////////////////+/v7+zk5OTkAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHl5eXn/////////////////////////
- //////+UlJSUAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQGRkZGR////////////////////
- ////////////dnZ2dgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAEBAQG3t7e3////////////////////////////////pKSkpAUFBQUAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQE
- BKKioqL///////////////////////////////+1tbW1AQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPDw8P0dHR0f//////////////////////////////
- /729vb0XFxcXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAWFhYWvLy8vP///////////////////////////////8/Pz88ODg4OAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRkZ
- Gd7e3t7////////////////////////////////n5+fnQ0NDQwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEJCQkLm5ubm////////////////////
- ////////////3d3d3RgYGBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACMjIyPe3t7e/////////////////////////////////v7+
- /qCgoKAWFhYWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWFhYWoKCg
- oP7+/v7////////////////////////////////d3d3dISEhIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGRkZ0dHR
- 0f/////////////////////////////////////v7+/vf39/fxEREREAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAEREREX9/f3/v7+/v/////////////////////////////////////8/Pz88YGBgYAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAADw8PD7e3t7f/////////////////////////////////////////
- //Ly8vKRkZGRMzMzMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADMzMzORkZGR8vLy8v//////////////////////////////
- ////////////tbW1tQ4ODg4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQF5eXl5/Pz8
- /P///////////////////////////////////////////////9bW1taMjIyMS0tLSw4ODg4AAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADw8PD0tLS0uNjY2N19fX1///////////////
- //////////////////////////////////v7+/t2dnZ2AQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAOzs7O9XV1dX/////////////////////////////////////////
- ///////////////////////k5OTkvr6+vqCgoKCTk5OThoaGhoaGhoaTk5OToKCgoL6+vr7l5eXl////
- ////////////////////////////////////////////////////////////09PT0zg4ODgAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUFBQV3d3d39fX1
- 9f//////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //T09PR0dHR0BAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAFxcXF4uLi4vz8/Pz////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////z8/PziYmJiRYWFhYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATExMTe3t7
- e9ra2tr/////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////2NjY2Hl5eXkSEhISAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA5OTk5kJCQkNPT09P/////////////////////////
- ////////////////////////////////////////////////////////////09PT04+Pj484ODg4AAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAXFxcXVFRUVH5+fn6mpqamzMzMzN/f39/s7Ozs+fn5+fn5+fns7Ozs39/f38zMzMylpaWlfn5+
- flRUVFQWFhYWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAQAAAwAAAAEA
- QgAAAQEAAwAAAAEAQgAAAQIAAwAAAAQAAEUGAQMAAwAAAAEAAQAAAQYAAwAAAAEAAgAAAQoAAwAAAAEA
- AQAAAREABAAAAAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEABAAAARYAAwAAAAEAQgAAARcABAAAAAEA
- AEQQARoABQAAAAEAAET2ARsABQAAAAEAAET+ARwAAwAAAAEAAQAAASgAAwAAAAEAAgAAAVIAAwAAAAEA
- AQAAAVMAAwAAAAQAAEUOh3MABwAADEgAAEUWAAAAAAAAANgAAAABAAAA2AAAAAEACAAIAAgACAABAAEA
- AQABAAAMSExpbm8CEAAAbW50clJHQiBYWVogB84AAgAJAAYAMQAAYWNzcE1TRlQAAAAASUVDIHNSR0IA
- AAAAAAAAAAAAAAAAAPbWAAEAAAAA0y1IUCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAARY3BydAAAAVAAAAAzZGVzYwAAAYQAAABsd3RwdAAAAfAAAAAUYmtwdAAAAgQA
- AAAUclhZWgAAAhgAAAAUZ1hZWgAAAiwAAAAUYlhZWgAAAkAAAAAUZG1uZAAAAlQAAABwZG1kZAAAAsQA
- AACIdnVlZAAAA0wAAACGdmlldwAAA9QAAAAkbHVtaQAAA/gAAAAUbWVhcwAABAwAAAAkdGVjaAAABDAA
- AAAMclRSQwAABDwAAAgMZ1RSQwAABDwAAAgMYlRSQwAABDwAAAgMdGV4dAAAAABDb3B5cmlnaHQgKGMp
- IDE5OTggSGV3bGV0dC1QYWNrYXJkIENvbXBhbnkAAGRlc2MAAAAAAAAAEnNSR0IgSUVDNjE5NjYtMi4x
- AAAAAAAAAAAAAAASc1JHQiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAFhZWiAAAAAAAADzUQABAAAAARbMWFlaIAAAAAAAAAAAAAAAAAAAAABY
- WVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9k
- ZXNjAAAAAAAAABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAAAAAAAAAAABZJRUMgaHR0cDovL3d3dy5p
- ZWMuY2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGVzYwAAAAAA
- AAAuSUVDIDYxOTY2LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAu
- SUVDIDYxOTY2LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAGRlc2MAAAAAAAAALFJlZmVyZW5jZSBWaWV3aW5nIENvbmRpdGlvbiBpbiBJRUM2MTk2Ni0y
- LjEAAAAAAAAAAAAAACxSZWZlcmVuY2UgVmlld2luZyBDb25kaXRpb24gaW4gSUVDNjE5NjYtMi4xAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB2aWV3AAAAAAATpP4AFF8uABDPFAAD7cwABBMLAANcngAAAAFY
- WVogAAAAAABMCVYAUAAAAFcf521lYXMAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAKPAAAAAnNpZyAA
- AAAAQ1JUIGN1cnYAAAAAAAAEAAAAAAUACgAPABQAGQAeACMAKAAtADIANwA7AEAARQBKAE8AVABZAF4A
- YwBoAG0AcgB3AHwAgQCGAIsAkACVAJoAnwCkAKkArgCyALcAvADBAMYAywDQANUA2wDgAOUA6wDwAPYA
- +wEBAQcBDQETARkBHwElASsBMgE4AT4BRQFMAVIBWQFgAWcBbgF1AXwBgwGLAZIBmgGhAakBsQG5AcEB
- yQHRAdkB4QHpAfIB+gIDAgwCFAIdAiYCLwI4AkECSwJUAl0CZwJxAnoChAKOApgCogKsArYCwQLLAtUC
- 4ALrAvUDAAMLAxYDIQMtAzgDQwNPA1oDZgNyA34DigOWA6IDrgO6A8cD0wPgA+wD+QQGBBMEIAQtBDsE
- SARVBGMEcQR+BIwEmgSoBLYExATTBOEE8AT+BQ0FHAUrBToFSQVYBWcFdwWGBZYFpgW1BcUF1QXlBfYG
- BgYWBicGNwZIBlkGagZ7BowGnQavBsAG0QbjBvUHBwcZBysHPQdPB2EHdAeGB5kHrAe/B9IH5Qf4CAsI
- HwgyCEYIWghuCIIIlgiqCL4I0gjnCPsJEAklCToJTwlkCXkJjwmkCboJzwnlCfsKEQonCj0KVApqCoEK
- mAquCsUK3ArzCwsLIgs5C1ELaQuAC5gLsAvIC+EL+QwSDCoMQwxcDHUMjgynDMAM2QzzDQ0NJg1ADVoN
- dA2ODakNww3eDfgOEw4uDkkOZA5/DpsOtg7SDu4PCQ8lD0EPXg96D5YPsw/PD+wQCRAmEEMQYRB+EJsQ
- uRDXEPURExExEU8RbRGMEaoRyRHoEgcSJhJFEmQShBKjEsMS4xMDEyMTQxNjE4MTpBPFE+UUBhQnFEkU
- ahSLFK0UzhTwFRIVNBVWFXgVmxW9FeAWAxYmFkkWbBaPFrIW1hb6Fx0XQRdlF4kXrhfSF/cYGxhAGGUY
- ihivGNUY+hkgGUUZaxmRGbcZ3RoEGioaURp3Gp4axRrsGxQbOxtjG4obshvaHAIcKhxSHHscoxzMHPUd
- Hh1HHXAdmR3DHeweFh5AHmoelB6+HukfEx8+H2kflB+/H+ogFSBBIGwgmCDEIPAhHCFIIXUhoSHOIfsi
- JyJVIoIiryLdIwojOCNmI5QjwiPwJB8kTSR8JKsk2iUJJTglaCWXJccl9yYnJlcmhya3JugnGCdJJ3on
- qyfcKA0oPyhxKKIo1CkGKTgpaymdKdAqAio1KmgqmyrPKwIrNitpK50r0SwFLDksbiyiLNctDC1BLXYt
- qy3hLhYuTC6CLrcu7i8kL1ovkS/HL/4wNTBsMKQw2zESMUoxgjG6MfIyKjJjMpsy1DMNM0YzfzO4M/E0
- KzRlNJ402DUTNU01hzXCNf02NzZyNq426TckN2A3nDfXOBQ4UDiMOMg5BTlCOX85vDn5OjY6dDqyOu87
- LTtrO6o76DwnPGU8pDzjPSI9YT2hPeA+ID5gPqA+4D8hP2E/oj/iQCNAZECmQOdBKUFqQaxB7kIwQnJC
- tUL3QzpDfUPARANER0SKRM5FEkVVRZpF3kYiRmdGq0bwRzVHe0fASAVIS0iRSNdJHUljSalJ8Eo3Sn1K
- xEsMS1NLmkviTCpMcky6TQJNSk2TTdxOJU5uTrdPAE9JT5NP3VAnUHFQu1EGUVBRm1HmUjFSfFLHUxNT
- X1OqU/ZUQlSPVNtVKFV1VcJWD1ZcVqlW91dEV5JX4FgvWH1Yy1kaWWlZuFoHWlZaplr1W0VblVvlXDVc
- hlzWXSddeF3JXhpebF69Xw9fYV+zYAVgV2CqYPxhT2GiYfViSWKcYvBjQ2OXY+tkQGSUZOllPWWSZedm
- PWaSZuhnPWeTZ+loP2iWaOxpQ2maafFqSGqfavdrT2una/9sV2yvbQhtYG25bhJua27Ebx5veG/RcCtw
- hnDgcTpxlXHwcktypnMBc11zuHQUdHB0zHUodYV14XY+dpt2+HdWd7N4EXhueMx5KnmJeed6RnqlewR7
- Y3vCfCF8gXzhfUF9oX4BfmJ+wn8jf4R/5YBHgKiBCoFrgc2CMIKSgvSDV4O6hB2EgITjhUeFq4YOhnKG
- 14c7h5+IBIhpiM6JM4mZif6KZIrKizCLlov8jGOMyo0xjZiN/45mjs6PNo+ekAaQbpDWkT+RqJIRknqS
- 45NNk7aUIJSKlPSVX5XJljSWn5cKl3WX4JhMmLiZJJmQmfyaaJrVm0Kbr5wcnImc951kndKeQJ6unx2f
- i5/6oGmg2KFHobaiJqKWowajdqPmpFakx6U4pammGqaLpv2nbqfgqFKoxKk3qamqHKqPqwKrdavprFys
- 0K1ErbiuLa6hrxavi7AAsHWw6rFgsdayS7LCszizrrQltJy1E7WKtgG2ebbwt2i34LhZuNG5SrnCuju6
- tbsuu6e8IbybvRW9j74KvoS+/796v/XAcMDswWfB48JfwtvDWMPUxFHEzsVLxcjGRsbDx0HHv8g9yLzJ
- Osm5yjjKt8s2y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DY
- ZNjo2WzZ8dp22vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56no
- Mui86Ubp0Opb6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4
- qPk4+cf6V/rn+3f8B/yY/Sn9uv5L/tz/bf//0iwtSEleTlNNdXRhYmxlQXJyYXmjSDMx1UtMTU4PT1BR
- UlNXTlNXaGl0ZVxOU0NvbXBvbmVudHNcTlNDb2xvclNwYWNlXxASTlNDdXN0b21Db2xvclNwYWNlRDAg
- MABDMCAwEAOAEoAV1FVWVw9YWVpbVE5TSURVTlNJQ0NXTlNNb2RlbBAJgBMQAIAUTxERaAAAEWhhcHBs
- AgAAAG1udHJHUkFZWFlaIAfcAAgAFwAPAC4AD2Fjc3BBUFBMAAAAAG5vbmUAAAAAAAAAAAAAAAAAAAAA
- AAD21gABAAAAANMtYXBwbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAABWRlc2MAAADAAAAAeWRzY20AAAE8AAAH6GNwcnQAAAkkAAAAI3d0cHQAAAlIAAAAFGtUUkMAAAlc
- AAAIDGRlc2MAAAAAAAAAH0dlbmVyaWMgR3JheSBHYW1tYSAyLjIgUHJvZmlsZQAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAABtbHVjAAAAAAAAAB8AAAAMc2tTSwAAAC4AAAGEZGFESwAAADgAAAGyY2FFUwAAADgAAAHq
- dmlWTgAAAEAAAAIicHRCUgAAAEoAAAJidWtVQQAAACwAAAKsZnJGVQAAAD4AAALYaHVIVQAAADQAAAMW
- emhUVwAAAB4AAANKbmJOTwAAADoAAANoY3NDWgAAACgAAAOiaGVJTAAAACQAAAPKaXRJVAAAAE4AAAPu
- cm9STwAAACoAAAQ8ZGVERQAAAE4AAARma29LUgAAACIAAAS0c3ZTRQAAADgAAAGyemhDTgAAAB4AAATW
- amFKUAAAACYAAAT0ZWxHUgAAACoAAAUacHRQTwAAAFIAAAVEbmxOTAAAAEAAAAWWZXNFUwAAAEwAAAXW
- dGhUSAAAADIAAAYidHJUUgAAACQAAAZUZmlGSQAAAEYAAAZ4aHJIUgAAAD4AAAa+cGxQTAAAAEoAAAb8
- cnVSVQAAADoAAAdGZW5VUwAAADwAAAeAYXJFRwAAACwAAAe8AFYBYQBlAG8AYgBlAGMAbgDhACAAcwBp
- AHYA4QAgAGcAYQBtAGEAIAAyACwAMgBHAGUAbgBlAHIAaQBzAGsAIABnAHIA5QAgADIALAAyACAAZwBh
- AG0AbQBhAHAAcgBvAGYAaQBsAEcAYQBtAG0AYQAgAGQAZQAgAGcAcgBpAHMAbwBzACAAZwBlAG4A6ABy
- AGkAYwBhACAAMgAuADIAQx6lAHUAIABoAOwAbgBoACAATQDgAHUAIAB4AOEAbQAgAEMAaAB1AG4AZwAg
- AEcAYQBtAG0AYQAgADIALgAyAFAAZQByAGYAaQBsACAARwBlAG4A6QByAGkAYwBvACAAZABhACAARwBh
- AG0AYQAgAGQAZQAgAEMAaQBuAHoAYQBzACAAMgAsADIEFwQwBDMEMAQ7BEwEPQQwACAARwByAGEAeQAt
- BDMEMAQ8BDAAIAAyAC4AMgBQAHIAbwBmAGkAbAAgAGcA6QBuAOkAcgBpAHEAdQBlACAAZwByAGkAcwAg
- AGcAYQBtAG0AYQAgADIALAAyAMEAbAB0AGEAbADhAG4AbwBzACAAcwB6APwAcgBrAGUAIABnAGEAbQBt
- AGEAIAAyAC4AMpAadShwcJaOUUlepgAgADIALgAyACCCcl9pY8+P8ABHAGUAbgBlAHIAaQBzAGsAIABn
- AHIA5QAgAGcAYQBtAG0AYQAgADIALAAyAC0AcAByAG8AZgBpAGwATwBiAGUAYwBuAOEAIAFhAGUAZADh
- ACAAZwBhAG0AYQAgADIALgAyBdIF0AXeBdQAIAXQBeQF1QXoACAF2wXcBdwF2QAgADIALgAyAFAAcgBv
- AGYAaQBsAG8AIABnAHIAaQBnAGkAbwAgAGcAZQBuAGUAcgBpAGMAbwAgAGQAZQBsAGwAYQAgAGcAYQBt
- AG0AYQAgADIALAAyAEcAYQBtAGEAIABnAHIAaQAgAGcAZQBuAGUAcgBpAGMBAwAgADIALAAyAEEAbABs
- AGcAZQBtAGUAaQBuAGUAcwAgAEcAcgBhAHUAcwB0AHUAZgBlAG4ALQBQAHIAbwBmAGkAbAAgAEcAYQBt
- AG0AYQAgADIALAAyx3y8GAAg1ozAyQAgrBC5yAAgADIALgAyACDVBLhc0wzHfGZukBpwcF6mfPtlcAAg
- ADIALgAyACBjz4/wZYdO9k4AgiwwsDDsMKQwrDDzMN4AIAAyAC4AMgAgMNcw7TDVMKEwpDDrA5MDtQO9
- A7kDugPMACADkwO6A8EDuQAgA5MDrAO8A7wDsQAgADIALgAyAFAAZQByAGYAaQBsACAAZwBlAG4A6QBy
- AGkAYwBvACAAZABlACAAYwBpAG4AegBlAG4AdABvAHMAIABkAGEAIABHAGEAbQBtAGEAIAAyACwAMgBB
- AGwAZwBlAG0AZQBlAG4AIABnAHIAaQBqAHMAIABnAGEAbQBtAGEAIAAyACwAMgAtAHAAcgBvAGYAaQBl
- AGwAUABlAHIAZgBpAGwAIABnAGUAbgDpAHIAaQBjAG8AIABkAGUAIABnAGEAbQBtAGEAIABkAGUAIABn
- AHIAaQBzAGUAcwAgADIALAAyDiMOMQ4HDioONQ5BDgEOIQ4hDjIOQA4BDiMOIg5MDhcOMQ5IDicORA4b
- ACAAMgAuADIARwBlAG4AZQBsACAARwByAGkAIABHAGEAbQBhACAAMgAsADIAWQBsAGUAaQBuAGUAbgAg
- AGgAYQByAG0AYQBhAG4AIABnAGEAbQBtAGEAIAAyACwAMgAgAC0AcAByAG8AZgBpAGkAbABpAEcAZQBu
- AGUAcgBpAQ0AawBpACAARwByAGEAeQAgAEcAYQBtAG0AYQAgADIALgAyACAAcAByAG8AZgBpAGwAVQBu
- AGkAdwBlAHIAcwBhAGwAbgB5ACAAcAByAG8AZgBpAGwAIABzAHoAYQByAG8BWwBjAGkAIABnAGEAbQBt
- AGEAIAAyACwAMgQeBDEESQQwBE8AIARBBDUEQAQwBE8AIAQzBDAEPAQ8BDAAIAAyACwAMgAtBD8EQAQ+
- BEQEOAQ7BEwARwBlAG4AZQByAGkAYwAgAEcAcgBhAHkAIABHAGEAbQBtAGEAIAAyAC4AMgAgAFAAcgBv
- AGYAaQBsAGUGOgYnBkUGJwAgADIALgAyACAGRAZIBkYAIAYxBkUGJwYvBkoAIAY5BicGRXRleHQAAAAA
- Q29weXJpZ2h0IEFwcGxlIEluYy4sIDIwMTIAAFhZWiAAAAAAAADzUQABAAAAARbMY3VydgAAAAAAAAQA
- AAAABQAKAA8AFAAZAB4AIwAoAC0AMgA3ADsAQABFAEoATwBUAFkAXgBjAGgAbQByAHcAfACBAIYAiwCQ
- AJUAmgCfAKQAqQCuALIAtwC8AMEAxgDLANAA1QDbAOAA5QDrAPAA9gD7AQEBBwENARMBGQEfASUBKwEy
- ATgBPgFFAUwBUgFZAWABZwFuAXUBfAGDAYsBkgGaAaEBqQGxAbkBwQHJAdEB2QHhAekB8gH6AgMCDAIU
- Ah0CJgIvAjgCQQJLAlQCXQJnAnECegKEAo4CmAKiAqwCtgLBAssC1QLgAusC9QMAAwsDFgMhAy0DOAND
- A08DWgNmA3IDfgOKA5YDogOuA7oDxwPTA+AD7AP5BAYEEwQgBC0EOwRIBFUEYwRxBH4EjASaBKgEtgTE
- BNME4QTwBP4FDQUcBSsFOgVJBVgFZwV3BYYFlgWmBbUFxQXVBeUF9gYGBhYGJwY3BkgGWQZqBnsGjAad
- Bq8GwAbRBuMG9QcHBxkHKwc9B08HYQd0B4YHmQesB78H0gflB/gICwgfCDIIRghaCG4IggiWCKoIvgjS
- COcI+wkQCSUJOglPCWQJeQmPCaQJugnPCeUJ+woRCicKPQpUCmoKgQqYCq4KxQrcCvMLCwsiCzkLUQtp
- C4ALmAuwC8gL4Qv5DBIMKgxDDFwMdQyODKcMwAzZDPMNDQ0mDUANWg10DY4NqQ3DDd4N+A4TDi4OSQ5k
- Dn8Omw62DtIO7g8JDyUPQQ9eD3oPlg+zD88P7BAJECYQQxBhEH4QmxC5ENcQ9RETETERTxFtEYwRqhHJ
- EegSBxImEkUSZBKEEqMSwxLjEwMTIxNDE2MTgxOkE8UT5RQGFCcUSRRqFIsUrRTOFPAVEhU0FVYVeBWb
- Fb0V4BYDFiYWSRZsFo8WshbWFvoXHRdBF2UXiReuF9IX9xgbGEAYZRiKGK8Y1Rj6GSAZRRlrGZEZtxnd
- GgQaKhpRGncanhrFGuwbFBs7G2MbihuyG9ocAhwqHFIcexyjHMwc9R0eHUcdcB2ZHcMd7B4WHkAeah6U
- Hr4e6R8THz4faR+UH78f6iAVIEEgbCCYIMQg8CEcIUghdSGhIc4h+yInIlUigiKvIt0jCiM4I2YjlCPC
- I/AkHyRNJHwkqyTaJQklOCVoJZclxyX3JicmVyaHJrcm6CcYJ0kneierJ9woDSg/KHEooijUKQYpOClr
- KZ0p0CoCKjUqaCqbKs8rAis2K2krnSvRLAUsOSxuLKIs1y0MLUEtdi2rLeEuFi5MLoIuty7uLyQvWi+R
- L8cv/jA1MGwwpDDbMRIxSjGCMbox8jIqMmMymzLUMw0zRjN/M7gz8TQrNGU0njTYNRM1TTWHNcI1/TY3
- NnI2rjbpNyQ3YDecN9c4FDhQOIw4yDkFOUI5fzm8Ofk6Njp0OrI67zstO2s7qjvoPCc8ZTykPOM9Ij1h
- PaE94D4gPmA+oD7gPyE/YT+iP+JAI0BkQKZA50EpQWpBrEHuQjBCckK1QvdDOkN9Q8BEA0RHRIpEzkUS
- RVVFmkXeRiJGZ0arRvBHNUd7R8BIBUhLSJFI10kdSWNJqUnwSjdKfUrESwxLU0uaS+JMKkxyTLpNAk1K
- TZNN3E4lTm5Ot08AT0lPk0/dUCdQcVC7UQZRUFGbUeZSMVJ8UsdTE1NfU6pT9lRCVI9U21UoVXVVwlYP
- VlxWqVb3V0RXklfgWC9YfVjLWRpZaVm4WgdaVlqmWvVbRVuVW+VcNVyGXNZdJ114XcleGl5sXr1fD19h
- X7NgBWBXYKpg/GFPYaJh9WJJYpxi8GNDY5dj62RAZJRk6WU9ZZJl52Y9ZpJm6Gc9Z5Nn6Wg/aJZo7GlD
- aZpp8WpIap9q92tPa6dr/2xXbK9tCG1gbbluEm5rbsRvHm94b9FwK3CGcOBxOnGVcfByS3KmcwFzXXO4
- dBR0cHTMdSh1hXXhdj52m3b4d1Z3s3gReG54zHkqeYl553pGeqV7BHtje8J8IXyBfOF9QX2hfgF+Yn7C
- fyN/hH/lgEeAqIEKgWuBzYIwgpKC9INXg7qEHYSAhOOFR4Wrhg6GcobXhzuHn4gEiGmIzokziZmJ/opk
- isqLMIuWi/yMY4zKjTGNmI3/jmaOzo82j56QBpBukNaRP5GokhGSepLjk02TtpQglIqU9JVflcmWNJaf
- lwqXdZfgmEyYuJkkmZCZ/JpomtWbQpuvnByciZz3nWSd0p5Anq6fHZ+Ln/qgaaDYoUehtqImopajBqN2
- o+akVqTHpTilqaYapoum/adup+CoUqjEqTepqaocqo+rAqt1q+msXKzQrUStuK4trqGvFq+LsACwdbDq
- sWCx1rJLssKzOLOutCW0nLUTtYq2AbZ5tvC3aLfguFm40blKucK6O7q1uy67p7whvJu9Fb2Pvgq+hL7/
- v3q/9cBwwOzBZ8Hjwl/C28NYw9TEUcTOxUvFyMZGxsPHQce/yD3IvMk6ybnKOMq3yzbLtsw1zLXNNc21
- zjbOts83z7jQOdC60TzRvtI/0sHTRNPG1EnUy9VO1dHWVdbY11zX4Nhk2OjZbNnx2nba+9uA3AXcit0Q
- 3ZbeHN6i3ynfr+A24L3hROHM4lPi2+Nj4+vkc+T85YTmDeaW5x/nqegy6LzpRunQ6lvq5etw6/vshu0R
- 7ZzuKO6070DvzPBY8OXxcvH/8ozzGfOn9DT0wvVQ9d72bfb794r4Gfio+Tj5x/pX+uf7d/wH/Jj9Kf26
- /kv+3P9t///SLC1eX1xOU0NvbG9yU3BhY2WiYDFcTlNDb2xvclNwYWNl0iwtYmNXTlNDb2xvcqJiMdIs
- LWVmV05TSW1hZ2WiZTEACAARABoAJAApADIANwBJAEwAUQBTAG0AcwCAAIcAlgCdAKoAsQC5ALsAvQC/
- AMQAxgDIANEA1gDhAOUA5wDpAOsA7QDyAPUA9wD5APsBAAEXARkBGxXVFdoV5RXuFgEWBRYQFhkWHhYm
- FikWLhYxFjMWNRY3FjwWPhZAQdJB10HaQdxB3kHgQeVB50Hpk0uTUJNfk2OTbpN2k4OTkJOlk6qTrpOw
- k7KTtJO9k8KTyJPQk9KT1JPWk9ilRKVJpValWaVmpWulc6V2pXulgwAAAAAAAAIBAAAAAAAAAGcAAAAA
- AAAAAAAAAAAAAKWGA
- </mutableData>
- </image>
- <image name="verification-0.png" width="48" height="11"/>
- <image name="verification-1.png" width="48" height="11"/>
- <image name="verification-2.png" width="48" height="11"/>
- <image name="verification-3.png" width="48" height="11"/>
- <image name="verification32-2.png" width="32" height="8"/>
- <image name="verificationbig-2.png" width="163" height="37"/>
- <systemColor name="groupTableViewBackgroundColor">
- <color red="0.94901960784313721" green="0.94901960784313721" blue="0.96862745098039216" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </systemColor>
- </resources>
- </document>
|