Main.storyboard 1022 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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="3jM-gR-ydw">
  3. <device id="retina6_7" orientation="portrait" appearance="light"/>
  4. <dependencies>
  5. <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="17703"/>
  6. <capability name="Named colors" minToolsVersion="9.0"/>
  7. <capability name="Safe area layout guides" minToolsVersion="9.0"/>
  8. <capability name="System colors in document resources" minToolsVersion="11.0"/>
  9. <capability name="collection view cell content view" minToolsVersion="11.0"/>
  10. <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
  11. </dependencies>
  12. <scenes>
  13. <!--LoginVC-->
  14. <scene sceneID="y0S-EC-1JU">
  15. <objects>
  16. <viewController storyboardIdentifier="Login_SB" id="3jM-gR-ydw" customClass="LoginVC" customModule="CockFight" customModuleProvider="target" sceneMemberID="viewController">
  17. <view key="view" contentMode="scaleToFill" id="rJV-Q1-AVo">
  18. <rect key="frame" x="0.0" y="0.0" width="428" height="926"/>
  19. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  20. <subviews>
  21. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="gig-4L-Q1v">
  22. <rect key="frame" x="0.0" y="0.0" width="428" height="926"/>
  23. <subviews>
  24. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="backgound.png" translatesAutoresizingMaskIntoConstraints="NO" id="dn4-Rw-0Nb">
  25. <rect key="frame" x="0.0" y="0.0" width="428" height="926"/>
  26. </imageView>
  27. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="ZZr-vV-n5l">
  28. <rect key="frame" x="20" y="273" width="388" height="380"/>
  29. <subviews>
  30. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Member Login" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Orh-QH-aIT">
  31. <rect key="frame" x="20" y="59.999999999999993" width="348" height="19.666666666666664"/>
  32. <fontDescription key="fontDescription" type="boldSystem" pointSize="16"/>
  33. <nil key="textColor"/>
  34. <nil key="highlightedColor"/>
  35. </label>
  36. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Username" textAlignment="natural" lineBreakMode="wordWrap" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="atE-VX-LPa">
  37. <rect key="frame" x="20" y="109.66666666666669" width="74.666666666666671" height="19.333333333333343"/>
  38. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  39. <nil key="textColor"/>
  40. <nil key="highlightedColor"/>
  41. </label>
  42. <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="4gc-GI-rHu">
  43. <rect key="frame" x="20" y="137" width="348" height="38"/>
  44. <color key="backgroundColor" systemColor="linkColor"/>
  45. <constraints>
  46. <constraint firstAttribute="height" constant="38" id="KFM-3s-lO3"/>
  47. </constraints>
  48. <color key="textColor" red="0.070737205740000003" green="0.181625438" blue="0.53590511659999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  49. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  50. <textInputTraits key="textInputTraits" textContentType="email"/>
  51. </textField>
  52. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Password" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="VbG-EF-shA">
  53. <rect key="frame" x="20" y="193" width="70" height="19.666666666666657"/>
  54. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  55. <nil key="textColor"/>
  56. <nil key="highlightedColor"/>
  57. </label>
  58. <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="Myu-lc-Btv" customClass="HideShowPasswordTextField" customModule="CockFight" customModuleProvider="target">
  59. <rect key="frame" x="20" y="220.66666666666669" width="348" height="38"/>
  60. <color key="backgroundColor" systemColor="linkColor"/>
  61. <constraints>
  62. <constraint firstAttribute="height" constant="38" id="Sxa-rT-zit"/>
  63. </constraints>
  64. <color key="textColor" red="0.15686274510000001" green="0.20392156859999999" blue="0.33725490200000002" alpha="1" colorSpace="calibratedRGB"/>
  65. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  66. <textInputTraits key="textInputTraits" secureTextEntry="YES" textContentType="password"/>
  67. </textField>
  68. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="afE-au-sGQ">
  69. <rect key="frame" x="70" y="293.66666666666663" width="248" height="35"/>
  70. <color key="backgroundColor" red="0.15686274510000001" green="0.20392156859999999" blue="0.33725490200000002" alpha="1" colorSpace="calibratedRGB"/>
  71. <constraints>
  72. <constraint firstAttribute="height" constant="35" id="hxW-y4-1q1"/>
  73. </constraints>
  74. <fontDescription key="fontDescription" type="boldSystem" pointSize="16"/>
  75. <state key="normal" title="Login">
  76. <color key="titleColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  77. </state>
  78. <connections>
  79. <action selector="loginClick:" destination="3jM-gR-ydw" eventType="touchUpInside" id="dhc-s3-pxZ"/>
  80. </connections>
  81. </button>
  82. </subviews>
  83. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  84. <constraints>
  85. <constraint firstAttribute="trailing" relation="greaterThanOrEqual" secondItem="atE-VX-LPa" secondAttribute="trailing" constant="20" symbolic="YES" id="6fV-qV-j21"/>
  86. <constraint firstItem="Myu-lc-Btv" firstAttribute="leading" secondItem="VbG-EF-shA" secondAttribute="leading" id="AQZ-ZW-WwA"/>
  87. <constraint firstItem="4gc-GI-rHu" firstAttribute="leading" secondItem="atE-VX-LPa" secondAttribute="leading" id="AqF-f2-dlG"/>
  88. <constraint firstAttribute="trailing" secondItem="Myu-lc-Btv" secondAttribute="trailing" constant="20" id="Ft8-XT-QpH"/>
  89. <constraint firstItem="4gc-GI-rHu" firstAttribute="leading" secondItem="ZZr-vV-n5l" secondAttribute="leading" constant="20" id="GmP-0m-phb"/>
  90. <constraint firstAttribute="trailing" secondItem="4gc-GI-rHu" secondAttribute="trailing" constant="20" id="N1J-8A-aoR"/>
  91. <constraint firstItem="VbG-EF-shA" firstAttribute="top" secondItem="4gc-GI-rHu" secondAttribute="bottom" constant="18" id="OhC-YI-ATi"/>
  92. <constraint firstItem="afE-au-sGQ" firstAttribute="top" secondItem="Myu-lc-Btv" secondAttribute="bottom" constant="35" id="SaV-Xr-EeS"/>
  93. <constraint firstAttribute="height" constant="380" id="V5H-is-jt4"/>
  94. <constraint firstItem="Myu-lc-Btv" firstAttribute="leading" secondItem="ZZr-vV-n5l" secondAttribute="leading" constant="20" id="WXr-uT-q2P"/>
  95. <constraint firstItem="4gc-GI-rHu" firstAttribute="top" secondItem="atE-VX-LPa" secondAttribute="bottom" constant="8" symbolic="YES" id="bwC-yC-2cZ"/>
  96. <constraint firstItem="Orh-QH-aIT" firstAttribute="centerX" secondItem="ZZr-vV-n5l" secondAttribute="centerX" id="q2w-mb-Bnn"/>
  97. <constraint firstAttribute="trailing" secondItem="afE-au-sGQ" secondAttribute="trailing" constant="70" id="scM-2O-Kjo"/>
  98. <constraint firstItem="Orh-QH-aIT" firstAttribute="top" secondItem="ZZr-vV-n5l" secondAttribute="top" constant="60" id="so1-Fh-PHy"/>
  99. <constraint firstItem="afE-au-sGQ" firstAttribute="leading" secondItem="ZZr-vV-n5l" secondAttribute="leading" constant="70" id="t63-kd-jns"/>
  100. <constraint firstItem="Myu-lc-Btv" firstAttribute="top" secondItem="VbG-EF-shA" secondAttribute="bottom" constant="8" symbolic="YES" id="uxg-sf-nFn"/>
  101. <constraint firstItem="atE-VX-LPa" firstAttribute="leading" secondItem="Orh-QH-aIT" secondAttribute="leading" id="uy5-xk-NiH"/>
  102. <constraint firstItem="VbG-EF-shA" firstAttribute="leading" secondItem="4gc-GI-rHu" secondAttribute="leading" id="xHg-JO-pbU"/>
  103. <constraint firstItem="atE-VX-LPa" firstAttribute="top" secondItem="Orh-QH-aIT" secondAttribute="bottom" constant="30" id="ydj-by-oz4"/>
  104. </constraints>
  105. </view>
  106. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="logo.png" translatesAutoresizingMaskIntoConstraints="NO" id="BX9-zM-EPu">
  107. <rect key="frame" x="164" y="223" width="100" height="100"/>
  108. <constraints>
  109. <constraint firstAttribute="height" constant="100" id="7LS-Qy-9Bj"/>
  110. <constraint firstAttribute="width" constant="100" id="udd-fk-SBo"/>
  111. </constraints>
  112. </imageView>
  113. </subviews>
  114. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  115. <constraints>
  116. <constraint firstAttribute="trailing" secondItem="ZZr-vV-n5l" secondAttribute="trailing" constant="20" id="3yr-Gc-NZi"/>
  117. <constraint firstItem="ZZr-vV-n5l" firstAttribute="leading" secondItem="gig-4L-Q1v" secondAttribute="leading" constant="20" id="5D6-Qt-UXY"/>
  118. <constraint firstItem="ZZr-vV-n5l" firstAttribute="centerX" secondItem="gig-4L-Q1v" secondAttribute="centerX" id="AfO-4Q-Jow"/>
  119. <constraint firstItem="dn4-Rw-0Nb" firstAttribute="centerY" secondItem="gig-4L-Q1v" secondAttribute="centerY" id="BOe-5w-PX0"/>
  120. <constraint firstItem="BX9-zM-EPu" firstAttribute="centerX" secondItem="gig-4L-Q1v" secondAttribute="centerX" id="C26-ui-orB"/>
  121. <constraint firstItem="BX9-zM-EPu" firstAttribute="top" secondItem="ZZr-vV-n5l" secondAttribute="top" constant="-50" id="Pom-PB-wfh"/>
  122. <constraint firstItem="ZZr-vV-n5l" firstAttribute="centerY" secondItem="gig-4L-Q1v" secondAttribute="centerY" id="fiH-PX-KTa"/>
  123. <constraint firstItem="dn4-Rw-0Nb" firstAttribute="centerX" secondItem="gig-4L-Q1v" secondAttribute="centerX" id="oKS-y9-Sxi"/>
  124. </constraints>
  125. </view>
  126. </subviews>
  127. <viewLayoutGuide key="safeArea" id="Rel-PZ-l9W"/>
  128. <color key="backgroundColor" name="AccentColor"/>
  129. <constraints>
  130. <constraint firstItem="dn4-Rw-0Nb" firstAttribute="width" secondItem="rJV-Q1-AVo" secondAttribute="width" id="CSv-5G-IEj"/>
  131. <constraint firstItem="gig-4L-Q1v" firstAttribute="height" secondItem="rJV-Q1-AVo" secondAttribute="height" id="M3o-Z2-eTr">
  132. <variation key="heightClass=regular-widthClass=regular" constant="500"/>
  133. </constraint>
  134. <constraint firstItem="gig-4L-Q1v" firstAttribute="centerY" secondItem="rJV-Q1-AVo" secondAttribute="centerY" id="YuJ-2S-YrK"/>
  135. <constraint firstItem="gig-4L-Q1v" firstAttribute="centerX" secondItem="rJV-Q1-AVo" secondAttribute="centerX" id="cpY-YR-k79"/>
  136. <constraint firstItem="dn4-Rw-0Nb" firstAttribute="height" secondItem="rJV-Q1-AVo" secondAttribute="height" id="kGS-DR-En3"/>
  137. <constraint firstItem="gig-4L-Q1v" firstAttribute="width" secondItem="rJV-Q1-AVo" secondAttribute="width" id="ydt-je-5jt">
  138. <variation key="heightClass=regular-widthClass=regular" constant="834"/>
  139. </constraint>
  140. </constraints>
  141. </view>
  142. <connections>
  143. <outlet property="btnLogin" destination="afE-au-sGQ" id="dx1-1a-9Yo"/>
  144. <outlet property="txtPwd" destination="Myu-lc-Btv" id="CB2-MY-PFg"/>
  145. <outlet property="txtUser" destination="4gc-GI-rHu" id="hgW-Gz-VbA"/>
  146. <outlet property="vRound" destination="ZZr-vV-n5l" id="gig-v7-SqY"/>
  147. </connections>
  148. </viewController>
  149. <placeholder placeholderIdentifier="IBFirstResponder" id="jkN-Ga-i8Q" sceneMemberID="firstResponder"/>
  150. </objects>
  151. <point key="canvasLocation" x="286" y="106"/>
  152. </scene>
  153. <!--Main Game BoardVC-->
  154. <scene sceneID="Re0-wh-fve">
  155. <objects>
  156. <viewController storyboardIdentifier="MainPanelGame_SB" modalPresentationStyle="overFullScreen" id="a4o-th-hLZ" customClass="MainGameBoardVC" customModule="CockFight" customModuleProvider="target" sceneMemberID="viewController">
  157. <view key="view" contentMode="scaleToFill" id="usq-5y-eXU">
  158. <rect key="frame" x="0.0" y="0.0" width="414" height="896"/>
  159. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  160. <subviews>
  161. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="ESj-LO-ylP" userLabel="TopBar">
  162. <rect key="frame" x="0.0" y="0.0" width="428" height="100"/>
  163. <subviews>
  164. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="logo.png" translatesAutoresizingMaskIntoConstraints="NO" id="wKx-jr-Khx">
  165. <rect key="frame" x="10" y="40" width="50" height="50"/>
  166. <constraints>
  167. <constraint firstAttribute="width" constant="50" id="Bxa-vg-uBE"/>
  168. <constraint firstAttribute="height" constant="50" id="J0A-0j-AFT"/>
  169. </constraints>
  170. </imageView>
  171. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="jQ6-Sc-wjF">
  172. <rect key="frame" x="65" y="55" width="0.0" height="0.0"/>
  173. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  174. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  175. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  176. </label>
  177. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="hNK-mU-LXR">
  178. <rect key="frame" x="388" y="50" width="30" height="30"/>
  179. <constraints>
  180. <constraint firstAttribute="width" constant="30" id="GZo-n9-FPj"/>
  181. <constraint firstAttribute="height" constant="30" id="XQJ-f0-x5Z"/>
  182. </constraints>
  183. <state key="normal" image="ic_setting.png"/>
  184. <connections>
  185. <segue destination="BD3-6h-Rzp" kind="show" id="YOY-nx-jaN"/>
  186. </connections>
  187. </button>
  188. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="9Ka-Ga-bx4">
  189. <rect key="frame" x="348" y="50" width="30" height="30"/>
  190. <constraints>
  191. <constraint firstAttribute="width" constant="30" id="3AQ-v8-K6A"/>
  192. <constraint firstAttribute="height" constant="30" id="g1c-2K-U4J"/>
  193. </constraints>
  194. <state key="normal" image="ic_unmute.png"/>
  195. <connections>
  196. <segue destination="hdc-rg-WjG" kind="show" id="Dcr-Ej-FMa"/>
  197. </connections>
  198. </button>
  199. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="29d-cc-xpE">
  200. <rect key="frame" x="303" y="45" width="35" height="40"/>
  201. <constraints>
  202. <constraint firstAttribute="height" constant="40" id="R3h-pe-byo"/>
  203. <constraint firstAttribute="width" constant="35" id="wO6-tI-78u"/>
  204. </constraints>
  205. <state key="normal" image="ic_report.png"/>
  206. <connections>
  207. <segue destination="HkS-V2-1UB" kind="show" id="n4Z-jT-K2C"/>
  208. </connections>
  209. </button>
  210. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="i1E-zr-99r">
  211. <rect key="frame" x="65" y="40" width="0.0" height="0.0"/>
  212. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  213. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  214. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  215. </label>
  216. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="user.png" translatesAutoresizingMaskIntoConstraints="NO" id="3HO-nc-0xD">
  217. <rect key="frame" x="68" y="30" width="15" height="20"/>
  218. <constraints>
  219. <constraint firstAttribute="height" constant="20" id="CRz-Qw-vm4"/>
  220. <constraint firstAttribute="width" constant="15" id="uZq-hY-Vup"/>
  221. </constraints>
  222. </imageView>
  223. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="PgV-cY-pHI">
  224. <rect key="frame" x="68" y="46.666666666666664" width="20" height="17"/>
  225. <constraints>
  226. <constraint firstAttribute="height" constant="17" id="Qqt-Yi-nmN"/>
  227. <constraint firstAttribute="width" constant="20" id="z01-C7-4Il"/>
  228. </constraints>
  229. <state key="normal" image="ic_refresh.png"/>
  230. </button>
  231. </subviews>
  232. <color key="backgroundColor" red="0.38039215686274508" green="0.37254901960784315" blue="0.37254901960784315" alpha="1" colorSpace="calibratedRGB"/>
  233. <constraints>
  234. <constraint firstItem="PgV-cY-pHI" firstAttribute="centerY" secondItem="jQ6-Sc-wjF" secondAttribute="centerY" id="7Cw-Ba-Bxk"/>
  235. <constraint firstAttribute="bottom" secondItem="wKx-jr-Khx" secondAttribute="bottom" constant="10" id="9hi-hs-2dP"/>
  236. <constraint firstItem="wKx-jr-Khx" firstAttribute="leading" secondItem="ESj-LO-ylP" secondAttribute="leading" constant="10" id="ADc-zo-7dS"/>
  237. <constraint firstItem="9Ka-Ga-bx4" firstAttribute="centerY" secondItem="hNK-mU-LXR" secondAttribute="centerY" id="GtB-0g-p93"/>
  238. <constraint firstAttribute="height" constant="100" id="MTK-2b-U6f"/>
  239. <constraint firstItem="jQ6-Sc-wjF" firstAttribute="top" secondItem="3HO-nc-0xD" secondAttribute="bottom" constant="5" id="NMr-QL-034"/>
  240. <constraint firstItem="i1E-zr-99r" firstAttribute="top" secondItem="wKx-jr-Khx" secondAttribute="top" id="O5h-E1-t4T"/>
  241. <constraint firstItem="PgV-cY-pHI" firstAttribute="leading" secondItem="jQ6-Sc-wjF" secondAttribute="trailing" constant="3" id="Pxj-Hj-kOB"/>
  242. <constraint firstItem="3HO-nc-0xD" firstAttribute="centerY" secondItem="i1E-zr-99r" secondAttribute="centerY" id="Y5U-pI-AaX"/>
  243. <constraint firstItem="3HO-nc-0xD" firstAttribute="leading" secondItem="i1E-zr-99r" secondAttribute="trailing" constant="3" id="aC3-av-0tL"/>
  244. <constraint firstItem="29d-cc-xpE" firstAttribute="centerY" secondItem="9Ka-Ga-bx4" secondAttribute="centerY" id="bA3-GR-iCA"/>
  245. <constraint firstItem="hNK-mU-LXR" firstAttribute="leading" secondItem="9Ka-Ga-bx4" secondAttribute="trailing" constant="10" id="hcE-ho-q2P"/>
  246. <constraint firstItem="jQ6-Sc-wjF" firstAttribute="leading" secondItem="i1E-zr-99r" secondAttribute="leading" id="nJg-Ee-ZC2"/>
  247. <constraint firstItem="i1E-zr-99r" firstAttribute="leading" secondItem="wKx-jr-Khx" secondAttribute="trailing" constant="5" id="odO-2i-oyn"/>
  248. <constraint firstAttribute="trailing" secondItem="hNK-mU-LXR" secondAttribute="trailing" constant="10" id="pyF-yX-7k6"/>
  249. <constraint firstItem="9Ka-Ga-bx4" firstAttribute="leading" secondItem="29d-cc-xpE" secondAttribute="trailing" constant="10" id="u9k-1m-2U8"/>
  250. <constraint firstItem="hNK-mU-LXR" firstAttribute="centerY" secondItem="wKx-jr-Khx" secondAttribute="centerY" id="xqT-lf-rcD"/>
  251. </constraints>
  252. </view>
  253. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="SUx-Dx-dgw" userLabel="SubTopBar">
  254. <rect key="frame" x="0.0" y="105" width="428" height="50"/>
  255. <subviews>
  256. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Information" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="z14-fQ-xiQ">
  257. <rect key="frame" x="10" y="11" width="137" height="28"/>
  258. <constraints>
  259. <constraint firstAttribute="height" constant="28" id="AO6-lt-W5C"/>
  260. <constraint firstAttribute="width" constant="137" id="NYG-65-bmN"/>
  261. </constraints>
  262. <fontDescription key="fontDescription" type="system" weight="black" pointSize="23"/>
  263. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  264. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  265. </label>
  266. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Current Date Time" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="0eq-ud-7SE">
  267. <rect key="frame" x="157" y="21.666666666666671" width="117" height="14.666666666666664"/>
  268. <fontDescription key="fontDescription" type="system" weight="black" pointSize="12"/>
  269. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  270. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  271. </label>
  272. </subviews>
  273. <color key="backgroundColor" red="0.36078431372549019" green="0.36078431372549019" blue="0.36078431372549019" alpha="1" colorSpace="calibratedRGB"/>
  274. <constraints>
  275. <constraint firstItem="0eq-ud-7SE" firstAttribute="firstBaseline" secondItem="z14-fQ-xiQ" secondAttribute="firstBaseline" id="0kC-TJ-l1K"/>
  276. <constraint firstAttribute="height" constant="50" id="102-rM-1ks"/>
  277. <constraint firstItem="z14-fQ-xiQ" firstAttribute="centerY" secondItem="SUx-Dx-dgw" secondAttribute="centerY" id="8Wh-3r-Nq0"/>
  278. <constraint firstItem="z14-fQ-xiQ" firstAttribute="leading" secondItem="SUx-Dx-dgw" secondAttribute="leading" constant="10" id="92A-iK-7A1"/>
  279. <constraint firstItem="0eq-ud-7SE" firstAttribute="leading" secondItem="z14-fQ-xiQ" secondAttribute="trailing" constant="10" id="lHX-cQ-9uV"/>
  280. </constraints>
  281. </view>
  282. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="2ES-ry-8av">
  283. <rect key="frame" x="0.0" y="415" width="428" height="511"/>
  284. <subviews>
  285. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="PNM-vf-zh3">
  286. <rect key="frame" x="0.0" y="5" width="428" height="40"/>
  287. <subviews>
  288. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ស្ថានភាព៖" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="XpS-QI-w16">
  289. <rect key="frame" x="10" y="11" width="57" height="18"/>
  290. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  291. <nil key="textColor"/>
  292. <nil key="highlightedColor"/>
  293. </label>
  294. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Open" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="qbR-My-arX">
  295. <rect key="frame" x="75" y="8.6666666666666856" width="51" height="23"/>
  296. <fontDescription key="fontDescription" type="system" weight="black" pointSize="19"/>
  297. <color key="textColor" red="0.14738166884904644" green="0.73649914803250072" blue="0.064597392895514361" alpha="1" colorSpace="calibratedRGB"/>
  298. <nil key="highlightedColor"/>
  299. </label>
  300. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="គូទី៖" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="We3-jJ-etB">
  301. <rect key="frame" x="156" y="11" width="23.666666666666657" height="18"/>
  302. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  303. <nil key="textColor"/>
  304. <nil key="highlightedColor"/>
  305. </label>
  306. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="UAQ-dy-jbW">
  307. <rect key="frame" x="187.66666666666666" y="20" width="0.0" height="0.0"/>
  308. <fontDescription key="fontDescription" type="system" weight="black" pointSize="19"/>
  309. <color key="textColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  310. <nil key="highlightedColor"/>
  311. </label>
  312. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ជម្រើស" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3UQ-fz-lg1">
  313. <rect key="frame" x="246.5" y="11" width="45" height="18"/>
  314. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  315. <nil key="textColor"/>
  316. <nil key="highlightedColor"/>
  317. </label>
  318. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ខាងខៀវ" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="iSv-Je-f33">
  319. <rect key="frame" x="299.5" y="10.5" width="52.5" height="19.5"/>
  320. <fontDescription key="fontDescription" type="system" weight="black" pointSize="16"/>
  321. <color key="textColor" systemColor="linkColor"/>
  322. <nil key="highlightedColor"/>
  323. </label>
  324. </subviews>
  325. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  326. <constraints>
  327. <constraint firstItem="qbR-My-arX" firstAttribute="centerY" secondItem="XpS-QI-w16" secondAttribute="centerY" id="190-Di-Vlh"/>
  328. <constraint firstItem="3UQ-fz-lg1" firstAttribute="centerY" secondItem="UAQ-dy-jbW" secondAttribute="centerY" id="2EN-H8-BcX"/>
  329. <constraint firstAttribute="height" constant="40" id="67n-9b-Ubz"/>
  330. <constraint firstItem="UAQ-dy-jbW" firstAttribute="leading" secondItem="We3-jJ-etB" secondAttribute="trailing" constant="8" id="RpA-IQ-7JZ"/>
  331. <constraint firstItem="iSv-Je-f33" firstAttribute="centerY" secondItem="3UQ-fz-lg1" secondAttribute="centerY" id="UeR-i8-8Ue"/>
  332. <constraint firstItem="qbR-My-arX" firstAttribute="leading" secondItem="XpS-QI-w16" secondAttribute="trailing" constant="8" id="VdJ-DU-tCj"/>
  333. <constraint firstItem="We3-jJ-etB" firstAttribute="leading" secondItem="qbR-My-arX" secondAttribute="trailing" constant="30" id="arP-J1-Og2"/>
  334. <constraint firstItem="We3-jJ-etB" firstAttribute="centerY" secondItem="qbR-My-arX" secondAttribute="centerY" id="dLk-fA-NWt"/>
  335. <constraint firstItem="3UQ-fz-lg1" firstAttribute="leading" secondItem="UAQ-dy-jbW" secondAttribute="trailing" constant="30" id="dde-b2-3xP"/>
  336. <constraint firstItem="iSv-Je-f33" firstAttribute="leading" secondItem="3UQ-fz-lg1" secondAttribute="trailing" constant="8" id="f7e-6q-ngY"/>
  337. <constraint firstItem="XpS-QI-w16" firstAttribute="centerY" secondItem="PNM-vf-zh3" secondAttribute="centerY" id="iNu-cx-119"/>
  338. <constraint firstItem="UAQ-dy-jbW" firstAttribute="centerY" secondItem="We3-jJ-etB" secondAttribute="centerY" id="nCt-PF-SiX"/>
  339. <constraint firstItem="XpS-QI-w16" firstAttribute="leading" secondItem="PNM-vf-zh3" secondAttribute="leading" constant="10" id="usM-fc-gWP"/>
  340. </constraints>
  341. <variation key="default">
  342. <mask key="subviews">
  343. <exclude reference="3UQ-fz-lg1"/>
  344. <exclude reference="iSv-Je-f33"/>
  345. </mask>
  346. </variation>
  347. </view>
  348. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="gsn-Ru-QYn">
  349. <rect key="frame" x="5.6666666666666572" y="50" width="417" height="421"/>
  350. <subviews>
  351. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="ePV-Dt-tgW">
  352. <rect key="frame" x="0.0" y="0.0" width="417" height="45"/>
  353. <subviews>
  354. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="ajf-b4-Pgo">
  355. <rect key="frame" x="0.0" y="0.0" width="68" height="45"/>
  356. <color key="backgroundColor" systemColor="systemGray5Color"/>
  357. <constraints>
  358. <constraint firstAttribute="width" constant="68" id="7gk-PR-AMA"/>
  359. </constraints>
  360. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  361. <state key="normal" title="តារាងពង់">
  362. <color key="titleColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  363. </state>
  364. <connections>
  365. <action selector="btnPongClick:" destination="a4o-th-hLZ" eventType="touchUpInside" id="Sfw-Sf-LAA"/>
  366. </connections>
  367. </button>
  368. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="5OE-OZ-jXb">
  369. <rect key="frame" x="68" y="0.0" width="81" height="45"/>
  370. <constraints>
  371. <constraint firstAttribute="height" constant="45" id="QUu-vR-vkz"/>
  372. <constraint firstAttribute="width" constant="81" id="sgf-st-qgF"/>
  373. </constraints>
  374. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  375. <state key="normal" title="ខាងខៀវ-ត">
  376. <color key="titleColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  377. </state>
  378. <connections>
  379. <action selector="btnBlueClick:" destination="a4o-th-hLZ" eventType="touchUpInside" id="mX0-bx-IpC"/>
  380. </connections>
  381. </button>
  382. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Ry5-P7-uGJ">
  383. <rect key="frame" x="242" y="0.0" width="82" height="45"/>
  384. <constraints>
  385. <constraint firstAttribute="width" constant="82" id="Q2W-oI-O0Z"/>
  386. <constraint firstAttribute="height" constant="45" id="evc-We-oN3"/>
  387. </constraints>
  388. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  389. <state key="normal" title="តារាងរង់ចាំ">
  390. <color key="titleColor" systemColor="labelColor"/>
  391. </state>
  392. <connections>
  393. <action selector="btnWaitClick:" destination="a4o-th-hLZ" eventType="touchUpInside" id="wcI-iJ-ZFj"/>
  394. </connections>
  395. </button>
  396. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="eEo-N4-X7M">
  397. <rect key="frame" x="324" y="0.0" width="79" height="45"/>
  398. <constraints>
  399. <constraint firstAttribute="width" constant="79" id="nIk-eo-two"/>
  400. <constraint firstAttribute="height" constant="45" id="nfO-sV-GgF"/>
  401. </constraints>
  402. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  403. <state key="normal" title="តារាងភ្នាល់">
  404. <color key="titleColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  405. </state>
  406. <connections>
  407. <action selector="btnBetClick:" destination="a4o-th-hLZ" eventType="touchUpInside" id="rSA-60-VKs"/>
  408. </connections>
  409. </button>
  410. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Bsq-5a-pLX">
  411. <rect key="frame" x="149" y="0.0" width="93" height="45"/>
  412. <constraints>
  413. <constraint firstAttribute="width" constant="93" id="3hg-BS-VFp"/>
  414. <constraint firstAttribute="height" constant="45" id="txy-lC-aL9"/>
  415. </constraints>
  416. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  417. <state key="normal" title="ខាងក្រហម-ត">
  418. <color key="titleColor" systemColor="systemPinkColor"/>
  419. </state>
  420. <connections>
  421. <action selector="btnRedClick:" destination="a4o-th-hLZ" eventType="touchUpInside" id="9U8-hT-qXq"/>
  422. </connections>
  423. </button>
  424. </subviews>
  425. <color key="backgroundColor" systemColor="systemGray2Color"/>
  426. <constraints>
  427. <constraint firstAttribute="bottom" secondItem="ajf-b4-Pgo" secondAttribute="bottom" id="2nX-qa-J7X"/>
  428. <constraint firstItem="ajf-b4-Pgo" firstAttribute="leading" secondItem="ePV-Dt-tgW" secondAttribute="leading" id="2rR-Ap-e3w"/>
  429. <constraint firstAttribute="height" constant="45" id="Fe1-oo-ohs"/>
  430. <constraint firstItem="5OE-OZ-jXb" firstAttribute="leading" secondItem="ajf-b4-Pgo" secondAttribute="trailing" id="TPy-2g-gx1"/>
  431. <constraint firstItem="ajf-b4-Pgo" firstAttribute="top" secondItem="ePV-Dt-tgW" secondAttribute="top" id="U0z-oz-Apd"/>
  432. <constraint firstItem="Ry5-P7-uGJ" firstAttribute="centerY" secondItem="Bsq-5a-pLX" secondAttribute="centerY" id="UjP-c1-aGm"/>
  433. <constraint firstItem="Bsq-5a-pLX" firstAttribute="centerY" secondItem="5OE-OZ-jXb" secondAttribute="centerY" id="b3L-9l-lhx"/>
  434. <constraint firstItem="eEo-N4-X7M" firstAttribute="leading" secondItem="Ry5-P7-uGJ" secondAttribute="trailing" id="cQp-qK-hHi"/>
  435. <constraint firstItem="eEo-N4-X7M" firstAttribute="centerY" secondItem="Ry5-P7-uGJ" secondAttribute="centerY" id="cke-MA-BW1"/>
  436. <constraint firstItem="5OE-OZ-jXb" firstAttribute="centerY" secondItem="ajf-b4-Pgo" secondAttribute="centerY" id="qd7-FU-e8c"/>
  437. <constraint firstItem="Ry5-P7-uGJ" firstAttribute="leading" secondItem="Bsq-5a-pLX" secondAttribute="trailing" id="qeI-a4-usd"/>
  438. <constraint firstItem="Bsq-5a-pLX" firstAttribute="leading" secondItem="5OE-OZ-jXb" secondAttribute="trailing" id="xGG-ax-LtS"/>
  439. </constraints>
  440. </view>
  441. <tableView clipsSubviews="YES" contentMode="scaleToFill" bounces="NO" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" bouncesZoom="NO" dataMode="prototypes" style="plain" separatorStyle="none" allowsSelection="NO" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="lu2-vD-Ip1">
  442. <rect key="frame" x="0.0" y="44" width="417" height="377"/>
  443. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  444. <prototypes>
  445. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="BetCell" rowHeight="35" id="4jO-B4-p9z" customClass="BetTbCell" customModule="CockFight" customModuleProvider="target">
  446. <rect key="frame" x="0.0" y="28" width="417" height="35"/>
  447. <autoresizingMask key="autoresizingMask"/>
  448. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="4jO-B4-p9z" id="vPr-yI-71d">
  449. <rect key="frame" x="0.0" y="0.0" width="417" height="35"/>
  450. <autoresizingMask key="autoresizingMask"/>
  451. <subviews>
  452. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="1" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="elc-ov-QR4">
  453. <rect key="frame" x="20" y="12" width="50" height="18"/>
  454. <constraints>
  455. <constraint firstAttribute="width" constant="50" id="gVs-6b-bmJ"/>
  456. </constraints>
  457. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  458. <nil key="textColor"/>
  459. <nil key="highlightedColor"/>
  460. </label>
  461. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ក្រហម" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="568-nW-YaT">
  462. <rect key="frame" x="150" y="12" width="80" height="18"/>
  463. <constraints>
  464. <constraint firstAttribute="width" constant="80" id="qUu-gx-OAN"/>
  465. </constraints>
  466. <fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
  467. <color key="textColor" systemColor="systemRedColor"/>
  468. <nil key="highlightedColor"/>
  469. </label>
  470. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="1kx2.3=0" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Syv-DW-egk">
  471. <rect key="frame" x="240" y="11.666666666666664" width="157" height="19"/>
  472. <constraints>
  473. <constraint firstAttribute="height" constant="19" id="X3q-Pw-ONP"/>
  474. <constraint firstAttribute="width" constant="80" id="jwO-cb-E7q"/>
  475. </constraints>
  476. <fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
  477. <color key="textColor" systemColor="systemRedColor"/>
  478. <nil key="highlightedColor"/>
  479. </label>
  480. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="hs2-3p-q9y">
  481. <rect key="frame" x="20" y="34" width="381" height="1"/>
  482. <color key="backgroundColor" systemColor="systemGray2Color"/>
  483. <constraints>
  484. <constraint firstAttribute="height" constant="1" id="NZe-x2-DTN"/>
  485. </constraints>
  486. </view>
  487. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="3" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="eTf-Nd-t11">
  488. <rect key="frame" x="80" y="12" width="60" height="18"/>
  489. <constraints>
  490. <constraint firstAttribute="width" constant="60" id="btr-7k-K1i"/>
  491. </constraints>
  492. <fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
  493. <nil key="textColor"/>
  494. <nil key="highlightedColor"/>
  495. </label>
  496. </subviews>
  497. <constraints>
  498. <constraint firstAttribute="trailing" secondItem="hs2-3p-q9y" secondAttribute="trailing" constant="16" id="45V-66-gXk"/>
  499. <constraint firstItem="568-nW-YaT" firstAttribute="centerY" secondItem="eTf-Nd-t11" secondAttribute="centerY" id="Erj-Jp-4Rv"/>
  500. <constraint firstItem="Syv-DW-egk" firstAttribute="leading" secondItem="568-nW-YaT" secondAttribute="trailing" constant="10" id="JRS-3Z-4eS"/>
  501. <constraint firstItem="elc-ov-QR4" firstAttribute="leading" secondItem="vPr-yI-71d" secondAttribute="leadingMargin" id="NUr-NP-ue8"/>
  502. <constraint firstItem="elc-ov-QR4" firstAttribute="top" secondItem="vPr-yI-71d" secondAttribute="topMargin" constant="1" id="PFG-6X-JQn"/>
  503. <constraint firstItem="eTf-Nd-t11" firstAttribute="centerY" secondItem="elc-ov-QR4" secondAttribute="centerY" id="Riv-iK-apo"/>
  504. <constraint firstItem="Syv-DW-egk" firstAttribute="trailing" secondItem="vPr-yI-71d" secondAttribute="trailingMargin" id="huK-rd-s5P"/>
  505. <constraint firstItem="568-nW-YaT" firstAttribute="leading" secondItem="eTf-Nd-t11" secondAttribute="trailing" constant="10" id="l2f-wt-SpY"/>
  506. <constraint firstItem="Syv-DW-egk" firstAttribute="centerY" secondItem="568-nW-YaT" secondAttribute="centerY" id="nca-ok-PpZ"/>
  507. <constraint firstItem="hs2-3p-q9y" firstAttribute="leading" secondItem="elc-ov-QR4" secondAttribute="leading" id="oiv-ZK-8F0"/>
  508. <constraint firstItem="eTf-Nd-t11" firstAttribute="leading" secondItem="elc-ov-QR4" secondAttribute="trailing" constant="10" id="twe-vY-KnG"/>
  509. <constraint firstAttribute="bottom" secondItem="hs2-3p-q9y" secondAttribute="bottom" id="y4i-G2-MX4"/>
  510. </constraints>
  511. </tableViewCellContentView>
  512. <connections>
  513. <outlet property="lbl_amount" destination="Syv-DW-egk" id="mfA-Jd-iGD"/>
  514. <outlet property="lbl_fight_no" destination="elc-ov-QR4" id="AbJ-or-bhh"/>
  515. <outlet property="lbl_rate" destination="eTf-Nd-t11" id="Au1-nY-MVg"/>
  516. <outlet property="lbl_type" destination="568-nW-YaT" id="fZu-s3-33l"/>
  517. </connections>
  518. </tableViewCell>
  519. </prototypes>
  520. <connections>
  521. <outlet property="dataSource" destination="a4o-th-hLZ" id="3eE-yo-yNI"/>
  522. <outlet property="delegate" destination="a4o-th-hLZ" id="UFi-FD-nXx"/>
  523. </connections>
  524. </tableView>
  525. <tableView clipsSubviews="YES" contentMode="scaleToFill" bounces="NO" alwaysBounceVertical="YES" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" bouncesZoom="NO" dataMode="prototypes" style="plain" separatorStyle="default" allowsSelection="NO" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="mOZ-Q9-JiB">
  526. <rect key="frame" x="0.0" y="44" width="417" height="377"/>
  527. <prototypes>
  528. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" indentationWidth="10" reuseIdentifier="WaitHeadcell" rowHeight="38" id="THF-Q8-wdN" customClass="WaitTbHeadCell" customModule="CockFight" customModuleProvider="target">
  529. <rect key="frame" x="0.0" y="28" width="417" height="38"/>
  530. <autoresizingMask key="autoresizingMask"/>
  531. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="THF-Q8-wdN" id="ghI-qe-mf2">
  532. <rect key="frame" x="0.0" y="0.0" width="417" height="38"/>
  533. <autoresizingMask key="autoresizingMask"/>
  534. <subviews>
  535. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="គូ" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="DYV-0K-sJi">
  536. <rect key="frame" x="20" y="11" width="50" height="21"/>
  537. <constraints>
  538. <constraint firstAttribute="width" constant="50" id="1yB-0b-aLG"/>
  539. <constraint firstAttribute="height" constant="21" id="IJX-cF-BpU"/>
  540. </constraints>
  541. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  542. <nil key="textColor"/>
  543. <nil key="highlightedColor"/>
  544. </label>
  545. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ហាងឆេង" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="qad-9N-Uwg">
  546. <rect key="frame" x="80" y="11.666666666666664" width="88" height="20"/>
  547. <constraints>
  548. <constraint firstAttribute="width" constant="88" id="NiL-fu-0xc"/>
  549. </constraints>
  550. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  551. <nil key="textColor"/>
  552. <nil key="highlightedColor"/>
  553. </label>
  554. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ជម្រើស" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Zmi-qx-eci">
  555. <rect key="frame" x="178" y="11.666666666666664" width="50" height="20"/>
  556. <constraints>
  557. <constraint firstAttribute="width" constant="50" id="42C-Dy-qWL"/>
  558. </constraints>
  559. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  560. <nil key="textColor"/>
  561. <nil key="highlightedColor"/>
  562. </label>
  563. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="nJi-xs-sCm">
  564. <rect key="frame" x="313" y="5.5" width="85" height="32"/>
  565. <constraints>
  566. <constraint firstAttribute="width" constant="85" id="4UW-8Z-cEd"/>
  567. <constraint firstAttribute="height" constant="32" id="ePr-u5-E8Y"/>
  568. </constraints>
  569. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  570. <state key="normal" title="លុបទាំងអស់"/>
  571. </button>
  572. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="លុយភ្នាល់" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="No5-lP-hfa">
  573. <rect key="frame" x="238" y="11.666666666666664" width="65" height="20"/>
  574. <constraints>
  575. <constraint firstAttribute="width" constant="65" id="ynC-qU-EH4"/>
  576. </constraints>
  577. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  578. <nil key="textColor"/>
  579. <nil key="highlightedColor"/>
  580. </label>
  581. </subviews>
  582. <constraints>
  583. <constraint firstItem="No5-lP-hfa" firstAttribute="centerY" secondItem="Zmi-qx-eci" secondAttribute="centerY" id="7wo-Ge-Mpg"/>
  584. <constraint firstItem="qad-9N-Uwg" firstAttribute="leading" secondItem="DYV-0K-sJi" secondAttribute="trailing" constant="10" id="9K7-8d-Icm"/>
  585. <constraint firstItem="nJi-xs-sCm" firstAttribute="centerY" secondItem="No5-lP-hfa" secondAttribute="centerY" id="9sm-AM-eeX"/>
  586. <constraint firstItem="No5-lP-hfa" firstAttribute="leading" secondItem="Zmi-qx-eci" secondAttribute="trailing" constant="10" id="F7N-pX-aXf"/>
  587. <constraint firstItem="DYV-0K-sJi" firstAttribute="leading" secondItem="ghI-qe-mf2" secondAttribute="leadingMargin" id="FTr-s5-i6T"/>
  588. <constraint firstItem="Zmi-qx-eci" firstAttribute="centerY" secondItem="qad-9N-Uwg" secondAttribute="centerY" id="aFh-Y4-DyS"/>
  589. <constraint firstItem="Zmi-qx-eci" firstAttribute="leading" secondItem="qad-9N-Uwg" secondAttribute="trailing" constant="10" id="akC-iF-z0U"/>
  590. <constraint firstItem="nJi-xs-sCm" firstAttribute="leading" secondItem="No5-lP-hfa" secondAttribute="trailing" constant="10" id="dHr-KL-Lxc"/>
  591. <constraint firstItem="qad-9N-Uwg" firstAttribute="centerY" secondItem="DYV-0K-sJi" secondAttribute="centerY" id="fYk-4H-iqZ"/>
  592. <constraint firstItem="DYV-0K-sJi" firstAttribute="top" secondItem="ghI-qe-mf2" secondAttribute="topMargin" id="pcR-L5-S7n"/>
  593. </constraints>
  594. <variation key="default">
  595. <mask key="subviews">
  596. <exclude reference="nJi-xs-sCm"/>
  597. </mask>
  598. </variation>
  599. </tableViewCellContentView>
  600. <connections>
  601. <outlet property="btnDeleteAll" destination="nJi-xs-sCm" id="bVS-dt-zT1"/>
  602. <outlet property="lblHBet" destination="No5-lP-hfa" id="R9Q-e7-U7F"/>
  603. <outlet property="lblHChoice" destination="Zmi-qx-eci" id="lq6-PD-Cqi"/>
  604. <outlet property="lblHHangCheng" destination="qad-9N-Uwg" id="2FJ-b2-hHc"/>
  605. <outlet property="lblHPair" destination="DYV-0K-sJi" id="TAD-eC-xJ0"/>
  606. </connections>
  607. </tableViewCell>
  608. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" indentationWidth="10" reuseIdentifier="WaitCell" rowHeight="43.5" id="O2g-Hs-W36" customClass="WaitTbCell" customModule="CockFight" customModuleProvider="target">
  609. <rect key="frame" x="0.0" y="66" width="417" height="43.5"/>
  610. <autoresizingMask key="autoresizingMask"/>
  611. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="O2g-Hs-W36" id="TkF-Qs-b51">
  612. <rect key="frame" x="0.0" y="0.0" width="417" height="43.5"/>
  613. <autoresizingMask key="autoresizingMask"/>
  614. <subviews>
  615. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="1000" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="SmL-UJ-Ie8">
  616. <rect key="frame" x="20" y="11" width="50" height="21"/>
  617. <constraints>
  618. <constraint firstAttribute="width" constant="50" id="BF0-I4-BdE"/>
  619. <constraint firstAttribute="height" constant="21" id="TWo-sl-bGD"/>
  620. </constraints>
  621. <fontDescription key="fontDescription" type="system" pointSize="13"/>
  622. <nil key="textColor"/>
  623. <nil key="highlightedColor"/>
  624. </label>
  625. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="-0.90" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="NCI-Ym-RCW">
  626. <rect key="frame" x="80" y="12.666666666666664" width="88" height="18"/>
  627. <constraints>
  628. <constraint firstAttribute="width" constant="88" id="dNY-sv-SVi"/>
  629. </constraints>
  630. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  631. <color key="textColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
  632. <nil key="highlightedColor"/>
  633. </label>
  634. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ក្រហម" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="0fB-7o-eH5">
  635. <rect key="frame" x="178" y="12.666666666666664" width="50" height="18"/>
  636. <constraints>
  637. <constraint firstAttribute="width" constant="50" id="6op-bx-kMZ"/>
  638. </constraints>
  639. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  640. <color key="textColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
  641. <nil key="highlightedColor"/>
  642. </label>
  643. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="rHy-b5-MMW">
  644. <rect key="frame" x="318" y="5.6666666666666679" width="75" height="32"/>
  645. <constraints>
  646. <constraint firstAttribute="width" constant="75" id="fia-ON-osO"/>
  647. <constraint firstAttribute="height" constant="32" id="w6G-Ru-jAx"/>
  648. </constraints>
  649. <state key="normal" title="លុបចោល"/>
  650. </button>
  651. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="50" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="jJB-kw-g9H">
  652. <rect key="frame" x="238" y="12.666666666666664" width="65" height="18"/>
  653. <constraints>
  654. <constraint firstAttribute="width" constant="65" id="cNu-Ug-ZDW"/>
  655. </constraints>
  656. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  657. <nil key="textColor"/>
  658. <nil key="highlightedColor"/>
  659. </label>
  660. </subviews>
  661. <constraints>
  662. <constraint firstItem="NCI-Ym-RCW" firstAttribute="centerY" secondItem="SmL-UJ-Ie8" secondAttribute="centerY" id="2UM-vZ-5Bw"/>
  663. <constraint firstItem="jJB-kw-g9H" firstAttribute="centerY" secondItem="0fB-7o-eH5" secondAttribute="centerY" id="6lK-4g-20I"/>
  664. <constraint firstItem="0fB-7o-eH5" firstAttribute="centerY" secondItem="NCI-Ym-RCW" secondAttribute="centerY" id="Dzm-g9-8Dv"/>
  665. <constraint firstItem="rHy-b5-MMW" firstAttribute="leading" secondItem="jJB-kw-g9H" secondAttribute="trailing" constant="15" id="GUd-JW-tcp"/>
  666. <constraint firstItem="rHy-b5-MMW" firstAttribute="centerY" secondItem="jJB-kw-g9H" secondAttribute="centerY" id="Hgi-qp-L8B"/>
  667. <constraint firstItem="SmL-UJ-Ie8" firstAttribute="leading" secondItem="TkF-Qs-b51" secondAttribute="leadingMargin" id="Paz-Go-iJU"/>
  668. <constraint firstItem="SmL-UJ-Ie8" firstAttribute="top" secondItem="TkF-Qs-b51" secondAttribute="topMargin" id="Qg8-7N-TGB"/>
  669. <constraint firstItem="jJB-kw-g9H" firstAttribute="leading" secondItem="0fB-7o-eH5" secondAttribute="trailing" constant="10" id="Swv-KQ-W5Q"/>
  670. <constraint firstItem="0fB-7o-eH5" firstAttribute="leading" secondItem="NCI-Ym-RCW" secondAttribute="trailing" constant="10" id="hlf-ID-2hM"/>
  671. <constraint firstItem="NCI-Ym-RCW" firstAttribute="leading" secondItem="SmL-UJ-Ie8" secondAttribute="trailing" constant="10" id="o1M-et-Ohm"/>
  672. </constraints>
  673. </tableViewCellContentView>
  674. <connections>
  675. <outlet property="btnDelete" destination="rHy-b5-MMW" id="F8j-kX-EQh"/>
  676. <outlet property="lblChoice" destination="0fB-7o-eH5" id="WNo-cW-fE4"/>
  677. <outlet property="lblHangCheng" destination="NCI-Ym-RCW" id="5rM-Ou-P2X"/>
  678. <outlet property="lblIDPair" destination="SmL-UJ-Ie8" id="5ez-OZ-BlE"/>
  679. <outlet property="lblMoneyBet" destination="jJB-kw-g9H" id="FbW-Y9-rc4"/>
  680. </connections>
  681. </tableViewCell>
  682. </prototypes>
  683. <sections/>
  684. <connections>
  685. <outlet property="dataSource" destination="a4o-th-hLZ" id="d6w-TU-uqN"/>
  686. <outlet property="delegate" destination="a4o-th-hLZ" id="qHf-9w-NRd"/>
  687. </connections>
  688. </tableView>
  689. <tableView clipsSubviews="YES" contentMode="scaleToFill" bounces="NO" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" bouncesZoom="NO" dataMode="prototypes" style="plain" separatorStyle="none" allowsSelection="NO" rowHeight="30" sectionHeaderHeight="10" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="97Q-7Q-YKN">
  690. <rect key="frame" x="0.0" y="44" width="417" height="377"/>
  691. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  692. <prototypes>
  693. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" indentationWidth="10" reuseIdentifier="HeadBlueCell" rowHeight="30" id="LgB-xF-cnE" customClass="BlueTBHeadCell" customModule="CockFight" customModuleProvider="target">
  694. <rect key="frame" x="0.0" y="28" width="417" height="30"/>
  695. <autoresizingMask key="autoresizingMask"/>
  696. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="LgB-xF-cnE" id="dSf-Bf-dmP">
  697. <rect key="frame" x="0.0" y="0.0" width="417" height="30"/>
  698. <autoresizingMask key="autoresizingMask"/>
  699. <subviews>
  700. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ខាងខៀវ-ត" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="NHG-PU-JOk">
  701. <rect key="frame" x="10" y="5" width="69" height="20"/>
  702. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  703. <color key="textColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  704. <nil key="highlightedColor"/>
  705. </label>
  706. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="សរុបលុយខៀវ" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Qd6-Ke-q8h">
  707. <rect key="frame" x="89" y="5" width="88.666666666666686" height="20"/>
  708. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  709. <color key="textColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  710. <nil key="highlightedColor"/>
  711. </label>
  712. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="សរុបលុយក្រហម" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="fHi-EA-cZ9">
  713. <rect key="frame" x="197.66666666666666" y="5" width="101.99999999999997" height="20"/>
  714. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  715. <color key="textColor" systemColor="systemRedColor"/>
  716. <nil key="highlightedColor"/>
  717. </label>
  718. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ខាងក្រហម-រង" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="DYV-V6-zwy">
  719. <rect key="frame" x="309.66666666666669" y="5" width="100" height="20"/>
  720. <constraints>
  721. <constraint firstAttribute="width" constant="100" id="yNy-k5-89n"/>
  722. </constraints>
  723. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  724. <color key="textColor" systemColor="systemRedColor"/>
  725. <nil key="highlightedColor"/>
  726. </label>
  727. </subviews>
  728. <constraints>
  729. <constraint firstItem="NHG-PU-JOk" firstAttribute="centerY" secondItem="dSf-Bf-dmP" secondAttribute="centerY" id="76S-Mm-6d6"/>
  730. <constraint firstItem="fHi-EA-cZ9" firstAttribute="centerY" secondItem="Qd6-Ke-q8h" secondAttribute="centerY" id="H1b-Xp-hbi"/>
  731. <constraint firstItem="DYV-V6-zwy" firstAttribute="centerY" secondItem="fHi-EA-cZ9" secondAttribute="centerY" id="HRr-CA-ABM"/>
  732. <constraint firstItem="NHG-PU-JOk" firstAttribute="leading" secondItem="dSf-Bf-dmP" secondAttribute="leading" constant="10" id="MOw-wz-gDD"/>
  733. <constraint firstItem="Qd6-Ke-q8h" firstAttribute="leading" secondItem="NHG-PU-JOk" secondAttribute="trailing" constant="10" id="PxF-md-mvn"/>
  734. <constraint firstItem="fHi-EA-cZ9" firstAttribute="leading" secondItem="Qd6-Ke-q8h" secondAttribute="trailing" constant="20" id="URI-S9-5sM"/>
  735. <constraint firstItem="DYV-V6-zwy" firstAttribute="leading" secondItem="fHi-EA-cZ9" secondAttribute="trailing" constant="10" id="b5c-Hq-zt4"/>
  736. <constraint firstItem="Qd6-Ke-q8h" firstAttribute="centerY" secondItem="NHG-PU-JOk" secondAttribute="centerY" id="eh8-fw-kj4"/>
  737. </constraints>
  738. </tableViewCellContentView>
  739. <color key="backgroundColor" systemColor="systemGray5Color"/>
  740. <connections>
  741. <outlet property="lblHBlueTor" destination="NHG-PU-JOk" id="F1h-cI-Izh"/>
  742. <outlet property="lblHRed" destination="DYV-V6-zwy" id="vVR-WX-Prw"/>
  743. <outlet property="lblHTotalBlue" destination="Qd6-Ke-q8h" id="RxB-Kx-kKH"/>
  744. <outlet property="lblHTotalRed" destination="fHi-EA-cZ9" id="T8c-Ek-qwx"/>
  745. </connections>
  746. </tableViewCell>
  747. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SubBlueCell" rowHeight="33" id="cFQ-8T-0pf" customClass="BlueTbCell" customModule="CockFight" customModuleProvider="target">
  748. <rect key="frame" x="0.0" y="58" width="417" height="33"/>
  749. <autoresizingMask key="autoresizingMask"/>
  750. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="cFQ-8T-0pf" id="Oya-Vd-bdp">
  751. <rect key="frame" x="0.0" y="0.0" width="417" height="33"/>
  752. <autoresizingMask key="autoresizingMask"/>
  753. <subviews>
  754. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="ULy-m8-brP">
  755. <rect key="frame" x="200" y="4" width="30" height="25"/>
  756. <color key="backgroundColor" systemColor="systemRedColor"/>
  757. <constraints>
  758. <constraint firstAttribute="height" constant="25" id="LIT-9A-d6B"/>
  759. <constraint firstAttribute="width" constant="30" id="tFp-FT-rJh"/>
  760. </constraints>
  761. <fontDescription key="fontDescription" name="HelveticaNeue-Bold" family="Helvetica Neue" pointSize="15"/>
  762. <state key="normal" title="X">
  763. <color key="titleColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  764. </state>
  765. </button>
  766. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="8Q6-t1-Bg4">
  767. <rect key="frame" x="20" y="2" width="50" height="29"/>
  768. <constraints>
  769. <constraint firstAttribute="width" constant="50" id="2iz-QZ-GdI"/>
  770. </constraints>
  771. <fontDescription key="fontDescription" type="system" weight="black" pointSize="14"/>
  772. <state key="normal" title="1.00">
  773. <color key="titleColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  774. </state>
  775. </button>
  776. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Jx5-ip-t3r">
  777. <rect key="frame" x="323" y="2" width="60" height="29"/>
  778. <constraints>
  779. <constraint firstAttribute="width" constant="60" id="nvL-W7-1CR"/>
  780. </constraints>
  781. <fontDescription key="fontDescription" type="system" weight="black" pointSize="14"/>
  782. <state key="normal" title="-0.95">
  783. <color key="titleColor" systemColor="systemRedColor"/>
  784. </state>
  785. </button>
  786. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="100" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="HQn-V4-DLA">
  787. <rect key="frame" x="88" y="8" width="50" height="17"/>
  788. <constraints>
  789. <constraint firstAttribute="width" constant="50" id="Uu7-ax-nhV"/>
  790. </constraints>
  791. <fontDescription key="fontDescription" type="system" weight="black" pointSize="14"/>
  792. <color key="textColor" red="0.38039215686274508" green="0.73725490196078436" blue="0.098039215686274508" alpha="1" colorSpace="calibratedRGB"/>
  793. <nil key="highlightedColor"/>
  794. </label>
  795. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="0" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="eus-Dx-ieD">
  796. <rect key="frame" x="242" y="8" width="56" height="17"/>
  797. <constraints>
  798. <constraint firstAttribute="width" constant="56" id="rUz-Bp-iOB"/>
  799. </constraints>
  800. <fontDescription key="fontDescription" type="system" weight="black" pointSize="14"/>
  801. <color key="textColor" red="0.3803921569" green="0.73649914800000005" blue="0.096971108649999999" alpha="1" colorSpace="calibratedRGB"/>
  802. <nil key="highlightedColor"/>
  803. </label>
  804. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Gwj-yR-yPC">
  805. <rect key="frame" x="150" y="4" width="30" height="25"/>
  806. <color key="backgroundColor" red="0.16862745100000001" green="0.25882352939999997" blue="0.80000000000000004" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  807. <constraints>
  808. <constraint firstAttribute="width" constant="30" id="W0F-nQ-0CW"/>
  809. <constraint firstAttribute="height" constant="25" id="gpU-wg-wXm"/>
  810. </constraints>
  811. <fontDescription key="fontDescription" name="HelveticaNeue-Bold" family="Helvetica Neue" pointSize="15"/>
  812. <state key="normal" title="X">
  813. <color key="titleColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  814. </state>
  815. </button>
  816. </subviews>
  817. <constraints>
  818. <constraint firstItem="Gwj-yR-yPC" firstAttribute="centerY" secondItem="Oya-Vd-bdp" secondAttribute="centerY" id="7d2-5P-5y7"/>
  819. <constraint firstItem="Gwj-yR-yPC" firstAttribute="leading" secondItem="HQn-V4-DLA" secondAttribute="trailing" constant="12" id="Bth-eE-hLT"/>
  820. <constraint firstItem="ULy-m8-brP" firstAttribute="centerY" secondItem="Oya-Vd-bdp" secondAttribute="centerY" id="H0i-2l-yaa"/>
  821. <constraint firstItem="Jx5-ip-t3r" firstAttribute="leading" secondItem="eus-Dx-ieD" secondAttribute="trailing" constant="25" id="K7D-Vn-Fto"/>
  822. <constraint firstItem="Jx5-ip-t3r" firstAttribute="centerY" secondItem="eus-Dx-ieD" secondAttribute="centerY" id="Kq2-UQ-MT0"/>
  823. <constraint firstItem="8Q6-t1-Bg4" firstAttribute="leading" secondItem="Oya-Vd-bdp" secondAttribute="leading" constant="20" id="YaZ-Xc-qAD"/>
  824. <constraint firstItem="8Q6-t1-Bg4" firstAttribute="centerY" secondItem="Oya-Vd-bdp" secondAttribute="centerY" id="ZWQ-jK-zar"/>
  825. <constraint firstItem="eus-Dx-ieD" firstAttribute="leading" secondItem="ULy-m8-brP" secondAttribute="trailing" constant="12" id="bqI-ny-hBE"/>
  826. <constraint firstItem="HQn-V4-DLA" firstAttribute="centerY" secondItem="8Q6-t1-Bg4" secondAttribute="centerY" id="osW-oC-vOh"/>
  827. <constraint firstItem="ULy-m8-brP" firstAttribute="leading" secondItem="Gwj-yR-yPC" secondAttribute="trailing" constant="20" id="r6Y-zH-UO6"/>
  828. <constraint firstItem="HQn-V4-DLA" firstAttribute="leading" secondItem="8Q6-t1-Bg4" secondAttribute="trailing" constant="18" id="sWz-97-pTF"/>
  829. <constraint firstItem="eus-Dx-ieD" firstAttribute="centerY" secondItem="HQn-V4-DLA" secondAttribute="centerY" id="zuU-bU-abi"/>
  830. </constraints>
  831. </tableViewCellContentView>
  832. <color key="backgroundColor" systemColor="systemGray5Color"/>
  833. <connections>
  834. <outlet property="btnBlueTor" destination="8Q6-t1-Bg4" id="7DS-b8-O4o"/>
  835. <outlet property="btnDeleteBlue" destination="Gwj-yR-yPC" id="yiy-lg-A0J"/>
  836. <outlet property="btnDeleteRed" destination="ULy-m8-brP" id="BYq-8y-nuL"/>
  837. <outlet property="btnRedRong" destination="Jx5-ip-t3r" id="xkt-3E-pNG"/>
  838. <outlet property="lblTotalBlue" destination="HQn-V4-DLA" id="Z6y-mY-eeL"/>
  839. <outlet property="lblTotalRed" destination="eus-Dx-ieD" id="oIe-j7-Y5N"/>
  840. </connections>
  841. </tableViewCell>
  842. </prototypes>
  843. <connections>
  844. <outlet property="dataSource" destination="a4o-th-hLZ" id="q5z-jZ-JXW"/>
  845. <outlet property="delegate" destination="a4o-th-hLZ" id="9x6-2b-7fz"/>
  846. </connections>
  847. </tableView>
  848. <tableView clipsSubviews="YES" contentMode="scaleToFill" bounces="NO" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" bouncesZoom="NO" dataMode="prototypes" style="plain" separatorStyle="none" allowsSelection="NO" rowHeight="30" sectionHeaderHeight="10" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="8y9-Mf-gJx">
  849. <rect key="frame" x="0.0" y="44" width="417" height="377"/>
  850. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  851. <prototypes>
  852. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" indentationWidth="10" reuseIdentifier="HeadRedCell" rowHeight="30" id="ETW-Ib-vGw" customClass="RedTbHeadCell" customModule="CockFight" customModuleProvider="target">
  853. <rect key="frame" x="0.0" y="28" width="417" height="30"/>
  854. <autoresizingMask key="autoresizingMask"/>
  855. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="ETW-Ib-vGw" id="chc-RU-pTt">
  856. <rect key="frame" x="0.0" y="0.0" width="417" height="30"/>
  857. <autoresizingMask key="autoresizingMask"/>
  858. <subviews>
  859. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ខាងខៀវ-រង" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="02C-Z5-1x9">
  860. <rect key="frame" x="10" y="5" width="75" height="20"/>
  861. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  862. <color key="textColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  863. <nil key="highlightedColor"/>
  864. </label>
  865. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="សរុបលុយខៀវ" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="R8L-zK-jd5">
  866. <rect key="frame" x="95" y="5" width="88.666666666666686" height="20"/>
  867. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  868. <color key="textColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  869. <nil key="highlightedColor"/>
  870. </label>
  871. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="សរុបលុយក្រហម" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="p0a-pW-qtK">
  872. <rect key="frame" x="203.66666666666666" y="5" width="101.99999999999997" height="20"/>
  873. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  874. <color key="textColor" systemColor="systemRedColor"/>
  875. <nil key="highlightedColor"/>
  876. </label>
  877. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ខាងក្រហម-ត" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="XWd-Pl-UkS">
  878. <rect key="frame" x="315.66666666666669" y="5" width="90" height="20"/>
  879. <constraints>
  880. <constraint firstAttribute="width" constant="90" id="YH7-8O-vBi"/>
  881. </constraints>
  882. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  883. <color key="textColor" systemColor="systemRedColor"/>
  884. <nil key="highlightedColor"/>
  885. </label>
  886. </subviews>
  887. <constraints>
  888. <constraint firstItem="02C-Z5-1x9" firstAttribute="centerY" secondItem="chc-RU-pTt" secondAttribute="centerY" id="3Jz-QR-RXF"/>
  889. <constraint firstItem="XWd-Pl-UkS" firstAttribute="centerY" secondItem="p0a-pW-qtK" secondAttribute="centerY" id="6Ob-RW-d1a"/>
  890. <constraint firstItem="XWd-Pl-UkS" firstAttribute="leading" secondItem="p0a-pW-qtK" secondAttribute="trailing" constant="10" id="A41-dZ-Iz4"/>
  891. <constraint firstItem="p0a-pW-qtK" firstAttribute="centerY" secondItem="R8L-zK-jd5" secondAttribute="centerY" id="Z9K-oC-FjI"/>
  892. <constraint firstItem="p0a-pW-qtK" firstAttribute="leading" secondItem="R8L-zK-jd5" secondAttribute="trailing" constant="20" id="dOp-xK-xgh"/>
  893. <constraint firstItem="02C-Z5-1x9" firstAttribute="leading" secondItem="chc-RU-pTt" secondAttribute="leading" constant="10" id="lO7-sg-ZOm"/>
  894. <constraint firstItem="R8L-zK-jd5" firstAttribute="leading" secondItem="02C-Z5-1x9" secondAttribute="trailing" constant="10" id="mkx-8N-zgh"/>
  895. <constraint firstItem="R8L-zK-jd5" firstAttribute="centerY" secondItem="02C-Z5-1x9" secondAttribute="centerY" id="tyc-Zq-Vm4"/>
  896. </constraints>
  897. </tableViewCellContentView>
  898. <color key="backgroundColor" systemColor="systemGray5Color"/>
  899. <connections>
  900. <outlet property="lblHBlueTor" destination="02C-Z5-1x9" id="mWH-2V-uuO"/>
  901. <outlet property="lblHRed" destination="XWd-Pl-UkS" id="woF-yv-Heh"/>
  902. <outlet property="lblHTotalBlue" destination="R8L-zK-jd5" id="rjl-6w-PwY"/>
  903. <outlet property="lblHTotalRed" destination="p0a-pW-qtK" id="me7-82-yUK"/>
  904. </connections>
  905. </tableViewCell>
  906. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SubRedCell" rowHeight="33" id="mBC-N7-LpT" customClass="RedTbCell" customModule="CockFight" customModuleProvider="target">
  907. <rect key="frame" x="0.0" y="58" width="417" height="33"/>
  908. <autoresizingMask key="autoresizingMask"/>
  909. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="mBC-N7-LpT" id="i6J-RL-uxr">
  910. <rect key="frame" x="0.0" y="0.0" width="417" height="33"/>
  911. <autoresizingMask key="autoresizingMask"/>
  912. <subviews>
  913. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="vWf-1e-GKh">
  914. <rect key="frame" x="20" y="2" width="50" height="29"/>
  915. <constraints>
  916. <constraint firstAttribute="width" constant="50" id="QdT-1O-HS1"/>
  917. </constraints>
  918. <fontDescription key="fontDescription" type="system" weight="black" pointSize="14"/>
  919. <state key="normal" title="1.00">
  920. <color key="titleColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  921. </state>
  922. </button>
  923. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="7oN-a6-8na">
  924. <rect key="frame" x="323" y="2" width="60" height="29"/>
  925. <constraints>
  926. <constraint firstAttribute="width" constant="60" id="ktd-NT-MS5"/>
  927. </constraints>
  928. <fontDescription key="fontDescription" type="system" weight="black" pointSize="14"/>
  929. <state key="normal" title="-0.95">
  930. <color key="titleColor" systemColor="systemRedColor"/>
  931. </state>
  932. </button>
  933. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="100" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="H8V-mq-vT9">
  934. <rect key="frame" x="88" y="8" width="50" height="17"/>
  935. <constraints>
  936. <constraint firstAttribute="width" constant="50" id="5UJ-w3-DNl"/>
  937. </constraints>
  938. <fontDescription key="fontDescription" type="system" weight="black" pointSize="14"/>
  939. <color key="textColor" red="0.38039215686274508" green="0.73725490196078436" blue="0.098039215686274508" alpha="1" colorSpace="calibratedRGB"/>
  940. <nil key="highlightedColor"/>
  941. </label>
  942. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="0" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="N8H-6x-fy9">
  943. <rect key="frame" x="242" y="8" width="56" height="17"/>
  944. <constraints>
  945. <constraint firstAttribute="width" constant="56" id="Bk5-Sj-9fB"/>
  946. </constraints>
  947. <fontDescription key="fontDescription" type="system" weight="black" pointSize="14"/>
  948. <color key="textColor" red="0.3803921569" green="0.73649914800000005" blue="0.096971108649999999" alpha="1" colorSpace="calibratedRGB"/>
  949. <nil key="highlightedColor"/>
  950. </label>
  951. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="3cY-HE-QOi">
  952. <rect key="frame" x="150" y="4" width="30" height="25"/>
  953. <color key="backgroundColor" red="0.16862745098039217" green="0.25882352941176467" blue="0.80000000000000004" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  954. <constraints>
  955. <constraint firstAttribute="width" constant="30" id="Xih-if-9vO"/>
  956. <constraint firstAttribute="height" constant="25" id="iJw-Ug-0lV"/>
  957. </constraints>
  958. <fontDescription key="fontDescription" name="HelveticaNeue-Bold" family="Helvetica Neue" pointSize="15"/>
  959. <state key="normal" title="X">
  960. <color key="titleColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  961. </state>
  962. </button>
  963. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="p3P-HG-kfR">
  964. <rect key="frame" x="200" y="4" width="30" height="25"/>
  965. <color key="backgroundColor" systemColor="systemRedColor"/>
  966. <constraints>
  967. <constraint firstAttribute="width" constant="30" id="Tui-0a-XXV"/>
  968. <constraint firstAttribute="height" constant="25" id="yjL-n6-gt7"/>
  969. </constraints>
  970. <fontDescription key="fontDescription" name="HelveticaNeue-Bold" family="Helvetica Neue" pointSize="15"/>
  971. <state key="normal" title="X">
  972. <color key="titleColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  973. </state>
  974. </button>
  975. </subviews>
  976. <constraints>
  977. <constraint firstItem="7oN-a6-8na" firstAttribute="leading" secondItem="N8H-6x-fy9" secondAttribute="trailing" constant="25" id="CFq-8T-vsW"/>
  978. <constraint firstItem="H8V-mq-vT9" firstAttribute="leading" secondItem="vWf-1e-GKh" secondAttribute="trailing" constant="18" id="DPZ-dD-PG5"/>
  979. <constraint firstItem="p3P-HG-kfR" firstAttribute="leading" secondItem="3cY-HE-QOi" secondAttribute="trailing" constant="20" id="EbE-Lg-UNP"/>
  980. <constraint firstItem="N8H-6x-fy9" firstAttribute="leading" secondItem="p3P-HG-kfR" secondAttribute="trailing" constant="12" id="Egy-ti-Cdm"/>
  981. <constraint firstItem="vWf-1e-GKh" firstAttribute="centerY" secondItem="i6J-RL-uxr" secondAttribute="centerY" id="FGN-0D-hh0"/>
  982. <constraint firstItem="3cY-HE-QOi" firstAttribute="centerY" secondItem="i6J-RL-uxr" secondAttribute="centerY" id="Nrr-Vt-dJW"/>
  983. <constraint firstItem="H8V-mq-vT9" firstAttribute="centerY" secondItem="vWf-1e-GKh" secondAttribute="centerY" id="O9b-0z-8XN"/>
  984. <constraint firstItem="vWf-1e-GKh" firstAttribute="leading" secondItem="i6J-RL-uxr" secondAttribute="leading" constant="20" id="VSZ-hg-t81"/>
  985. <constraint firstItem="3cY-HE-QOi" firstAttribute="leading" secondItem="H8V-mq-vT9" secondAttribute="trailing" constant="12" id="dRB-8k-QpY"/>
  986. <constraint firstItem="7oN-a6-8na" firstAttribute="centerY" secondItem="N8H-6x-fy9" secondAttribute="centerY" id="kJq-sg-m09"/>
  987. <constraint firstItem="p3P-HG-kfR" firstAttribute="centerY" secondItem="i6J-RL-uxr" secondAttribute="centerY" id="nhk-Ku-wR6"/>
  988. <constraint firstItem="N8H-6x-fy9" firstAttribute="centerY" secondItem="H8V-mq-vT9" secondAttribute="centerY" id="z4R-44-oo5"/>
  989. </constraints>
  990. </tableViewCellContentView>
  991. <color key="backgroundColor" systemColor="systemGray5Color"/>
  992. <connections>
  993. <outlet property="btnBlueTor" destination="vWf-1e-GKh" id="hjj-RF-ydS"/>
  994. <outlet property="btnDeleteBlue" destination="3cY-HE-QOi" id="Fao-oX-Phq"/>
  995. <outlet property="btnDeleteRed" destination="p3P-HG-kfR" id="Xul-Pz-lwi"/>
  996. <outlet property="btnRedRong" destination="7oN-a6-8na" id="kdh-ab-l6J"/>
  997. <outlet property="lblTotalBlue" destination="H8V-mq-vT9" id="yTz-yp-gWi"/>
  998. <outlet property="lblTotalRed" destination="N8H-6x-fy9" id="PAp-Bw-bTP"/>
  999. </connections>
  1000. </tableViewCell>
  1001. </prototypes>
  1002. <connections>
  1003. <outlet property="dataSource" destination="a4o-th-hLZ" id="EK5-p5-DN6"/>
  1004. <outlet property="delegate" destination="a4o-th-hLZ" id="8Dd-pr-h2f"/>
  1005. </connections>
  1006. </tableView>
  1007. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="aqb-ZX-555" userLabel="VPongTable">
  1008. <rect key="frame" x="0.0" y="45" width="403" height="279"/>
  1009. <subviews>
  1010. <collectionView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" dataMode="prototypes" translatesAutoresizingMaskIntoConstraints="NO" id="XXb-pJ-QXw">
  1011. <rect key="frame" x="0.0" y="0.0" width="403" height="279"/>
  1012. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  1013. <collectionViewFlowLayout key="collectionViewLayout" minimumLineSpacing="0.0" minimumInteritemSpacing="0.0" id="8zJ-jc-9DY">
  1014. <size key="itemSize" width="31" height="31"/>
  1015. <size key="headerReferenceSize" width="0.0" height="0.0"/>
  1016. <size key="footerReferenceSize" width="0.0" height="0.0"/>
  1017. <inset key="sectionInset" minX="0.0" minY="0.0" maxX="0.0" maxY="0.0"/>
  1018. </collectionViewFlowLayout>
  1019. <cells>
  1020. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" reuseIdentifier="SubBlueCell" id="Nag-hM-gSM" customClass="PongCollectionCell" customModule="CockFight" customModuleProvider="target">
  1021. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1022. <autoresizingMask key="autoresizingMask"/>
  1023. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="6Yz-hz-Lmh">
  1024. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1025. <autoresizingMask key="autoresizingMask"/>
  1026. <subviews>
  1027. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="jLw-K7-hjh">
  1028. <rect key="frame" x="2.5" y="2.5" width="26" height="26"/>
  1029. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1030. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  1031. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1032. <nil key="textColor"/>
  1033. <nil key="highlightedColor"/>
  1034. </label>
  1035. </subviews>
  1036. </collectionViewCellContentView>
  1037. <connections>
  1038. <outlet property="lblRound" destination="jLw-K7-hjh" id="O8y-Hw-iul"/>
  1039. </connections>
  1040. </collectionViewCell>
  1041. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="unR-wG-qEk">
  1042. <rect key="frame" x="31" y="0.0" width="31" height="31"/>
  1043. <autoresizingMask key="autoresizingMask"/>
  1044. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="6Bz-uy-41B">
  1045. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1046. <autoresizingMask key="autoresizingMask"/>
  1047. </collectionViewCellContentView>
  1048. </collectionViewCell>
  1049. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="4aG-Lt-scP">
  1050. <rect key="frame" x="62" y="0.0" width="31" height="31"/>
  1051. <autoresizingMask key="autoresizingMask"/>
  1052. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="vxL-oC-vl3">
  1053. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1054. <autoresizingMask key="autoresizingMask"/>
  1055. </collectionViewCellContentView>
  1056. </collectionViewCell>
  1057. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="j6k-Xg-xEe">
  1058. <rect key="frame" x="93" y="0.0" width="31" height="31"/>
  1059. <autoresizingMask key="autoresizingMask"/>
  1060. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="TVc-uN-nOj">
  1061. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1062. <autoresizingMask key="autoresizingMask"/>
  1063. </collectionViewCellContentView>
  1064. </collectionViewCell>
  1065. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Gy8-tf-cFw">
  1066. <rect key="frame" x="124" y="0.0" width="31" height="31"/>
  1067. <autoresizingMask key="autoresizingMask"/>
  1068. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="8v1-2Z-PUO">
  1069. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1070. <autoresizingMask key="autoresizingMask"/>
  1071. </collectionViewCellContentView>
  1072. </collectionViewCell>
  1073. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Yf1-TD-PuJ">
  1074. <rect key="frame" x="155" y="0.0" width="31" height="31"/>
  1075. <autoresizingMask key="autoresizingMask"/>
  1076. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="V8U-73-6jg">
  1077. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1078. <autoresizingMask key="autoresizingMask"/>
  1079. </collectionViewCellContentView>
  1080. </collectionViewCell>
  1081. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="nrk-LW-esD">
  1082. <rect key="frame" x="186" y="0.0" width="31" height="31"/>
  1083. <autoresizingMask key="autoresizingMask"/>
  1084. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="p8Q-09-PDn">
  1085. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1086. <autoresizingMask key="autoresizingMask"/>
  1087. </collectionViewCellContentView>
  1088. </collectionViewCell>
  1089. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="adz-0S-yWo">
  1090. <rect key="frame" x="217" y="0.0" width="31" height="31"/>
  1091. <autoresizingMask key="autoresizingMask"/>
  1092. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="y6j-MY-Nbo">
  1093. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1094. <autoresizingMask key="autoresizingMask"/>
  1095. </collectionViewCellContentView>
  1096. </collectionViewCell>
  1097. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="J4Z-c4-K4a">
  1098. <rect key="frame" x="248" y="0.0" width="31" height="31"/>
  1099. <autoresizingMask key="autoresizingMask"/>
  1100. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="g2D-kS-qdB">
  1101. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1102. <autoresizingMask key="autoresizingMask"/>
  1103. </collectionViewCellContentView>
  1104. </collectionViewCell>
  1105. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="yAS-dV-7Fm">
  1106. <rect key="frame" x="279" y="0.0" width="31" height="31"/>
  1107. <autoresizingMask key="autoresizingMask"/>
  1108. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="s5a-An-7DV">
  1109. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1110. <autoresizingMask key="autoresizingMask"/>
  1111. </collectionViewCellContentView>
  1112. </collectionViewCell>
  1113. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="xtr-Dd-Cbx">
  1114. <rect key="frame" x="310" y="0.0" width="31" height="31"/>
  1115. <autoresizingMask key="autoresizingMask"/>
  1116. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Fdw-29-s3O">
  1117. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1118. <autoresizingMask key="autoresizingMask"/>
  1119. </collectionViewCellContentView>
  1120. </collectionViewCell>
  1121. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="ScE-SD-mA6">
  1122. <rect key="frame" x="341" y="0.0" width="31" height="31"/>
  1123. <autoresizingMask key="autoresizingMask"/>
  1124. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="3aU-GS-dme">
  1125. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1126. <autoresizingMask key="autoresizingMask"/>
  1127. </collectionViewCellContentView>
  1128. </collectionViewCell>
  1129. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="vqd-gv-ffY">
  1130. <rect key="frame" x="372" y="0.0" width="31" height="31"/>
  1131. <autoresizingMask key="autoresizingMask"/>
  1132. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="H84-ih-lOX">
  1133. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1134. <autoresizingMask key="autoresizingMask"/>
  1135. </collectionViewCellContentView>
  1136. </collectionViewCell>
  1137. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="o9N-mk-N6s">
  1138. <rect key="frame" x="0.0" y="31" width="31" height="31"/>
  1139. <autoresizingMask key="autoresizingMask"/>
  1140. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="bai-2p-LoT">
  1141. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1142. <autoresizingMask key="autoresizingMask"/>
  1143. </collectionViewCellContentView>
  1144. </collectionViewCell>
  1145. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="MuL-I2-GBr">
  1146. <rect key="frame" x="31" y="31" width="31" height="31"/>
  1147. <autoresizingMask key="autoresizingMask"/>
  1148. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="q5g-Mx-xr2">
  1149. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1150. <autoresizingMask key="autoresizingMask"/>
  1151. </collectionViewCellContentView>
  1152. </collectionViewCell>
  1153. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="8Q3-yy-nWA">
  1154. <rect key="frame" x="62" y="31" width="31" height="31"/>
  1155. <autoresizingMask key="autoresizingMask"/>
  1156. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="WdA-7A-hx9">
  1157. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1158. <autoresizingMask key="autoresizingMask"/>
  1159. </collectionViewCellContentView>
  1160. </collectionViewCell>
  1161. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="JcN-WS-yrx">
  1162. <rect key="frame" x="93" y="31" width="31" height="31"/>
  1163. <autoresizingMask key="autoresizingMask"/>
  1164. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="x4G-0w-Dcd">
  1165. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1166. <autoresizingMask key="autoresizingMask"/>
  1167. </collectionViewCellContentView>
  1168. </collectionViewCell>
  1169. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="BRg-o5-PWd">
  1170. <rect key="frame" x="124" y="31" width="31" height="31"/>
  1171. <autoresizingMask key="autoresizingMask"/>
  1172. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="uXO-XI-rq1">
  1173. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1174. <autoresizingMask key="autoresizingMask"/>
  1175. </collectionViewCellContentView>
  1176. </collectionViewCell>
  1177. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="mJd-Mj-P2Q">
  1178. <rect key="frame" x="155" y="31" width="31" height="31"/>
  1179. <autoresizingMask key="autoresizingMask"/>
  1180. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="i9e-rN-H0y">
  1181. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1182. <autoresizingMask key="autoresizingMask"/>
  1183. </collectionViewCellContentView>
  1184. </collectionViewCell>
  1185. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Qvk-jO-fGK">
  1186. <rect key="frame" x="186" y="31" width="31" height="31"/>
  1187. <autoresizingMask key="autoresizingMask"/>
  1188. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="rm3-rg-zIg">
  1189. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1190. <autoresizingMask key="autoresizingMask"/>
  1191. </collectionViewCellContentView>
  1192. </collectionViewCell>
  1193. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Gi5-qk-jtX">
  1194. <rect key="frame" x="217" y="31" width="31" height="31"/>
  1195. <autoresizingMask key="autoresizingMask"/>
  1196. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="ISL-K9-dy6">
  1197. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1198. <autoresizingMask key="autoresizingMask"/>
  1199. </collectionViewCellContentView>
  1200. </collectionViewCell>
  1201. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="nKI-UV-Nej">
  1202. <rect key="frame" x="248" y="31" width="31" height="31"/>
  1203. <autoresizingMask key="autoresizingMask"/>
  1204. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="e9Q-o8-ZP4">
  1205. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1206. <autoresizingMask key="autoresizingMask"/>
  1207. </collectionViewCellContentView>
  1208. </collectionViewCell>
  1209. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="v2O-bD-cYb">
  1210. <rect key="frame" x="279" y="31" width="31" height="31"/>
  1211. <autoresizingMask key="autoresizingMask"/>
  1212. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="jgG-kh-HJZ">
  1213. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1214. <autoresizingMask key="autoresizingMask"/>
  1215. </collectionViewCellContentView>
  1216. </collectionViewCell>
  1217. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="yf8-uF-cOx">
  1218. <rect key="frame" x="310" y="31" width="31" height="31"/>
  1219. <autoresizingMask key="autoresizingMask"/>
  1220. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="DQe-r8-A2F">
  1221. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1222. <autoresizingMask key="autoresizingMask"/>
  1223. </collectionViewCellContentView>
  1224. </collectionViewCell>
  1225. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="9QM-oK-gHw">
  1226. <rect key="frame" x="341" y="31" width="31" height="31"/>
  1227. <autoresizingMask key="autoresizingMask"/>
  1228. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="G68-Oy-R5j">
  1229. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1230. <autoresizingMask key="autoresizingMask"/>
  1231. </collectionViewCellContentView>
  1232. </collectionViewCell>
  1233. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Kxe-Hj-rF3">
  1234. <rect key="frame" x="372" y="31" width="31" height="31"/>
  1235. <autoresizingMask key="autoresizingMask"/>
  1236. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="hlz-XV-lYO">
  1237. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1238. <autoresizingMask key="autoresizingMask"/>
  1239. </collectionViewCellContentView>
  1240. </collectionViewCell>
  1241. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="XZT-oR-7Nm">
  1242. <rect key="frame" x="0.0" y="62" width="31" height="31"/>
  1243. <autoresizingMask key="autoresizingMask"/>
  1244. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="oA9-fI-iW4">
  1245. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1246. <autoresizingMask key="autoresizingMask"/>
  1247. </collectionViewCellContentView>
  1248. </collectionViewCell>
  1249. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="zAM-db-Exe">
  1250. <rect key="frame" x="31" y="62" width="31" height="31"/>
  1251. <autoresizingMask key="autoresizingMask"/>
  1252. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Tqw-LG-qM8">
  1253. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1254. <autoresizingMask key="autoresizingMask"/>
  1255. </collectionViewCellContentView>
  1256. </collectionViewCell>
  1257. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="I1U-kJ-TJW">
  1258. <rect key="frame" x="62" y="62" width="31" height="31"/>
  1259. <autoresizingMask key="autoresizingMask"/>
  1260. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="bn5-dt-S7r">
  1261. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1262. <autoresizingMask key="autoresizingMask"/>
  1263. </collectionViewCellContentView>
  1264. </collectionViewCell>
  1265. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="upz-dp-Hcw">
  1266. <rect key="frame" x="93" y="62" width="31" height="31"/>
  1267. <autoresizingMask key="autoresizingMask"/>
  1268. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="QHm-6P-KSY">
  1269. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1270. <autoresizingMask key="autoresizingMask"/>
  1271. </collectionViewCellContentView>
  1272. </collectionViewCell>
  1273. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="SWK-rr-UaW">
  1274. <rect key="frame" x="124" y="62" width="31" height="31"/>
  1275. <autoresizingMask key="autoresizingMask"/>
  1276. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="yXh-yT-qWv">
  1277. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1278. <autoresizingMask key="autoresizingMask"/>
  1279. </collectionViewCellContentView>
  1280. </collectionViewCell>
  1281. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Z3f-g6-TBb">
  1282. <rect key="frame" x="155" y="62" width="31" height="31"/>
  1283. <autoresizingMask key="autoresizingMask"/>
  1284. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="eg2-WR-k59">
  1285. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1286. <autoresizingMask key="autoresizingMask"/>
  1287. </collectionViewCellContentView>
  1288. </collectionViewCell>
  1289. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="elV-x0-p5Q">
  1290. <rect key="frame" x="186" y="62" width="31" height="31"/>
  1291. <autoresizingMask key="autoresizingMask"/>
  1292. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Zvh-dZ-LDe">
  1293. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1294. <autoresizingMask key="autoresizingMask"/>
  1295. </collectionViewCellContentView>
  1296. </collectionViewCell>
  1297. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="GoL-dh-QSo">
  1298. <rect key="frame" x="217" y="62" width="31" height="31"/>
  1299. <autoresizingMask key="autoresizingMask"/>
  1300. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="J1q-VD-UBw">
  1301. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1302. <autoresizingMask key="autoresizingMask"/>
  1303. </collectionViewCellContentView>
  1304. </collectionViewCell>
  1305. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="eck-Af-Vbh">
  1306. <rect key="frame" x="248" y="62" width="31" height="31"/>
  1307. <autoresizingMask key="autoresizingMask"/>
  1308. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="tXA-1Z-DZB">
  1309. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1310. <autoresizingMask key="autoresizingMask"/>
  1311. </collectionViewCellContentView>
  1312. </collectionViewCell>
  1313. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="nEY-TG-MC4">
  1314. <rect key="frame" x="279" y="62" width="31" height="31"/>
  1315. <autoresizingMask key="autoresizingMask"/>
  1316. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="3ex-V5-NF6">
  1317. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1318. <autoresizingMask key="autoresizingMask"/>
  1319. </collectionViewCellContentView>
  1320. </collectionViewCell>
  1321. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Aii-Ee-SGA">
  1322. <rect key="frame" x="310" y="62" width="31" height="31"/>
  1323. <autoresizingMask key="autoresizingMask"/>
  1324. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="guJ-tF-7yT">
  1325. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1326. <autoresizingMask key="autoresizingMask"/>
  1327. </collectionViewCellContentView>
  1328. </collectionViewCell>
  1329. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Yx9-Ro-xw9">
  1330. <rect key="frame" x="341" y="62" width="31" height="31"/>
  1331. <autoresizingMask key="autoresizingMask"/>
  1332. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="G9j-gc-Zmm">
  1333. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1334. <autoresizingMask key="autoresizingMask"/>
  1335. </collectionViewCellContentView>
  1336. </collectionViewCell>
  1337. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="dFF-LN-C1d">
  1338. <rect key="frame" x="372" y="62" width="31" height="31"/>
  1339. <autoresizingMask key="autoresizingMask"/>
  1340. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="52Z-V2-Nic">
  1341. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1342. <autoresizingMask key="autoresizingMask"/>
  1343. </collectionViewCellContentView>
  1344. </collectionViewCell>
  1345. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="tfU-vA-dCW">
  1346. <rect key="frame" x="0.0" y="93" width="31" height="31"/>
  1347. <autoresizingMask key="autoresizingMask"/>
  1348. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="dNW-dV-Tdn">
  1349. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1350. <autoresizingMask key="autoresizingMask"/>
  1351. </collectionViewCellContentView>
  1352. </collectionViewCell>
  1353. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="vlM-Hn-SPG">
  1354. <rect key="frame" x="31" y="93" width="31" height="31"/>
  1355. <autoresizingMask key="autoresizingMask"/>
  1356. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="hH5-sK-Rl5">
  1357. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1358. <autoresizingMask key="autoresizingMask"/>
  1359. </collectionViewCellContentView>
  1360. </collectionViewCell>
  1361. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="OEC-oy-kTt">
  1362. <rect key="frame" x="62" y="93" width="31" height="31"/>
  1363. <autoresizingMask key="autoresizingMask"/>
  1364. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="2Je-Mb-Ovn">
  1365. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1366. <autoresizingMask key="autoresizingMask"/>
  1367. </collectionViewCellContentView>
  1368. </collectionViewCell>
  1369. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="VY9-Mt-0f9">
  1370. <rect key="frame" x="93" y="93" width="31" height="31"/>
  1371. <autoresizingMask key="autoresizingMask"/>
  1372. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="J2o-fy-C4v">
  1373. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1374. <autoresizingMask key="autoresizingMask"/>
  1375. </collectionViewCellContentView>
  1376. </collectionViewCell>
  1377. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="kM8-UN-9Vo">
  1378. <rect key="frame" x="124" y="93" width="31" height="31"/>
  1379. <autoresizingMask key="autoresizingMask"/>
  1380. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="soL-Tn-ZvP">
  1381. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1382. <autoresizingMask key="autoresizingMask"/>
  1383. </collectionViewCellContentView>
  1384. </collectionViewCell>
  1385. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="86L-QD-ziD">
  1386. <rect key="frame" x="155" y="93" width="31" height="31"/>
  1387. <autoresizingMask key="autoresizingMask"/>
  1388. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="hU2-57-ENG">
  1389. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1390. <autoresizingMask key="autoresizingMask"/>
  1391. </collectionViewCellContentView>
  1392. </collectionViewCell>
  1393. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Hsk-tf-Axa">
  1394. <rect key="frame" x="186" y="93" width="31" height="31"/>
  1395. <autoresizingMask key="autoresizingMask"/>
  1396. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="UCr-Iz-2vX">
  1397. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1398. <autoresizingMask key="autoresizingMask"/>
  1399. </collectionViewCellContentView>
  1400. </collectionViewCell>
  1401. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="gPs-IP-n8o">
  1402. <rect key="frame" x="217" y="93" width="31" height="31"/>
  1403. <autoresizingMask key="autoresizingMask"/>
  1404. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="BLX-BU-oyn">
  1405. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1406. <autoresizingMask key="autoresizingMask"/>
  1407. </collectionViewCellContentView>
  1408. </collectionViewCell>
  1409. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="uGj-u7-GkE">
  1410. <rect key="frame" x="248" y="93" width="31" height="31"/>
  1411. <autoresizingMask key="autoresizingMask"/>
  1412. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="51y-qU-FPH">
  1413. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1414. <autoresizingMask key="autoresizingMask"/>
  1415. </collectionViewCellContentView>
  1416. </collectionViewCell>
  1417. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="MR0-Qt-Yv6">
  1418. <rect key="frame" x="279" y="93" width="31" height="31"/>
  1419. <autoresizingMask key="autoresizingMask"/>
  1420. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="sSS-32-CN6">
  1421. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1422. <autoresizingMask key="autoresizingMask"/>
  1423. </collectionViewCellContentView>
  1424. </collectionViewCell>
  1425. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="rXx-Pr-Xa4">
  1426. <rect key="frame" x="310" y="93" width="31" height="31"/>
  1427. <autoresizingMask key="autoresizingMask"/>
  1428. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="rkC-ia-qnf">
  1429. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1430. <autoresizingMask key="autoresizingMask"/>
  1431. </collectionViewCellContentView>
  1432. </collectionViewCell>
  1433. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="5bO-ZX-7HH">
  1434. <rect key="frame" x="341" y="93" width="31" height="31"/>
  1435. <autoresizingMask key="autoresizingMask"/>
  1436. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="BWx-8q-ns5">
  1437. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1438. <autoresizingMask key="autoresizingMask"/>
  1439. </collectionViewCellContentView>
  1440. </collectionViewCell>
  1441. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="cnu-DW-y10">
  1442. <rect key="frame" x="372" y="93" width="31" height="31"/>
  1443. <autoresizingMask key="autoresizingMask"/>
  1444. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="RnG-yh-SzL">
  1445. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1446. <autoresizingMask key="autoresizingMask"/>
  1447. </collectionViewCellContentView>
  1448. </collectionViewCell>
  1449. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="KZf-TU-BwM">
  1450. <rect key="frame" x="0.0" y="124" width="31" height="31"/>
  1451. <autoresizingMask key="autoresizingMask"/>
  1452. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="yIz-PO-pci">
  1453. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1454. <autoresizingMask key="autoresizingMask"/>
  1455. </collectionViewCellContentView>
  1456. </collectionViewCell>
  1457. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="QGb-eP-E8n">
  1458. <rect key="frame" x="31" y="124" width="31" height="31"/>
  1459. <autoresizingMask key="autoresizingMask"/>
  1460. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="ayY-Jl-JQh">
  1461. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1462. <autoresizingMask key="autoresizingMask"/>
  1463. </collectionViewCellContentView>
  1464. </collectionViewCell>
  1465. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="lVV-tg-vhi">
  1466. <rect key="frame" x="62" y="124" width="31" height="31"/>
  1467. <autoresizingMask key="autoresizingMask"/>
  1468. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="JvO-0b-lxw">
  1469. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1470. <autoresizingMask key="autoresizingMask"/>
  1471. </collectionViewCellContentView>
  1472. </collectionViewCell>
  1473. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="2TJ-Qn-Njq">
  1474. <rect key="frame" x="93" y="124" width="31" height="31"/>
  1475. <autoresizingMask key="autoresizingMask"/>
  1476. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="rih-VD-66h">
  1477. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1478. <autoresizingMask key="autoresizingMask"/>
  1479. </collectionViewCellContentView>
  1480. </collectionViewCell>
  1481. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Bu5-1P-aV2">
  1482. <rect key="frame" x="124" y="124" width="31" height="31"/>
  1483. <autoresizingMask key="autoresizingMask"/>
  1484. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="PoL-O8-uvM">
  1485. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1486. <autoresizingMask key="autoresizingMask"/>
  1487. </collectionViewCellContentView>
  1488. </collectionViewCell>
  1489. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Mrf-nk-aHd">
  1490. <rect key="frame" x="155" y="124" width="31" height="31"/>
  1491. <autoresizingMask key="autoresizingMask"/>
  1492. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="vim-60-GnW">
  1493. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1494. <autoresizingMask key="autoresizingMask"/>
  1495. </collectionViewCellContentView>
  1496. </collectionViewCell>
  1497. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="QYQ-cF-tAZ">
  1498. <rect key="frame" x="186" y="124" width="31" height="31"/>
  1499. <autoresizingMask key="autoresizingMask"/>
  1500. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="F8S-3q-VtV">
  1501. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1502. <autoresizingMask key="autoresizingMask"/>
  1503. </collectionViewCellContentView>
  1504. </collectionViewCell>
  1505. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="ZEj-iw-ccV">
  1506. <rect key="frame" x="217" y="124" width="31" height="31"/>
  1507. <autoresizingMask key="autoresizingMask"/>
  1508. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="jnG-8Y-oZi">
  1509. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1510. <autoresizingMask key="autoresizingMask"/>
  1511. </collectionViewCellContentView>
  1512. </collectionViewCell>
  1513. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Dgc-bT-Whx">
  1514. <rect key="frame" x="248" y="124" width="31" height="31"/>
  1515. <autoresizingMask key="autoresizingMask"/>
  1516. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="qlG-lG-Btk">
  1517. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1518. <autoresizingMask key="autoresizingMask"/>
  1519. </collectionViewCellContentView>
  1520. </collectionViewCell>
  1521. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Cuh-u3-81P">
  1522. <rect key="frame" x="279" y="124" width="31" height="31"/>
  1523. <autoresizingMask key="autoresizingMask"/>
  1524. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="rkp-vZ-T0V">
  1525. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1526. <autoresizingMask key="autoresizingMask"/>
  1527. </collectionViewCellContentView>
  1528. </collectionViewCell>
  1529. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="SUy-8L-Pu9">
  1530. <rect key="frame" x="310" y="124" width="31" height="31"/>
  1531. <autoresizingMask key="autoresizingMask"/>
  1532. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="IgS-ZD-VgU">
  1533. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1534. <autoresizingMask key="autoresizingMask"/>
  1535. </collectionViewCellContentView>
  1536. </collectionViewCell>
  1537. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="65N-ZR-UXI">
  1538. <rect key="frame" x="341" y="124" width="31" height="31"/>
  1539. <autoresizingMask key="autoresizingMask"/>
  1540. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="rot-cL-KgV">
  1541. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1542. <autoresizingMask key="autoresizingMask"/>
  1543. </collectionViewCellContentView>
  1544. </collectionViewCell>
  1545. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="7bI-mM-S1D">
  1546. <rect key="frame" x="372" y="124" width="31" height="31"/>
  1547. <autoresizingMask key="autoresizingMask"/>
  1548. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="NT3-VN-iWs">
  1549. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1550. <autoresizingMask key="autoresizingMask"/>
  1551. </collectionViewCellContentView>
  1552. </collectionViewCell>
  1553. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="X3C-2T-d8f">
  1554. <rect key="frame" x="0.0" y="155" width="31" height="31"/>
  1555. <autoresizingMask key="autoresizingMask"/>
  1556. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="8to-mv-RlN">
  1557. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1558. <autoresizingMask key="autoresizingMask"/>
  1559. </collectionViewCellContentView>
  1560. </collectionViewCell>
  1561. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="JT9-1S-v8Q">
  1562. <rect key="frame" x="31" y="155" width="31" height="31"/>
  1563. <autoresizingMask key="autoresizingMask"/>
  1564. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Mzi-aw-Jch">
  1565. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1566. <autoresizingMask key="autoresizingMask"/>
  1567. </collectionViewCellContentView>
  1568. </collectionViewCell>
  1569. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="tHF-S3-5Yy">
  1570. <rect key="frame" x="62" y="155" width="31" height="31"/>
  1571. <autoresizingMask key="autoresizingMask"/>
  1572. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="GQN-Ee-kWr">
  1573. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1574. <autoresizingMask key="autoresizingMask"/>
  1575. </collectionViewCellContentView>
  1576. </collectionViewCell>
  1577. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="EjO-lB-N9x">
  1578. <rect key="frame" x="93" y="155" width="31" height="31"/>
  1579. <autoresizingMask key="autoresizingMask"/>
  1580. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="OHj-VZ-FJE">
  1581. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1582. <autoresizingMask key="autoresizingMask"/>
  1583. </collectionViewCellContentView>
  1584. </collectionViewCell>
  1585. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="8lG-MZ-bZt">
  1586. <rect key="frame" x="124" y="155" width="31" height="31"/>
  1587. <autoresizingMask key="autoresizingMask"/>
  1588. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="24c-eR-Ilk">
  1589. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1590. <autoresizingMask key="autoresizingMask"/>
  1591. </collectionViewCellContentView>
  1592. </collectionViewCell>
  1593. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="ho3-tm-88d">
  1594. <rect key="frame" x="155" y="155" width="31" height="31"/>
  1595. <autoresizingMask key="autoresizingMask"/>
  1596. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="2Ed-ao-SQJ">
  1597. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1598. <autoresizingMask key="autoresizingMask"/>
  1599. </collectionViewCellContentView>
  1600. </collectionViewCell>
  1601. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="mIw-bd-Tsw">
  1602. <rect key="frame" x="186" y="155" width="31" height="31"/>
  1603. <autoresizingMask key="autoresizingMask"/>
  1604. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="GrL-yr-LZJ">
  1605. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1606. <autoresizingMask key="autoresizingMask"/>
  1607. </collectionViewCellContentView>
  1608. </collectionViewCell>
  1609. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="UK3-xf-3Do">
  1610. <rect key="frame" x="217" y="155" width="31" height="31"/>
  1611. <autoresizingMask key="autoresizingMask"/>
  1612. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="wrd-lO-Vtf">
  1613. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1614. <autoresizingMask key="autoresizingMask"/>
  1615. </collectionViewCellContentView>
  1616. </collectionViewCell>
  1617. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="B5I-ef-jEj">
  1618. <rect key="frame" x="248" y="155" width="31" height="31"/>
  1619. <autoresizingMask key="autoresizingMask"/>
  1620. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="XrM-ey-0JQ">
  1621. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1622. <autoresizingMask key="autoresizingMask"/>
  1623. </collectionViewCellContentView>
  1624. </collectionViewCell>
  1625. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="UEH-Id-9dM">
  1626. <rect key="frame" x="279" y="155" width="31" height="31"/>
  1627. <autoresizingMask key="autoresizingMask"/>
  1628. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="pFw-07-Mse">
  1629. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1630. <autoresizingMask key="autoresizingMask"/>
  1631. </collectionViewCellContentView>
  1632. </collectionViewCell>
  1633. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="tau-Mj-9eq">
  1634. <rect key="frame" x="310" y="155" width="31" height="31"/>
  1635. <autoresizingMask key="autoresizingMask"/>
  1636. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="yfG-VV-U1E">
  1637. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1638. <autoresizingMask key="autoresizingMask"/>
  1639. </collectionViewCellContentView>
  1640. </collectionViewCell>
  1641. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="m3l-Sa-SO7">
  1642. <rect key="frame" x="341" y="155" width="31" height="31"/>
  1643. <autoresizingMask key="autoresizingMask"/>
  1644. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="JMl-Vj-sMW">
  1645. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1646. <autoresizingMask key="autoresizingMask"/>
  1647. </collectionViewCellContentView>
  1648. </collectionViewCell>
  1649. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="1dd-0h-Fo4">
  1650. <rect key="frame" x="372" y="155" width="31" height="31"/>
  1651. <autoresizingMask key="autoresizingMask"/>
  1652. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="SmF-2e-OLX">
  1653. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1654. <autoresizingMask key="autoresizingMask"/>
  1655. </collectionViewCellContentView>
  1656. </collectionViewCell>
  1657. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="em1-dN-GDV">
  1658. <rect key="frame" x="0.0" y="186" width="31" height="31"/>
  1659. <autoresizingMask key="autoresizingMask"/>
  1660. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="WBq-vY-DU2">
  1661. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1662. <autoresizingMask key="autoresizingMask"/>
  1663. </collectionViewCellContentView>
  1664. </collectionViewCell>
  1665. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="neZ-j5-ToB">
  1666. <rect key="frame" x="31" y="186" width="31" height="31"/>
  1667. <autoresizingMask key="autoresizingMask"/>
  1668. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="pG5-jo-hGb">
  1669. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1670. <autoresizingMask key="autoresizingMask"/>
  1671. </collectionViewCellContentView>
  1672. </collectionViewCell>
  1673. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="JNQ-RS-ReM">
  1674. <rect key="frame" x="62" y="186" width="31" height="31"/>
  1675. <autoresizingMask key="autoresizingMask"/>
  1676. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="qID-0d-64Y">
  1677. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1678. <autoresizingMask key="autoresizingMask"/>
  1679. </collectionViewCellContentView>
  1680. </collectionViewCell>
  1681. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="GuP-1u-g6B">
  1682. <rect key="frame" x="93" y="186" width="31" height="31"/>
  1683. <autoresizingMask key="autoresizingMask"/>
  1684. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Vz3-Pf-caZ">
  1685. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1686. <autoresizingMask key="autoresizingMask"/>
  1687. </collectionViewCellContentView>
  1688. </collectionViewCell>
  1689. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="5kg-CE-bSw">
  1690. <rect key="frame" x="124" y="186" width="31" height="31"/>
  1691. <autoresizingMask key="autoresizingMask"/>
  1692. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="2J3-tu-8ke">
  1693. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1694. <autoresizingMask key="autoresizingMask"/>
  1695. </collectionViewCellContentView>
  1696. </collectionViewCell>
  1697. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="iAb-Iq-ieC">
  1698. <rect key="frame" x="155" y="186" width="31" height="31"/>
  1699. <autoresizingMask key="autoresizingMask"/>
  1700. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="8XE-Kd-9mW">
  1701. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1702. <autoresizingMask key="autoresizingMask"/>
  1703. </collectionViewCellContentView>
  1704. </collectionViewCell>
  1705. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="NEQ-q1-0p6">
  1706. <rect key="frame" x="186" y="186" width="31" height="31"/>
  1707. <autoresizingMask key="autoresizingMask"/>
  1708. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="PXe-wG-KNa">
  1709. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1710. <autoresizingMask key="autoresizingMask"/>
  1711. </collectionViewCellContentView>
  1712. </collectionViewCell>
  1713. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="bZX-ZR-LO8">
  1714. <rect key="frame" x="217" y="186" width="31" height="31"/>
  1715. <autoresizingMask key="autoresizingMask"/>
  1716. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="K6E-z3-CPd">
  1717. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1718. <autoresizingMask key="autoresizingMask"/>
  1719. </collectionViewCellContentView>
  1720. </collectionViewCell>
  1721. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="rQy-kq-9tL">
  1722. <rect key="frame" x="248" y="186" width="31" height="31"/>
  1723. <autoresizingMask key="autoresizingMask"/>
  1724. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="gRj-9y-Wuc">
  1725. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1726. <autoresizingMask key="autoresizingMask"/>
  1727. </collectionViewCellContentView>
  1728. </collectionViewCell>
  1729. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Fks-1T-ZKW">
  1730. <rect key="frame" x="279" y="186" width="31" height="31"/>
  1731. <autoresizingMask key="autoresizingMask"/>
  1732. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="SfW-G0-yut">
  1733. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1734. <autoresizingMask key="autoresizingMask"/>
  1735. </collectionViewCellContentView>
  1736. </collectionViewCell>
  1737. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="G4U-rj-HxD">
  1738. <rect key="frame" x="310" y="186" width="31" height="31"/>
  1739. <autoresizingMask key="autoresizingMask"/>
  1740. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="gA1-lT-d5n">
  1741. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1742. <autoresizingMask key="autoresizingMask"/>
  1743. </collectionViewCellContentView>
  1744. </collectionViewCell>
  1745. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Y4C-Ns-w3y">
  1746. <rect key="frame" x="341" y="186" width="31" height="31"/>
  1747. <autoresizingMask key="autoresizingMask"/>
  1748. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="zy6-Hi-4Hx">
  1749. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1750. <autoresizingMask key="autoresizingMask"/>
  1751. </collectionViewCellContentView>
  1752. </collectionViewCell>
  1753. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="0bk-Qy-pWe">
  1754. <rect key="frame" x="372" y="186" width="31" height="31"/>
  1755. <autoresizingMask key="autoresizingMask"/>
  1756. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="lA0-Mj-ywI">
  1757. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1758. <autoresizingMask key="autoresizingMask"/>
  1759. </collectionViewCellContentView>
  1760. </collectionViewCell>
  1761. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Dlx-Jg-pV2">
  1762. <rect key="frame" x="0.0" y="217" width="31" height="31"/>
  1763. <autoresizingMask key="autoresizingMask"/>
  1764. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="xxk-iJ-yho">
  1765. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1766. <autoresizingMask key="autoresizingMask"/>
  1767. </collectionViewCellContentView>
  1768. </collectionViewCell>
  1769. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="GOQ-JQ-VzV">
  1770. <rect key="frame" x="31" y="217" width="31" height="31"/>
  1771. <autoresizingMask key="autoresizingMask"/>
  1772. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="zs6-ov-lG3">
  1773. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1774. <autoresizingMask key="autoresizingMask"/>
  1775. </collectionViewCellContentView>
  1776. </collectionViewCell>
  1777. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="ZRN-2r-nf2">
  1778. <rect key="frame" x="62" y="217" width="31" height="31"/>
  1779. <autoresizingMask key="autoresizingMask"/>
  1780. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="LXx-3g-dMi">
  1781. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1782. <autoresizingMask key="autoresizingMask"/>
  1783. </collectionViewCellContentView>
  1784. </collectionViewCell>
  1785. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="7V6-6w-cA5">
  1786. <rect key="frame" x="93" y="217" width="31" height="31"/>
  1787. <autoresizingMask key="autoresizingMask"/>
  1788. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="wTs-ca-dTI">
  1789. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1790. <autoresizingMask key="autoresizingMask"/>
  1791. </collectionViewCellContentView>
  1792. </collectionViewCell>
  1793. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="TAi-Ge-L2n">
  1794. <rect key="frame" x="124" y="217" width="31" height="31"/>
  1795. <autoresizingMask key="autoresizingMask"/>
  1796. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="AdL-bD-AMd">
  1797. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1798. <autoresizingMask key="autoresizingMask"/>
  1799. </collectionViewCellContentView>
  1800. </collectionViewCell>
  1801. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="hDn-du-wKh">
  1802. <rect key="frame" x="155" y="217" width="31" height="31"/>
  1803. <autoresizingMask key="autoresizingMask"/>
  1804. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Wje-xZ-ZLp">
  1805. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1806. <autoresizingMask key="autoresizingMask"/>
  1807. </collectionViewCellContentView>
  1808. </collectionViewCell>
  1809. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="KJs-EM-7wz">
  1810. <rect key="frame" x="186" y="217" width="31" height="31"/>
  1811. <autoresizingMask key="autoresizingMask"/>
  1812. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Nqi-sB-PeS">
  1813. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1814. <autoresizingMask key="autoresizingMask"/>
  1815. </collectionViewCellContentView>
  1816. </collectionViewCell>
  1817. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="5fR-oC-Jws">
  1818. <rect key="frame" x="217" y="217" width="31" height="31"/>
  1819. <autoresizingMask key="autoresizingMask"/>
  1820. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="l0B-Ih-Gsa">
  1821. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1822. <autoresizingMask key="autoresizingMask"/>
  1823. </collectionViewCellContentView>
  1824. </collectionViewCell>
  1825. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="IhP-TS-F4N">
  1826. <rect key="frame" x="248" y="217" width="31" height="31"/>
  1827. <autoresizingMask key="autoresizingMask"/>
  1828. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Yvz-O3-hSm">
  1829. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1830. <autoresizingMask key="autoresizingMask"/>
  1831. </collectionViewCellContentView>
  1832. </collectionViewCell>
  1833. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="wbD-mj-iQI">
  1834. <rect key="frame" x="279" y="217" width="31" height="31"/>
  1835. <autoresizingMask key="autoresizingMask"/>
  1836. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="5AB-te-z3a">
  1837. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1838. <autoresizingMask key="autoresizingMask"/>
  1839. </collectionViewCellContentView>
  1840. </collectionViewCell>
  1841. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="tMf-rl-O5d">
  1842. <rect key="frame" x="310" y="217" width="31" height="31"/>
  1843. <autoresizingMask key="autoresizingMask"/>
  1844. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="2Z1-Dc-JFG">
  1845. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1846. <autoresizingMask key="autoresizingMask"/>
  1847. </collectionViewCellContentView>
  1848. </collectionViewCell>
  1849. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="khz-h4-MMv">
  1850. <rect key="frame" x="341" y="217" width="31" height="31"/>
  1851. <autoresizingMask key="autoresizingMask"/>
  1852. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="15w-sa-2Te">
  1853. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1854. <autoresizingMask key="autoresizingMask"/>
  1855. </collectionViewCellContentView>
  1856. </collectionViewCell>
  1857. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="ZM8-BN-UPo">
  1858. <rect key="frame" x="372" y="217" width="31" height="31"/>
  1859. <autoresizingMask key="autoresizingMask"/>
  1860. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="n1X-ON-qKw">
  1861. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1862. <autoresizingMask key="autoresizingMask"/>
  1863. </collectionViewCellContentView>
  1864. </collectionViewCell>
  1865. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="83s-Hg-Yc4">
  1866. <rect key="frame" x="0.0" y="248" width="31" height="31"/>
  1867. <autoresizingMask key="autoresizingMask"/>
  1868. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="3QJ-dA-Kd1">
  1869. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1870. <autoresizingMask key="autoresizingMask"/>
  1871. </collectionViewCellContentView>
  1872. </collectionViewCell>
  1873. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="mi2-rg-kpI">
  1874. <rect key="frame" x="31" y="248" width="31" height="31"/>
  1875. <autoresizingMask key="autoresizingMask"/>
  1876. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="SUH-4f-MHp">
  1877. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1878. <autoresizingMask key="autoresizingMask"/>
  1879. </collectionViewCellContentView>
  1880. </collectionViewCell>
  1881. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="BEi-4H-5qO">
  1882. <rect key="frame" x="62" y="248" width="31" height="31"/>
  1883. <autoresizingMask key="autoresizingMask"/>
  1884. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="hXA-qv-EdW">
  1885. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1886. <autoresizingMask key="autoresizingMask"/>
  1887. </collectionViewCellContentView>
  1888. </collectionViewCell>
  1889. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="YoI-Up-lpx">
  1890. <rect key="frame" x="93" y="248" width="31" height="31"/>
  1891. <autoresizingMask key="autoresizingMask"/>
  1892. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="dFh-cO-DWw">
  1893. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1894. <autoresizingMask key="autoresizingMask"/>
  1895. </collectionViewCellContentView>
  1896. </collectionViewCell>
  1897. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Afg-xy-VnD">
  1898. <rect key="frame" x="124" y="248" width="31" height="31"/>
  1899. <autoresizingMask key="autoresizingMask"/>
  1900. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="L8B-XW-Ev1">
  1901. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1902. <autoresizingMask key="autoresizingMask"/>
  1903. </collectionViewCellContentView>
  1904. </collectionViewCell>
  1905. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="q6D-U0-lba">
  1906. <rect key="frame" x="155" y="248" width="31" height="31"/>
  1907. <autoresizingMask key="autoresizingMask"/>
  1908. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="YS3-nn-LHI">
  1909. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1910. <autoresizingMask key="autoresizingMask"/>
  1911. </collectionViewCellContentView>
  1912. </collectionViewCell>
  1913. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="amh-8R-KN5">
  1914. <rect key="frame" x="186" y="248" width="31" height="31"/>
  1915. <autoresizingMask key="autoresizingMask"/>
  1916. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="oSU-aO-Dip">
  1917. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1918. <autoresizingMask key="autoresizingMask"/>
  1919. </collectionViewCellContentView>
  1920. </collectionViewCell>
  1921. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="gdV-af-TmZ">
  1922. <rect key="frame" x="217" y="248" width="31" height="31"/>
  1923. <autoresizingMask key="autoresizingMask"/>
  1924. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="L0P-G3-Ue2">
  1925. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1926. <autoresizingMask key="autoresizingMask"/>
  1927. </collectionViewCellContentView>
  1928. </collectionViewCell>
  1929. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="kIo-Lz-LLn">
  1930. <rect key="frame" x="248" y="248" width="31" height="31"/>
  1931. <autoresizingMask key="autoresizingMask"/>
  1932. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="6Qc-qe-ng1">
  1933. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1934. <autoresizingMask key="autoresizingMask"/>
  1935. </collectionViewCellContentView>
  1936. </collectionViewCell>
  1937. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="zMp-ro-igJ">
  1938. <rect key="frame" x="279" y="248" width="31" height="31"/>
  1939. <autoresizingMask key="autoresizingMask"/>
  1940. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="kwr-gn-rU3">
  1941. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1942. <autoresizingMask key="autoresizingMask"/>
  1943. </collectionViewCellContentView>
  1944. </collectionViewCell>
  1945. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="ZmP-iG-nAF">
  1946. <rect key="frame" x="310" y="248" width="31" height="31"/>
  1947. <autoresizingMask key="autoresizingMask"/>
  1948. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="ETm-gn-YEC">
  1949. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1950. <autoresizingMask key="autoresizingMask"/>
  1951. </collectionViewCellContentView>
  1952. </collectionViewCell>
  1953. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="TYt-YO-F7B">
  1954. <rect key="frame" x="341" y="248" width="31" height="31"/>
  1955. <autoresizingMask key="autoresizingMask"/>
  1956. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Mm8-0m-Co7">
  1957. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1958. <autoresizingMask key="autoresizingMask"/>
  1959. </collectionViewCellContentView>
  1960. </collectionViewCell>
  1961. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Poz-Ha-gqW">
  1962. <rect key="frame" x="372" y="248" width="31" height="31"/>
  1963. <autoresizingMask key="autoresizingMask"/>
  1964. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="RvG-eP-FSF">
  1965. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  1966. <autoresizingMask key="autoresizingMask"/>
  1967. </collectionViewCellContentView>
  1968. </collectionViewCell>
  1969. </cells>
  1970. <connections>
  1971. <outlet property="dataSource" destination="a4o-th-hLZ" id="6hI-gK-PZz"/>
  1972. <outlet property="delegate" destination="a4o-th-hLZ" id="tYi-cs-Sya"/>
  1973. </connections>
  1974. </collectionView>
  1975. </subviews>
  1976. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  1977. <constraints>
  1978. <constraint firstAttribute="bottom" secondItem="XXb-pJ-QXw" secondAttribute="bottom" id="7Jk-71-CHB"/>
  1979. <constraint firstAttribute="width" constant="403" id="7XU-a4-iM4"/>
  1980. <constraint firstItem="XXb-pJ-QXw" firstAttribute="leading" secondItem="aqb-ZX-555" secondAttribute="leading" id="8ng-n0-VQV"/>
  1981. <constraint firstAttribute="trailing" secondItem="XXb-pJ-QXw" secondAttribute="trailing" id="DP6-R6-UyV"/>
  1982. <constraint firstAttribute="height" constant="279" id="Hba-mN-Myr"/>
  1983. <constraint firstItem="XXb-pJ-QXw" firstAttribute="centerY" secondItem="aqb-ZX-555" secondAttribute="centerY" id="Pey-tM-VVR"/>
  1984. <constraint firstItem="XXb-pJ-QXw" firstAttribute="top" secondItem="aqb-ZX-555" secondAttribute="top" id="z5U-hp-ymc"/>
  1985. </constraints>
  1986. </view>
  1987. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="1Ci-v8-eIQ">
  1988. <rect key="frame" x="189" y="45" width="2" height="376"/>
  1989. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  1990. <constraints>
  1991. <constraint firstAttribute="width" constant="2" id="YYy-Tk-Uw1"/>
  1992. <constraint firstAttribute="height" constant="376" id="bmd-xy-qX1"/>
  1993. </constraints>
  1994. </view>
  1995. </subviews>
  1996. <constraints>
  1997. <constraint firstAttribute="bottom" secondItem="97Q-7Q-YKN" secondAttribute="bottom" id="165-Ch-u1r"/>
  1998. <constraint firstItem="mOZ-Q9-JiB" firstAttribute="leading" secondItem="gsn-Ru-QYn" secondAttribute="leading" id="2GJ-xn-g2y"/>
  1999. <constraint firstAttribute="trailing" secondItem="aqb-ZX-555" secondAttribute="trailing" id="4mL-ve-NpX"/>
  2000. <constraint firstAttribute="trailing" secondItem="lu2-vD-Ip1" secondAttribute="trailing" id="7f6-eS-4zl"/>
  2001. <constraint firstItem="1Ci-v8-eIQ" firstAttribute="leading" secondItem="gsn-Ru-QYn" secondAttribute="leading" constant="189" id="Asc-8Y-o7C"/>
  2002. <constraint firstItem="lu2-vD-Ip1" firstAttribute="leading" secondItem="gsn-Ru-QYn" secondAttribute="leading" id="CKt-z3-EAc"/>
  2003. <constraint firstItem="mOZ-Q9-JiB" firstAttribute="top" secondItem="gsn-Ru-QYn" secondAttribute="top" constant="44" id="GuB-Sb-qIn"/>
  2004. <constraint firstItem="8y9-Mf-gJx" firstAttribute="leading" secondItem="gsn-Ru-QYn" secondAttribute="leading" id="HhT-c7-z2R"/>
  2005. <constraint firstItem="97Q-7Q-YKN" firstAttribute="leading" secondItem="gsn-Ru-QYn" secondAttribute="leading" id="Ii9-rM-0Zu"/>
  2006. <constraint firstAttribute="bottom" secondItem="8y9-Mf-gJx" secondAttribute="bottom" id="IlS-Hn-rMo"/>
  2007. <constraint firstAttribute="bottom" secondItem="1Ci-v8-eIQ" secondAttribute="bottom" id="VfH-G1-NCf"/>
  2008. <constraint firstAttribute="trailing" secondItem="8y9-Mf-gJx" secondAttribute="trailing" id="X3m-RB-Ecq"/>
  2009. <constraint firstItem="aqb-ZX-555" firstAttribute="top" secondItem="ePV-Dt-tgW" secondAttribute="bottom" id="ZVN-oS-ku6"/>
  2010. <constraint firstItem="lu2-vD-Ip1" firstAttribute="top" secondItem="gsn-Ru-QYn" secondAttribute="top" constant="44" id="acV-cm-LNS"/>
  2011. <constraint firstItem="ePV-Dt-tgW" firstAttribute="top" secondItem="gsn-Ru-QYn" secondAttribute="top" id="eAC-ij-cqA"/>
  2012. <constraint firstAttribute="trailing" secondItem="97Q-7Q-YKN" secondAttribute="trailing" id="ely-Nc-YJG"/>
  2013. <constraint firstAttribute="trailing" secondItem="ePV-Dt-tgW" secondAttribute="trailing" id="ftX-s5-KVz"/>
  2014. <constraint firstItem="aqb-ZX-555" firstAttribute="leading" secondItem="gsn-Ru-QYn" secondAttribute="leading" id="ipx-jr-nGX"/>
  2015. <constraint firstAttribute="trailing" secondItem="mOZ-Q9-JiB" secondAttribute="trailing" id="oCz-Sz-DDA"/>
  2016. <constraint firstItem="ePV-Dt-tgW" firstAttribute="leading" secondItem="gsn-Ru-QYn" secondAttribute="leading" id="oeS-WV-l5e"/>
  2017. <constraint firstAttribute="bottom" secondItem="mOZ-Q9-JiB" secondAttribute="bottom" id="okS-gv-PO5"/>
  2018. <constraint firstItem="8y9-Mf-gJx" firstAttribute="top" secondItem="gsn-Ru-QYn" secondAttribute="top" constant="44" id="pOb-u2-Xyt"/>
  2019. <constraint firstAttribute="bottom" secondItem="lu2-vD-Ip1" secondAttribute="bottom" id="rYE-gK-k0j"/>
  2020. <constraint firstItem="1Ci-v8-eIQ" firstAttribute="top" secondItem="ePV-Dt-tgW" secondAttribute="bottom" id="uJn-PB-db0"/>
  2021. <constraint firstItem="97Q-7Q-YKN" firstAttribute="top" secondItem="gsn-Ru-QYn" secondAttribute="top" constant="44" id="vpf-bS-ZwY"/>
  2022. </constraints>
  2023. </view>
  2024. </subviews>
  2025. <color key="backgroundColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2026. <constraints>
  2027. <constraint firstItem="gsn-Ru-QYn" firstAttribute="leading" secondItem="2ES-ry-8av" secondAttribute="leading" constant="5.5" id="9eb-8E-cOo"/>
  2028. <constraint firstAttribute="height" constant="511" id="Q9S-Ez-PB8"/>
  2029. <constraint firstAttribute="bottom" secondItem="gsn-Ru-QYn" secondAttribute="bottom" constant="40" id="VKX-xB-2PS"/>
  2030. <constraint firstItem="gsn-Ru-QYn" firstAttribute="centerX" secondItem="2ES-ry-8av" secondAttribute="centerX" id="bZC-OD-gQJ"/>
  2031. <constraint firstItem="PNM-vf-zh3" firstAttribute="top" secondItem="2ES-ry-8av" secondAttribute="top" constant="5" id="fhl-uV-f5r"/>
  2032. <constraint firstItem="gsn-Ru-QYn" firstAttribute="top" secondItem="PNM-vf-zh3" secondAttribute="bottom" constant="5" id="gOs-Nl-8Xz"/>
  2033. <constraint firstAttribute="trailing" secondItem="gsn-Ru-QYn" secondAttribute="trailing" constant="5.5" id="kAg-GM-ll3"/>
  2034. <constraint firstItem="PNM-vf-zh3" firstAttribute="centerX" secondItem="gsn-Ru-QYn" secondAttribute="centerX" id="qsY-c2-GSN"/>
  2035. <constraint firstAttribute="trailing" secondItem="PNM-vf-zh3" secondAttribute="trailing" id="t3a-uZ-ZXb"/>
  2036. </constraints>
  2037. </view>
  2038. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="IBy-vo-jRX">
  2039. <rect key="frame" x="0.0" y="155" width="428" height="230"/>
  2040. <subviews>
  2041. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="GyW-Sc-SKu" customClass="NVActivityIndicatorView" customModule="NVActivityIndicatorView">
  2042. <rect key="frame" x="194" y="79.666666666666657" width="40" height="40"/>
  2043. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  2044. <constraints>
  2045. <constraint firstAttribute="width" constant="40" id="9sR-cb-N8q"/>
  2046. <constraint firstAttribute="height" constant="40" id="OPx-Fk-iJr"/>
  2047. </constraints>
  2048. </view>
  2049. </subviews>
  2050. <color key="backgroundColor" systemColor="systemGray2Color"/>
  2051. <constraints>
  2052. <constraint firstAttribute="height" constant="230" id="Abv-9r-f6E"/>
  2053. <constraint firstItem="GyW-Sc-SKu" firstAttribute="centerY" secondItem="IBy-vo-jRX" secondAttribute="centerY" constant="-15.5" id="LAM-1n-XXo"/>
  2054. <constraint firstItem="GyW-Sc-SKu" firstAttribute="centerX" secondItem="IBy-vo-jRX" secondAttribute="centerX" id="LLB-Ac-xDA"/>
  2055. </constraints>
  2056. </view>
  2057. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="uWh-g1-kiv" userLabel="KeyboardBlue">
  2058. <rect key="frame" x="0.0" y="0.0" width="428" height="926"/>
  2059. <subviews>
  2060. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="BKz-qq-XRX">
  2061. <rect key="frame" x="14" y="956" width="400" height="265"/>
  2062. <subviews>
  2063. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="kpT-hf-0tf">
  2064. <rect key="frame" x="0.0" y="0.0" width="400" height="60"/>
  2065. <subviews>
  2066. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ហាងឆេង" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="sy1-A0-RdN">
  2067. <rect key="frame" x="8" y="21" width="53" height="18"/>
  2068. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  2069. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  2070. <nil key="highlightedColor"/>
  2071. </label>
  2072. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="0.90" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="BmC-5y-BY7">
  2073. <rect key="frame" x="63" y="8" width="79" height="44"/>
  2074. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  2075. <constraints>
  2076. <constraint firstAttribute="height" constant="44" id="Yyi-0x-qSw"/>
  2077. <constraint firstAttribute="width" constant="79" id="bBf-cA-OHn"/>
  2078. </constraints>
  2079. <fontDescription key="fontDescription" type="system" weight="black" pointSize="21"/>
  2080. <nil key="textColor"/>
  2081. <nil key="highlightedColor"/>
  2082. </label>
  2083. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="1000000" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="X71-xd-VP0">
  2084. <rect key="frame" x="217" y="8.6666666666666288" width="96" height="43"/>
  2085. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  2086. <constraints>
  2087. <constraint firstAttribute="width" constant="96" id="2pB-KX-jVv"/>
  2088. <constraint firstAttribute="height" constant="43" id="cSL-Nk-f64"/>
  2089. </constraints>
  2090. <fontDescription key="fontDescription" type="system" weight="black" pointSize="21"/>
  2091. <nil key="textColor"/>
  2092. <nil key="highlightedColor"/>
  2093. </label>
  2094. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="លុយភ្នាល់" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="25f-kv-r6a">
  2095. <rect key="frame" x="150" y="19.666666666666629" width="65" height="21"/>
  2096. <constraints>
  2097. <constraint firstAttribute="width" constant="65" id="8ZX-Dx-Om9"/>
  2098. </constraints>
  2099. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2100. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  2101. <nil key="highlightedColor"/>
  2102. </label>
  2103. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="gTi-HP-ell">
  2104. <rect key="frame" x="327" y="8" width="65" height="44"/>
  2105. <color key="backgroundColor" red="0.19215686274509802" green="0.22352941176470587" blue="0.82745098039215681" alpha="1" colorSpace="calibratedRGB"/>
  2106. <constraints>
  2107. <constraint firstAttribute="width" constant="65" id="Btn-Zz-gi4"/>
  2108. <constraint firstAttribute="height" constant="44" id="Zhe-VV-NpA"/>
  2109. </constraints>
  2110. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2111. <state key="normal" title="ខៀវ">
  2112. <color key="titleColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2113. </state>
  2114. <connections>
  2115. <action selector="blueAcceptClick:" destination="a4o-th-hLZ" eventType="touchUpInside" id="Abb-JN-zvr"/>
  2116. </connections>
  2117. </button>
  2118. </subviews>
  2119. <color key="backgroundColor" red="0.050980392159999999" green="0.023529411760000001" blue="0.37647058820000001" alpha="1" colorSpace="calibratedRGB"/>
  2120. <constraints>
  2121. <constraint firstItem="BmC-5y-BY7" firstAttribute="leading" secondItem="sy1-A0-RdN" secondAttribute="trailing" constant="2" id="1nr-Yk-E9x"/>
  2122. <constraint firstItem="sy1-A0-RdN" firstAttribute="centerY" secondItem="kpT-hf-0tf" secondAttribute="centerY" id="4SF-Ro-hiO"/>
  2123. <constraint firstItem="25f-kv-r6a" firstAttribute="centerY" secondItem="BmC-5y-BY7" secondAttribute="centerY" id="5M7-he-zZH"/>
  2124. <constraint firstItem="sy1-A0-RdN" firstAttribute="leading" secondItem="kpT-hf-0tf" secondAttribute="leading" constant="8" id="CLM-md-bf4"/>
  2125. <constraint firstItem="X71-xd-VP0" firstAttribute="leading" secondItem="25f-kv-r6a" secondAttribute="trailing" constant="2" id="MSD-Qe-NgR"/>
  2126. <constraint firstItem="25f-kv-r6a" firstAttribute="leading" secondItem="BmC-5y-BY7" secondAttribute="trailing" constant="8" symbolic="YES" id="P1s-iK-tCL"/>
  2127. <constraint firstItem="X71-xd-VP0" firstAttribute="centerY" secondItem="25f-kv-r6a" secondAttribute="centerY" id="bjP-ms-L1X"/>
  2128. <constraint firstAttribute="trailing" secondItem="gTi-HP-ell" secondAttribute="trailing" constant="8" id="ibd-gu-KA5"/>
  2129. <constraint firstItem="BmC-5y-BY7" firstAttribute="centerY" secondItem="sy1-A0-RdN" secondAttribute="centerY" id="qST-Ri-rls"/>
  2130. <constraint firstAttribute="height" constant="60" id="sEq-xb-0qM"/>
  2131. <constraint firstItem="gTi-HP-ell" firstAttribute="centerY" secondItem="kpT-hf-0tf" secondAttribute="centerY" id="t26-Mc-B55"/>
  2132. </constraints>
  2133. </view>
  2134. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="cfE-J0-H5A">
  2135. <rect key="frame" x="1" y="61" width="132" height="50"/>
  2136. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  2137. <constraints>
  2138. <constraint firstAttribute="height" constant="50" id="3eA-oQ-5mg"/>
  2139. <constraint firstAttribute="width" constant="132" id="B8T-fe-4PQ"/>
  2140. </constraints>
  2141. <fontDescription key="fontDescription" type="system" pointSize="35"/>
  2142. <state key="normal" title="1">
  2143. <color key="titleColor" systemColor="labelColor"/>
  2144. </state>
  2145. <connections>
  2146. <action selector="oneKeyBlue:" destination="a4o-th-hLZ" eventType="touchUpInside" id="c5x-0Q-tEJ"/>
  2147. </connections>
  2148. </button>
  2149. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="kmh-u3-Rtb">
  2150. <rect key="frame" x="134" y="61" width="132" height="50"/>
  2151. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  2152. <fontDescription key="fontDescription" type="system" pointSize="36"/>
  2153. <state key="normal" title="2">
  2154. <color key="titleColor" systemColor="labelColor"/>
  2155. </state>
  2156. <connections>
  2157. <action selector="TwoKeyBlue:" destination="a4o-th-hLZ" eventType="touchUpInside" id="1jC-h3-Xxd"/>
  2158. </connections>
  2159. </button>
  2160. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="ZP9-P7-idt">
  2161. <rect key="frame" x="267" y="61" width="132" height="50"/>
  2162. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  2163. <fontDescription key="fontDescription" type="system" pointSize="36"/>
  2164. <state key="normal" title="3">
  2165. <color key="titleColor" systemColor="labelColor"/>
  2166. </state>
  2167. <connections>
  2168. <action selector="ThreeKeyBlue:" destination="a4o-th-hLZ" eventType="touchUpInside" id="43g-Is-suK"/>
  2169. </connections>
  2170. </button>
  2171. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="huB-Gt-5vP">
  2172. <rect key="frame" x="1" y="112" width="132" height="50"/>
  2173. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  2174. <constraints>
  2175. <constraint firstAttribute="height" constant="50" id="FPG-to-mEZ"/>
  2176. <constraint firstAttribute="width" constant="132" id="vBr-t0-2yS"/>
  2177. </constraints>
  2178. <fontDescription key="fontDescription" type="system" pointSize="36"/>
  2179. <state key="normal" title="4">
  2180. <color key="titleColor" systemColor="labelColor"/>
  2181. </state>
  2182. <connections>
  2183. <action selector="FourKeyBlue:" destination="a4o-th-hLZ" eventType="touchUpInside" id="bjK-RX-HGS"/>
  2184. </connections>
  2185. </button>
  2186. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="nfa-qt-LUR">
  2187. <rect key="frame" x="134" y="112" width="132" height="50"/>
  2188. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  2189. <fontDescription key="fontDescription" type="system" pointSize="36"/>
  2190. <state key="normal" title="5">
  2191. <color key="titleColor" systemColor="labelColor"/>
  2192. </state>
  2193. <connections>
  2194. <action selector="FiveKeyBlue:" destination="a4o-th-hLZ" eventType="touchUpInside" id="uvB-zL-05t"/>
  2195. </connections>
  2196. </button>
  2197. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="QOZ-hI-79y">
  2198. <rect key="frame" x="267" y="112" width="132" height="50"/>
  2199. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  2200. <fontDescription key="fontDescription" type="system" pointSize="36"/>
  2201. <state key="normal" title="6">
  2202. <color key="titleColor" systemColor="labelColor"/>
  2203. </state>
  2204. <connections>
  2205. <action selector="SixKeyBlue:" destination="a4o-th-hLZ" eventType="touchUpInside" id="SyH-3n-fss"/>
  2206. </connections>
  2207. </button>
  2208. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="DRw-IZ-Tnl">
  2209. <rect key="frame" x="1" y="163" width="132" height="50"/>
  2210. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  2211. <constraints>
  2212. <constraint firstAttribute="height" constant="50" id="dsh-Bg-kVC"/>
  2213. <constraint firstAttribute="width" constant="132" id="fsJ-o4-oFD"/>
  2214. </constraints>
  2215. <fontDescription key="fontDescription" type="system" pointSize="36"/>
  2216. <state key="normal" title="7">
  2217. <color key="titleColor" systemColor="labelColor"/>
  2218. </state>
  2219. <connections>
  2220. <action selector="SevenKeyBlue:" destination="a4o-th-hLZ" eventType="touchUpInside" id="ZA7-OQ-ihA"/>
  2221. </connections>
  2222. </button>
  2223. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="jB2-tt-p5J">
  2224. <rect key="frame" x="134" y="163" width="132" height="50"/>
  2225. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  2226. <fontDescription key="fontDescription" type="system" pointSize="36"/>
  2227. <state key="normal" title="8">
  2228. <color key="titleColor" systemColor="labelColor"/>
  2229. </state>
  2230. <connections>
  2231. <action selector="EightKeyBlue:" destination="a4o-th-hLZ" eventType="touchUpInside" id="sL5-WS-stx"/>
  2232. </connections>
  2233. </button>
  2234. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="AGh-FG-moP">
  2235. <rect key="frame" x="267" y="163" width="132" height="50"/>
  2236. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  2237. <fontDescription key="fontDescription" type="system" pointSize="36"/>
  2238. <state key="normal" title="9">
  2239. <color key="titleColor" systemColor="labelColor"/>
  2240. </state>
  2241. <connections>
  2242. <action selector="NineKeyBlue:" destination="a4o-th-hLZ" eventType="touchUpInside" id="38j-ob-ad5"/>
  2243. </connections>
  2244. </button>
  2245. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="kLK-y0-iAf">
  2246. <rect key="frame" x="1" y="214" width="132" height="50"/>
  2247. <color key="backgroundColor" systemColor="systemGray2Color"/>
  2248. <constraints>
  2249. <constraint firstAttribute="height" constant="50" id="Get-i8-VCd"/>
  2250. <constraint firstAttribute="width" constant="132" id="lbe-8p-TV3"/>
  2251. </constraints>
  2252. <fontDescription key="fontDescription" type="system" weight="black" pointSize="22"/>
  2253. <state key="normal" title="Delete">
  2254. <color key="titleColor" systemColor="labelColor"/>
  2255. </state>
  2256. <connections>
  2257. <action selector="DeleteKeyBlue:" destination="a4o-th-hLZ" eventType="touchUpInside" id="9Fy-d0-3mZ"/>
  2258. </connections>
  2259. </button>
  2260. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="qE1-Au-4Ak">
  2261. <rect key="frame" x="134" y="214" width="132" height="50"/>
  2262. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  2263. <fontDescription key="fontDescription" type="system" pointSize="36"/>
  2264. <state key="normal" title="0">
  2265. <color key="titleColor" systemColor="labelColor"/>
  2266. </state>
  2267. <connections>
  2268. <action selector="ZeroKeyBlue:" destination="a4o-th-hLZ" eventType="touchUpInside" id="s25-nK-KZr"/>
  2269. </connections>
  2270. </button>
  2271. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="z80-hX-1iP">
  2272. <rect key="frame" x="267" y="214" width="132" height="50"/>
  2273. <color key="backgroundColor" systemColor="systemGray2Color"/>
  2274. <fontDescription key="fontDescription" type="system" pointSize="36"/>
  2275. <state key="normal">
  2276. <color key="titleColor" systemColor="labelColor"/>
  2277. </state>
  2278. <connections>
  2279. <action selector="CrossKeyBlue:" destination="a4o-th-hLZ" eventType="touchUpInside" id="VJE-P1-jvp"/>
  2280. </connections>
  2281. </button>
  2282. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ic_backspace.jpeg" translatesAutoresizingMaskIntoConstraints="NO" id="1vW-xg-dNl">
  2283. <rect key="frame" x="314" y="224" width="38" height="30"/>
  2284. <constraints>
  2285. <constraint firstAttribute="height" constant="30" id="8zk-YS-lGY"/>
  2286. <constraint firstAttribute="width" constant="38" id="zGG-iO-2iH"/>
  2287. </constraints>
  2288. </imageView>
  2289. </subviews>
  2290. <color key="backgroundColor" systemColor="systemGray3Color"/>
  2291. <constraints>
  2292. <constraint firstItem="huB-Gt-5vP" firstAttribute="leading" secondItem="BKz-qq-XRX" secondAttribute="leading" constant="1" id="0ET-Pf-rdw"/>
  2293. <constraint firstItem="kpT-hf-0tf" firstAttribute="leading" secondItem="BKz-qq-XRX" secondAttribute="leading" id="1J9-S8-6WW"/>
  2294. <constraint firstItem="kmh-u3-Rtb" firstAttribute="centerY" secondItem="cfE-J0-H5A" secondAttribute="centerY" id="4H5-h2-tg3"/>
  2295. <constraint firstItem="jB2-tt-p5J" firstAttribute="width" secondItem="DRw-IZ-Tnl" secondAttribute="width" id="6yK-fx-uKn"/>
  2296. <constraint firstItem="jB2-tt-p5J" firstAttribute="height" secondItem="DRw-IZ-Tnl" secondAttribute="height" id="716-p2-b28"/>
  2297. <constraint firstItem="QOZ-hI-79y" firstAttribute="width" secondItem="nfa-qt-LUR" secondAttribute="width" id="7WU-Y6-lNE"/>
  2298. <constraint firstItem="kpT-hf-0tf" firstAttribute="top" secondItem="BKz-qq-XRX" secondAttribute="top" id="8vI-lG-9HJ"/>
  2299. <constraint firstItem="AGh-FG-moP" firstAttribute="top" secondItem="QOZ-hI-79y" secondAttribute="bottom" constant="1" id="9vA-UJ-Dpu"/>
  2300. <constraint firstItem="kLK-y0-iAf" firstAttribute="leading" secondItem="DRw-IZ-Tnl" secondAttribute="leading" id="AKA-ZK-D8k"/>
  2301. <constraint firstItem="jB2-tt-p5J" firstAttribute="leading" secondItem="DRw-IZ-Tnl" secondAttribute="trailing" constant="1" id="DDx-bk-8Q2"/>
  2302. <constraint firstItem="nfa-qt-LUR" firstAttribute="height" secondItem="huB-Gt-5vP" secondAttribute="height" id="Dgz-Yi-ebb"/>
  2303. <constraint firstItem="QOZ-hI-79y" firstAttribute="top" secondItem="ZP9-P7-idt" secondAttribute="bottom" constant="1" id="EGF-9Z-L5X"/>
  2304. <constraint firstItem="ZP9-P7-idt" firstAttribute="centerY" secondItem="kmh-u3-Rtb" secondAttribute="centerY" id="EWJ-Ln-YYS"/>
  2305. <constraint firstAttribute="height" constant="265" id="FWM-oA-pBz"/>
  2306. <constraint firstItem="nfa-qt-LUR" firstAttribute="width" secondItem="huB-Gt-5vP" secondAttribute="width" id="Guc-ki-HpG"/>
  2307. <constraint firstItem="QOZ-hI-79y" firstAttribute="leading" secondItem="nfa-qt-LUR" secondAttribute="trailing" constant="1" id="IRG-M9-mNG"/>
  2308. <constraint firstItem="qE1-Au-4Ak" firstAttribute="leading" secondItem="kLK-y0-iAf" secondAttribute="trailing" constant="1" id="JKx-Cw-hLc"/>
  2309. <constraint firstItem="cfE-J0-H5A" firstAttribute="leading" secondItem="BKz-qq-XRX" secondAttribute="leading" constant="1" id="JUR-6C-7qa"/>
  2310. <constraint firstItem="ZP9-P7-idt" firstAttribute="width" secondItem="kmh-u3-Rtb" secondAttribute="width" id="JpO-Dg-Mmo"/>
  2311. <constraint firstItem="AGh-FG-moP" firstAttribute="leading" secondItem="jB2-tt-p5J" secondAttribute="trailing" constant="1" id="Ke5-t3-RNG"/>
  2312. <constraint firstItem="1vW-xg-dNl" firstAttribute="centerY" secondItem="z80-hX-1iP" secondAttribute="centerY" id="LFR-ts-HBn"/>
  2313. <constraint firstItem="AGh-FG-moP" firstAttribute="centerY" secondItem="jB2-tt-p5J" secondAttribute="centerY" id="OlL-HD-dXc"/>
  2314. <constraint firstItem="QOZ-hI-79y" firstAttribute="centerY" secondItem="nfa-qt-LUR" secondAttribute="centerY" id="PRk-x1-8cm"/>
  2315. <constraint firstItem="qE1-Au-4Ak" firstAttribute="height" secondItem="kLK-y0-iAf" secondAttribute="height" id="PWN-z0-ni7"/>
  2316. <constraint firstItem="nfa-qt-LUR" firstAttribute="centerY" secondItem="huB-Gt-5vP" secondAttribute="centerY" id="Q9S-wa-EJ2"/>
  2317. <constraint firstItem="AGh-FG-moP" firstAttribute="width" secondItem="jB2-tt-p5J" secondAttribute="width" id="Sph-OB-eDA"/>
  2318. <constraint firstItem="huB-Gt-5vP" firstAttribute="top" secondItem="cfE-J0-H5A" secondAttribute="bottom" constant="1" id="URw-Et-4Xa"/>
  2319. <constraint firstItem="z80-hX-1iP" firstAttribute="leading" secondItem="qE1-Au-4Ak" secondAttribute="trailing" constant="1" id="VMk-DL-mco"/>
  2320. <constraint firstItem="1vW-xg-dNl" firstAttribute="centerX" secondItem="z80-hX-1iP" secondAttribute="centerX" id="X2y-gl-gRg"/>
  2321. <constraint firstItem="DRw-IZ-Tnl" firstAttribute="top" secondItem="huB-Gt-5vP" secondAttribute="bottom" constant="1" id="YNd-qg-fes"/>
  2322. <constraint firstAttribute="trailing" secondItem="kpT-hf-0tf" secondAttribute="trailing" id="Z2b-2F-hwY"/>
  2323. <constraint firstItem="kLK-y0-iAf" firstAttribute="top" secondItem="DRw-IZ-Tnl" secondAttribute="bottom" constant="1" id="a9r-kA-EAh"/>
  2324. <constraint firstItem="qE1-Au-4Ak" firstAttribute="width" secondItem="kLK-y0-iAf" secondAttribute="width" id="cGS-ac-TJb"/>
  2325. <constraint firstItem="kmh-u3-Rtb" firstAttribute="width" secondItem="cfE-J0-H5A" secondAttribute="width" id="dxg-bo-6ac"/>
  2326. <constraint firstItem="qE1-Au-4Ak" firstAttribute="top" secondItem="jB2-tt-p5J" secondAttribute="bottom" constant="1" id="e16-Op-vcH"/>
  2327. <constraint firstItem="nfa-qt-LUR" firstAttribute="leading" secondItem="huB-Gt-5vP" secondAttribute="trailing" constant="1" id="g9n-1G-qtI"/>
  2328. <constraint firstItem="AGh-FG-moP" firstAttribute="height" secondItem="jB2-tt-p5J" secondAttribute="height" id="hen-AN-thH"/>
  2329. <constraint firstItem="nfa-qt-LUR" firstAttribute="top" secondItem="kmh-u3-Rtb" secondAttribute="bottom" constant="1" id="hxQ-lQ-JmS"/>
  2330. <constraint firstItem="kmh-u3-Rtb" firstAttribute="leading" secondItem="cfE-J0-H5A" secondAttribute="trailing" constant="1" id="kYC-81-bcV"/>
  2331. <constraint firstItem="z80-hX-1iP" firstAttribute="centerY" secondItem="qE1-Au-4Ak" secondAttribute="centerY" id="ke8-Es-9Jp"/>
  2332. <constraint firstItem="ZP9-P7-idt" firstAttribute="leading" secondItem="kmh-u3-Rtb" secondAttribute="trailing" constant="1" id="mAs-Ay-MGN"/>
  2333. <constraint firstItem="z80-hX-1iP" firstAttribute="height" secondItem="qE1-Au-4Ak" secondAttribute="height" id="p4N-ex-1dG"/>
  2334. <constraint firstItem="DRw-IZ-Tnl" firstAttribute="leading" secondItem="huB-Gt-5vP" secondAttribute="leading" id="q58-Yd-0ui"/>
  2335. <constraint firstItem="jB2-tt-p5J" firstAttribute="centerY" secondItem="DRw-IZ-Tnl" secondAttribute="centerY" id="qh9-fT-oYP"/>
  2336. <constraint firstItem="qE1-Au-4Ak" firstAttribute="centerY" secondItem="kLK-y0-iAf" secondAttribute="centerY" id="qwA-lr-gjF"/>
  2337. <constraint firstItem="jB2-tt-p5J" firstAttribute="top" secondItem="nfa-qt-LUR" secondAttribute="bottom" constant="1" id="rh8-Ok-iPx"/>
  2338. <constraint firstItem="QOZ-hI-79y" firstAttribute="height" secondItem="nfa-qt-LUR" secondAttribute="height" id="sTS-eq-ydM"/>
  2339. <constraint firstItem="z80-hX-1iP" firstAttribute="width" secondItem="qE1-Au-4Ak" secondAttribute="width" id="uDG-DO-JZO"/>
  2340. <constraint firstAttribute="width" constant="400" id="ubh-MV-FyN"/>
  2341. <constraint firstItem="cfE-J0-H5A" firstAttribute="top" secondItem="kpT-hf-0tf" secondAttribute="bottom" constant="1" id="ueJ-P7-jxk"/>
  2342. <constraint firstItem="z80-hX-1iP" firstAttribute="top" secondItem="AGh-FG-moP" secondAttribute="bottom" constant="1" id="vfw-86-xcd"/>
  2343. <constraint firstItem="ZP9-P7-idt" firstAttribute="height" secondItem="kmh-u3-Rtb" secondAttribute="height" id="yhw-qx-DOG"/>
  2344. <constraint firstItem="kmh-u3-Rtb" firstAttribute="height" secondItem="cfE-J0-H5A" secondAttribute="height" id="ywQ-kG-sIe"/>
  2345. </constraints>
  2346. </view>
  2347. </subviews>
  2348. <constraints>
  2349. <constraint firstItem="BKz-qq-XRX" firstAttribute="centerX" secondItem="uWh-g1-kiv" secondAttribute="centerX" id="IIw-gD-u6H"/>
  2350. <constraint firstAttribute="bottom" secondItem="BKz-qq-XRX" secondAttribute="bottom" constant="-295" id="JJB-9r-Vo3"/>
  2351. </constraints>
  2352. </view>
  2353. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="njO-4D-QVB" userLabel="KeyboardRed">
  2354. <rect key="frame" x="0.0" y="0.0" width="428" height="1221"/>
  2355. <subviews>
  2356. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="ZYn-w0-qHb">
  2357. <rect key="frame" x="14" y="956" width="400" height="265"/>
  2358. <subviews>
  2359. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="OQX-OM-9IT">
  2360. <rect key="frame" x="0.0" y="0.0" width="400" height="60"/>
  2361. <subviews>
  2362. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ហាងឆេង" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="pa2-Sm-uNV">
  2363. <rect key="frame" x="7.9999999999999964" y="20.666666666666629" width="56.666666666666657" height="19"/>
  2364. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  2365. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  2366. <nil key="highlightedColor"/>
  2367. </label>
  2368. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="-0.90" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="W6h-1F-CAA">
  2369. <rect key="frame" x="66.666666666666671" y="8" width="79.000000000000014" height="44"/>
  2370. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  2371. <constraints>
  2372. <constraint firstAttribute="height" constant="44" id="Zqb-po-0Fx"/>
  2373. <constraint firstAttribute="width" constant="79" id="gqy-IA-oeL"/>
  2374. </constraints>
  2375. <fontDescription key="fontDescription" type="system" weight="black" pointSize="21"/>
  2376. <color key="textColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
  2377. <color key="highlightedColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
  2378. </label>
  2379. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="1000000" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="My7-17-zp1">
  2380. <rect key="frame" x="220.66666666666663" y="8.6666666666666288" width="96" height="43"/>
  2381. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  2382. <constraints>
  2383. <constraint firstAttribute="height" constant="43" id="6fJ-dt-1j5"/>
  2384. <constraint firstAttribute="width" constant="96" id="B8J-DQ-YQN"/>
  2385. </constraints>
  2386. <fontDescription key="fontDescription" type="system" weight="black" pointSize="21"/>
  2387. <nil key="highlightedColor"/>
  2388. </label>
  2389. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="លុយភ្នាល់" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="jcR-sa-vTM">
  2390. <rect key="frame" x="153.66666666666666" y="20.666666666666629" width="65" height="19"/>
  2391. <constraints>
  2392. <constraint firstAttribute="width" constant="65" id="gK0-dW-aPe"/>
  2393. </constraints>
  2394. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  2395. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  2396. <nil key="highlightedColor"/>
  2397. </label>
  2398. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="FIJ-CM-Dx3">
  2399. <rect key="frame" x="327" y="8" width="65" height="44"/>
  2400. <color key="backgroundColor" red="0.92156862745098034" green="0.12156862745098039" blue="0.1764705882352941" alpha="1" colorSpace="calibratedRGB"/>
  2401. <constraints>
  2402. <constraint firstAttribute="height" constant="44" id="3W7-tw-zYF"/>
  2403. <constraint firstAttribute="width" constant="65" id="BWM-6M-fif"/>
  2404. </constraints>
  2405. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  2406. <state key="normal" title="ក្រហម">
  2407. <color key="titleColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2408. </state>
  2409. <connections>
  2410. <action selector="redAcceptClick:" destination="a4o-th-hLZ" eventType="touchUpInside" id="hWD-Go-T6x"/>
  2411. </connections>
  2412. </button>
  2413. </subviews>
  2414. <color key="backgroundColor" red="0.54509803921568623" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
  2415. <constraints>
  2416. <constraint firstItem="jcR-sa-vTM" firstAttribute="centerY" secondItem="W6h-1F-CAA" secondAttribute="centerY" id="6Wb-Y0-w2a"/>
  2417. <constraint firstItem="jcR-sa-vTM" firstAttribute="leading" secondItem="W6h-1F-CAA" secondAttribute="trailing" constant="8" symbolic="YES" id="BUg-d1-AO2"/>
  2418. <constraint firstItem="My7-17-zp1" firstAttribute="leading" secondItem="jcR-sa-vTM" secondAttribute="trailing" constant="2" id="NsM-5W-0id"/>
  2419. <constraint firstItem="pa2-Sm-uNV" firstAttribute="centerY" secondItem="OQX-OM-9IT" secondAttribute="centerY" id="PmK-lv-D0V"/>
  2420. <constraint firstAttribute="height" constant="60" id="Ucs-wQ-pC0"/>
  2421. <constraint firstItem="My7-17-zp1" firstAttribute="centerY" secondItem="jcR-sa-vTM" secondAttribute="centerY" id="Vb8-11-RKy"/>
  2422. <constraint firstItem="FIJ-CM-Dx3" firstAttribute="centerY" secondItem="OQX-OM-9IT" secondAttribute="centerY" id="eqh-8x-12u"/>
  2423. <constraint firstAttribute="trailing" secondItem="FIJ-CM-Dx3" secondAttribute="trailing" constant="8" id="oRT-91-e9B"/>
  2424. <constraint firstItem="W6h-1F-CAA" firstAttribute="centerY" secondItem="pa2-Sm-uNV" secondAttribute="centerY" id="r9o-Ec-3CE"/>
  2425. <constraint firstItem="pa2-Sm-uNV" firstAttribute="leading" secondItem="OQX-OM-9IT" secondAttribute="leading" constant="8" id="suP-mX-EqZ"/>
  2426. <constraint firstItem="W6h-1F-CAA" firstAttribute="leading" secondItem="pa2-Sm-uNV" secondAttribute="trailing" constant="2" id="tHx-5F-hyy"/>
  2427. </constraints>
  2428. </view>
  2429. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="AD7-iV-c3x">
  2430. <rect key="frame" x="0.0" y="61" width="132" height="50"/>
  2431. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  2432. <constraints>
  2433. <constraint firstAttribute="height" constant="50" id="PI1-pO-9uR"/>
  2434. <constraint firstAttribute="width" constant="132" id="hdU-CL-Td5"/>
  2435. </constraints>
  2436. <fontDescription key="fontDescription" type="system" pointSize="35"/>
  2437. <state key="normal" title="1">
  2438. <color key="titleColor" systemColor="labelColor"/>
  2439. </state>
  2440. <connections>
  2441. <action selector="oneKeyRed:" destination="a4o-th-hLZ" eventType="touchUpInside" id="hDG-gn-sKr"/>
  2442. </connections>
  2443. </button>
  2444. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Jpr-Vp-P5V">
  2445. <rect key="frame" x="133" y="61" width="132" height="50"/>
  2446. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  2447. <fontDescription key="fontDescription" type="system" pointSize="36"/>
  2448. <state key="normal" title="2">
  2449. <color key="titleColor" systemColor="labelColor"/>
  2450. </state>
  2451. <connections>
  2452. <action selector="TwoKeyRed:" destination="a4o-th-hLZ" eventType="touchUpInside" id="L6o-vT-y1f"/>
  2453. </connections>
  2454. </button>
  2455. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="LTL-65-CmA">
  2456. <rect key="frame" x="266" y="61" width="132" height="50"/>
  2457. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  2458. <fontDescription key="fontDescription" type="system" pointSize="36"/>
  2459. <state key="normal" title="3">
  2460. <color key="titleColor" systemColor="labelColor"/>
  2461. </state>
  2462. <connections>
  2463. <action selector="ThreeKeyRed:" destination="a4o-th-hLZ" eventType="touchUpInside" id="igY-BY-Uax"/>
  2464. </connections>
  2465. </button>
  2466. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="pHp-kh-yhJ">
  2467. <rect key="frame" x="0.0" y="112" width="132" height="50"/>
  2468. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  2469. <constraints>
  2470. <constraint firstAttribute="width" constant="132" id="SKH-w9-qmJ"/>
  2471. <constraint firstAttribute="height" constant="50" id="XP3-HX-kjw"/>
  2472. </constraints>
  2473. <fontDescription key="fontDescription" type="system" pointSize="36"/>
  2474. <state key="normal" title="4">
  2475. <color key="titleColor" systemColor="labelColor"/>
  2476. </state>
  2477. <connections>
  2478. <action selector="FourKeyRed:" destination="a4o-th-hLZ" eventType="touchUpInside" id="1cA-2h-Z8g"/>
  2479. </connections>
  2480. </button>
  2481. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="kDT-3K-jpI">
  2482. <rect key="frame" x="133" y="112" width="132" height="50"/>
  2483. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  2484. <fontDescription key="fontDescription" type="system" pointSize="36"/>
  2485. <state key="normal" title="5">
  2486. <color key="titleColor" systemColor="labelColor"/>
  2487. </state>
  2488. <connections>
  2489. <action selector="FiveKeyRed:" destination="a4o-th-hLZ" eventType="touchUpInside" id="jUa-hd-iZw"/>
  2490. </connections>
  2491. </button>
  2492. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="vY4-KU-tgF">
  2493. <rect key="frame" x="266" y="112" width="132" height="50"/>
  2494. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  2495. <fontDescription key="fontDescription" type="system" pointSize="36"/>
  2496. <state key="normal" title="6">
  2497. <color key="titleColor" systemColor="labelColor"/>
  2498. </state>
  2499. <connections>
  2500. <action selector="SixKeyRed:" destination="a4o-th-hLZ" eventType="touchUpInside" id="74I-Md-Svf"/>
  2501. </connections>
  2502. </button>
  2503. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Eix-ib-q37">
  2504. <rect key="frame" x="0.0" y="163" width="132" height="50"/>
  2505. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  2506. <constraints>
  2507. <constraint firstAttribute="width" constant="132" id="860-x4-fKF"/>
  2508. <constraint firstAttribute="height" constant="50" id="z8f-qO-xfy"/>
  2509. </constraints>
  2510. <fontDescription key="fontDescription" type="system" pointSize="36"/>
  2511. <state key="normal" title="7">
  2512. <color key="titleColor" systemColor="labelColor"/>
  2513. </state>
  2514. <connections>
  2515. <action selector="SevenKeyRed:" destination="a4o-th-hLZ" eventType="touchUpInside" id="SBG-Cu-QEq"/>
  2516. </connections>
  2517. </button>
  2518. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="66L-wW-gUh">
  2519. <rect key="frame" x="133" y="163" width="132" height="50"/>
  2520. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  2521. <fontDescription key="fontDescription" type="system" pointSize="36"/>
  2522. <state key="normal" title="8">
  2523. <color key="titleColor" systemColor="labelColor"/>
  2524. </state>
  2525. <connections>
  2526. <action selector="EightKeyRed:" destination="a4o-th-hLZ" eventType="touchUpInside" id="IuQ-j8-P05"/>
  2527. </connections>
  2528. </button>
  2529. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="tkY-M1-rwr">
  2530. <rect key="frame" x="266" y="163" width="132" height="50"/>
  2531. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  2532. <fontDescription key="fontDescription" type="system" pointSize="36"/>
  2533. <state key="normal" title="9">
  2534. <color key="titleColor" systemColor="labelColor"/>
  2535. </state>
  2536. <connections>
  2537. <action selector="NineKeyRed:" destination="a4o-th-hLZ" eventType="touchUpInside" id="6Zf-kb-HPS"/>
  2538. </connections>
  2539. </button>
  2540. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="7T0-yR-mGm">
  2541. <rect key="frame" x="0.0" y="214" width="132" height="50"/>
  2542. <color key="backgroundColor" systemColor="systemGray2Color"/>
  2543. <constraints>
  2544. <constraint firstAttribute="width" constant="132" id="7WF-Mn-4ia"/>
  2545. <constraint firstAttribute="height" constant="50" id="qYv-3T-iye"/>
  2546. </constraints>
  2547. <fontDescription key="fontDescription" type="system" weight="black" pointSize="22"/>
  2548. <state key="normal" title="Delete">
  2549. <color key="titleColor" systemColor="labelColor"/>
  2550. </state>
  2551. <connections>
  2552. <action selector="DeleteKeyRed:" destination="a4o-th-hLZ" eventType="touchUpInside" id="9s7-HQ-ZYP"/>
  2553. </connections>
  2554. </button>
  2555. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="ftR-Nc-XJG">
  2556. <rect key="frame" x="133" y="214" width="132" height="50"/>
  2557. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  2558. <fontDescription key="fontDescription" type="system" pointSize="36"/>
  2559. <state key="normal" title="0">
  2560. <color key="titleColor" systemColor="labelColor"/>
  2561. </state>
  2562. <connections>
  2563. <action selector="ZeroKeyRed:" destination="a4o-th-hLZ" eventType="touchUpInside" id="vm9-aO-5xK"/>
  2564. </connections>
  2565. </button>
  2566. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="8vq-yW-dHb">
  2567. <rect key="frame" x="266" y="214" width="132" height="50"/>
  2568. <color key="backgroundColor" systemColor="systemGray2Color"/>
  2569. <fontDescription key="fontDescription" type="system" pointSize="36"/>
  2570. <state key="normal">
  2571. <color key="titleColor" systemColor="labelColor"/>
  2572. </state>
  2573. <connections>
  2574. <action selector="CrossKeyRed:" destination="a4o-th-hLZ" eventType="touchUpInside" id="Qnb-A7-Oiv"/>
  2575. </connections>
  2576. </button>
  2577. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ic_backspace.jpeg" translatesAutoresizingMaskIntoConstraints="NO" id="BO1-Or-UTq">
  2578. <rect key="frame" x="313" y="224" width="38" height="30"/>
  2579. <constraints>
  2580. <constraint firstAttribute="height" constant="30" id="y7h-dU-XII"/>
  2581. <constraint firstAttribute="width" constant="38" id="zmw-on-nBn"/>
  2582. </constraints>
  2583. </imageView>
  2584. </subviews>
  2585. <color key="backgroundColor" systemColor="systemGray3Color"/>
  2586. <constraints>
  2587. <constraint firstItem="LTL-65-CmA" firstAttribute="centerY" secondItem="Jpr-Vp-P5V" secondAttribute="centerY" id="0qn-mp-ona"/>
  2588. <constraint firstItem="vY4-KU-tgF" firstAttribute="leading" secondItem="kDT-3K-jpI" secondAttribute="trailing" constant="1" id="2iW-MD-Bn6"/>
  2589. <constraint firstItem="Eix-ib-q37" firstAttribute="leading" secondItem="pHp-kh-yhJ" secondAttribute="leading" id="3Mp-Vs-jne"/>
  2590. <constraint firstItem="Jpr-Vp-P5V" firstAttribute="width" secondItem="AD7-iV-c3x" secondAttribute="width" id="4qt-o6-lfK"/>
  2591. <constraint firstItem="OQX-OM-9IT" firstAttribute="top" secondItem="ZYn-w0-qHb" secondAttribute="top" id="55f-Bi-LFF"/>
  2592. <constraint firstItem="tkY-M1-rwr" firstAttribute="height" secondItem="66L-wW-gUh" secondAttribute="height" id="58T-Kv-FG2"/>
  2593. <constraint firstItem="vY4-KU-tgF" firstAttribute="height" secondItem="kDT-3K-jpI" secondAttribute="height" id="5JZ-de-HyT"/>
  2594. <constraint firstItem="tkY-M1-rwr" firstAttribute="width" secondItem="66L-wW-gUh" secondAttribute="width" id="7Hh-fC-gnn"/>
  2595. <constraint firstItem="AD7-iV-c3x" firstAttribute="top" secondItem="OQX-OM-9IT" secondAttribute="bottom" constant="1" id="86e-Ou-Xhk"/>
  2596. <constraint firstItem="OQX-OM-9IT" firstAttribute="leading" secondItem="ZYn-w0-qHb" secondAttribute="leading" id="8HA-eP-WhD"/>
  2597. <constraint firstItem="BO1-Or-UTq" firstAttribute="centerX" secondItem="8vq-yW-dHb" secondAttribute="centerX" id="8Px-zu-o2n"/>
  2598. <constraint firstItem="ftR-Nc-XJG" firstAttribute="width" secondItem="7T0-yR-mGm" secondAttribute="width" id="8US-ZW-N76"/>
  2599. <constraint firstItem="7T0-yR-mGm" firstAttribute="leading" secondItem="Eix-ib-q37" secondAttribute="leading" id="8t6-U9-I2J"/>
  2600. <constraint firstItem="kDT-3K-jpI" firstAttribute="width" secondItem="pHp-kh-yhJ" secondAttribute="width" id="9X7-P9-FsB"/>
  2601. <constraint firstItem="kDT-3K-jpI" firstAttribute="top" secondItem="Jpr-Vp-P5V" secondAttribute="bottom" constant="1" id="9ok-Xy-4Ws"/>
  2602. <constraint firstItem="vY4-KU-tgF" firstAttribute="centerY" secondItem="kDT-3K-jpI" secondAttribute="centerY" id="AZL-KJ-MvM"/>
  2603. <constraint firstItem="kDT-3K-jpI" firstAttribute="leading" secondItem="pHp-kh-yhJ" secondAttribute="trailing" constant="1" id="Aog-xG-KWj"/>
  2604. <constraint firstItem="kDT-3K-jpI" firstAttribute="centerY" secondItem="pHp-kh-yhJ" secondAttribute="centerY" id="CJm-2y-3zB"/>
  2605. <constraint firstItem="ftR-Nc-XJG" firstAttribute="centerY" secondItem="7T0-yR-mGm" secondAttribute="centerY" id="CwI-Nj-4pg"/>
  2606. <constraint firstItem="pHp-kh-yhJ" firstAttribute="top" secondItem="AD7-iV-c3x" secondAttribute="bottom" constant="1" id="D6p-wp-A63"/>
  2607. <constraint firstItem="tkY-M1-rwr" firstAttribute="top" secondItem="vY4-KU-tgF" secondAttribute="bottom" constant="1" id="E32-YA-tPv"/>
  2608. <constraint firstItem="66L-wW-gUh" firstAttribute="leading" secondItem="Eix-ib-q37" secondAttribute="trailing" constant="1" id="HKa-j8-cQb"/>
  2609. <constraint firstItem="8vq-yW-dHb" firstAttribute="height" secondItem="ftR-Nc-XJG" secondAttribute="height" id="HKs-ZS-3Nt"/>
  2610. <constraint firstAttribute="width" constant="400" id="HsC-Ew-zMH"/>
  2611. <constraint firstItem="AD7-iV-c3x" firstAttribute="leading" secondItem="OQX-OM-9IT" secondAttribute="leading" id="J6W-gx-pOD"/>
  2612. <constraint firstItem="8vq-yW-dHb" firstAttribute="top" secondItem="tkY-M1-rwr" secondAttribute="bottom" constant="1" id="Jcw-Is-Fey"/>
  2613. <constraint firstAttribute="height" constant="265" id="JoW-Pj-Y9L"/>
  2614. <constraint firstItem="tkY-M1-rwr" firstAttribute="leading" secondItem="66L-wW-gUh" secondAttribute="trailing" constant="1" id="Krw-Tj-lNC"/>
  2615. <constraint firstItem="ftR-Nc-XJG" firstAttribute="leading" secondItem="7T0-yR-mGm" secondAttribute="trailing" constant="1" id="LOF-Uw-cLo"/>
  2616. <constraint firstItem="7T0-yR-mGm" firstAttribute="top" secondItem="Eix-ib-q37" secondAttribute="bottom" constant="1" id="OyS-b6-cg1"/>
  2617. <constraint firstItem="vY4-KU-tgF" firstAttribute="top" secondItem="LTL-65-CmA" secondAttribute="bottom" constant="1" id="QYj-po-yRS"/>
  2618. <constraint firstItem="8vq-yW-dHb" firstAttribute="centerY" secondItem="ftR-Nc-XJG" secondAttribute="centerY" id="Siy-fR-W9R"/>
  2619. <constraint firstItem="66L-wW-gUh" firstAttribute="centerY" secondItem="Eix-ib-q37" secondAttribute="centerY" id="SjW-qN-0Uf"/>
  2620. <constraint firstItem="LTL-65-CmA" firstAttribute="height" secondItem="Jpr-Vp-P5V" secondAttribute="height" id="VNE-bp-szw"/>
  2621. <constraint firstItem="LTL-65-CmA" firstAttribute="leading" secondItem="Jpr-Vp-P5V" secondAttribute="trailing" constant="1" id="WEd-nE-rbC"/>
  2622. <constraint firstItem="LTL-65-CmA" firstAttribute="width" secondItem="Jpr-Vp-P5V" secondAttribute="width" id="YKQ-vf-xRp"/>
  2623. <constraint firstItem="Jpr-Vp-P5V" firstAttribute="leading" secondItem="AD7-iV-c3x" secondAttribute="trailing" constant="1" id="dI5-no-Gw4"/>
  2624. <constraint firstItem="pHp-kh-yhJ" firstAttribute="leading" secondItem="AD7-iV-c3x" secondAttribute="leading" id="fBE-4V-h6O"/>
  2625. <constraint firstItem="vY4-KU-tgF" firstAttribute="width" secondItem="kDT-3K-jpI" secondAttribute="width" id="h9l-wD-IrC"/>
  2626. <constraint firstItem="kDT-3K-jpI" firstAttribute="height" secondItem="pHp-kh-yhJ" secondAttribute="height" id="hCv-sy-6zb"/>
  2627. <constraint firstAttribute="trailing" secondItem="OQX-OM-9IT" secondAttribute="trailing" id="kqs-bh-ps1"/>
  2628. <constraint firstItem="Jpr-Vp-P5V" firstAttribute="centerY" secondItem="AD7-iV-c3x" secondAttribute="centerY" id="lP5-uw-tVZ"/>
  2629. <constraint firstItem="tkY-M1-rwr" firstAttribute="centerY" secondItem="66L-wW-gUh" secondAttribute="centerY" id="n9x-Kv-ouL"/>
  2630. <constraint firstItem="8vq-yW-dHb" firstAttribute="leading" secondItem="ftR-Nc-XJG" secondAttribute="trailing" constant="1" id="oKi-jf-IDc"/>
  2631. <constraint firstItem="Eix-ib-q37" firstAttribute="top" secondItem="pHp-kh-yhJ" secondAttribute="bottom" constant="1" id="oZ6-jz-hKg"/>
  2632. <constraint firstItem="66L-wW-gUh" firstAttribute="top" secondItem="kDT-3K-jpI" secondAttribute="bottom" constant="1" id="qAL-Fq-Vag"/>
  2633. <constraint firstItem="Jpr-Vp-P5V" firstAttribute="height" secondItem="AD7-iV-c3x" secondAttribute="height" id="taW-db-uvK"/>
  2634. <constraint firstItem="8vq-yW-dHb" firstAttribute="width" secondItem="ftR-Nc-XJG" secondAttribute="width" id="tqG-rs-jkg"/>
  2635. <constraint firstItem="66L-wW-gUh" firstAttribute="height" secondItem="Eix-ib-q37" secondAttribute="height" id="xMc-wT-UeY"/>
  2636. <constraint firstItem="ftR-Nc-XJG" firstAttribute="top" secondItem="66L-wW-gUh" secondAttribute="bottom" constant="1" id="xYO-GR-Z20"/>
  2637. <constraint firstItem="ftR-Nc-XJG" firstAttribute="height" secondItem="7T0-yR-mGm" secondAttribute="height" id="xrw-8h-ETg"/>
  2638. <constraint firstItem="66L-wW-gUh" firstAttribute="width" secondItem="Eix-ib-q37" secondAttribute="width" id="y0q-bQ-1TC"/>
  2639. <constraint firstItem="BO1-Or-UTq" firstAttribute="centerY" secondItem="8vq-yW-dHb" secondAttribute="centerY" id="yGS-AN-Wpj"/>
  2640. </constraints>
  2641. </view>
  2642. </subviews>
  2643. <constraints>
  2644. <constraint firstAttribute="bottom" secondItem="ZYn-w0-qHb" secondAttribute="bottom" id="8dj-AL-A1O"/>
  2645. <constraint firstItem="ZYn-w0-qHb" firstAttribute="centerX" secondItem="njO-4D-QVB" secondAttribute="centerX" id="x80-ln-7Tp"/>
  2646. </constraints>
  2647. </view>
  2648. </subviews>
  2649. <viewLayoutGuide key="safeArea" id="YAe-79-63x"/>
  2650. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  2651. <constraints>
  2652. <constraint firstItem="2ES-ry-8av" firstAttribute="trailing" secondItem="YAe-79-63x" secondAttribute="trailing" id="12R-oT-ERV"/>
  2653. <constraint firstItem="uWh-g1-kiv" firstAttribute="trailing" secondItem="YAe-79-63x" secondAttribute="trailing" id="1l9-pz-2CB"/>
  2654. <constraint firstItem="ESj-LO-ylP" firstAttribute="trailing" secondItem="YAe-79-63x" secondAttribute="trailing" id="6gN-AB-wjL"/>
  2655. <constraint firstItem="njO-4D-QVB" firstAttribute="top" secondItem="usq-5y-eXU" secondAttribute="top" id="8Te-uL-OsW"/>
  2656. <constraint firstAttribute="bottom" secondItem="njO-4D-QVB" secondAttribute="bottom" constant="-295" id="8rZ-AA-g7l"/>
  2657. <constraint firstAttribute="bottom" secondItem="2ES-ry-8av" secondAttribute="bottom" id="CKc-oy-RBf"/>
  2658. <constraint firstItem="ESj-LO-ylP" firstAttribute="leading" secondItem="YAe-79-63x" secondAttribute="leading" id="DRu-AX-kEi"/>
  2659. <constraint firstItem="2ES-ry-8av" firstAttribute="leading" secondItem="YAe-79-63x" secondAttribute="leading" id="DaV-lT-0KO"/>
  2660. <constraint firstItem="ESj-LO-ylP" firstAttribute="top" secondItem="usq-5y-eXU" secondAttribute="top" id="EuN-Oo-c6W"/>
  2661. <constraint firstAttribute="bottom" secondItem="uWh-g1-kiv" secondAttribute="bottom" id="IEi-45-L4j"/>
  2662. <constraint firstItem="IBy-vo-jRX" firstAttribute="top" secondItem="SUx-Dx-dgw" secondAttribute="bottom" id="Pjq-yO-o9B"/>
  2663. <constraint firstItem="uWh-g1-kiv" firstAttribute="leading" secondItem="YAe-79-63x" secondAttribute="leading" id="QeA-uJ-6cu"/>
  2664. <constraint firstItem="njO-4D-QVB" firstAttribute="trailing" secondItem="YAe-79-63x" secondAttribute="trailing" id="WHA-08-JCX"/>
  2665. <constraint firstItem="SUx-Dx-dgw" firstAttribute="top" secondItem="ESj-LO-ylP" secondAttribute="bottom" constant="5" id="cAf-UK-oBu"/>
  2666. <constraint firstItem="IBy-vo-jRX" firstAttribute="leading" secondItem="YAe-79-63x" secondAttribute="leading" id="dOF-oT-94b"/>
  2667. <constraint firstItem="uWh-g1-kiv" firstAttribute="top" secondItem="usq-5y-eXU" secondAttribute="top" id="f6U-aH-9eC"/>
  2668. <constraint firstAttribute="trailing" secondItem="IBy-vo-jRX" secondAttribute="trailing" id="oQc-Em-8OO"/>
  2669. <constraint firstItem="njO-4D-QVB" firstAttribute="leading" secondItem="YAe-79-63x" secondAttribute="leading" id="q1P-5p-b2L"/>
  2670. <constraint firstItem="SUx-Dx-dgw" firstAttribute="leading" secondItem="YAe-79-63x" secondAttribute="leading" id="sSc-iv-NCR"/>
  2671. <constraint firstItem="SUx-Dx-dgw" firstAttribute="trailing" secondItem="YAe-79-63x" secondAttribute="trailing" id="sgj-9b-rIZ"/>
  2672. </constraints>
  2673. </view>
  2674. <navigationItem key="navigationItem" id="f1j-fn-JWD"/>
  2675. <connections>
  2676. <outlet property="PongTableCollectionV" destination="XXb-pJ-QXw" id="f1q-Rv-qgb"/>
  2677. <outlet property="btnBet" destination="eEo-N4-X7M" id="Neo-E9-xE0"/>
  2678. <outlet property="btnBlue" destination="5OE-OZ-jXb" id="iGi-TL-JhF"/>
  2679. <outlet property="btnBlueAccept" destination="gTi-HP-ell" id="qD5-pw-Juf"/>
  2680. <outlet property="btnPong" destination="ajf-b4-Pgo" id="kk7-f5-3cy"/>
  2681. <outlet property="btnRed" destination="Bsq-5a-pLX" id="cto-aL-yjK"/>
  2682. <outlet property="btnRedAccept" destination="FIJ-CM-Dx3" id="BYF-XO-39i"/>
  2683. <outlet property="btnWait" destination="Ry5-P7-uGJ" id="tOj-cn-RQb"/>
  2684. <outlet property="lblBalance" destination="jQ6-Sc-wjF" id="2vT-80-Jbv"/>
  2685. <outlet property="lblBlueAmountBet" destination="X71-xd-VP0" id="cDp-Fv-Wue"/>
  2686. <outlet property="lblBlueExchangeRate" destination="BmC-5y-BY7" id="eev-6M-Ik9"/>
  2687. <outlet property="lblCurrentDate" destination="0eq-ud-7SE" id="iil-5l-Rsb"/>
  2688. <outlet property="lblFightNo" destination="UAQ-dy-jbW" id="VJf-db-H2a"/>
  2689. <outlet property="lblRedAmountBet" destination="My7-17-zp1" id="dUv-Ra-74E"/>
  2690. <outlet property="lblRedExchangeRate" destination="W6h-1F-CAA" id="nKt-Af-bwA"/>
  2691. <outlet property="lblStatus" destination="qbR-My-arX" id="PD9-81-ZW2"/>
  2692. <outlet property="lblUserName" destination="i1E-zr-99r" id="yaF-gD-16a"/>
  2693. <outlet property="loading" destination="GyW-Sc-SKu" id="VV2-yf-APK"/>
  2694. <outlet property="tbBet" destination="lu2-vD-Ip1" id="xrT-Qf-asl"/>
  2695. <outlet property="tbBlueBet" destination="97Q-7Q-YKN" id="s3I-5V-o8M"/>
  2696. <outlet property="tbRedBet" destination="8y9-Mf-gJx" id="DXK-yZ-Rfh"/>
  2697. <outlet property="tbWait" destination="mOZ-Q9-JiB" id="c9B-3U-SK9"/>
  2698. <outlet property="vBarButton" destination="ePV-Dt-tgW" id="gWK-qs-tA1"/>
  2699. <outlet property="vBlurKeyBoardBlue" destination="uWh-g1-kiv" id="Rve-zU-rKv"/>
  2700. <outlet property="vBlurKeyBoardRed" destination="njO-4D-QVB" id="GWd-pE-5w2"/>
  2701. <outlet property="vKeyboardBlue" destination="BKz-qq-XRX" id="3eG-HA-tbL"/>
  2702. <outlet property="vKeyboardRed" destination="ZYn-w0-qHb" id="zbh-HM-teD"/>
  2703. <outlet property="vLineTable" destination="1Ci-v8-eIQ" id="lOT-98-5x6"/>
  2704. <outlet property="vLived" destination="IBy-vo-jRX" id="jdr-aj-Y44"/>
  2705. <outlet property="vMainReplaceView" destination="gsn-Ru-QYn" id="Kic-Qz-xEd"/>
  2706. <outlet property="vPongTable" destination="aqb-ZX-555" id="MrM-9y-Vxl"/>
  2707. </connections>
  2708. </viewController>
  2709. <placeholder placeholderIdentifier="IBFirstResponder" id="v7x-20-cm8" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  2710. </objects>
  2711. <point key="canvasLocation" x="1050.7246376811595" y="105.80357142857143"/>
  2712. </scene>
  2713. <!--NotificationVC-->
  2714. <scene sceneID="ZU4-rm-nRg">
  2715. <objects>
  2716. <viewController modalPresentationStyle="fullScreen" id="hdc-rg-WjG" customClass="NotificationVC" customModule="CockFight" customModuleProvider="target" sceneMemberID="viewController">
  2717. <view key="view" contentMode="scaleToFill" id="Jpb-pg-fBY">
  2718. <rect key="frame" x="0.0" y="0.0" width="428" height="926"/>
  2719. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2720. <subviews>
  2721. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="apC-MP-kKZ" userLabel="TopBar">
  2722. <rect key="frame" x="0.0" y="0.0" width="428" height="100"/>
  2723. <subviews>
  2724. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ការជូនដំណឹង" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="DmL-qd-Q9y">
  2725. <rect key="frame" x="0.0" y="60" width="428" height="21"/>
  2726. <fontDescription key="fontDescription" type="system" pointSize="18"/>
  2727. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2728. <nil key="highlightedColor"/>
  2729. </label>
  2730. </subviews>
  2731. <color key="backgroundColor" red="0.3803921569" green="0.37254901959999998" blue="0.37254901959999998" alpha="1" colorSpace="calibratedRGB"/>
  2732. <constraints>
  2733. <constraint firstItem="DmL-qd-Q9y" firstAttribute="leading" secondItem="apC-MP-kKZ" secondAttribute="leading" id="6H5-ht-vxt"/>
  2734. <constraint firstAttribute="trailing" secondItem="DmL-qd-Q9y" secondAttribute="trailing" id="WGY-0r-FvH"/>
  2735. <constraint firstItem="DmL-qd-Q9y" firstAttribute="top" secondItem="apC-MP-kKZ" secondAttribute="top" constant="60" id="eCB-d2-nZl"/>
  2736. <constraint firstAttribute="height" constant="100" id="eF8-SV-OUi"/>
  2737. </constraints>
  2738. </view>
  2739. <tableView clipsSubviews="YES" contentMode="scaleToFill" bounces="NO" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" bouncesZoom="NO" dataMode="prototypes" style="plain" separatorStyle="none" rowHeight="115" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="wct-vC-Oyz">
  2740. <rect key="frame" x="0.0" y="100" width="428" height="826"/>
  2741. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  2742. <prototypes>
  2743. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="default" indentationWidth="10" reuseIdentifier="NotiCell" rowHeight="115" id="hLO-94-kk4" customClass="NotificationCell" customModule="CockFight" customModuleProvider="target">
  2744. <rect key="frame" x="0.0" y="28" width="428" height="115"/>
  2745. <autoresizingMask key="autoresizingMask"/>
  2746. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="hLO-94-kk4" id="Hwq-uJ-mQc">
  2747. <rect key="frame" x="0.0" y="0.0" width="428" height="115"/>
  2748. <autoresizingMask key="autoresizingMask"/>
  2749. <subviews>
  2750. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="កាលបរិច្ឆេទ៖" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="I1q-es-3Mf">
  2751. <rect key="frame" x="117" y="64" width="78" height="20"/>
  2752. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  2753. <nil key="textColor"/>
  2754. <nil key="highlightedColor"/>
  2755. </label>
  2756. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ic_aba.png" translatesAutoresizingMaskIntoConstraints="NO" id="7k0-PC-5yt">
  2757. <rect key="frame" x="20" y="8" width="78" height="78"/>
  2758. <constraints>
  2759. <constraint firstAttribute="width" constant="78" id="Inr-Zo-tgP"/>
  2760. <constraint firstAttribute="height" constant="78" id="g4i-4Z-hkz"/>
  2761. </constraints>
  2762. </imageView>
  2763. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ការស្នើសុំដកប្រាក់៖" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="nSQ-Vi-LDc">
  2764. <rect key="frame" x="117" y="8" width="114" height="20"/>
  2765. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  2766. <nil key="textColor"/>
  2767. <nil key="highlightedColor"/>
  2768. </label>
  2769. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ជោគជ័យ" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="t6p-Qc-Wao">
  2770. <rect key="frame" x="241" y="8" width="57" height="20"/>
  2771. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  2772. <color key="textColor" red="0.3803921569" green="0.73725490199999999" blue="0.098039215690000001" alpha="1" colorSpace="calibratedRGB"/>
  2773. <nil key="highlightedColor"/>
  2774. </label>
  2775. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ទឹកប្រាក់៖" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Wab-LD-Ttw">
  2776. <rect key="frame" x="117" y="36" width="57" height="20"/>
  2777. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  2778. <nil key="textColor"/>
  2779. <nil key="highlightedColor"/>
  2780. </label>
  2781. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="១០០ដុល្លារ" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="EH0-wM-Jw1">
  2782. <rect key="frame" x="184" y="36" width="62" height="20"/>
  2783. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  2784. <nil key="textColor"/>
  2785. <nil key="highlightedColor"/>
  2786. </label>
  2787. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="2021/07/01 9:05 PM" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="JZf-Y6-Tys">
  2788. <rect key="frame" x="205" y="64" width="145" height="20"/>
  2789. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  2790. <nil key="textColor"/>
  2791. <nil key="highlightedColor"/>
  2792. </label>
  2793. </subviews>
  2794. <constraints>
  2795. <constraint firstItem="t6p-Qc-Wao" firstAttribute="leading" secondItem="nSQ-Vi-LDc" secondAttribute="trailing" constant="10" id="8HX-TX-Asr"/>
  2796. <constraint firstItem="nSQ-Vi-LDc" firstAttribute="top" secondItem="7k0-PC-5yt" secondAttribute="top" id="AdL-Qw-ohx"/>
  2797. <constraint firstItem="EH0-wM-Jw1" firstAttribute="centerY" secondItem="Wab-LD-Ttw" secondAttribute="centerY" id="CnH-jH-8LX"/>
  2798. <constraint firstItem="t6p-Qc-Wao" firstAttribute="centerY" secondItem="nSQ-Vi-LDc" secondAttribute="centerY" id="Dm8-To-mcL"/>
  2799. <constraint firstItem="EH0-wM-Jw1" firstAttribute="leading" secondItem="Wab-LD-Ttw" secondAttribute="trailing" constant="10" id="Ni1-po-UpA"/>
  2800. <constraint firstItem="I1q-es-3Mf" firstAttribute="leading" secondItem="Wab-LD-Ttw" secondAttribute="leading" id="PJB-JI-T9p"/>
  2801. <constraint firstItem="JZf-Y6-Tys" firstAttribute="centerY" secondItem="I1q-es-3Mf" secondAttribute="centerY" id="Pma-kY-Gm4"/>
  2802. <constraint firstItem="nSQ-Vi-LDc" firstAttribute="leading" secondItem="7k0-PC-5yt" secondAttribute="trailing" constant="19" id="Ufi-sh-LnI"/>
  2803. <constraint firstItem="Wab-LD-Ttw" firstAttribute="leading" secondItem="nSQ-Vi-LDc" secondAttribute="leading" id="faO-eq-USk"/>
  2804. <constraint firstItem="7k0-PC-5yt" firstAttribute="leading" secondItem="Hwq-uJ-mQc" secondAttribute="leading" constant="20" symbolic="YES" id="g4R-Ax-4pJ"/>
  2805. <constraint firstItem="JZf-Y6-Tys" firstAttribute="leading" secondItem="I1q-es-3Mf" secondAttribute="trailing" constant="10" id="hOB-cY-eDc"/>
  2806. <constraint firstItem="I1q-es-3Mf" firstAttribute="top" secondItem="Wab-LD-Ttw" secondAttribute="bottom" constant="8" id="nTs-62-sAN"/>
  2807. <constraint firstItem="Wab-LD-Ttw" firstAttribute="top" secondItem="nSQ-Vi-LDc" secondAttribute="bottom" constant="8" id="xHo-Qs-RHL"/>
  2808. <constraint firstItem="7k0-PC-5yt" firstAttribute="top" secondItem="Hwq-uJ-mQc" secondAttribute="top" constant="8" id="zhK-yi-Ujf"/>
  2809. </constraints>
  2810. </tableViewCellContentView>
  2811. <connections>
  2812. <outlet property="icLogoNotification" destination="7k0-PC-5yt" id="znq-pb-uIV"/>
  2813. <outlet property="lblDate" destination="JZf-Y6-Tys" id="esy-Tm-gF2"/>
  2814. <outlet property="lblMoney" destination="EH0-wM-Jw1" id="odk-cO-0h7"/>
  2815. <outlet property="lblStatusSuccessORFail" destination="t6p-Qc-Wao" id="XH4-jE-ZzP"/>
  2816. </connections>
  2817. </tableViewCell>
  2818. </prototypes>
  2819. <connections>
  2820. <outlet property="dataSource" destination="hdc-rg-WjG" id="RfZ-AT-q00"/>
  2821. <outlet property="delegate" destination="hdc-rg-WjG" id="cTL-S6-Ej1"/>
  2822. </connections>
  2823. </tableView>
  2824. </subviews>
  2825. <viewLayoutGuide key="safeArea" id="2qH-QF-19l"/>
  2826. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  2827. <constraints>
  2828. <constraint firstItem="wct-vC-Oyz" firstAttribute="top" secondItem="apC-MP-kKZ" secondAttribute="bottom" id="0dR-Cb-WTr"/>
  2829. <constraint firstItem="apC-MP-kKZ" firstAttribute="trailing" secondItem="2qH-QF-19l" secondAttribute="trailing" id="2Ny-XS-UNr"/>
  2830. <constraint firstItem="wct-vC-Oyz" firstAttribute="trailing" secondItem="2qH-QF-19l" secondAttribute="trailing" id="9va-g3-X3G"/>
  2831. <constraint firstItem="apC-MP-kKZ" firstAttribute="top" secondItem="Jpb-pg-fBY" secondAttribute="top" id="Qih-JF-NZD"/>
  2832. <constraint firstAttribute="bottom" secondItem="wct-vC-Oyz" secondAttribute="bottom" id="dtz-5T-aSl"/>
  2833. <constraint firstItem="wct-vC-Oyz" firstAttribute="leading" secondItem="2qH-QF-19l" secondAttribute="leading" id="f8w-c0-K9C"/>
  2834. <constraint firstItem="apC-MP-kKZ" firstAttribute="leading" secondItem="2qH-QF-19l" secondAttribute="leading" id="ig1-qR-ZVf"/>
  2835. </constraints>
  2836. </view>
  2837. <navigationItem key="navigationItem" id="5Gt-n1-yOk"/>
  2838. <connections>
  2839. <outlet property="tbDisplayNotification" destination="wct-vC-Oyz" id="kvy-T4-3ev"/>
  2840. </connections>
  2841. </viewController>
  2842. <placeholder placeholderIdentifier="IBFirstResponder" id="r0m-Pj-MZc" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  2843. </objects>
  2844. <point key="canvasLocation" x="1782.608695652174" y="-573.21428571428567"/>
  2845. </scene>
  2846. <!--SettingVC-->
  2847. <scene sceneID="Yog-8v-hGV">
  2848. <objects>
  2849. <viewController modalPresentationStyle="fullScreen" id="BD3-6h-Rzp" customClass="SettingVC" customModule="CockFight" customModuleProvider="target" sceneMemberID="viewController">
  2850. <view key="view" contentMode="scaleToFill" id="2Y2-Uq-P5P">
  2851. <rect key="frame" x="0.0" y="0.0" width="428" height="926"/>
  2852. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2853. <subviews>
  2854. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="z3b-oE-FkN" userLabel="TopBar">
  2855. <rect key="frame" x="0.0" y="0.0" width="428" height="100"/>
  2856. <subviews>
  2857. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="logo.png" translatesAutoresizingMaskIntoConstraints="NO" id="2pk-ia-to3">
  2858. <rect key="frame" x="10" y="40" width="50" height="50"/>
  2859. <constraints>
  2860. <constraint firstAttribute="height" constant="50" id="c7S-by-knS"/>
  2861. <constraint firstAttribute="width" constant="50" id="zrr-Dw-2tR"/>
  2862. </constraints>
  2863. </imageView>
  2864. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="100,121,300" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="J3Y-nv-lQm">
  2865. <rect key="frame" x="65" y="63.666666666666657" width="77" height="17"/>
  2866. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  2867. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2868. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  2869. </label>
  2870. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Z5N-x4-lJz">
  2871. <rect key="frame" x="388" y="50" width="30" height="30"/>
  2872. <constraints>
  2873. <constraint firstAttribute="height" constant="30" id="4j3-0n-eAA"/>
  2874. <constraint firstAttribute="width" constant="30" id="FPD-Sy-zLU"/>
  2875. </constraints>
  2876. <state key="normal" image="ic_setting.png"/>
  2877. </button>
  2878. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="X1a-SM-JfS">
  2879. <rect key="frame" x="348" y="50" width="30" height="30"/>
  2880. <constraints>
  2881. <constraint firstAttribute="width" constant="30" id="4f9-Qk-TOm"/>
  2882. <constraint firstAttribute="height" constant="30" id="Bpe-5e-1IG"/>
  2883. </constraints>
  2884. <state key="normal" image="ic_unmute.png"/>
  2885. <connections>
  2886. <segue destination="hdc-rg-WjG" kind="show" id="eBl-tN-57j"/>
  2887. </connections>
  2888. </button>
  2889. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="H8G-px-bJA">
  2890. <rect key="frame" x="303" y="45" width="35" height="40"/>
  2891. <constraints>
  2892. <constraint firstAttribute="height" constant="40" id="GzX-jd-Zw3"/>
  2893. <constraint firstAttribute="width" constant="35" id="gqf-4R-eyd"/>
  2894. </constraints>
  2895. <state key="normal" image="ic_report.png"/>
  2896. </button>
  2897. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="p5" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="F6e-wy-n2v">
  2898. <rect key="frame" x="65" y="40" width="17" height="17"/>
  2899. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  2900. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2901. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  2902. </label>
  2903. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="user.png" translatesAutoresizingMaskIntoConstraints="NO" id="45i-Ay-Vvd">
  2904. <rect key="frame" x="85" y="38.666666666666664" width="15" height="20"/>
  2905. <constraints>
  2906. <constraint firstAttribute="width" constant="15" id="Qvy-zh-A7P"/>
  2907. <constraint firstAttribute="height" constant="20" id="y5x-UE-7OJ"/>
  2908. </constraints>
  2909. </imageView>
  2910. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="21z-xC-Ygs">
  2911. <rect key="frame" x="145" y="63.666666666666657" width="20" height="17"/>
  2912. <constraints>
  2913. <constraint firstAttribute="height" constant="17" id="VDA-iF-7KD"/>
  2914. <constraint firstAttribute="width" constant="20" id="xcZ-d6-FYu"/>
  2915. </constraints>
  2916. <state key="normal" image="ic_refresh.png"/>
  2917. </button>
  2918. </subviews>
  2919. <color key="backgroundColor" red="0.3803921569" green="0.37254901959999998" blue="0.37254901959999998" alpha="1" colorSpace="calibratedRGB"/>
  2920. <constraints>
  2921. <constraint firstItem="J3Y-nv-lQm" firstAttribute="leading" secondItem="F6e-wy-n2v" secondAttribute="leading" id="3VL-2k-Cz3"/>
  2922. <constraint firstItem="F6e-wy-n2v" firstAttribute="top" secondItem="2pk-ia-to3" secondAttribute="top" id="7Q5-Yj-DfX"/>
  2923. <constraint firstAttribute="bottom" secondItem="2pk-ia-to3" secondAttribute="bottom" constant="10" id="AwJ-to-wPu"/>
  2924. <constraint firstItem="H8G-px-bJA" firstAttribute="centerY" secondItem="X1a-SM-JfS" secondAttribute="centerY" id="AyS-Et-f1R"/>
  2925. <constraint firstItem="2pk-ia-to3" firstAttribute="leading" secondItem="z3b-oE-FkN" secondAttribute="leading" constant="10" id="FyV-pm-pGk"/>
  2926. <constraint firstAttribute="height" constant="100" id="PXZ-nz-0CN"/>
  2927. <constraint firstItem="Z5N-x4-lJz" firstAttribute="leading" secondItem="X1a-SM-JfS" secondAttribute="trailing" constant="10" id="RhP-Th-w7i"/>
  2928. <constraint firstItem="F6e-wy-n2v" firstAttribute="leading" secondItem="2pk-ia-to3" secondAttribute="trailing" constant="5" id="T9g-A9-Hd9"/>
  2929. <constraint firstItem="21z-xC-Ygs" firstAttribute="centerY" secondItem="J3Y-nv-lQm" secondAttribute="centerY" id="Val-NN-vP5"/>
  2930. <constraint firstItem="21z-xC-Ygs" firstAttribute="leading" secondItem="J3Y-nv-lQm" secondAttribute="trailing" constant="3" id="bm8-fi-9OK"/>
  2931. <constraint firstItem="45i-Ay-Vvd" firstAttribute="centerY" secondItem="F6e-wy-n2v" secondAttribute="centerY" id="ep0-lB-z77"/>
  2932. <constraint firstAttribute="trailing" secondItem="Z5N-x4-lJz" secondAttribute="trailing" constant="10" id="fdA-8J-e6z"/>
  2933. <constraint firstItem="X1a-SM-JfS" firstAttribute="centerY" secondItem="Z5N-x4-lJz" secondAttribute="centerY" id="kMV-Yv-que"/>
  2934. <constraint firstItem="Z5N-x4-lJz" firstAttribute="centerY" secondItem="2pk-ia-to3" secondAttribute="centerY" id="m01-DU-2Rx"/>
  2935. <constraint firstItem="J3Y-nv-lQm" firstAttribute="top" secondItem="45i-Ay-Vvd" secondAttribute="bottom" constant="5" id="q9a-ap-ZVN"/>
  2936. <constraint firstItem="45i-Ay-Vvd" firstAttribute="leading" secondItem="F6e-wy-n2v" secondAttribute="trailing" constant="3" id="sNt-RH-tsH"/>
  2937. <constraint firstItem="X1a-SM-JfS" firstAttribute="leading" secondItem="H8G-px-bJA" secondAttribute="trailing" constant="10" id="tRn-Wu-kWT"/>
  2938. </constraints>
  2939. </view>
  2940. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="backgound.png" translatesAutoresizingMaskIntoConstraints="NO" id="9Ns-Us-Hfb">
  2941. <rect key="frame" x="0.0" y="105" width="428" height="821"/>
  2942. </imageView>
  2943. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="dP5-Xk-fmP" userLabel="VDeposit">
  2944. <rect key="frame" x="22" y="140" width="384" height="670"/>
  2945. <subviews>
  2946. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="EIi-fA-r7U">
  2947. <rect key="frame" x="0.0" y="0.0" width="384" height="52"/>
  2948. <color key="backgroundColor" systemColor="systemGray2Color"/>
  2949. <color key="tintColor" systemColor="systemGray2Color"/>
  2950. <constraints>
  2951. <constraint firstAttribute="height" constant="52" id="tvb-V1-iBd"/>
  2952. </constraints>
  2953. </imageView>
  2954. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="KHb-VM-s1p">
  2955. <rect key="frame" x="0.0" y="0.0" width="128" height="52"/>
  2956. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  2957. <constraints>
  2958. <constraint firstAttribute="height" constant="52" id="YqD-Ia-8gu"/>
  2959. <constraint firstAttribute="width" constant="128" id="gVy-Al-Ax4"/>
  2960. </constraints>
  2961. <fontDescription key="fontDescription" type="system" pointSize="21"/>
  2962. <state key="normal" title="គណនីខ្ញុំ">
  2963. <color key="titleColor" systemColor="labelColor"/>
  2964. </state>
  2965. <connections>
  2966. <action selector="myAccountClick:" destination="BD3-6h-Rzp" eventType="touchUpInside" id="Pr0-aE-HkW"/>
  2967. </connections>
  2968. </button>
  2969. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="lsc-w2-zOP">
  2970. <rect key="frame" x="128" y="0.0" width="128" height="52"/>
  2971. <fontDescription key="fontDescription" type="system" pointSize="21"/>
  2972. <state key="normal" title="ការដកប្រាក់">
  2973. <color key="titleColor" systemColor="labelColor"/>
  2974. </state>
  2975. <connections>
  2976. <action selector="withdrawClick:" destination="BD3-6h-Rzp" eventType="touchUpInside" id="iwV-Q8-OEd"/>
  2977. </connections>
  2978. </button>
  2979. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="gcf-fU-sWo">
  2980. <rect key="frame" x="256" y="0.0" width="128" height="52"/>
  2981. <fontDescription key="fontDescription" type="system" pointSize="21"/>
  2982. <state key="normal" title="ការដាក់ប្រាក់">
  2983. <color key="titleColor" systemColor="labelColor"/>
  2984. </state>
  2985. <connections>
  2986. <action selector="depositClick:" destination="BD3-6h-Rzp" eventType="touchUpInside" id="W2W-XF-Ciq"/>
  2987. </connections>
  2988. </button>
  2989. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="bhq-Hj-5KI" userLabel="VDeposit">
  2990. <rect key="frame" x="0.0" y="51" width="384" height="467"/>
  2991. <subviews>
  2992. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="សូមជ្រើសរើសឈ្មោះធនាគារ" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Nt7-LU-pjI">
  2993. <rect key="frame" x="8" y="8" width="197" height="22"/>
  2994. <constraints>
  2995. <constraint firstAttribute="height" constant="22" id="tvM-Iq-X5T"/>
  2996. </constraints>
  2997. <fontDescription key="fontDescription" type="system" pointSize="18"/>
  2998. <nil key="textColor"/>
  2999. <nil key="highlightedColor"/>
  3000. </label>
  3001. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="សូមបញ្ចូលទឹកប្រាក់ដែលត្រូវដាក់" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="4w1-ep-KqT">
  3002. <rect key="frame" x="0.0" y="155" width="384" height="28"/>
  3003. <constraints>
  3004. <constraint firstAttribute="height" constant="28" id="hjj-3w-Cm3"/>
  3005. </constraints>
  3006. <fontDescription key="fontDescription" type="system" pointSize="20"/>
  3007. <color key="textColor" red="0.050980392159999999" green="0.023529411760000001" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  3008. <nil key="highlightedColor"/>
  3009. </label>
  3010. <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="z6m-IM-voq">
  3011. <rect key="frame" x="8" y="191" width="368" height="34"/>
  3012. <constraints>
  3013. <constraint firstAttribute="height" constant="34" id="Z3k-6L-Jkj"/>
  3014. </constraints>
  3015. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  3016. <textInputTraits key="textInputTraits"/>
  3017. </textField>
  3018. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" usesAttributedText="YES" lineBreakMode="wordWrap" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="15H-Zo-b7f">
  3019. <rect key="frame" x="8" y="225" width="368" height="120"/>
  3020. <constraints>
  3021. <constraint firstAttribute="height" constant="120" id="JWn-he-IVS"/>
  3022. </constraints>
  3023. <attributedString key="attributedText">
  3024. <fragment content="សូមពិនិត្យឈ្មោះធានាគារ">
  3025. <attributes>
  3026. <color key="NSColor" name="textColor" catalog="System" colorSpace="catalog"/>
  3027. <font key="NSFont" size="18" name="KhmerSangamMN"/>
  3028. <paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0"/>
  3029. </attributes>
  3030. </fragment>
  3031. <fragment content=" ">
  3032. <attributes>
  3033. <color key="NSColor" name="textColor" catalog="System" colorSpace="catalog"/>
  3034. <font key="NSFont" metaFont="system" size="18"/>
  3035. <paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0"/>
  3036. </attributes>
  3037. </fragment>
  3038. <fragment content="លេខគណនី">
  3039. <attributes>
  3040. <color key="NSColor" name="textColor" catalog="System" colorSpace="catalog"/>
  3041. <font key="NSFont" size="18" name="KhmerSangamMN"/>
  3042. <paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0"/>
  3043. </attributes>
  3044. </fragment>
  3045. <fragment content=" ">
  3046. <attributes>
  3047. <color key="NSColor" name="textColor" catalog="System" colorSpace="catalog"/>
  3048. <font key="NSFont" metaFont="system" size="18"/>
  3049. <paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0"/>
  3050. </attributes>
  3051. </fragment>
  3052. <fragment content="និងឈ្មោះគណនី">
  3053. <attributes>
  3054. <color key="NSColor" name="textColor" catalog="System" colorSpace="catalog"/>
  3055. <font key="NSFont" size="18" name="KhmerSangamMN"/>
  3056. <paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0"/>
  3057. </attributes>
  3058. </fragment>
  3059. <fragment content=" ">
  3060. <attributes>
  3061. <color key="NSColor" name="textColor" catalog="System" colorSpace="catalog"/>
  3062. <font key="NSFont" metaFont="system" size="18"/>
  3063. <paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0"/>
  3064. </attributes>
  3065. </fragment>
  3066. <fragment content="របស់អ្នកអោយបានច្បាស់ មុននិងធ្វើការបាញ់ទឹកប្រាក់របស់អ្នកចេញពីកុងរបស់អ្នក។">
  3067. <attributes>
  3068. <color key="NSColor" name="textColor" catalog="System" colorSpace="catalog"/>
  3069. <font key="NSFont" size="18" name="KhmerSangamMN"/>
  3070. <paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0"/>
  3071. </attributes>
  3072. </fragment>
  3073. </attributedString>
  3074. <nil key="highlightedColor"/>
  3075. </label>
  3076. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="PMi-OD-Iwx">
  3077. <rect key="frame" x="115" y="357" width="154" height="35"/>
  3078. <color key="backgroundColor" red="0.36078431370000003" green="0.73725490199999999" blue="0.062745098040000002" alpha="1" colorSpace="calibratedRGB"/>
  3079. <constraints>
  3080. <constraint firstAttribute="width" constant="154" id="SRh-5q-35E"/>
  3081. <constraint firstAttribute="height" constant="35" id="xKg-nt-M3R"/>
  3082. </constraints>
  3083. <fontDescription key="fontDescription" type="system" pointSize="18"/>
  3084. <state key="normal">
  3085. <color key="titleColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  3086. </state>
  3087. <connections>
  3088. <action selector="sendDepositMoney:" destination="BD3-6h-Rzp" eventType="touchUpInside" id="WJi-rg-HVh"/>
  3089. </connections>
  3090. </button>
  3091. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="9zz-Fj-l2e">
  3092. <rect key="frame" x="115" y="417" width="154" height="35"/>
  3093. <color key="backgroundColor" systemColor="systemRedColor"/>
  3094. <constraints>
  3095. <constraint firstAttribute="height" constant="35" id="olU-fY-9ac"/>
  3096. <constraint firstAttribute="width" constant="154" id="y3g-N6-yqY"/>
  3097. </constraints>
  3098. <connections>
  3099. <action selector="btnDepositLogout:" destination="BD3-6h-Rzp" eventType="touchUpInside" id="Akv-4u-C9s"/>
  3100. </connections>
  3101. </button>
  3102. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="m0v-pC-u41">
  3103. <rect key="frame" x="8" y="404" width="368" height="1"/>
  3104. <color key="backgroundColor" systemColor="labelColor"/>
  3105. <constraints>
  3106. <constraint firstAttribute="height" constant="1" id="TKX-Il-9aF"/>
  3107. </constraints>
  3108. </view>
  3109. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="bluetooth sign out.png" translatesAutoresizingMaskIntoConstraints="NO" id="BgH-W3-dQw">
  3110. <rect key="frame" x="127" y="422" width="130" height="25"/>
  3111. <constraints>
  3112. <constraint firstAttribute="width" constant="130" id="JBB-Df-1e5"/>
  3113. <constraint firstAttribute="height" constant="25" id="m6B-kk-dNL"/>
  3114. </constraints>
  3115. </imageView>
  3116. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="បញ្ជូន" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="7S8-uE-jeO">
  3117. <rect key="frame" x="170" y="361" width="37" height="23"/>
  3118. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3119. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3120. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  3121. <nil key="highlightedColor"/>
  3122. </label>
  3123. <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="H0E-9I-9bH">
  3124. <rect key="frame" x="8" y="38" width="368" height="34"/>
  3125. <constraints>
  3126. <constraint firstAttribute="height" constant="34" id="e3v-Ry-oxQ"/>
  3127. <constraint firstAttribute="width" constant="368" id="eZV-hL-Uge"/>
  3128. </constraints>
  3129. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  3130. <textInputTraits key="textInputTraits"/>
  3131. </textField>
  3132. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="លេខគណនី" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="DJ8-dD-jgQ">
  3133. <rect key="frame" x="60" y="82" width="81" height="22"/>
  3134. <constraints>
  3135. <constraint firstAttribute="height" constant="22" id="Rfw-Xv-vg9"/>
  3136. <constraint firstAttribute="width" constant="81" id="TzX-iU-UCB"/>
  3137. </constraints>
  3138. <fontDescription key="fontDescription" type="system" pointSize="18"/>
  3139. <nil key="textColor"/>
  3140. <nil key="highlightedColor"/>
  3141. </label>
  3142. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ឈ្មោះគណនី" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="awE-Wm-5do">
  3143. <rect key="frame" x="52" y="116" width="89" height="22"/>
  3144. <fontDescription key="fontDescription" type="system" pointSize="18"/>
  3145. <nil key="textColor"/>
  3146. <nil key="highlightedColor"/>
  3147. </label>
  3148. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Long Theara" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="GeF-vh-2vJ">
  3149. <rect key="frame" x="149" y="114" width="130" height="26"/>
  3150. <fontDescription key="fontDescription" type="system" weight="black" pointSize="21"/>
  3151. <nil key="highlightedColor"/>
  3152. </label>
  3153. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="000 345 678" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="BIf-tf-8PY">
  3154. <rect key="frame" x="149" y="80" width="139" height="26"/>
  3155. <constraints>
  3156. <constraint firstAttribute="width" constant="139" id="FOF-eB-cHC"/>
  3157. </constraints>
  3158. <fontDescription key="fontDescription" type="system" weight="black" pointSize="21"/>
  3159. <nil key="highlightedColor"/>
  3160. </label>
  3161. </subviews>
  3162. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  3163. <constraints>
  3164. <constraint firstItem="9zz-Fj-l2e" firstAttribute="leading" secondItem="PMi-OD-Iwx" secondAttribute="leading" id="2XX-1X-Hom"/>
  3165. <constraint firstItem="15H-Zo-b7f" firstAttribute="top" secondItem="z6m-IM-voq" secondAttribute="bottom" id="41Y-RK-aNd"/>
  3166. <constraint firstItem="H0E-9I-9bH" firstAttribute="leading" secondItem="Nt7-LU-pjI" secondAttribute="leading" id="4H9-01-zha"/>
  3167. <constraint firstItem="GeF-vh-2vJ" firstAttribute="leading" secondItem="BIf-tf-8PY" secondAttribute="leading" id="4a5-J9-oW5"/>
  3168. <constraint firstItem="4w1-ep-KqT" firstAttribute="top" secondItem="GeF-vh-2vJ" secondAttribute="bottom" constant="15" id="4o4-RB-90d"/>
  3169. <constraint firstItem="BgH-W3-dQw" firstAttribute="centerX" secondItem="bhq-Hj-5KI" secondAttribute="centerX" id="6MS-nd-1zt"/>
  3170. <constraint firstItem="Nt7-LU-pjI" firstAttribute="leading" secondItem="bhq-Hj-5KI" secondAttribute="leading" constant="8" id="9gy-c2-59j"/>
  3171. <constraint firstItem="z6m-IM-voq" firstAttribute="leading" secondItem="bhq-Hj-5KI" secondAttribute="leading" constant="8" id="Aqn-jU-X4Y"/>
  3172. <constraint firstItem="PMi-OD-Iwx" firstAttribute="top" secondItem="15H-Zo-b7f" secondAttribute="bottom" constant="12" id="CEw-gQ-q3V"/>
  3173. <constraint firstItem="GeF-vh-2vJ" firstAttribute="top" secondItem="BIf-tf-8PY" secondAttribute="bottom" constant="8" id="EFh-Z7-Mgq"/>
  3174. <constraint firstItem="z6m-IM-voq" firstAttribute="top" secondItem="4w1-ep-KqT" secondAttribute="bottom" constant="8" id="Egx-z2-tiD"/>
  3175. <constraint firstAttribute="trailing" secondItem="4w1-ep-KqT" secondAttribute="trailing" id="Nus-Kp-eIj"/>
  3176. <constraint firstItem="GeF-vh-2vJ" firstAttribute="leading" secondItem="awE-Wm-5do" secondAttribute="trailing" constant="8" id="Oob-Bl-OFN"/>
  3177. <constraint firstItem="BgH-W3-dQw" firstAttribute="centerY" secondItem="9zz-Fj-l2e" secondAttribute="centerY" id="PcO-na-nqF"/>
  3178. <constraint firstItem="H0E-9I-9bH" firstAttribute="top" secondItem="Nt7-LU-pjI" secondAttribute="bottom" constant="8" symbolic="YES" id="SNY-9f-8hV"/>
  3179. <constraint firstItem="BIf-tf-8PY" firstAttribute="leading" secondItem="DJ8-dD-jgQ" secondAttribute="trailing" constant="8" id="SbK-g5-Jr8"/>
  3180. <constraint firstItem="DJ8-dD-jgQ" firstAttribute="leading" secondItem="bhq-Hj-5KI" secondAttribute="leading" constant="60" id="UmJ-2G-kae"/>
  3181. <constraint firstItem="awE-Wm-5do" firstAttribute="centerY" secondItem="GeF-vh-2vJ" secondAttribute="centerY" id="WPU-DH-d0M"/>
  3182. <constraint firstItem="m0v-pC-u41" firstAttribute="leading" secondItem="bhq-Hj-5KI" secondAttribute="leading" constant="8" id="XwS-gZ-czP"/>
  3183. <constraint firstAttribute="trailing" secondItem="z6m-IM-voq" secondAttribute="trailing" constant="8" id="Zht-ex-33y"/>
  3184. <constraint firstAttribute="trailing" secondItem="m0v-pC-u41" secondAttribute="trailing" constant="8" id="bPR-eN-oU0"/>
  3185. <constraint firstItem="PMi-OD-Iwx" firstAttribute="centerX" secondItem="bhq-Hj-5KI" secondAttribute="centerX" id="bQ1-eu-IKz"/>
  3186. <constraint firstItem="DJ8-dD-jgQ" firstAttribute="top" secondItem="H0E-9I-9bH" secondAttribute="bottom" constant="10" id="dYb-Tk-QXf"/>
  3187. <constraint firstItem="15H-Zo-b7f" firstAttribute="leading" secondItem="bhq-Hj-5KI" secondAttribute="leading" constant="8" id="eYe-yU-aSZ"/>
  3188. <constraint firstItem="m0v-pC-u41" firstAttribute="top" secondItem="PMi-OD-Iwx" secondAttribute="bottom" constant="12" id="g7H-B6-eDL"/>
  3189. <constraint firstItem="BIf-tf-8PY" firstAttribute="centerY" secondItem="DJ8-dD-jgQ" secondAttribute="centerY" id="k8k-ln-mHE"/>
  3190. <constraint firstAttribute="trailing" secondItem="15H-Zo-b7f" secondAttribute="trailing" constant="8" id="lEj-Ii-3ew"/>
  3191. <constraint firstItem="9zz-Fj-l2e" firstAttribute="top" secondItem="m0v-pC-u41" secondAttribute="bottom" constant="12" id="loy-Bg-GQ8"/>
  3192. <constraint firstItem="4w1-ep-KqT" firstAttribute="leading" secondItem="bhq-Hj-5KI" secondAttribute="leading" id="rxc-HU-Fyj"/>
  3193. <constraint firstAttribute="height" constant="467" id="u1Z-rN-InO"/>
  3194. <constraint firstItem="Nt7-LU-pjI" firstAttribute="top" secondItem="bhq-Hj-5KI" secondAttribute="top" constant="8" id="uYd-Kh-4nt"/>
  3195. </constraints>
  3196. </view>
  3197. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="zuS-z8-gMb" userLabel="VWithdraw">
  3198. <rect key="frame" x="0.0" y="50" width="384" height="388"/>
  3199. <subviews>
  3200. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ឈ្មោះធានាគារ ឈ្មោះគណនី និងលេខគណនីរបស់អ្នក" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="V11-rg-bA0">
  3201. <rect key="frame" x="8" y="10" width="357" height="22"/>
  3202. <constraints>
  3203. <constraint firstAttribute="height" constant="22" id="Xmg-qY-dIx"/>
  3204. </constraints>
  3205. <fontDescription key="fontDescription" type="system" pointSize="18"/>
  3206. <nil key="textColor"/>
  3207. <nil key="highlightedColor"/>
  3208. </label>
  3209. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="សូមបញ្ចូលទឹកប្រាក់ដែលត្រូវដក" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="1Mt-gD-DSA">
  3210. <rect key="frame" x="8" y="135" width="368" height="28"/>
  3211. <constraints>
  3212. <constraint firstAttribute="height" constant="28" id="ZGh-PN-xu7"/>
  3213. </constraints>
  3214. <fontDescription key="fontDescription" type="system" pointSize="18"/>
  3215. <nil key="textColor"/>
  3216. <nil key="highlightedColor"/>
  3217. </label>
  3218. <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="eOU-Fc-M9X">
  3219. <rect key="frame" x="8" y="171" width="368" height="34"/>
  3220. <constraints>
  3221. <constraint firstAttribute="width" constant="368" id="2cw-xB-cVs"/>
  3222. <constraint firstAttribute="height" constant="34" id="rsD-Gi-N8g"/>
  3223. </constraints>
  3224. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  3225. <textInputTraits key="textInputTraits"/>
  3226. </textField>
  3227. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ABA" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="HDU-1S-qHB">
  3228. <rect key="frame" x="8" y="40" width="368" height="26"/>
  3229. <constraints>
  3230. <constraint firstAttribute="height" constant="26" id="FGz-5R-SLG"/>
  3231. </constraints>
  3232. <fontDescription key="fontDescription" type="system" weight="black" pointSize="21"/>
  3233. <nil key="textColor"/>
  3234. <nil key="highlightedColor"/>
  3235. </label>
  3236. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Long Theara" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="mwG-L9-2GB">
  3237. <rect key="frame" x="8" y="67" width="368" height="26"/>
  3238. <constraints>
  3239. <constraint firstAttribute="height" constant="26" id="tmy-mr-FlQ"/>
  3240. </constraints>
  3241. <fontDescription key="fontDescription" type="system" weight="black" pointSize="21"/>
  3242. <color key="textColor" systemColor="linkColor"/>
  3243. <nil key="highlightedColor"/>
  3244. </label>
  3245. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="000 345 678" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="RSE-8h-mDF">
  3246. <rect key="frame" x="8" y="94" width="368" height="26"/>
  3247. <constraints>
  3248. <constraint firstAttribute="height" constant="26" id="VBy-zc-TaC"/>
  3249. </constraints>
  3250. <fontDescription key="fontDescription" type="system" weight="black" pointSize="21"/>
  3251. <color key="textColor" systemColor="linkColor"/>
  3252. <nil key="highlightedColor"/>
  3253. </label>
  3254. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" usesAttributedText="YES" lineBreakMode="wordWrap" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="bwe-PV-aD2">
  3255. <rect key="frame" x="8" y="215" width="368" height="60"/>
  3256. <constraints>
  3257. <constraint firstAttribute="height" constant="60" id="fZw-7B-hUK"/>
  3258. </constraints>
  3259. <attributedString key="attributedText">
  3260. <fragment content="សូមពិនិត្យឈ្មោះធានាគារ លេខគណនី និងឈ្មោះគណនី របស់អ្នកអោយច្បាស់មុននឹងចុចបញ្ជូន">
  3261. <attributes>
  3262. <font key="NSFont" metaFont="system" size="18"/>
  3263. <paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0"/>
  3264. </attributes>
  3265. </fragment>
  3266. </attributedString>
  3267. <nil key="highlightedColor"/>
  3268. </label>
  3269. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="niH-SZ-sW2">
  3270. <rect key="frame" x="115" y="280" width="154" height="35"/>
  3271. <color key="backgroundColor" red="0.36078431370000003" green="0.73725490199999999" blue="0.062745098040000002" alpha="1" colorSpace="calibratedRGB"/>
  3272. <constraints>
  3273. <constraint firstAttribute="height" constant="35" id="8Z0-ov-EcI"/>
  3274. <constraint firstAttribute="width" constant="154" id="xSZ-co-BaO"/>
  3275. </constraints>
  3276. <fontDescription key="fontDescription" type="system" pointSize="18"/>
  3277. <state key="normal">
  3278. <color key="titleColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  3279. </state>
  3280. <connections>
  3281. <action selector="sendWithDrawMoney:" destination="BD3-6h-Rzp" eventType="touchUpInside" id="81X-Fn-UNz"/>
  3282. </connections>
  3283. </button>
  3284. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Y95-Rm-gAq">
  3285. <rect key="frame" x="115" y="338" width="154" height="35"/>
  3286. <color key="backgroundColor" systemColor="systemRedColor"/>
  3287. <constraints>
  3288. <constraint firstAttribute="width" constant="154" id="94P-J5-VLc"/>
  3289. <constraint firstAttribute="height" constant="35" id="YIB-Z9-Hfl"/>
  3290. </constraints>
  3291. <connections>
  3292. <action selector="btnWithDrawLogout:" destination="BD3-6h-Rzp" eventType="touchUpInside" id="Rjq-zz-wuh"/>
  3293. </connections>
  3294. </button>
  3295. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="3wq-cI-PN6">
  3296. <rect key="frame" x="8" y="326" width="368" height="1"/>
  3297. <color key="backgroundColor" systemColor="labelColor"/>
  3298. <constraints>
  3299. <constraint firstAttribute="height" constant="1" id="IYq-b3-Kdn"/>
  3300. <constraint firstAttribute="width" constant="368" id="SbC-x6-A1N"/>
  3301. </constraints>
  3302. </view>
  3303. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="bluetooth sign out.png" translatesAutoresizingMaskIntoConstraints="NO" id="K1Q-5G-Qs3">
  3304. <rect key="frame" x="127" y="343" width="130" height="25"/>
  3305. <constraints>
  3306. <constraint firstAttribute="width" constant="130" id="e33-Ie-lKR"/>
  3307. <constraint firstAttribute="height" constant="25" id="lOl-Ow-OVJ"/>
  3308. </constraints>
  3309. </imageView>
  3310. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="បញ្ជូន" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Wkm-wE-DT4">
  3311. <rect key="frame" x="170" y="283" width="37" height="23"/>
  3312. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3313. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3314. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  3315. <nil key="highlightedColor"/>
  3316. </label>
  3317. </subviews>
  3318. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  3319. <constraints>
  3320. <constraint firstItem="Y95-Rm-gAq" firstAttribute="leading" secondItem="niH-SZ-sW2" secondAttribute="leading" id="28c-yB-rNE"/>
  3321. <constraint firstItem="niH-SZ-sW2" firstAttribute="centerX" secondItem="zuS-z8-gMb" secondAttribute="centerX" id="4Fc-tz-RY0"/>
  3322. <constraint firstItem="bwe-PV-aD2" firstAttribute="leading" secondItem="zuS-z8-gMb" secondAttribute="leading" constant="8" id="8TO-4F-4DS"/>
  3323. <constraint firstItem="HDU-1S-qHB" firstAttribute="top" secondItem="V11-rg-bA0" secondAttribute="bottom" constant="8" symbolic="YES" id="C3l-vw-HH2"/>
  3324. <constraint firstAttribute="trailing" secondItem="mwG-L9-2GB" secondAttribute="trailing" constant="8" id="Gjp-QV-9D7"/>
  3325. <constraint firstItem="Y95-Rm-gAq" firstAttribute="top" secondItem="3wq-cI-PN6" secondAttribute="bottom" constant="11" id="Hk9-ET-U7R"/>
  3326. <constraint firstItem="HDU-1S-qHB" firstAttribute="leading" secondItem="zuS-z8-gMb" secondAttribute="leading" constant="8" id="Hz2-KW-jL6"/>
  3327. <constraint firstItem="K1Q-5G-Qs3" firstAttribute="centerY" secondItem="Y95-Rm-gAq" secondAttribute="centerY" id="MO7-V5-a6a"/>
  3328. <constraint firstItem="RSE-8h-mDF" firstAttribute="leading" secondItem="zuS-z8-gMb" secondAttribute="leading" constant="8" id="MPG-eJ-Cd2"/>
  3329. <constraint firstItem="3wq-cI-PN6" firstAttribute="top" secondItem="niH-SZ-sW2" secondAttribute="bottom" constant="11" id="P0c-NY-zge"/>
  3330. <constraint firstItem="eOU-Fc-M9X" firstAttribute="top" secondItem="1Mt-gD-DSA" secondAttribute="bottom" constant="8" id="Q43-J5-8So"/>
  3331. <constraint firstItem="V11-rg-bA0" firstAttribute="top" secondItem="zuS-z8-gMb" secondAttribute="top" constant="10" id="Qvg-ur-DbM"/>
  3332. <constraint firstAttribute="height" constant="388" id="Tpe-F4-RpT"/>
  3333. <constraint firstItem="1Mt-gD-DSA" firstAttribute="top" secondItem="RSE-8h-mDF" secondAttribute="bottom" constant="15" id="XNi-8j-Vqz"/>
  3334. <constraint firstAttribute="trailing" secondItem="HDU-1S-qHB" secondAttribute="trailing" constant="8" id="ak6-Fk-kdc"/>
  3335. <constraint firstItem="niH-SZ-sW2" firstAttribute="top" secondItem="bwe-PV-aD2" secondAttribute="bottom" constant="5" id="e2u-FJ-3TR"/>
  3336. <constraint firstItem="bwe-PV-aD2" firstAttribute="top" secondItem="eOU-Fc-M9X" secondAttribute="bottom" constant="10" id="eKu-52-XvT"/>
  3337. <constraint firstItem="3wq-cI-PN6" firstAttribute="centerX" secondItem="zuS-z8-gMb" secondAttribute="centerX" id="gHe-7n-ty9"/>
  3338. <constraint firstAttribute="trailing" secondItem="bwe-PV-aD2" secondAttribute="trailing" constant="8" id="jU6-AD-bNC"/>
  3339. <constraint firstAttribute="trailing" secondItem="1Mt-gD-DSA" secondAttribute="trailing" constant="8" id="juH-AT-MOR"/>
  3340. <constraint firstItem="1Mt-gD-DSA" firstAttribute="leading" secondItem="zuS-z8-gMb" secondAttribute="leading" constant="8" id="kCd-Hw-lEC"/>
  3341. <constraint firstItem="K1Q-5G-Qs3" firstAttribute="centerX" secondItem="zuS-z8-gMb" secondAttribute="centerX" id="kNb-rh-a7X"/>
  3342. <constraint firstItem="eOU-Fc-M9X" firstAttribute="centerX" secondItem="zuS-z8-gMb" secondAttribute="centerX" id="ljJ-or-Fz4"/>
  3343. <constraint firstAttribute="trailing" secondItem="RSE-8h-mDF" secondAttribute="trailing" constant="8" id="nRZ-04-VCo"/>
  3344. <constraint firstItem="RSE-8h-mDF" firstAttribute="top" secondItem="mwG-L9-2GB" secondAttribute="bottom" constant="1" id="p3t-7P-6YT"/>
  3345. <constraint firstItem="V11-rg-bA0" firstAttribute="leading" secondItem="zuS-z8-gMb" secondAttribute="leading" constant="8" id="qZC-P8-BBg"/>
  3346. <constraint firstItem="mwG-L9-2GB" firstAttribute="leading" secondItem="zuS-z8-gMb" secondAttribute="leading" constant="8" id="r6h-Qy-OcV"/>
  3347. <constraint firstItem="mwG-L9-2GB" firstAttribute="top" secondItem="HDU-1S-qHB" secondAttribute="bottom" constant="1" id="sSP-jT-ExX"/>
  3348. </constraints>
  3349. </view>
  3350. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="D6U-PY-jOY" userLabel="VMyAccount">
  3351. <rect key="frame" x="0.0" y="52" width="384" height="618"/>
  3352. <subviews>
  3353. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="text new pwd_black.png" translatesAutoresizingMaskIntoConstraints="NO" id="cKA-RH-Xet">
  3354. <rect key="frame" x="20" y="8" width="70" height="30"/>
  3355. <constraints>
  3356. <constraint firstAttribute="height" constant="30" id="crE-tv-tfc"/>
  3357. <constraint firstAttribute="width" constant="70" id="jLo-1e-J7G"/>
  3358. </constraints>
  3359. </imageView>
  3360. <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="wIX-1H-PUP">
  3361. <rect key="frame" x="20" y="40" width="336" height="34"/>
  3362. <constraints>
  3363. <constraint firstAttribute="width" constant="336" id="WQW-jQ-7OD"/>
  3364. <constraint firstAttribute="height" constant="34" id="eft-QB-QeM"/>
  3365. </constraints>
  3366. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  3367. <textInputTraits key="textInputTraits"/>
  3368. </textField>
  3369. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="text confirm new.png" translatesAutoresizingMaskIntoConstraints="NO" id="Iys-TY-4hS">
  3370. <rect key="frame" x="20" y="79" width="112" height="30"/>
  3371. <constraints>
  3372. <constraint firstAttribute="height" constant="30" id="Jef-xS-tkB"/>
  3373. <constraint firstAttribute="width" constant="112" id="zGk-dP-FoT"/>
  3374. </constraints>
  3375. </imageView>
  3376. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="kE9-j3-dmH">
  3377. <rect key="frame" x="127" y="153" width="130" height="35"/>
  3378. <color key="backgroundColor" red="0.36078431370000003" green="0.73725490199999999" blue="0.062745098040000002" alpha="1" colorSpace="calibratedRGB"/>
  3379. <constraints>
  3380. <constraint firstAttribute="height" constant="35" id="r6w-Fq-QgE"/>
  3381. <constraint firstAttribute="width" constant="130" id="xcd-e8-AoT"/>
  3382. </constraints>
  3383. </button>
  3384. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="RNO-yR-pig">
  3385. <rect key="frame" x="24" y="203" width="336" height="1"/>
  3386. <color key="backgroundColor" systemColor="labelColor"/>
  3387. <constraints>
  3388. <constraint firstAttribute="height" constant="1" id="Ye1-fh-tKi"/>
  3389. <constraint firstAttribute="width" constant="336" id="hkw-gU-5jU"/>
  3390. </constraints>
  3391. </view>
  3392. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" usesAttributedText="YES" lineBreakMode="clip" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="HnJ-Qp-TVh">
  3393. <rect key="frame" x="20" y="214" width="336" height="75"/>
  3394. <constraints>
  3395. <constraint firstAttribute="width" constant="336" id="FFc-HP-iCY"/>
  3396. <constraint firstAttribute="height" constant="75" id="P5C-sn-473"/>
  3397. </constraints>
  3398. <attributedString key="attributedText">
  3399. <fragment content="សូមបញ្ចូលពត៌មានធានាគារ របស់អ្នកដើម្បីងាយស្រួលក្នុងការដក និង ដាក់ប្រាក់រហ័ស">
  3400. <attributes>
  3401. <color key="NSColor" name="textColor" catalog="System" colorSpace="catalog"/>
  3402. <font key="NSFont" size="20" name="KhmerSangamMN"/>
  3403. </attributes>
  3404. </fragment>
  3405. </attributedString>
  3406. <nil key="highlightedColor"/>
  3407. </label>
  3408. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ឈ្មោះធានាគាររបស់អ្នក" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ecc-EV-QLP">
  3409. <rect key="frame" x="20" y="299" width="175" height="24"/>
  3410. <fontDescription key="fontDescription" type="system" pointSize="20"/>
  3411. <color key="textColor" systemColor="linkColor"/>
  3412. <nil key="highlightedColor"/>
  3413. </label>
  3414. <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="dfj-3T-nCt" customClass="DropDown" customModule="iOSDropDown">
  3415. <rect key="frame" x="20" y="328" width="336" height="34"/>
  3416. <constraints>
  3417. <constraint firstAttribute="width" constant="336" id="5RH-Nd-lbe"/>
  3418. <constraint firstAttribute="height" constant="34" id="IvG-S6-E01"/>
  3419. </constraints>
  3420. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3421. <textInputTraits key="textInputTraits"/>
  3422. </textField>
  3423. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ឈ្មោះគណនីរបស់អ្នក" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="9Yg-Ex-oez">
  3424. <rect key="frame" x="20" y="370" width="161" height="24"/>
  3425. <constraints>
  3426. <constraint firstAttribute="width" constant="161" id="0JV-2h-tRA"/>
  3427. </constraints>
  3428. <fontDescription key="fontDescription" type="system" pointSize="20"/>
  3429. <color key="textColor" systemColor="linkColor"/>
  3430. <nil key="highlightedColor"/>
  3431. </label>
  3432. <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="7yp-eN-fPe">
  3433. <rect key="frame" x="20" y="399" width="338" height="34"/>
  3434. <constraints>
  3435. <constraint firstAttribute="height" constant="34" id="P1c-5s-QKW"/>
  3436. <constraint firstAttribute="width" constant="338" id="PDT-R5-iB1"/>
  3437. </constraints>
  3438. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  3439. <textInputTraits key="textInputTraits"/>
  3440. </textField>
  3441. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="លេខគណនីរបស់អ្នក" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="O53-so-jfd">
  3442. <rect key="frame" x="20" y="441" width="151" height="24"/>
  3443. <fontDescription key="fontDescription" type="system" pointSize="20"/>
  3444. <color key="textColor" systemColor="linkColor"/>
  3445. <nil key="highlightedColor"/>
  3446. </label>
  3447. <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="5ND-9z-eA4">
  3448. <rect key="frame" x="20" y="470" width="338" height="34"/>
  3449. <constraints>
  3450. <constraint firstAttribute="height" constant="34" id="hvb-JU-p9o"/>
  3451. <constraint firstAttribute="width" constant="338" id="zf2-wf-Iyw"/>
  3452. </constraints>
  3453. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  3454. <textInputTraits key="textInputTraits"/>
  3455. </textField>
  3456. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="IZh-RJ-yjy">
  3457. <rect key="frame" x="127" y="519" width="130" height="35"/>
  3458. <color key="backgroundColor" red="0.36078431370000003" green="0.73725490199999999" blue="0.062745098040000002" alpha="1" colorSpace="calibratedRGB"/>
  3459. <constraints>
  3460. <constraint firstAttribute="width" constant="130" id="2zb-wq-FyB"/>
  3461. <constraint firstAttribute="height" constant="35" id="X9g-Q7-c7o"/>
  3462. </constraints>
  3463. </button>
  3464. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Zce-7g-XRv">
  3465. <rect key="frame" x="127" y="573" width="130" height="35"/>
  3466. <color key="backgroundColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
  3467. <constraints>
  3468. <constraint firstAttribute="height" constant="35" id="DQY-rg-Hj0"/>
  3469. <constraint firstAttribute="width" constant="130" id="tSd-al-mcB"/>
  3470. </constraints>
  3471. <connections>
  3472. <action selector="btnMyAccLogout:" destination="BD3-6h-Rzp" eventType="touchUpInside" id="c2W-T0-PSR"/>
  3473. </connections>
  3474. </button>
  3475. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="text save.png" translatesAutoresizingMaskIntoConstraints="NO" id="cTI-Tv-bX2">
  3476. <rect key="frame" x="156" y="526.66666666666663" width="72" height="20"/>
  3477. <constraints>
  3478. <constraint firstAttribute="width" constant="72" id="nBV-Oq-DQR"/>
  3479. <constraint firstAttribute="height" constant="20" id="sgU-55-3Ul"/>
  3480. </constraints>
  3481. </imageView>
  3482. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="text save.png" translatesAutoresizingMaskIntoConstraints="NO" id="A5Y-lP-Wh1">
  3483. <rect key="frame" x="156" y="160.66666666666669" width="72" height="20"/>
  3484. <constraints>
  3485. <constraint firstAttribute="height" constant="20" id="Wuk-Ao-bQs"/>
  3486. <constraint firstAttribute="width" constant="72" id="sgF-GL-fPo"/>
  3487. </constraints>
  3488. </imageView>
  3489. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="bluetooth sign out.png" translatesAutoresizingMaskIntoConstraints="NO" id="yU6-JW-kbA">
  3490. <rect key="frame" x="133.66666666666666" y="579.66666666666663" width="117" height="22"/>
  3491. <constraints>
  3492. <constraint firstAttribute="height" constant="22" id="KVW-Yk-yv2"/>
  3493. <constraint firstAttribute="width" constant="117" id="N3O-Ve-gHB"/>
  3494. </constraints>
  3495. </imageView>
  3496. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="ypX-J5-kcM">
  3497. <rect key="frame" x="24" y="563" width="336" height="1"/>
  3498. <color key="backgroundColor" systemColor="labelColor"/>
  3499. <constraints>
  3500. <constraint firstAttribute="width" constant="336" id="JeG-Oz-Tw9"/>
  3501. <constraint firstAttribute="height" constant="1" id="nVy-Yh-r35"/>
  3502. </constraints>
  3503. </view>
  3504. <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="wFk-kF-Ihx">
  3505. <rect key="frame" x="20" y="111" width="336" height="34"/>
  3506. <constraints>
  3507. <constraint firstAttribute="width" constant="336" id="SBo-gf-3GY"/>
  3508. <constraint firstAttribute="height" constant="34" id="njZ-ym-hhs"/>
  3509. </constraints>
  3510. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  3511. <textInputTraits key="textInputTraits"/>
  3512. </textField>
  3513. </subviews>
  3514. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  3515. <constraints>
  3516. <constraint firstItem="cTI-Tv-bX2" firstAttribute="centerY" secondItem="IZh-RJ-yjy" secondAttribute="centerY" id="04r-N3-4e7"/>
  3517. <constraint firstItem="IZh-RJ-yjy" firstAttribute="top" secondItem="5ND-9z-eA4" secondAttribute="bottom" constant="15" id="058-00-kOI"/>
  3518. <constraint firstItem="wIX-1H-PUP" firstAttribute="leading" secondItem="cKA-RH-Xet" secondAttribute="leading" id="2pa-Do-Mhz"/>
  3519. <constraint firstItem="HnJ-Qp-TVh" firstAttribute="leading" secondItem="wFk-kF-Ihx" secondAttribute="leading" id="5A7-EP-cJx"/>
  3520. <constraint firstItem="cTI-Tv-bX2" firstAttribute="centerX" secondItem="D6U-PY-jOY" secondAttribute="centerX" id="6OL-IV-Lwb"/>
  3521. <constraint firstItem="7yp-eN-fPe" firstAttribute="top" secondItem="9Yg-Ex-oez" secondAttribute="bottom" constant="5" id="6b4-35-0qy"/>
  3522. <constraint firstItem="A5Y-lP-Wh1" firstAttribute="centerY" secondItem="kE9-j3-dmH" secondAttribute="centerY" id="8u1-ek-HMj"/>
  3523. <constraint firstItem="Iys-TY-4hS" firstAttribute="leading" secondItem="wIX-1H-PUP" secondAttribute="leading" id="9pp-rP-pOg"/>
  3524. <constraint firstItem="5ND-9z-eA4" firstAttribute="top" secondItem="O53-so-jfd" secondAttribute="bottom" constant="5" id="Da4-S6-bij"/>
  3525. <constraint firstItem="kE9-j3-dmH" firstAttribute="top" secondItem="wFk-kF-Ihx" secondAttribute="bottom" constant="8" symbolic="YES" id="EYA-nS-PzA"/>
  3526. <constraint firstItem="Zce-7g-XRv" firstAttribute="top" secondItem="ypX-J5-kcM" secondAttribute="bottom" constant="9" id="EhM-cw-6bi"/>
  3527. <constraint firstItem="A5Y-lP-Wh1" firstAttribute="centerX" secondItem="D6U-PY-jOY" secondAttribute="centerX" id="Fo2-wJ-mbH"/>
  3528. <constraint firstItem="wIX-1H-PUP" firstAttribute="top" secondItem="cKA-RH-Xet" secondAttribute="bottom" constant="2" id="GKG-GN-Wmg"/>
  3529. <constraint firstItem="O53-so-jfd" firstAttribute="top" secondItem="7yp-eN-fPe" secondAttribute="bottom" constant="8" id="GPl-sD-PRK"/>
  3530. <constraint firstItem="dfj-3T-nCt" firstAttribute="top" secondItem="ecc-EV-QLP" secondAttribute="bottom" constant="5" id="HRz-Gw-SQ9"/>
  3531. <constraint firstItem="5ND-9z-eA4" firstAttribute="leading" secondItem="O53-so-jfd" secondAttribute="leading" id="KgH-IG-XV9"/>
  3532. <constraint firstItem="yU6-JW-kbA" firstAttribute="centerY" secondItem="Zce-7g-XRv" secondAttribute="centerY" id="NNO-Yt-wpZ"/>
  3533. <constraint firstItem="7yp-eN-fPe" firstAttribute="leading" secondItem="9Yg-Ex-oez" secondAttribute="leading" id="OMd-xZ-6c7"/>
  3534. <constraint firstItem="Iys-TY-4hS" firstAttribute="top" secondItem="wIX-1H-PUP" secondAttribute="bottom" constant="5" id="PFZ-4C-14u"/>
  3535. <constraint firstItem="cKA-RH-Xet" firstAttribute="leading" secondItem="D6U-PY-jOY" secondAttribute="leading" constant="20" symbolic="YES" id="Rcd-lD-VFQ"/>
  3536. <constraint firstItem="RNO-yR-pig" firstAttribute="top" secondItem="kE9-j3-dmH" secondAttribute="bottom" constant="15" id="Txj-aF-Eco"/>
  3537. <constraint firstItem="ypX-J5-kcM" firstAttribute="top" secondItem="IZh-RJ-yjy" secondAttribute="bottom" constant="9" id="VWq-Lk-LVs"/>
  3538. <constraint firstItem="wFk-kF-Ihx" firstAttribute="leading" secondItem="Iys-TY-4hS" secondAttribute="leading" id="WJg-1u-nfJ"/>
  3539. <constraint firstItem="9Yg-Ex-oez" firstAttribute="leading" secondItem="dfj-3T-nCt" secondAttribute="leading" id="XQR-Hd-QCM"/>
  3540. <constraint firstItem="IZh-RJ-yjy" firstAttribute="centerX" secondItem="D6U-PY-jOY" secondAttribute="centerX" id="XRj-Ku-z1h"/>
  3541. <constraint firstItem="wFk-kF-Ihx" firstAttribute="top" secondItem="Iys-TY-4hS" secondAttribute="bottom" constant="2" id="cgc-Su-wn6"/>
  3542. <constraint firstItem="kE9-j3-dmH" firstAttribute="centerX" secondItem="D6U-PY-jOY" secondAttribute="centerX" id="iEg-bv-ZYW"/>
  3543. <constraint firstItem="Zce-7g-XRv" firstAttribute="leading" secondItem="IZh-RJ-yjy" secondAttribute="leading" id="o2I-Vs-O15"/>
  3544. <constraint firstItem="O53-so-jfd" firstAttribute="leading" secondItem="7yp-eN-fPe" secondAttribute="leading" id="plG-KQ-wwB"/>
  3545. <constraint firstItem="yU6-JW-kbA" firstAttribute="centerX" secondItem="Zce-7g-XRv" secondAttribute="centerX" id="tag-Oh-Kcd"/>
  3546. <constraint firstItem="9Yg-Ex-oez" firstAttribute="top" secondItem="dfj-3T-nCt" secondAttribute="bottom" constant="8" id="uWL-eI-ta2"/>
  3547. <constraint firstItem="dfj-3T-nCt" firstAttribute="leading" secondItem="ecc-EV-QLP" secondAttribute="leading" id="ual-9B-1Sg"/>
  3548. <constraint firstItem="ecc-EV-QLP" firstAttribute="leading" secondItem="HnJ-Qp-TVh" secondAttribute="leading" id="vOt-gC-xsJ"/>
  3549. <constraint firstItem="cKA-RH-Xet" firstAttribute="top" secondItem="D6U-PY-jOY" secondAttribute="top" constant="8" id="wJe-Vg-PPC"/>
  3550. <constraint firstItem="RNO-yR-pig" firstAttribute="centerX" secondItem="D6U-PY-jOY" secondAttribute="centerX" id="wmf-PI-Z9s"/>
  3551. <constraint firstItem="HnJ-Qp-TVh" firstAttribute="top" secondItem="RNO-yR-pig" secondAttribute="bottom" constant="10" id="wsX-DN-w6r"/>
  3552. <constraint firstItem="ypX-J5-kcM" firstAttribute="centerX" secondItem="D6U-PY-jOY" secondAttribute="centerX" id="yFe-h3-1ME"/>
  3553. <constraint firstItem="ecc-EV-QLP" firstAttribute="top" secondItem="HnJ-Qp-TVh" secondAttribute="bottom" constant="10" id="z9K-QG-by7"/>
  3554. </constraints>
  3555. </view>
  3556. </subviews>
  3557. <constraints>
  3558. <constraint firstAttribute="bottom" secondItem="D6U-PY-jOY" secondAttribute="bottom" id="6MT-LA-4TI"/>
  3559. <constraint firstItem="lsc-w2-zOP" firstAttribute="centerY" secondItem="KHb-VM-s1p" secondAttribute="centerY" id="8Ej-i3-iQO"/>
  3560. <constraint firstItem="KHb-VM-s1p" firstAttribute="leading" secondItem="dP5-Xk-fmP" secondAttribute="leading" id="A92-Wr-xPV"/>
  3561. <constraint firstAttribute="trailing" secondItem="D6U-PY-jOY" secondAttribute="trailing" id="DDg-xV-u3v"/>
  3562. <constraint firstItem="EIi-fA-r7U" firstAttribute="top" secondItem="dP5-Xk-fmP" secondAttribute="top" id="En1-5c-lR3"/>
  3563. <constraint firstItem="zuS-z8-gMb" firstAttribute="top" secondItem="dP5-Xk-fmP" secondAttribute="top" constant="50" id="FjU-en-Pgl"/>
  3564. <constraint firstItem="zuS-z8-gMb" firstAttribute="leading" secondItem="dP5-Xk-fmP" secondAttribute="leading" id="Ido-UC-KN4"/>
  3565. <constraint firstItem="KHb-VM-s1p" firstAttribute="top" secondItem="dP5-Xk-fmP" secondAttribute="top" id="K5v-9U-and"/>
  3566. <constraint firstItem="lsc-w2-zOP" firstAttribute="height" secondItem="KHb-VM-s1p" secondAttribute="height" id="QYe-Om-T4X"/>
  3567. <constraint firstItem="gcf-fU-sWo" firstAttribute="leading" secondItem="lsc-w2-zOP" secondAttribute="trailing" id="UhC-BF-9GS"/>
  3568. <constraint firstItem="bhq-Hj-5KI" firstAttribute="leading" secondItem="dP5-Xk-fmP" secondAttribute="leading" id="V9d-Mv-9Ru"/>
  3569. <constraint firstItem="lsc-w2-zOP" firstAttribute="leading" secondItem="KHb-VM-s1p" secondAttribute="trailing" id="bM3-bB-y4g"/>
  3570. <constraint firstItem="lsc-w2-zOP" firstAttribute="width" secondItem="KHb-VM-s1p" secondAttribute="width" id="c0Q-E2-iaj"/>
  3571. <constraint firstItem="EIi-fA-r7U" firstAttribute="leading" secondItem="dP5-Xk-fmP" secondAttribute="leading" id="dtw-Me-Dms"/>
  3572. <constraint firstAttribute="width" constant="384" id="fHF-Es-rUw"/>
  3573. <constraint firstAttribute="trailing" secondItem="bhq-Hj-5KI" secondAttribute="trailing" id="jXa-gb-5fz"/>
  3574. <constraint firstAttribute="trailing" secondItem="EIi-fA-r7U" secondAttribute="trailing" id="kyu-zB-WLg"/>
  3575. <constraint firstItem="gcf-fU-sWo" firstAttribute="width" secondItem="lsc-w2-zOP" secondAttribute="width" id="m3B-Vt-OBL"/>
  3576. <constraint firstAttribute="height" constant="670" id="mDE-4V-0j4"/>
  3577. <constraint firstItem="bhq-Hj-5KI" firstAttribute="top" secondItem="dP5-Xk-fmP" secondAttribute="top" constant="51" id="mYk-wb-5xA"/>
  3578. <constraint firstItem="gcf-fU-sWo" firstAttribute="centerY" secondItem="lsc-w2-zOP" secondAttribute="centerY" id="nO2-cr-ABX"/>
  3579. <constraint firstAttribute="trailing" secondItem="zuS-z8-gMb" secondAttribute="trailing" id="pPS-pW-3tP"/>
  3580. <constraint firstItem="gcf-fU-sWo" firstAttribute="height" secondItem="lsc-w2-zOP" secondAttribute="height" id="u5r-pe-8OT"/>
  3581. <constraint firstItem="D6U-PY-jOY" firstAttribute="leading" secondItem="dP5-Xk-fmP" secondAttribute="leading" id="x65-q4-67D"/>
  3582. <constraint firstItem="D6U-PY-jOY" firstAttribute="top" secondItem="EIi-fA-r7U" secondAttribute="bottom" id="z32-Tb-2ew"/>
  3583. </constraints>
  3584. </view>
  3585. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="1PS-C3-h09">
  3586. <rect key="frame" x="147" y="855" width="134" height="45"/>
  3587. <constraints>
  3588. <constraint firstAttribute="height" constant="45" id="9V5-ZM-Y7J"/>
  3589. <constraint firstAttribute="width" constant="134" id="rtz-ar-5dk"/>
  3590. </constraints>
  3591. <state key="normal" image="ic_btn_close.png"/>
  3592. <connections>
  3593. <action selector="closeClick:" destination="BD3-6h-Rzp" eventType="touchUpInside" id="gO1-BT-OTt"/>
  3594. </connections>
  3595. </button>
  3596. </subviews>
  3597. <viewLayoutGuide key="safeArea" id="ig4-M1-lcz"/>
  3598. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  3599. <constraints>
  3600. <constraint firstItem="dP5-Xk-fmP" firstAttribute="top" secondItem="z3b-oE-FkN" secondAttribute="bottom" constant="40" id="HZ0-LI-U28"/>
  3601. <constraint firstItem="9Ns-Us-Hfb" firstAttribute="trailing" secondItem="ig4-M1-lcz" secondAttribute="trailing" id="PeH-JJ-kA7"/>
  3602. <constraint firstItem="z3b-oE-FkN" firstAttribute="leading" secondItem="ig4-M1-lcz" secondAttribute="leading" id="SRd-yc-e7o"/>
  3603. <constraint firstItem="z3b-oE-FkN" firstAttribute="trailing" secondItem="ig4-M1-lcz" secondAttribute="trailing" id="XYA-W4-7DT"/>
  3604. <constraint firstItem="9Ns-Us-Hfb" firstAttribute="top" secondItem="z3b-oE-FkN" secondAttribute="bottom" constant="5" id="aEL-on-qRd"/>
  3605. <constraint firstItem="9Ns-Us-Hfb" firstAttribute="leading" secondItem="ig4-M1-lcz" secondAttribute="leading" id="cQm-Jd-RnG"/>
  3606. <constraint firstAttribute="bottom" secondItem="9Ns-Us-Hfb" secondAttribute="bottom" id="dem-Bl-8Sb"/>
  3607. <constraint firstItem="dP5-Xk-fmP" firstAttribute="centerX" secondItem="2Y2-Uq-P5P" secondAttribute="centerX" id="hwu-tH-oUa"/>
  3608. <constraint firstItem="1PS-C3-h09" firstAttribute="centerX" secondItem="2Y2-Uq-P5P" secondAttribute="centerX" id="qmh-Jq-t9M"/>
  3609. <constraint firstAttribute="bottom" secondItem="1PS-C3-h09" secondAttribute="bottom" constant="26" id="wx4-oZ-3ww"/>
  3610. <constraint firstItem="z3b-oE-FkN" firstAttribute="top" secondItem="2Y2-Uq-P5P" secondAttribute="top" id="ymB-z2-2vw"/>
  3611. </constraints>
  3612. </view>
  3613. <navigationItem key="navigationItem" id="2aY-o5-9jr"/>
  3614. <connections>
  3615. <outlet property="bottomConstraintCloseBtn" destination="wx4-oZ-3ww" id="P8d-oR-e6y"/>
  3616. <outlet property="btMyAccount" destination="KHb-VM-s1p" id="VIj-Yg-Rpr"/>
  3617. <outlet property="btnDeposit" destination="gcf-fU-sWo" id="Xh2-Qj-oxE"/>
  3618. <outlet property="btnExitSys" destination="Zce-7g-XRv" id="d5B-hL-If8"/>
  3619. <outlet property="btnExitSysDeposit" destination="9zz-Fj-l2e" id="WXa-Fl-hlK"/>
  3620. <outlet property="btnExitSysWithDraw" destination="Y95-Rm-gAq" id="gfN-dR-pVr"/>
  3621. <outlet property="btnSaveMayAccount2" destination="IZh-RJ-yjy" id="CU6-wl-dbu"/>
  3622. <outlet property="btnSaveMyAccount" destination="kE9-j3-dmH" id="meU-1h-MBp"/>
  3623. <outlet property="btnSendDeposit" destination="PMi-OD-Iwx" id="8Ft-tw-zf6"/>
  3624. <outlet property="btnSendWithDraw" destination="niH-SZ-sW2" id="FRz-p7-OiK"/>
  3625. <outlet property="btnWithdraw" destination="lsc-w2-zOP" id="zMQ-iS-R7l"/>
  3626. <outlet property="myAccount" destination="dfj-3T-nCt" id="J1g-bv-LVl"/>
  3627. <outlet property="txtAmountDeposit" destination="z6m-IM-voq" id="5l9-gS-wfT"/>
  3628. <outlet property="txtAmountWithDraw" destination="eOU-Fc-M9X" id="xwM-ur-3FZ"/>
  3629. <outlet property="vDeposit" destination="bhq-Hj-5KI" id="Xdo-sM-MZg"/>
  3630. <outlet property="vMainSetting" destination="dP5-Xk-fmP" id="lDZ-Ez-g24"/>
  3631. <outlet property="vMyAccount" destination="D6U-PY-jOY" id="t2F-Kw-mFR"/>
  3632. <outlet property="vWithdraw" destination="zuS-z8-gMb" id="zQx-0t-vyj"/>
  3633. </connections>
  3634. </viewController>
  3635. <placeholder placeholderIdentifier="IBFirstResponder" id="oSe-sh-tze" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  3636. </objects>
  3637. <point key="canvasLocation" x="1782.608695652174" y="105.80357142857143"/>
  3638. </scene>
  3639. <!--View Controller-->
  3640. <scene sceneID="QJK-FG-FCp">
  3641. <objects>
  3642. <viewController id="tlT-wN-gCx" customClass="ViewController" customModule="CockFight" customModuleProvider="target" sceneMemberID="viewController">
  3643. <view key="view" contentMode="scaleToFill" id="vhO-SR-f4g">
  3644. <rect key="frame" x="0.0" y="0.0" width="428" height="926"/>
  3645. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  3646. <subviews>
  3647. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="backgound.png" translatesAutoresizingMaskIntoConstraints="NO" id="gDK-56-0vg">
  3648. <rect key="frame" x="0.0" y="0.0" width="428" height="926"/>
  3649. </imageView>
  3650. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="logo.png" translatesAutoresizingMaskIntoConstraints="NO" id="d4I-0n-xgg">
  3651. <rect key="frame" x="114" y="261" width="200" height="200"/>
  3652. <constraints>
  3653. <constraint firstAttribute="height" constant="200" id="D72-p3-Wpd"/>
  3654. <constraint firstAttribute="width" constant="200" id="eu6-Db-58P"/>
  3655. </constraints>
  3656. </imageView>
  3657. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="V.1.0" textAlignment="natural" lineBreakMode="wordWrap" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="dQT-K8-1if">
  3658. <rect key="frame" x="196.66666666666666" y="841" width="35" height="21"/>
  3659. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3660. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3661. <nil key="highlightedColor"/>
  3662. </label>
  3663. </subviews>
  3664. <viewLayoutGuide key="safeArea" id="3kr-g0-Fiz"/>
  3665. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  3666. <constraints>
  3667. <constraint firstAttribute="bottom" secondItem="gDK-56-0vg" secondAttribute="bottom" id="3Eo-R5-4kd"/>
  3668. <constraint firstAttribute="trailing" secondItem="gDK-56-0vg" secondAttribute="trailing" id="9oR-hR-ZN9"/>
  3669. <constraint firstItem="d4I-0n-xgg" firstAttribute="centerX" secondItem="vhO-SR-f4g" secondAttribute="centerX" id="RVH-RP-KFC"/>
  3670. <constraint firstItem="gDK-56-0vg" firstAttribute="top" secondItem="vhO-SR-f4g" secondAttribute="top" id="W1a-q1-Gsq"/>
  3671. <constraint firstItem="gDK-56-0vg" firstAttribute="leading" secondItem="3kr-g0-Fiz" secondAttribute="leading" id="c6U-gU-a4X"/>
  3672. <constraint firstItem="dQT-K8-1if" firstAttribute="centerX" secondItem="vhO-SR-f4g" secondAttribute="centerX" id="jmM-HA-zKz"/>
  3673. <constraint firstItem="dQT-K8-1if" firstAttribute="bottom" secondItem="3kr-g0-Fiz" secondAttribute="bottom" constant="-30" id="pTd-LC-Qzt"/>
  3674. <constraint firstItem="d4I-0n-xgg" firstAttribute="top" secondItem="3kr-g0-Fiz" secondAttribute="top" constant="217" id="yCa-04-H1R"/>
  3675. </constraints>
  3676. </view>
  3677. </viewController>
  3678. <placeholder placeholderIdentifier="IBFirstResponder" id="ybg-sx-m7S" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3679. </objects>
  3680. <point key="canvasLocation" x="-629" y="106"/>
  3681. </scene>
  3682. <!--ViPhoneX+-->
  3683. <scene sceneID="66D-Kg-uJ4">
  3684. <objects>
  3685. <viewController title="ViPhoneX+" modalPresentationStyle="fullScreen" id="HkS-V2-1UB" customClass="ReportVC" customModule="CockFight" sceneMemberID="viewController">
  3686. <view key="view" contentMode="scaleToFill" id="teB-Cu-dv2">
  3687. <rect key="frame" x="0.0" y="0.0" width="428" height="926"/>
  3688. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  3689. <subviews>
  3690. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="vVY-D4-CKK">
  3691. <rect key="frame" x="0.0" y="0.0" width="428" height="100"/>
  3692. <color key="backgroundColor" red="0.36078431370000003" green="0.36078431370000003" blue="0.36078431370000003" alpha="1" colorSpace="calibratedRGB"/>
  3693. <constraints>
  3694. <constraint firstAttribute="height" constant="100" id="bBC-GO-Er8"/>
  3695. </constraints>
  3696. </view>
  3697. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="logo.png" translatesAutoresizingMaskIntoConstraints="NO" id="RRp-d0-FYs">
  3698. <rect key="frame" x="10" y="40" width="50" height="50"/>
  3699. <constraints>
  3700. <constraint firstAttribute="height" constant="50" id="Yso-gi-UrC"/>
  3701. <constraint firstAttribute="width" constant="50" id="nDy-VK-QEp"/>
  3702. </constraints>
  3703. </imageView>
  3704. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="100,121,300" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Ryl-ft-dzm">
  3705. <rect key="frame" x="65" y="63.666666666666657" width="77" height="17"/>
  3706. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  3707. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3708. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  3709. </label>
  3710. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="p5" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="tFP-X7-xdR">
  3711. <rect key="frame" x="65" y="40" width="17" height="17"/>
  3712. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  3713. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3714. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  3715. </label>
  3716. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="user.png" translatesAutoresizingMaskIntoConstraints="NO" id="0eE-ha-lKg">
  3717. <rect key="frame" x="85" y="38.666666666666664" width="15" height="20"/>
  3718. <constraints>
  3719. <constraint firstAttribute="height" constant="20" id="938-Qf-cRw"/>
  3720. <constraint firstAttribute="width" constant="15" id="Kj7-Ki-e9J"/>
  3721. </constraints>
  3722. </imageView>
  3723. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="6dL-8M-CH0">
  3724. <rect key="frame" x="145" y="63.666666666666657" width="20" height="17"/>
  3725. <constraints>
  3726. <constraint firstAttribute="height" constant="17" id="EIM-BR-Nrz"/>
  3727. <constraint firstAttribute="width" constant="20" id="Pyj-Ja-pIr"/>
  3728. </constraints>
  3729. <state key="normal" image="ic_refresh.png"/>
  3730. </button>
  3731. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="4dq-h0-91q">
  3732. <rect key="frame" x="0.0" y="100" width="414" height="797"/>
  3733. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3734. <subviews>
  3735. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" image="backgound.png" translatesAutoresizingMaskIntoConstraints="NO" id="Tog-s4-rE4">
  3736. <rect key="frame" x="0.0" y="5" width="414" height="792"/>
  3737. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3738. </imageView>
  3739. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="tjs-Aj-wpV">
  3740. <rect key="frame" x="147" y="706" width="120" height="38"/>
  3741. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3742. <state key="normal" image="ic_btn_close.png"/>
  3743. <connections>
  3744. <action selector="actionCloseView:" destination="HkS-V2-1UB" eventType="touchUpInside" id="5Ah-58-ntR"/>
  3745. </connections>
  3746. </button>
  3747. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="b0S-16-PQE" userLabel="VReportResult">
  3748. <rect key="frame" x="35" y="21" width="338" height="648"/>
  3749. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3750. <subviews>
  3751. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="mm4-oS-Gm2">
  3752. <rect key="frame" x="2" y="0.0" width="340" height="56"/>
  3753. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3754. <color key="backgroundColor" systemColor="systemGray2Color"/>
  3755. </imageView>
  3756. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="aNz-ey-ocr">
  3757. <rect key="frame" x="2" y="52" width="340" height="598"/>
  3758. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3759. <subviews>
  3760. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="5Ci-Tl-Lof">
  3761. <rect key="frame" x="0.0" y="0.0" width="340" height="35"/>
  3762. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3763. <subviews>
  3764. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="oaw-kb-SSP">
  3765. <rect key="frame" x="30" y="1" width="1" height="598"/>
  3766. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3767. <color key="backgroundColor" systemColor="labelColor"/>
  3768. </view>
  3769. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="លុយភ្នាល់:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="JYD-hJ-UjJ">
  3770. <rect key="frame" x="154" y="8" width="62" height="18"/>
  3771. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3772. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  3773. <nil key="textColor"/>
  3774. <nil key="highlightedColor"/>
  3775. </label>
  3776. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="ចាញ់/ឈ្នះ" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="MLv-E2-7pd">
  3777. <rect key="frame" x="265" y="8" width="58" height="18"/>
  3778. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3779. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  3780. <nil key="textColor"/>
  3781. <nil key="highlightedColor"/>
  3782. </label>
  3783. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="TL9-FG-5eL">
  3784. <rect key="frame" x="133" y="1" width="1" height="598"/>
  3785. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3786. <color key="backgroundColor" systemColor="labelColor"/>
  3787. </view>
  3788. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="កាលបរិច្ឆេទ" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="5nz-SH-sJr">
  3789. <rect key="frame" x="51" y="8" width="68" height="18"/>
  3790. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3791. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  3792. <nil key="textColor"/>
  3793. <nil key="highlightedColor"/>
  3794. </label>
  3795. </subviews>
  3796. <color key="backgroundColor" systemColor="systemGray2Color"/>
  3797. </view>
  3798. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="VCN-Q9-bgh">
  3799. <rect key="frame" x="236" y="1" width="1" height="597"/>
  3800. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3801. <color key="backgroundColor" systemColor="labelColor"/>
  3802. </view>
  3803. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="2021-03-29" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="wdA-uy-A2L">
  3804. <rect key="frame" x="45" y="39" width="79" height="17"/>
  3805. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3806. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  3807. <nil key="textColor"/>
  3808. <nil key="highlightedColor"/>
  3809. </label>
  3810. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="4,000" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ux3-I1-tzZ">
  3811. <rect key="frame" x="166" y="39" width="38" height="17"/>
  3812. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3813. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  3814. <nil key="textColor"/>
  3815. <nil key="highlightedColor"/>
  3816. </label>
  3817. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="-2,020" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="JPP-rO-tmg">
  3818. <rect key="frame" x="272" y="39" width="44" height="17"/>
  3819. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3820. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  3821. <color key="textColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
  3822. <color key="highlightedColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
  3823. </label>
  3824. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="PWW-2c-il7">
  3825. <rect key="frame" x="0.0" y="35" width="340" height="1"/>
  3826. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3827. <subviews>
  3828. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="NIO-C2-we8">
  3829. <rect key="frame" x="0.0" y="-34" width="340" height="1"/>
  3830. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3831. <color key="backgroundColor" systemColor="labelColor"/>
  3832. </view>
  3833. </subviews>
  3834. <color key="backgroundColor" systemColor="labelColor"/>
  3835. </view>
  3836. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="JWn-LG-td1">
  3837. <rect key="frame" x="0.0" y="60" width="340" height="1"/>
  3838. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3839. <color key="backgroundColor" systemColor="labelColor"/>
  3840. </view>
  3841. </subviews>
  3842. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  3843. </view>
  3844. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="7lN-EM-O0m">
  3845. <rect key="frame" x="278" y="8" width="48" height="36"/>
  3846. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3847. <state key="normal" image="ic_tab_report.png"/>
  3848. <connections>
  3849. <action selector="actionBtnReport_ReportVC:" destination="HkS-V2-1UB" eventType="touchUpInside" id="hqb-U4-ZT1"/>
  3850. </connections>
  3851. </button>
  3852. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="JEO-l7-8xs">
  3853. <rect key="frame" x="20" y="8" width="49" height="36"/>
  3854. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3855. <state key="normal" image="ic_tab_win.png"/>
  3856. <connections>
  3857. <action selector="actionBtnWin_ReportVC:" destination="HkS-V2-1UB" eventType="touchUpInside" id="EIS-Yg-IBZ"/>
  3858. </connections>
  3859. </button>
  3860. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="xuq-wY-HuD">
  3861. <rect key="frame" x="150" y="8" width="48" height="36"/>
  3862. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3863. <state key="normal" image="ic_tab_play.png"/>
  3864. <connections>
  3865. <action selector="actionBtnResult_ReportVC:" destination="HkS-V2-1UB" eventType="touchUpInside" id="1K2-hu-gBQ"/>
  3866. </connections>
  3867. </button>
  3868. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" image="bar select.png" translatesAutoresizingMaskIntoConstraints="NO" id="ryA-Fy-IRB">
  3869. <rect key="frame" x="238" y="35" width="126" height="32"/>
  3870. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3871. </imageView>
  3872. </subviews>
  3873. </view>
  3874. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="ITC-RQ-Ghm" userLabel="VBetResult">
  3875. <rect key="frame" x="35" y="21" width="338" height="648"/>
  3876. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3877. <subviews>
  3878. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="ez3-fV-N76">
  3879. <rect key="frame" x="2" y="0.0" width="340" height="56"/>
  3880. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3881. <color key="backgroundColor" systemColor="systemGray2Color"/>
  3882. </imageView>
  3883. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="i99-hx-v6G">
  3884. <rect key="frame" x="2" y="52" width="340" height="598"/>
  3885. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3886. <subviews>
  3887. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="5Pa-3q-Wbi">
  3888. <rect key="frame" x="5" y="68" width="331" height="1"/>
  3889. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3890. <color key="backgroundColor" systemColor="systemGray2Color"/>
  3891. </view>
  3892. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2E6-lD-iLE">
  3893. <rect key="frame" x="5" y="39" width="331" height="1"/>
  3894. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3895. <color key="backgroundColor" systemColor="systemGray2Color"/>
  3896. </view>
  3897. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="O" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3Dq-43-7sg">
  3898. <rect key="frame" x="136" y="14" width="11" height="17"/>
  3899. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3900. <fontDescription key="fontDescription" type="boldSystem" pointSize="14"/>
  3901. <nil key="textColor"/>
  3902. <nil key="highlightedColor"/>
  3903. </label>
  3904. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="1Kx1.95=1950" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="bBe-nJ-ky2">
  3905. <rect key="frame" x="167" y="46" width="79" height="14.5"/>
  3906. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3907. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  3908. <color key="textColor" red="0.0" green="0.1210455355" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3909. <color key="highlightedColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  3910. </label>
  3911. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="1Kx1.95=1950" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="RTR-14-WMq">
  3912. <rect key="frame" x="167" y="15" width="79" height="14.5"/>
  3913. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3914. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  3915. <color key="textColor" red="0.0" green="0.1210455355" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3916. <color key="highlightedColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  3917. </label>
  3918. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="U" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3xH-OZ-clt">
  3919. <rect key="frame" x="136" y="45" width="11" height="17"/>
  3920. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3921. <fontDescription key="fontDescription" type="boldSystem" pointSize="14"/>
  3922. <nil key="textColor"/>
  3923. <nil key="highlightedColor"/>
  3924. </label>
  3925. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="11066851" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="G9k-AU-BG2">
  3926. <rect key="frame" x="268.5" y="46" width="55" height="14.5"/>
  3927. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3928. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  3929. <color key="textColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3930. <color key="highlightedColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  3931. </label>
  3932. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="11066851" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="p6r-k1-FiX">
  3933. <rect key="frame" x="268.5" y="15" width="55" height="14.5"/>
  3934. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3935. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  3936. <color key="textColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3937. <color key="highlightedColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  3938. </label>
  3939. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="0119#42528 18:40" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="P4k-rI-gtk">
  3940. <rect key="frame" x="5" y="15" width="106.5" height="14.5"/>
  3941. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3942. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  3943. <nil key="textColor"/>
  3944. <nil key="highlightedColor"/>
  3945. </label>
  3946. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="0119#42528 18:40" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="KuE-aM-Ddn">
  3947. <rect key="frame" x="5" y="46" width="106.5" height="14.5"/>
  3948. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3949. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  3950. <nil key="textColor"/>
  3951. <nil key="highlightedColor"/>
  3952. </label>
  3953. </subviews>
  3954. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  3955. </view>
  3956. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="nxm-P3-JLl">
  3957. <rect key="frame" x="278" y="8" width="48" height="36"/>
  3958. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3959. <state key="normal" image="ic_tab_report.png"/>
  3960. <connections>
  3961. <action selector="actionBtnReport_ResultVC:" destination="HkS-V2-1UB" eventType="touchUpInside" id="T53-Ay-UCh"/>
  3962. </connections>
  3963. </button>
  3964. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="SDs-MV-u0U">
  3965. <rect key="frame" x="20" y="8" width="49" height="36"/>
  3966. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3967. <state key="normal" image="ic_tab_win.png"/>
  3968. <connections>
  3969. <action selector="actionBtnBet_ResultVC:" destination="HkS-V2-1UB" eventType="touchUpInside" id="MQN-cR-Yqw"/>
  3970. <action selector="actionBtnWin_ResultVC:" destination="HkS-V2-1UB" eventType="touchUpInside" id="tVa-gZ-UAQ"/>
  3971. </connections>
  3972. </button>
  3973. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="xMr-v4-5eK">
  3974. <rect key="frame" x="141" y="8" width="48" height="36"/>
  3975. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3976. <state key="normal" image="ic_tab_play.png"/>
  3977. </button>
  3978. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" image="bar select.png" translatesAutoresizingMaskIntoConstraints="NO" id="Sam-N5-TC5">
  3979. <rect key="frame" x="102" y="35" width="126" height="32"/>
  3980. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3981. </imageView>
  3982. </subviews>
  3983. </view>
  3984. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="X2U-zz-uDe" userLabel="VWinResult">
  3985. <rect key="frame" x="35" y="21" width="338" height="648"/>
  3986. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3987. <subviews>
  3988. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="CpH-Xf-sOw">
  3989. <rect key="frame" x="2" y="0.0" width="340" height="56"/>
  3990. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3991. <color key="backgroundColor" systemColor="systemGray2Color"/>
  3992. </imageView>
  3993. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="7ww-M5-q72">
  3994. <rect key="frame" x="2" y="52" width="340" height="598"/>
  3995. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3996. <subviews>
  3997. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="0119#42528 18:40" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="iPZ-uv-5HI">
  3998. <rect key="frame" x="5" y="15" width="106.5" height="14.5"/>
  3999. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4000. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  4001. <nil key="textColor"/>
  4002. <nil key="highlightedColor"/>
  4003. </label>
  4004. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="O" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="6Vz-ZF-587">
  4005. <rect key="frame" x="136.5" y="14" width="11" height="17"/>
  4006. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4007. <fontDescription key="fontDescription" type="boldSystem" pointSize="14"/>
  4008. <nil key="textColor"/>
  4009. <nil key="highlightedColor"/>
  4010. </label>
  4011. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="9rI-3k-j7M">
  4012. <rect key="frame" x="5" y="36" width="331" height="1"/>
  4013. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4014. <color key="backgroundColor" systemColor="systemGray2Color"/>
  4015. </view>
  4016. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="1Kx1.95=1950" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="y0m-pi-uo6">
  4017. <rect key="frame" x="167.5" y="15" width="79" height="14.5"/>
  4018. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4019. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  4020. <color key="textColor" red="0.0" green="0.1210455355" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4021. <color key="highlightedColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  4022. </label>
  4023. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="11066851" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Eal-Eb-ULo">
  4024. <rect key="frame" x="268.5" y="15" width="55" height="14.5"/>
  4025. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4026. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  4027. <color key="textColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4028. <color key="highlightedColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  4029. </label>
  4030. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="0119#42528 18:40" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="4De-lJ-bBh">
  4031. <rect key="frame" x="5" y="46" width="106.5" height="14.5"/>
  4032. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4033. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  4034. <nil key="textColor"/>
  4035. <nil key="highlightedColor"/>
  4036. </label>
  4037. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="O" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Dxh-zD-fsI">
  4038. <rect key="frame" x="136" y="45" width="11" height="17"/>
  4039. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4040. <fontDescription key="fontDescription" type="boldSystem" pointSize="14"/>
  4041. <nil key="textColor"/>
  4042. <nil key="highlightedColor"/>
  4043. </label>
  4044. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="wfx-Wr-xDa">
  4045. <rect key="frame" x="5" y="67" width="331" height="1"/>
  4046. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4047. <color key="backgroundColor" systemColor="systemGray2Color"/>
  4048. </view>
  4049. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="1Kx1.95=1950" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="08d-Ea-T94">
  4050. <rect key="frame" x="167" y="46" width="79" height="14.5"/>
  4051. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4052. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  4053. <color key="textColor" red="0.0" green="0.1210455355" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4054. <color key="highlightedColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  4055. </label>
  4056. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="11066851" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="gUT-XX-rXI">
  4057. <rect key="frame" x="268" y="46" width="55" height="14.5"/>
  4058. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4059. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  4060. <color key="textColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4061. <color key="highlightedColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  4062. </label>
  4063. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="0119#42528 18:40" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="8HP-4J-XCm">
  4064. <rect key="frame" x="5" y="75" width="106.5" height="14.5"/>
  4065. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4066. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  4067. <nil key="textColor"/>
  4068. <nil key="highlightedColor"/>
  4069. </label>
  4070. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="O" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="nw7-P5-gg4">
  4071. <rect key="frame" x="136" y="74" width="11" height="17"/>
  4072. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4073. <fontDescription key="fontDescription" type="boldSystem" pointSize="14"/>
  4074. <nil key="textColor"/>
  4075. <nil key="highlightedColor"/>
  4076. </label>
  4077. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="gUv-hw-xzC">
  4078. <rect key="frame" x="5" y="96" width="331" height="1"/>
  4079. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4080. <color key="backgroundColor" systemColor="systemGray2Color"/>
  4081. </view>
  4082. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="1Kx1.95=1950" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="CY0-C2-lji">
  4083. <rect key="frame" x="167" y="75" width="79" height="14.5"/>
  4084. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4085. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  4086. <color key="textColor" red="0.0" green="0.1210455355" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4087. <color key="highlightedColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  4088. </label>
  4089. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="11066851" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="oNg-nY-Vns">
  4090. <rect key="frame" x="268" y="75" width="55" height="14.5"/>
  4091. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4092. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  4093. <color key="textColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4094. <color key="highlightedColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  4095. </label>
  4096. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="0119#42528 18:40" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="vuG-di-3dH">
  4097. <rect key="frame" x="5" y="106" width="106.5" height="14.5"/>
  4098. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4099. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  4100. <nil key="textColor"/>
  4101. <nil key="highlightedColor"/>
  4102. </label>
  4103. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="O" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="PA7-TC-6bw">
  4104. <rect key="frame" x="136" y="105" width="11" height="17"/>
  4105. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4106. <fontDescription key="fontDescription" type="boldSystem" pointSize="14"/>
  4107. <nil key="textColor"/>
  4108. <nil key="highlightedColor"/>
  4109. </label>
  4110. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="F8L-8C-iYn">
  4111. <rect key="frame" x="5" y="127" width="331" height="1"/>
  4112. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4113. <color key="backgroundColor" systemColor="systemGray2Color"/>
  4114. </view>
  4115. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="1Kx1.95=1950" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="6qk-2y-NWo">
  4116. <rect key="frame" x="167" y="106" width="79" height="14.5"/>
  4117. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4118. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  4119. <color key="textColor" red="0.0" green="0.1210455355" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4120. <color key="highlightedColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  4121. </label>
  4122. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="11066851" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="6Qd-O7-A1x">
  4123. <rect key="frame" x="268" y="106" width="55" height="14.5"/>
  4124. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4125. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  4126. <color key="textColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4127. <color key="highlightedColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  4128. </label>
  4129. </subviews>
  4130. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  4131. </view>
  4132. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="yzY-5f-WxV">
  4133. <rect key="frame" x="278" y="8" width="48" height="36"/>
  4134. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4135. <state key="normal" image="ic_tab_report.png"/>
  4136. <connections>
  4137. <action selector="actionBtnReport_WinVC:" destination="HkS-V2-1UB" eventType="touchUpInside" id="zxF-TZ-tlX"/>
  4138. </connections>
  4139. </button>
  4140. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="NXt-Nz-yFu">
  4141. <rect key="frame" x="20" y="8" width="49" height="36"/>
  4142. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4143. <state key="normal" image="ic_tab_win.png"/>
  4144. <connections>
  4145. <action selector="actionBtnWin_WinVC:" destination="HkS-V2-1UB" eventType="touchUpInside" id="zTL-4h-3k5"/>
  4146. </connections>
  4147. </button>
  4148. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="e6m-aZ-M2e">
  4149. <rect key="frame" x="150" y="8" width="48" height="36"/>
  4150. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4151. <state key="normal" image="ic_tab_play.png"/>
  4152. <connections>
  4153. <action selector="actionBtnBetView_WinVC:" destination="HkS-V2-1UB" eventType="touchUpInside" id="sWd-3n-5gF"/>
  4154. </connections>
  4155. </button>
  4156. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" image="bar select.png" translatesAutoresizingMaskIntoConstraints="NO" id="un5-R9-qLK">
  4157. <rect key="frame" x="-19" y="35" width="126" height="32"/>
  4158. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4159. </imageView>
  4160. </subviews>
  4161. </view>
  4162. </subviews>
  4163. </view>
  4164. </subviews>
  4165. <viewLayoutGuide key="safeArea" id="1VM-0p-Pi9"/>
  4166. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  4167. <constraints>
  4168. <constraint firstItem="Ryl-ft-dzm" firstAttribute="leading" secondItem="tFP-X7-xdR" secondAttribute="leading" id="13k-Hm-hbr"/>
  4169. <constraint firstItem="Ryl-ft-dzm" firstAttribute="top" secondItem="0eE-ha-lKg" secondAttribute="bottom" constant="5" id="89E-0J-1F4"/>
  4170. <constraint firstItem="6dL-8M-CH0" firstAttribute="leading" secondItem="Ryl-ft-dzm" secondAttribute="trailing" constant="3" id="Ekb-xW-00Y"/>
  4171. <constraint firstItem="vVY-D4-CKK" firstAttribute="leading" secondItem="1VM-0p-Pi9" secondAttribute="leading" id="F3Y-4u-LeG"/>
  4172. <constraint firstItem="RRp-d0-FYs" firstAttribute="leading" secondItem="1VM-0p-Pi9" secondAttribute="leading" constant="10" id="IpV-Pe-CO4"/>
  4173. <constraint firstItem="RRp-d0-FYs" firstAttribute="top" secondItem="teB-Cu-dv2" secondAttribute="top" constant="40" id="K0I-yi-ccS"/>
  4174. <constraint firstItem="vVY-D4-CKK" firstAttribute="top" secondItem="teB-Cu-dv2" secondAttribute="top" id="ONz-nK-RyC"/>
  4175. <constraint firstItem="0eE-ha-lKg" firstAttribute="leading" secondItem="tFP-X7-xdR" secondAttribute="trailing" constant="3" id="eBH-fp-DrV"/>
  4176. <constraint firstItem="0eE-ha-lKg" firstAttribute="centerY" secondItem="tFP-X7-xdR" secondAttribute="centerY" id="hm2-Ic-iUx"/>
  4177. <constraint firstItem="vVY-D4-CKK" firstAttribute="trailing" secondItem="1VM-0p-Pi9" secondAttribute="trailing" id="jS0-8v-dfB"/>
  4178. <constraint firstItem="tFP-X7-xdR" firstAttribute="leading" secondItem="RRp-d0-FYs" secondAttribute="trailing" constant="5" id="o2T-w1-dc7"/>
  4179. <constraint firstItem="tFP-X7-xdR" firstAttribute="top" secondItem="RRp-d0-FYs" secondAttribute="top" id="rSR-WG-xN3"/>
  4180. <constraint firstItem="6dL-8M-CH0" firstAttribute="centerY" secondItem="Ryl-ft-dzm" secondAttribute="centerY" id="z8X-3S-NVH"/>
  4181. </constraints>
  4182. </view>
  4183. <navigationItem key="navigationItem" id="OTH-Tr-HBa"/>
  4184. <connections>
  4185. <outlet property="vcBetResult" destination="ITC-RQ-Ghm" id="b4s-7W-eJY"/>
  4186. <outlet property="vcReportResult" destination="b0S-16-PQE" id="usJ-d6-T9o"/>
  4187. <outlet property="vcWinResult" destination="X2U-zz-uDe" id="Sqx-pA-YvB"/>
  4188. </connections>
  4189. </viewController>
  4190. <placeholder placeholderIdentifier="IBFirstResponder" id="CVJ-i8-b6X" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  4191. </objects>
  4192. <point key="canvasLocation" x="2518.840579710145" y="105.80357142857143"/>
  4193. </scene>
  4194. <!--Main Game BoardVC-->
  4195. <scene sceneID="f62-Ug-YfX">
  4196. <objects>
  4197. <viewController storyboardIdentifier="MainPanelGame_SB_iPhone7" modalPresentationStyle="overFullScreen" id="bPp-tV-eGp" customClass="MainGameBoardVC" customModule="CockFight" customModuleProvider="target" sceneMemberID="viewController">
  4198. <view key="view" contentMode="scaleToFill" id="vV9-wY-srQ">
  4199. <rect key="frame" x="0.0" y="0.0" width="428" height="926"/>
  4200. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  4201. <subviews>
  4202. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="PLI-UE-RXG" userLabel="TopBar">
  4203. <rect key="frame" x="0.0" y="0.0" width="428" height="70"/>
  4204. <subviews>
  4205. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="logo.png" translatesAutoresizingMaskIntoConstraints="NO" id="iIu-1A-MoX">
  4206. <rect key="frame" x="10" y="20" width="40" height="40"/>
  4207. <constraints>
  4208. <constraint firstAttribute="width" constant="40" id="Io9-j3-Oub"/>
  4209. <constraint firstAttribute="height" constant="40" id="i9m-6E-daP"/>
  4210. </constraints>
  4211. </imageView>
  4212. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="bgE-vh-Ugn">
  4213. <rect key="frame" x="55" y="40" width="0.0" height="0.0"/>
  4214. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  4215. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4216. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  4217. </label>
  4218. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="EHr-8j-8ei">
  4219. <rect key="frame" x="393" y="27.666666666666671" width="25" height="25"/>
  4220. <constraints>
  4221. <constraint firstAttribute="width" constant="25" id="Uue-03-6P2"/>
  4222. <constraint firstAttribute="height" constant="25" id="cY4-9Q-gJX"/>
  4223. </constraints>
  4224. <state key="normal" image="ic_setting.png"/>
  4225. <connections>
  4226. <segue destination="oqp-ou-gCF" kind="show" id="g3t-vh-Jeh"/>
  4227. </connections>
  4228. </button>
  4229. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="OEb-u4-6Po">
  4230. <rect key="frame" x="358" y="27.666666666666671" width="25" height="25"/>
  4231. <constraints>
  4232. <constraint firstAttribute="height" constant="25" id="4fC-F6-PDo"/>
  4233. <constraint firstAttribute="width" constant="25" id="5ij-7I-voj"/>
  4234. </constraints>
  4235. <state key="normal" image="ic_unmute.png"/>
  4236. </button>
  4237. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="YqW-Vx-zrT">
  4238. <rect key="frame" x="323" y="25" width="25" height="30"/>
  4239. <constraints>
  4240. <constraint firstAttribute="width" constant="25" id="OTQ-Uc-FWu"/>
  4241. <constraint firstAttribute="height" constant="30" id="SeG-2n-upC"/>
  4242. </constraints>
  4243. <state key="normal" image="ic_report.png"/>
  4244. <connections>
  4245. <segue destination="XZc-oF-vtz" kind="show" id="tqa-8z-zQs"/>
  4246. </connections>
  4247. </button>
  4248. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="iWE-Av-fX8">
  4249. <rect key="frame" x="55" y="20" width="0.0" height="15"/>
  4250. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  4251. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4252. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  4253. </label>
  4254. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="user.png" translatesAutoresizingMaskIntoConstraints="NO" id="20l-dl-aYz">
  4255. <rect key="frame" x="58" y="20" width="10" height="15"/>
  4256. <constraints>
  4257. <constraint firstAttribute="width" constant="10" id="jsC-ip-oCJ"/>
  4258. <constraint firstAttribute="height" constant="15" id="tMG-SF-LaU"/>
  4259. </constraints>
  4260. </imageView>
  4261. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="dB6-Ql-BKE">
  4262. <rect key="frame" x="58" y="34" width="14" height="12"/>
  4263. <constraints>
  4264. <constraint firstAttribute="width" constant="14" id="3OC-Kc-uPf"/>
  4265. <constraint firstAttribute="height" constant="12" id="vvv-FH-icp"/>
  4266. </constraints>
  4267. <state key="normal" image="ic_refresh.png"/>
  4268. </button>
  4269. </subviews>
  4270. <color key="backgroundColor" red="0.3803921569" green="0.37254901959999998" blue="0.37254901959999998" alpha="1" colorSpace="calibratedRGB"/>
  4271. <constraints>
  4272. <constraint firstItem="iIu-1A-MoX" firstAttribute="top" secondItem="PLI-UE-RXG" secondAttribute="top" constant="20" id="1Av-T8-yFm"/>
  4273. <constraint firstItem="iWE-Av-fX8" firstAttribute="leading" secondItem="iIu-1A-MoX" secondAttribute="trailing" constant="5" id="3NH-vY-5GS"/>
  4274. <constraint firstItem="OEb-u4-6Po" firstAttribute="leading" secondItem="YqW-Vx-zrT" secondAttribute="trailing" constant="10" id="4ek-8n-QQK"/>
  4275. <constraint firstItem="bgE-vh-Ugn" firstAttribute="top" secondItem="20l-dl-aYz" secondAttribute="bottom" constant="5" id="71L-nJ-yk0"/>
  4276. <constraint firstItem="OEb-u4-6Po" firstAttribute="centerY" secondItem="EHr-8j-8ei" secondAttribute="centerY" id="CuD-kv-2Fy"/>
  4277. <constraint firstItem="iIu-1A-MoX" firstAttribute="leading" secondItem="PLI-UE-RXG" secondAttribute="leading" constant="10" id="ERq-Ok-zRm"/>
  4278. <constraint firstItem="20l-dl-aYz" firstAttribute="top" secondItem="iIu-1A-MoX" secondAttribute="top" id="GPf-BO-fjh"/>
  4279. <constraint firstItem="EHr-8j-8ei" firstAttribute="leading" secondItem="OEb-u4-6Po" secondAttribute="trailing" constant="10" id="PG0-it-y8w"/>
  4280. <constraint firstAttribute="trailing" secondItem="EHr-8j-8ei" secondAttribute="trailing" constant="10" id="aoN-ho-1hl"/>
  4281. <constraint firstItem="iWE-Av-fX8" firstAttribute="top" secondItem="iIu-1A-MoX" secondAttribute="top" id="g13-1E-sei"/>
  4282. <constraint firstItem="YqW-Vx-zrT" firstAttribute="centerY" secondItem="iIu-1A-MoX" secondAttribute="centerY" id="h4C-9e-Jht"/>
  4283. <constraint firstAttribute="bottom" secondItem="iIu-1A-MoX" secondAttribute="bottom" constant="10" id="kfp-mF-Ym2"/>
  4284. <constraint firstAttribute="height" constant="70" id="mcM-Pz-7yz"/>
  4285. <constraint firstItem="20l-dl-aYz" firstAttribute="leading" secondItem="iWE-Av-fX8" secondAttribute="trailing" constant="3" id="njA-qe-98G"/>
  4286. <constraint firstItem="20l-dl-aYz" firstAttribute="centerY" secondItem="iWE-Av-fX8" secondAttribute="centerY" id="ofU-R5-dlL"/>
  4287. <constraint firstItem="dB6-Ql-BKE" firstAttribute="leading" secondItem="bgE-vh-Ugn" secondAttribute="trailing" constant="3" id="tFR-pm-L3Y"/>
  4288. <constraint firstItem="dB6-Ql-BKE" firstAttribute="centerY" secondItem="bgE-vh-Ugn" secondAttribute="centerY" id="tt3-ps-3Ut"/>
  4289. <constraint firstItem="YqW-Vx-zrT" firstAttribute="centerY" secondItem="OEb-u4-6Po" secondAttribute="centerY" id="uGg-g0-4zX"/>
  4290. <constraint firstItem="bgE-vh-Ugn" firstAttribute="leading" secondItem="iWE-Av-fX8" secondAttribute="leading" id="wKp-7Q-buK"/>
  4291. </constraints>
  4292. </view>
  4293. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="3IC-v0-NdT">
  4294. <rect key="frame" x="0.0" y="535" width="428" height="357"/>
  4295. <subviews>
  4296. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="aLQ-Yt-Qq9">
  4297. <rect key="frame" x="0.0" y="0.0" width="428" height="35"/>
  4298. <subviews>
  4299. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ស្ថានភាព៖" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="msJ-ee-pO7">
  4300. <rect key="frame" x="9.9999999999999964" y="9" width="53.666666666666657" height="17"/>
  4301. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  4302. <nil key="textColor"/>
  4303. <nil key="highlightedColor"/>
  4304. </label>
  4305. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Open" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ipT-tH-99c">
  4306. <rect key="frame" x="71.666666666666671" y="7.6666666666666288" width="46" height="20"/>
  4307. <fontDescription key="fontDescription" type="system" weight="black" pointSize="17"/>
  4308. <color key="textColor" red="0.1473816688" green="0.73649914800000005" blue="0.064597392899999995" alpha="1" colorSpace="calibratedRGB"/>
  4309. <nil key="highlightedColor"/>
  4310. </label>
  4311. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="គូទី៖" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="LWa-78-mCW">
  4312. <rect key="frame" x="147.66666666666666" y="8.6666666666666288" width="23.333333333333343" height="18"/>
  4313. <constraints>
  4314. <constraint firstAttribute="height" constant="18" id="uIv-Q2-PLc"/>
  4315. </constraints>
  4316. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  4317. <nil key="textColor"/>
  4318. <nil key="highlightedColor"/>
  4319. </label>
  4320. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="cYM-IN-7x1">
  4321. <rect key="frame" x="181" y="17.666666666666629" width="0.0" height="0.0"/>
  4322. <fontDescription key="fontDescription" type="system" weight="black" pointSize="19"/>
  4323. <color key="textColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4324. <nil key="highlightedColor"/>
  4325. </label>
  4326. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ជម្រើស" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="dgJ-Bt-B7p">
  4327. <rect key="frame" x="246.5" y="11" width="45" height="18"/>
  4328. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  4329. <nil key="textColor"/>
  4330. <nil key="highlightedColor"/>
  4331. </label>
  4332. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ខាងខៀវ" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Hxh-bM-Pbq">
  4333. <rect key="frame" x="299.5" y="10.5" width="52.5" height="19.5"/>
  4334. <fontDescription key="fontDescription" type="system" weight="black" pointSize="16"/>
  4335. <color key="textColor" systemColor="linkColor"/>
  4336. <nil key="highlightedColor"/>
  4337. </label>
  4338. </subviews>
  4339. <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4340. <constraints>
  4341. <constraint firstItem="Hxh-bM-Pbq" firstAttribute="leading" secondItem="dgJ-Bt-B7p" secondAttribute="trailing" constant="8" id="NbQ-Hv-sWD"/>
  4342. <constraint firstItem="msJ-ee-pO7" firstAttribute="leading" secondItem="aLQ-Yt-Qq9" secondAttribute="leading" constant="10" id="OvH-4Z-Ao3"/>
  4343. <constraint firstItem="cYM-IN-7x1" firstAttribute="leading" secondItem="LWa-78-mCW" secondAttribute="trailing" constant="10" id="Qhy-Pq-Pxm"/>
  4344. <constraint firstItem="cYM-IN-7x1" firstAttribute="centerY" secondItem="LWa-78-mCW" secondAttribute="centerY" id="S5c-jW-xvg"/>
  4345. <constraint firstItem="LWa-78-mCW" firstAttribute="leading" secondItem="ipT-tH-99c" secondAttribute="trailing" constant="30" id="U5X-oc-wpm"/>
  4346. <constraint firstItem="ipT-tH-99c" firstAttribute="centerY" secondItem="msJ-ee-pO7" secondAttribute="centerY" id="W4X-P7-3cA"/>
  4347. <constraint firstItem="msJ-ee-pO7" firstAttribute="centerY" secondItem="aLQ-Yt-Qq9" secondAttribute="centerY" id="aac-Kd-7a3"/>
  4348. <constraint firstItem="Hxh-bM-Pbq" firstAttribute="centerY" secondItem="dgJ-Bt-B7p" secondAttribute="centerY" id="r4T-tg-bVC"/>
  4349. <constraint firstItem="ipT-tH-99c" firstAttribute="leading" secondItem="msJ-ee-pO7" secondAttribute="trailing" constant="8" symbolic="YES" id="rUr-Ge-xsE"/>
  4350. <constraint firstItem="LWa-78-mCW" firstAttribute="centerY" secondItem="msJ-ee-pO7" secondAttribute="centerY" id="uo4-Tx-ilz"/>
  4351. <constraint firstAttribute="height" constant="35" id="yIw-Lq-7RO"/>
  4352. </constraints>
  4353. <variation key="default">
  4354. <mask key="subviews">
  4355. <exclude reference="dgJ-Bt-B7p"/>
  4356. <exclude reference="Hxh-bM-Pbq"/>
  4357. </mask>
  4358. </variation>
  4359. </view>
  4360. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="qfI-1P-IPy">
  4361. <rect key="frame" x="32" y="40" width="364" height="312"/>
  4362. <subviews>
  4363. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="ABC-gt-to0">
  4364. <rect key="frame" x="0.0" y="0.0" width="364" height="40"/>
  4365. <subviews>
  4366. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Pfo-OC-Tvs">
  4367. <rect key="frame" x="0.0" y="0.0" width="69" height="40"/>
  4368. <color key="backgroundColor" systemColor="systemGray5Color"/>
  4369. <constraints>
  4370. <constraint firstAttribute="width" constant="69" id="4Zn-Cp-osn"/>
  4371. </constraints>
  4372. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  4373. <state key="normal" title="តារាងពង់">
  4374. <color key="titleColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4375. </state>
  4376. <connections>
  4377. <action selector="btnPongClick:" destination="bPp-tV-eGp" eventType="touchUpInside" id="adw-FP-3dE"/>
  4378. </connections>
  4379. </button>
  4380. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="owr-W8-ZhH">
  4381. <rect key="frame" x="69" y="-2.3333333333333712" width="74.666666666666686" height="45"/>
  4382. <constraints>
  4383. <constraint firstAttribute="width" constant="74.599999999999994" id="K6X-Ut-mAc"/>
  4384. <constraint firstAttribute="height" constant="45" id="kwy-yU-plN"/>
  4385. </constraints>
  4386. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  4387. <state key="normal" title="ខាងខៀវ-ត">
  4388. <color key="titleColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  4389. </state>
  4390. <connections>
  4391. <action selector="btnBlueClick:" destination="bPp-tV-eGp" eventType="touchUpInside" id="kiI-HW-1rF"/>
  4392. </connections>
  4393. </button>
  4394. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Bfu-rs-dld">
  4395. <rect key="frame" x="221.33333333333334" y="-2.3333333333333712" width="72.666666666666657" height="45"/>
  4396. <constraints>
  4397. <constraint firstAttribute="height" constant="45" id="3TS-oR-wtc"/>
  4398. <constraint firstAttribute="width" constant="72.799999999999997" id="Ncq-xc-M0p"/>
  4399. </constraints>
  4400. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  4401. <state key="normal" title="តារាងរង់ចាំ">
  4402. <color key="titleColor" systemColor="labelColor"/>
  4403. </state>
  4404. <connections>
  4405. <action selector="btnWaitClick:" destination="bPp-tV-eGp" eventType="touchUpInside" id="8YP-bn-VM7"/>
  4406. </connections>
  4407. </button>
  4408. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="sUX-72-MyQ">
  4409. <rect key="frame" x="294" y="-2.3333333333333712" width="70" height="45"/>
  4410. <constraints>
  4411. <constraint firstAttribute="width" constant="70" id="08X-B5-QLX"/>
  4412. <constraint firstAttribute="height" constant="45" id="QbD-9V-u9p"/>
  4413. </constraints>
  4414. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  4415. <state key="normal" title="តារាងភ្នាល់">
  4416. <color key="titleColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4417. </state>
  4418. <connections>
  4419. <action selector="btnBetClick:" destination="bPp-tV-eGp" eventType="touchUpInside" id="P43-9T-bf3"/>
  4420. </connections>
  4421. </button>
  4422. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="R3J-6B-U9k">
  4423. <rect key="frame" x="143.66666666666666" y="-2.3333333333333712" width="77.666666666666657" height="45"/>
  4424. <constraints>
  4425. <constraint firstAttribute="width" constant="77.599999999999994" id="73F-va-Cjx"/>
  4426. <constraint firstAttribute="height" constant="45" id="aB5-EH-oOS"/>
  4427. </constraints>
  4428. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  4429. <state key="normal" title="ខាងក្រហម-ត">
  4430. <color key="titleColor" systemColor="systemPinkColor"/>
  4431. </state>
  4432. <connections>
  4433. <action selector="btnRedClick:" destination="bPp-tV-eGp" eventType="touchUpInside" id="lRe-Wg-Izf"/>
  4434. </connections>
  4435. </button>
  4436. </subviews>
  4437. <color key="backgroundColor" systemColor="systemGray2Color"/>
  4438. <constraints>
  4439. <constraint firstItem="owr-W8-ZhH" firstAttribute="centerY" secondItem="Pfo-OC-Tvs" secondAttribute="centerY" id="0PS-Qu-XDt"/>
  4440. <constraint firstItem="R3J-6B-U9k" firstAttribute="leading" secondItem="owr-W8-ZhH" secondAttribute="trailing" id="9MB-ze-520"/>
  4441. <constraint firstItem="Pfo-OC-Tvs" firstAttribute="top" secondItem="ABC-gt-to0" secondAttribute="top" id="EH3-jo-vbm"/>
  4442. <constraint firstItem="owr-W8-ZhH" firstAttribute="leading" secondItem="Pfo-OC-Tvs" secondAttribute="trailing" id="HTr-3t-kCN"/>
  4443. <constraint firstItem="Bfu-rs-dld" firstAttribute="centerY" secondItem="R3J-6B-U9k" secondAttribute="centerY" id="Jpg-XQ-swL"/>
  4444. <constraint firstAttribute="height" constant="40" id="LYO-j8-FM5"/>
  4445. <constraint firstItem="Pfo-OC-Tvs" firstAttribute="leading" secondItem="ABC-gt-to0" secondAttribute="leading" id="QFi-Hz-YDf"/>
  4446. <constraint firstItem="R3J-6B-U9k" firstAttribute="centerY" secondItem="owr-W8-ZhH" secondAttribute="centerY" id="cDx-Q6-MLD"/>
  4447. <constraint firstItem="sUX-72-MyQ" firstAttribute="centerY" secondItem="Bfu-rs-dld" secondAttribute="centerY" id="dMh-LT-5mJ"/>
  4448. <constraint firstItem="sUX-72-MyQ" firstAttribute="leading" secondItem="Bfu-rs-dld" secondAttribute="trailing" id="pT2-q6-F72"/>
  4449. <constraint firstAttribute="bottom" secondItem="Pfo-OC-Tvs" secondAttribute="bottom" id="uiG-eB-3aU"/>
  4450. <constraint firstItem="Bfu-rs-dld" firstAttribute="leading" secondItem="R3J-6B-U9k" secondAttribute="trailing" id="v9F-ov-Rap"/>
  4451. </constraints>
  4452. </view>
  4453. <tableView clipsSubviews="YES" contentMode="scaleToFill" bounces="NO" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" bouncesZoom="NO" dataMode="prototypes" style="plain" separatorStyle="none" allowsSelection="NO" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="SBW-2G-Jg5">
  4454. <rect key="frame" x="0.0" y="40" width="364" height="272"/>
  4455. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  4456. <constraints>
  4457. <constraint firstAttribute="width" constant="364" id="WIe-gi-muy"/>
  4458. </constraints>
  4459. <prototypes>
  4460. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="BetCell" rowHeight="35" id="J5e-aX-dEi" customClass="BetTbCell" customModule="CockFight" customModuleProvider="target">
  4461. <rect key="frame" x="0.0" y="28" width="364" height="35"/>
  4462. <autoresizingMask key="autoresizingMask"/>
  4463. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="J5e-aX-dEi" id="0bA-NO-3cf">
  4464. <rect key="frame" x="0.0" y="0.0" width="364" height="35"/>
  4465. <autoresizingMask key="autoresizingMask"/>
  4466. <subviews>
  4467. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="1" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="vql-Rb-iyO">
  4468. <rect key="frame" x="20" y="12" width="50" height="16"/>
  4469. <constraints>
  4470. <constraint firstAttribute="width" constant="50" id="GI9-MA-1tg"/>
  4471. </constraints>
  4472. <fontDescription key="fontDescription" type="system" pointSize="13"/>
  4473. <nil key="textColor"/>
  4474. <nil key="highlightedColor"/>
  4475. </label>
  4476. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ក្រហម" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="kFd-SH-fKQ">
  4477. <rect key="frame" x="150" y="12" width="80" height="16"/>
  4478. <constraints>
  4479. <constraint firstAttribute="width" constant="80" id="fPs-EL-Jo2"/>
  4480. </constraints>
  4481. <fontDescription key="fontDescription" type="boldSystem" pointSize="13"/>
  4482. <color key="textColor" systemColor="systemRedColor"/>
  4483. <nil key="highlightedColor"/>
  4484. </label>
  4485. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="1kx2.3=0" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="xBu-qO-c7V">
  4486. <rect key="frame" x="240" y="10.666666666666664" width="104" height="19"/>
  4487. <constraints>
  4488. <constraint firstAttribute="width" constant="80" id="4Pf-my-0YF"/>
  4489. <constraint firstAttribute="height" constant="19" id="mjA-zn-vtL"/>
  4490. </constraints>
  4491. <fontDescription key="fontDescription" type="boldSystem" pointSize="13"/>
  4492. <color key="textColor" systemColor="systemRedColor"/>
  4493. <nil key="highlightedColor"/>
  4494. </label>
  4495. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Ra0-vp-Zc8">
  4496. <rect key="frame" x="20" y="34" width="328" height="1"/>
  4497. <color key="backgroundColor" systemColor="systemGray2Color"/>
  4498. <constraints>
  4499. <constraint firstAttribute="height" constant="1" id="kWV-aF-zs0"/>
  4500. </constraints>
  4501. </view>
  4502. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="3" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="n3R-3N-M59">
  4503. <rect key="frame" x="80" y="11.666666666666664" width="60" height="17"/>
  4504. <constraints>
  4505. <constraint firstAttribute="width" constant="60" id="qcl-gx-c3a"/>
  4506. </constraints>
  4507. <fontDescription key="fontDescription" type="boldSystem" pointSize="14"/>
  4508. <nil key="textColor"/>
  4509. <nil key="highlightedColor"/>
  4510. </label>
  4511. </subviews>
  4512. <constraints>
  4513. <constraint firstItem="kFd-SH-fKQ" firstAttribute="leading" secondItem="n3R-3N-M59" secondAttribute="trailing" constant="10" id="5Dm-4M-UAT"/>
  4514. <constraint firstItem="kFd-SH-fKQ" firstAttribute="centerY" secondItem="n3R-3N-M59" secondAttribute="centerY" id="5J2-q9-1oo"/>
  4515. <constraint firstItem="xBu-qO-c7V" firstAttribute="trailing" secondItem="0bA-NO-3cf" secondAttribute="trailingMargin" id="FaD-uc-B8R"/>
  4516. <constraint firstItem="n3R-3N-M59" firstAttribute="leading" secondItem="vql-Rb-iyO" secondAttribute="trailing" constant="10" id="GAd-b9-dJJ"/>
  4517. <constraint firstItem="xBu-qO-c7V" firstAttribute="leading" secondItem="kFd-SH-fKQ" secondAttribute="trailing" constant="10" id="Qla-tL-a6f"/>
  4518. <constraint firstItem="Ra0-vp-Zc8" firstAttribute="leading" secondItem="vql-Rb-iyO" secondAttribute="leading" id="WKA-TC-9jl"/>
  4519. <constraint firstAttribute="bottom" secondItem="Ra0-vp-Zc8" secondAttribute="bottom" id="YDC-b4-fhy"/>
  4520. <constraint firstItem="n3R-3N-M59" firstAttribute="centerY" secondItem="vql-Rb-iyO" secondAttribute="centerY" id="dNG-W0-Y7t"/>
  4521. <constraint firstItem="vql-Rb-iyO" firstAttribute="top" secondItem="0bA-NO-3cf" secondAttribute="topMargin" constant="1" id="dXW-Kq-V1O"/>
  4522. <constraint firstItem="vql-Rb-iyO" firstAttribute="leading" secondItem="0bA-NO-3cf" secondAttribute="leadingMargin" id="mBl-4h-FLD"/>
  4523. <constraint firstItem="xBu-qO-c7V" firstAttribute="centerY" secondItem="kFd-SH-fKQ" secondAttribute="centerY" id="ros-DY-vgB"/>
  4524. <constraint firstAttribute="trailing" secondItem="Ra0-vp-Zc8" secondAttribute="trailing" constant="16" id="vBk-YR-vxQ"/>
  4525. </constraints>
  4526. </tableViewCellContentView>
  4527. <connections>
  4528. <outlet property="lbl_amount" destination="xBu-qO-c7V" id="fDT-aw-Otq"/>
  4529. <outlet property="lbl_fight_no" destination="vql-Rb-iyO" id="q6n-dN-qHm"/>
  4530. <outlet property="lbl_rate" destination="n3R-3N-M59" id="GpT-pV-7Gz"/>
  4531. <outlet property="lbl_type" destination="kFd-SH-fKQ" id="uNl-bw-ClV"/>
  4532. </connections>
  4533. </tableViewCell>
  4534. </prototypes>
  4535. <connections>
  4536. <outlet property="dataSource" destination="bPp-tV-eGp" id="9Vc-Ab-weu"/>
  4537. <outlet property="delegate" destination="bPp-tV-eGp" id="cRd-Lg-m2P"/>
  4538. </connections>
  4539. </tableView>
  4540. <tableView clipsSubviews="YES" contentMode="scaleToFill" bounces="NO" alwaysBounceVertical="YES" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" bouncesZoom="NO" dataMode="prototypes" style="plain" separatorStyle="default" allowsSelection="NO" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="X98-kc-x3t">
  4541. <rect key="frame" x="0.0" y="40" width="364" height="272"/>
  4542. <prototypes>
  4543. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" indentationWidth="10" reuseIdentifier="WaitHeadcell" rowHeight="38" id="mhZ-ot-Yi2" customClass="WaitTbHeadCell" customModule="CockFight" customModuleProvider="target">
  4544. <rect key="frame" x="0.0" y="28" width="364" height="38"/>
  4545. <autoresizingMask key="autoresizingMask"/>
  4546. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="mhZ-ot-Yi2" id="76A-hr-XTn">
  4547. <rect key="frame" x="0.0" y="0.0" width="364" height="38"/>
  4548. <autoresizingMask key="autoresizingMask"/>
  4549. <subviews>
  4550. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="គូ" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ilj-us-5jj">
  4551. <rect key="frame" x="20" y="11" width="50" height="21"/>
  4552. <constraints>
  4553. <constraint firstAttribute="height" constant="21" id="a6J-Kb-Rn7"/>
  4554. <constraint firstAttribute="width" constant="50" id="umq-mX-V1a"/>
  4555. </constraints>
  4556. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  4557. <nil key="textColor"/>
  4558. <nil key="highlightedColor"/>
  4559. </label>
  4560. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ហាងឆេង" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="vQZ-Mb-zwl">
  4561. <rect key="frame" x="80" y="13" width="60" height="17"/>
  4562. <constraints>
  4563. <constraint firstAttribute="width" constant="60" id="C6H-SG-WEl"/>
  4564. </constraints>
  4565. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  4566. <nil key="textColor"/>
  4567. <nil key="highlightedColor"/>
  4568. </label>
  4569. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ជម្រើស" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ALO-F1-oE3">
  4570. <rect key="frame" x="150" y="13" width="60" height="17"/>
  4571. <constraints>
  4572. <constraint firstAttribute="width" constant="60" id="i60-KX-NMe"/>
  4573. </constraints>
  4574. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  4575. <nil key="textColor"/>
  4576. <nil key="highlightedColor"/>
  4577. </label>
  4578. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="402-Yl-LD4">
  4579. <rect key="frame" x="313" y="5.5" width="85" height="32"/>
  4580. <constraints>
  4581. <constraint firstAttribute="height" constant="32" id="Adh-qx-u5E"/>
  4582. <constraint firstAttribute="width" constant="85" id="wD7-Jd-ofv"/>
  4583. </constraints>
  4584. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  4585. <state key="normal" title="លុបទាំងអស់"/>
  4586. </button>
  4587. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="លុយភ្នាល់" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="8jP-Dd-Izr">
  4588. <rect key="frame" x="220" y="13" width="60" height="17"/>
  4589. <constraints>
  4590. <constraint firstAttribute="width" constant="60" id="fqp-B0-FNl"/>
  4591. </constraints>
  4592. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  4593. <nil key="textColor"/>
  4594. <nil key="highlightedColor"/>
  4595. </label>
  4596. </subviews>
  4597. <constraints>
  4598. <constraint firstItem="402-Yl-LD4" firstAttribute="centerY" secondItem="8jP-Dd-Izr" secondAttribute="centerY" id="2Hl-aX-NSd"/>
  4599. <constraint firstItem="402-Yl-LD4" firstAttribute="leading" secondItem="8jP-Dd-Izr" secondAttribute="trailing" constant="10" id="940-AA-qoT"/>
  4600. <constraint firstItem="vQZ-Mb-zwl" firstAttribute="centerY" secondItem="ilj-us-5jj" secondAttribute="centerY" id="BDV-MK-wa4"/>
  4601. <constraint firstItem="ALO-F1-oE3" firstAttribute="centerY" secondItem="vQZ-Mb-zwl" secondAttribute="centerY" id="Myu-CM-9va"/>
  4602. <constraint firstItem="vQZ-Mb-zwl" firstAttribute="leading" secondItem="ilj-us-5jj" secondAttribute="trailing" constant="10" id="NSp-WB-lV2"/>
  4603. <constraint firstItem="8jP-Dd-Izr" firstAttribute="centerY" secondItem="ALO-F1-oE3" secondAttribute="centerY" id="TUa-W8-mnY"/>
  4604. <constraint firstItem="ilj-us-5jj" firstAttribute="leading" secondItem="76A-hr-XTn" secondAttribute="leadingMargin" id="YMr-VQ-pHm"/>
  4605. <constraint firstItem="ALO-F1-oE3" firstAttribute="leading" secondItem="vQZ-Mb-zwl" secondAttribute="trailing" constant="10" id="a4F-3Z-NoU"/>
  4606. <constraint firstItem="ilj-us-5jj" firstAttribute="top" secondItem="76A-hr-XTn" secondAttribute="topMargin" id="hyM-W3-9E3"/>
  4607. <constraint firstItem="8jP-Dd-Izr" firstAttribute="leading" secondItem="ALO-F1-oE3" secondAttribute="trailing" constant="10" id="pYX-OS-OVS"/>
  4608. </constraints>
  4609. <variation key="default">
  4610. <mask key="subviews">
  4611. <exclude reference="402-Yl-LD4"/>
  4612. </mask>
  4613. </variation>
  4614. </tableViewCellContentView>
  4615. <connections>
  4616. <outlet property="btnDeleteAll" destination="402-Yl-LD4" id="Nlf-d8-9Kc"/>
  4617. <outlet property="lblHBet" destination="8jP-Dd-Izr" id="kRI-CT-O0w"/>
  4618. <outlet property="lblHChoice" destination="ALO-F1-oE3" id="lQ0-D5-bWp"/>
  4619. <outlet property="lblHHangCheng" destination="vQZ-Mb-zwl" id="w1H-Xh-Eco"/>
  4620. <outlet property="lblHPair" destination="ilj-us-5jj" id="mmb-LY-3fr"/>
  4621. </connections>
  4622. </tableViewCell>
  4623. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" indentationWidth="10" reuseIdentifier="WaitCell" rowHeight="43.5" id="uqE-p9-uI1" customClass="WaitTbCell" customModule="CockFight" customModuleProvider="target">
  4624. <rect key="frame" x="0.0" y="66" width="364" height="43.5"/>
  4625. <autoresizingMask key="autoresizingMask"/>
  4626. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="uqE-p9-uI1" id="RWe-FU-6sg">
  4627. <rect key="frame" x="0.0" y="0.0" width="364" height="43.5"/>
  4628. <autoresizingMask key="autoresizingMask"/>
  4629. <subviews>
  4630. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="1000" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Xkk-3h-Qc9">
  4631. <rect key="frame" x="20" y="11" width="50" height="21"/>
  4632. <constraints>
  4633. <constraint firstAttribute="height" constant="21" id="3w6-mh-g6z"/>
  4634. <constraint firstAttribute="width" constant="50" id="kyu-oC-oql"/>
  4635. </constraints>
  4636. <fontDescription key="fontDescription" type="system" pointSize="13"/>
  4637. <nil key="textColor"/>
  4638. <nil key="highlightedColor"/>
  4639. </label>
  4640. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="-0.90" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="nOa-CK-X2e">
  4641. <rect key="frame" x="80" y="13.666666666666664" width="60" height="16"/>
  4642. <constraints>
  4643. <constraint firstAttribute="width" constant="60" id="aVF-x2-iAI"/>
  4644. </constraints>
  4645. <fontDescription key="fontDescription" type="system" pointSize="13"/>
  4646. <color key="textColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
  4647. <nil key="highlightedColor"/>
  4648. </label>
  4649. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ក្រហម" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="p1Y-on-bwm">
  4650. <rect key="frame" x="150" y="13.666666666666664" width="60" height="16"/>
  4651. <constraints>
  4652. <constraint firstAttribute="width" constant="60" id="0Su-tH-HZf"/>
  4653. </constraints>
  4654. <fontDescription key="fontDescription" type="system" pointSize="13"/>
  4655. <color key="textColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
  4656. <nil key="highlightedColor"/>
  4657. </label>
  4658. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="gTH-H9-tBj">
  4659. <rect key="frame" x="290" y="5.6666666666666679" width="60" height="32"/>
  4660. <constraints>
  4661. <constraint firstAttribute="width" constant="60" id="S2G-4E-gKx"/>
  4662. <constraint firstAttribute="height" constant="32" id="VoB-9U-KmM"/>
  4663. </constraints>
  4664. <fontDescription key="fontDescription" type="system" pointSize="13"/>
  4665. <state key="normal" title="លុបចោល"/>
  4666. </button>
  4667. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="50" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Yau-Zy-gWL">
  4668. <rect key="frame" x="220" y="13.666666666666664" width="60" height="16"/>
  4669. <constraints>
  4670. <constraint firstAttribute="width" constant="60" id="wT5-ou-d0c"/>
  4671. </constraints>
  4672. <fontDescription key="fontDescription" type="system" pointSize="13"/>
  4673. <nil key="textColor"/>
  4674. <nil key="highlightedColor"/>
  4675. </label>
  4676. </subviews>
  4677. <constraints>
  4678. <constraint firstItem="gTH-H9-tBj" firstAttribute="centerY" secondItem="Yau-Zy-gWL" secondAttribute="centerY" id="3xT-0A-uJg"/>
  4679. <constraint firstItem="nOa-CK-X2e" firstAttribute="leading" secondItem="Xkk-3h-Qc9" secondAttribute="trailing" constant="10" id="7Dk-XJ-h1B"/>
  4680. <constraint firstItem="p1Y-on-bwm" firstAttribute="centerY" secondItem="nOa-CK-X2e" secondAttribute="centerY" id="BUH-D2-J43"/>
  4681. <constraint firstItem="gTH-H9-tBj" firstAttribute="leading" secondItem="Yau-Zy-gWL" secondAttribute="trailing" constant="10" id="c9T-eJ-XEd"/>
  4682. <constraint firstItem="Xkk-3h-Qc9" firstAttribute="top" secondItem="RWe-FU-6sg" secondAttribute="topMargin" id="fZP-gb-0Ly"/>
  4683. <constraint firstItem="Yau-Zy-gWL" firstAttribute="leading" secondItem="p1Y-on-bwm" secondAttribute="trailing" constant="10" id="kfX-RZ-5fs"/>
  4684. <constraint firstItem="Xkk-3h-Qc9" firstAttribute="leading" secondItem="RWe-FU-6sg" secondAttribute="leadingMargin" id="lxa-5H-7Qw"/>
  4685. <constraint firstItem="p1Y-on-bwm" firstAttribute="leading" secondItem="nOa-CK-X2e" secondAttribute="trailing" constant="10" id="swJ-L9-2Wa"/>
  4686. <constraint firstItem="nOa-CK-X2e" firstAttribute="centerY" secondItem="Xkk-3h-Qc9" secondAttribute="centerY" id="vab-fx-tFk"/>
  4687. <constraint firstItem="Yau-Zy-gWL" firstAttribute="centerY" secondItem="p1Y-on-bwm" secondAttribute="centerY" id="zQB-fR-MdL"/>
  4688. </constraints>
  4689. </tableViewCellContentView>
  4690. <connections>
  4691. <outlet property="btnDelete" destination="gTH-H9-tBj" id="ACq-mM-164"/>
  4692. <outlet property="lblChoice" destination="p1Y-on-bwm" id="H05-53-Pp9"/>
  4693. <outlet property="lblHangCheng" destination="nOa-CK-X2e" id="jxI-rh-ERP"/>
  4694. <outlet property="lblIDPair" destination="Xkk-3h-Qc9" id="TEA-x2-Leh"/>
  4695. <outlet property="lblMoneyBet" destination="Yau-Zy-gWL" id="yZg-pt-u0W"/>
  4696. </connections>
  4697. </tableViewCell>
  4698. </prototypes>
  4699. <sections/>
  4700. <connections>
  4701. <outlet property="dataSource" destination="bPp-tV-eGp" id="WMZ-fj-NH4"/>
  4702. <outlet property="delegate" destination="bPp-tV-eGp" id="BRh-hn-l3Z"/>
  4703. </connections>
  4704. </tableView>
  4705. <tableView clipsSubviews="YES" contentMode="scaleToFill" bounces="NO" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" bouncesZoom="NO" dataMode="prototypes" style="plain" separatorStyle="none" allowsSelection="NO" rowHeight="30" sectionHeaderHeight="10" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="Hxd-nx-Mii">
  4706. <rect key="frame" x="0.0" y="40" width="364" height="272"/>
  4707. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  4708. <prototypes>
  4709. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" indentationWidth="10" reuseIdentifier="HeadBlueCell" rowHeight="30" id="Qu4-57-DMN" customClass="BlueTBHeadCell" customModule="CockFight" customModuleProvider="target">
  4710. <rect key="frame" x="0.0" y="28" width="364" height="30"/>
  4711. <autoresizingMask key="autoresizingMask"/>
  4712. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="Qu4-57-DMN" id="fYI-Q8-ufK">
  4713. <rect key="frame" x="0.0" y="0.0" width="364" height="30"/>
  4714. <autoresizingMask key="autoresizingMask"/>
  4715. <subviews>
  4716. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ខាងខៀវ-ត" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="uqc-Io-E14">
  4717. <rect key="frame" x="9.9999999999999964" y="6.6666666666666679" width="60.666666666666657" height="17"/>
  4718. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  4719. <color key="textColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  4720. <nil key="highlightedColor"/>
  4721. </label>
  4722. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="សរុបលុយខៀវ" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="fOu-Jx-gD0">
  4723. <rect key="frame" x="80.666666666666686" y="6.6666666666666679" width="77.333333333333314" height="17"/>
  4724. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  4725. <color key="textColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  4726. <nil key="highlightedColor"/>
  4727. </label>
  4728. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="សរុបលុយក្រហម" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="uaN-Hm-pWA">
  4729. <rect key="frame" x="181" y="6.6666666666666679" width="89.666666666666686" height="17"/>
  4730. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  4731. <color key="textColor" systemColor="systemRedColor"/>
  4732. <nil key="highlightedColor"/>
  4733. </label>
  4734. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ខាងក្រហម-រង" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="FNf-AI-AbP">
  4735. <rect key="frame" x="280.66666666666669" y="6.6666666666666679" width="80" height="17"/>
  4736. <constraints>
  4737. <constraint firstAttribute="width" constant="80" id="wtn-9P-83W"/>
  4738. </constraints>
  4739. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  4740. <color key="textColor" systemColor="systemRedColor"/>
  4741. <nil key="highlightedColor"/>
  4742. </label>
  4743. </subviews>
  4744. <constraints>
  4745. <constraint firstItem="uaN-Hm-pWA" firstAttribute="centerY" secondItem="fOu-Jx-gD0" secondAttribute="centerY" id="2V0-9Q-fYc"/>
  4746. <constraint firstItem="fOu-Jx-gD0" firstAttribute="leading" secondItem="uqc-Io-E14" secondAttribute="trailing" constant="10" id="5jm-cZ-TOv"/>
  4747. <constraint firstItem="uqc-Io-E14" firstAttribute="leading" secondItem="fYI-Q8-ufK" secondAttribute="leading" constant="10" id="Odc-Aj-57k"/>
  4748. <constraint firstItem="FNf-AI-AbP" firstAttribute="centerY" secondItem="uaN-Hm-pWA" secondAttribute="centerY" id="STU-YD-IQo"/>
  4749. <constraint firstItem="uqc-Io-E14" firstAttribute="centerY" secondItem="fYI-Q8-ufK" secondAttribute="centerY" id="mXU-7x-mH7"/>
  4750. <constraint firstItem="fOu-Jx-gD0" firstAttribute="centerY" secondItem="uqc-Io-E14" secondAttribute="centerY" id="obE-7a-h0z"/>
  4751. <constraint firstItem="FNf-AI-AbP" firstAttribute="leading" secondItem="uaN-Hm-pWA" secondAttribute="trailing" constant="10" id="tUl-CC-7TS"/>
  4752. <constraint firstItem="uaN-Hm-pWA" firstAttribute="leading" secondItem="fOu-Jx-gD0" secondAttribute="trailing" constant="23" id="yCS-yJ-gNN"/>
  4753. </constraints>
  4754. </tableViewCellContentView>
  4755. <color key="backgroundColor" systemColor="systemGray5Color"/>
  4756. <connections>
  4757. <outlet property="lblHBlueTor" destination="uqc-Io-E14" id="bo6-IO-8Hc"/>
  4758. <outlet property="lblHRed" destination="FNf-AI-AbP" id="Zgd-Xd-XIe"/>
  4759. <outlet property="lblHTotalBlue" destination="fOu-Jx-gD0" id="F3u-xx-nuU"/>
  4760. <outlet property="lblHTotalRed" destination="uaN-Hm-pWA" id="Dt5-nI-IhR"/>
  4761. </connections>
  4762. </tableViewCell>
  4763. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SubBlueCell" rowHeight="33" id="yU2-t7-eWl" customClass="BlueTbCell" customModule="CockFight" customModuleProvider="target">
  4764. <rect key="frame" x="0.0" y="58" width="364" height="33"/>
  4765. <autoresizingMask key="autoresizingMask"/>
  4766. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="yU2-t7-eWl" id="FhY-fn-X6c">
  4767. <rect key="frame" x="0.0" y="0.0" width="364" height="33"/>
  4768. <autoresizingMask key="autoresizingMask"/>
  4769. <subviews>
  4770. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="0ZI-R6-XVR">
  4771. <rect key="frame" x="180" y="9" width="15" height="15"/>
  4772. <color key="backgroundColor" systemColor="systemRedColor"/>
  4773. <constraints>
  4774. <constraint firstAttribute="height" constant="15" id="Q7U-nc-1pH"/>
  4775. <constraint firstAttribute="width" constant="15" id="qOi-Ad-PDO"/>
  4776. </constraints>
  4777. <fontDescription key="fontDescription" name="HelveticaNeue-Bold" family="Helvetica Neue" pointSize="12"/>
  4778. <state key="normal" title="X">
  4779. <color key="titleColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4780. </state>
  4781. </button>
  4782. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="MRY-si-aUj">
  4783. <rect key="frame" x="10" y="2.6666666666666679" width="60" height="28"/>
  4784. <constraints>
  4785. <constraint firstAttribute="width" constant="60" id="cii-dk-ceN"/>
  4786. </constraints>
  4787. <fontDescription key="fontDescription" type="system" weight="black" pointSize="13"/>
  4788. <state key="normal" title="1.00">
  4789. <color key="titleColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4790. </state>
  4791. </button>
  4792. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="6p2-R2-Bfs">
  4793. <rect key="frame" x="280" y="2.6666666666666679" width="75" height="28"/>
  4794. <constraints>
  4795. <constraint firstAttribute="width" constant="75" id="4Ma-xX-Ob1"/>
  4796. </constraints>
  4797. <fontDescription key="fontDescription" type="system" weight="black" pointSize="13"/>
  4798. <state key="normal" title="-0.95">
  4799. <color key="titleColor" systemColor="systemRedColor"/>
  4800. </state>
  4801. </button>
  4802. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="100" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="t0G-b1-sG2">
  4803. <rect key="frame" x="80" y="8.6666666666666643" width="50" height="16"/>
  4804. <constraints>
  4805. <constraint firstAttribute="width" constant="50" id="jdP-3t-DI1"/>
  4806. </constraints>
  4807. <fontDescription key="fontDescription" type="system" weight="black" pointSize="13"/>
  4808. <color key="textColor" red="0.3803921569" green="0.73725490199999999" blue="0.098039215690000001" alpha="1" colorSpace="calibratedRGB"/>
  4809. <nil key="highlightedColor"/>
  4810. </label>
  4811. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="0" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Xbb-5m-JhK">
  4812. <rect key="frame" x="207" y="8.6666666666666643" width="63" height="16"/>
  4813. <constraints>
  4814. <constraint firstAttribute="width" constant="63" id="uxh-C5-lo8"/>
  4815. </constraints>
  4816. <fontDescription key="fontDescription" type="system" weight="black" pointSize="13"/>
  4817. <color key="textColor" red="0.3803921569" green="0.73649914800000005" blue="0.096971108649999999" alpha="1" colorSpace="calibratedRGB"/>
  4818. <nil key="highlightedColor"/>
  4819. </label>
  4820. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="VJM-uN-a2w">
  4821. <rect key="frame" x="142" y="9" width="15" height="15"/>
  4822. <color key="backgroundColor" red="0.16862745100000001" green="0.25882352939999997" blue="0.80000000000000004" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4823. <constraints>
  4824. <constraint firstAttribute="height" constant="15" id="31M-V4-0nF"/>
  4825. <constraint firstAttribute="width" constant="15" id="d9g-Gc-yY1"/>
  4826. </constraints>
  4827. <fontDescription key="fontDescription" name="HelveticaNeue-Bold" family="Helvetica Neue" pointSize="12"/>
  4828. <state key="normal" title="X">
  4829. <color key="titleColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4830. </state>
  4831. </button>
  4832. </subviews>
  4833. <constraints>
  4834. <constraint firstItem="t0G-b1-sG2" firstAttribute="centerY" secondItem="MRY-si-aUj" secondAttribute="centerY" id="8H6-AL-Ajq"/>
  4835. <constraint firstItem="Xbb-5m-JhK" firstAttribute="leading" secondItem="0ZI-R6-XVR" secondAttribute="trailing" constant="12" id="A9w-ih-kgy"/>
  4836. <constraint firstItem="VJM-uN-a2w" firstAttribute="leading" secondItem="t0G-b1-sG2" secondAttribute="trailing" constant="12" id="FxK-wP-idM"/>
  4837. <constraint firstItem="Xbb-5m-JhK" firstAttribute="centerY" secondItem="t0G-b1-sG2" secondAttribute="centerY" id="G1k-6w-SE4"/>
  4838. <constraint firstItem="MRY-si-aUj" firstAttribute="centerY" secondItem="FhY-fn-X6c" secondAttribute="centerY" id="Mva-Wf-ajV"/>
  4839. <constraint firstItem="0ZI-R6-XVR" firstAttribute="leading" secondItem="VJM-uN-a2w" secondAttribute="trailing" constant="23" id="VoN-Mn-p46"/>
  4840. <constraint firstItem="t0G-b1-sG2" firstAttribute="leading" secondItem="MRY-si-aUj" secondAttribute="trailing" constant="10" id="X2x-wp-Zhl"/>
  4841. <constraint firstItem="6p2-R2-Bfs" firstAttribute="leading" secondItem="Xbb-5m-JhK" secondAttribute="trailing" constant="10" id="Xfe-I4-68q"/>
  4842. <constraint firstItem="VJM-uN-a2w" firstAttribute="centerY" secondItem="FhY-fn-X6c" secondAttribute="centerY" id="eJK-1Z-h8j"/>
  4843. <constraint firstItem="MRY-si-aUj" firstAttribute="leading" secondItem="FhY-fn-X6c" secondAttribute="leading" constant="10" id="iX7-Dd-tG9"/>
  4844. <constraint firstItem="0ZI-R6-XVR" firstAttribute="centerY" secondItem="FhY-fn-X6c" secondAttribute="centerY" id="qck-Hl-pQj"/>
  4845. <constraint firstItem="6p2-R2-Bfs" firstAttribute="centerY" secondItem="Xbb-5m-JhK" secondAttribute="centerY" id="rjP-6n-G77"/>
  4846. </constraints>
  4847. </tableViewCellContentView>
  4848. <color key="backgroundColor" systemColor="systemGray5Color"/>
  4849. <connections>
  4850. <outlet property="btnBlueTor" destination="MRY-si-aUj" id="Ez4-A1-Lsq"/>
  4851. <outlet property="btnDeleteBlue" destination="VJM-uN-a2w" id="lBH-OK-GRO"/>
  4852. <outlet property="btnDeleteRed" destination="0ZI-R6-XVR" id="cE4-wO-IfR"/>
  4853. <outlet property="btnRedRong" destination="6p2-R2-Bfs" id="K1H-Qi-N4N"/>
  4854. <outlet property="lblTotalBlue" destination="t0G-b1-sG2" id="Yk5-ld-zjF"/>
  4855. <outlet property="lblTotalRed" destination="Xbb-5m-JhK" id="TWx-gi-bBm"/>
  4856. </connections>
  4857. </tableViewCell>
  4858. </prototypes>
  4859. <connections>
  4860. <outlet property="dataSource" destination="bPp-tV-eGp" id="OIE-ic-lpc"/>
  4861. <outlet property="delegate" destination="bPp-tV-eGp" id="XSr-zo-0Vp"/>
  4862. </connections>
  4863. </tableView>
  4864. <tableView clipsSubviews="YES" contentMode="scaleToFill" bounces="NO" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" bouncesZoom="NO" dataMode="prototypes" style="plain" separatorStyle="none" allowsSelection="NO" rowHeight="30" sectionHeaderHeight="10" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="d2h-Ru-3pj">
  4865. <rect key="frame" x="0.0" y="40" width="364" height="272"/>
  4866. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  4867. <prototypes>
  4868. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" indentationWidth="10" reuseIdentifier="HeadRedCell" rowHeight="30" id="Spp-6S-g1K" customClass="RedTbHeadCell" customModule="CockFight" customModuleProvider="target">
  4869. <rect key="frame" x="0.0" y="28" width="364" height="30"/>
  4870. <autoresizingMask key="autoresizingMask"/>
  4871. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="Spp-6S-g1K" id="Yoy-vh-wQP">
  4872. <rect key="frame" x="0.0" y="0.0" width="364" height="30"/>
  4873. <autoresizingMask key="autoresizingMask"/>
  4874. <subviews>
  4875. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ខាងខៀវ-រង" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="8X3-8M-Ij1">
  4876. <rect key="frame" x="10" y="6.6666666666666679" width="65.666666666666671" height="17"/>
  4877. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  4878. <color key="textColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  4879. <nil key="highlightedColor"/>
  4880. </label>
  4881. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="សរុបលុយខៀវ" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Ux4-75-1DX">
  4882. <rect key="frame" x="85.666666666666686" y="6.6666666666666679" width="77.333333333333314" height="17"/>
  4883. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  4884. <color key="textColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  4885. <nil key="highlightedColor"/>
  4886. </label>
  4887. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="សរុបលុយក្រហម" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="DYB-Gv-3C1">
  4888. <rect key="frame" x="178" y="6.6666666666666679" width="89.666666666666686" height="17"/>
  4889. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  4890. <color key="textColor" systemColor="systemRedColor"/>
  4891. <nil key="highlightedColor"/>
  4892. </label>
  4893. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ខាងក្រហម-ត" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="7dw-Qu-YxM">
  4894. <rect key="frame" x="277.66666666666669" y="6.6666666666666679" width="75" height="17"/>
  4895. <constraints>
  4896. <constraint firstAttribute="width" constant="75" id="MVp-fB-9nq"/>
  4897. </constraints>
  4898. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  4899. <color key="textColor" systemColor="systemRedColor"/>
  4900. <nil key="highlightedColor"/>
  4901. </label>
  4902. </subviews>
  4903. <constraints>
  4904. <constraint firstItem="DYB-Gv-3C1" firstAttribute="leading" secondItem="Ux4-75-1DX" secondAttribute="trailing" constant="15" id="6xr-60-V7h"/>
  4905. <constraint firstItem="8X3-8M-Ij1" firstAttribute="centerY" secondItem="Yoy-vh-wQP" secondAttribute="centerY" id="7Bb-qf-c8S"/>
  4906. <constraint firstItem="DYB-Gv-3C1" firstAttribute="centerY" secondItem="Ux4-75-1DX" secondAttribute="centerY" id="BJl-Ce-Mja"/>
  4907. <constraint firstItem="Ux4-75-1DX" firstAttribute="leading" secondItem="8X3-8M-Ij1" secondAttribute="trailing" constant="10" id="TF0-cx-i4E"/>
  4908. <constraint firstItem="7dw-Qu-YxM" firstAttribute="centerY" secondItem="DYB-Gv-3C1" secondAttribute="centerY" id="f79-XE-C2Y"/>
  4909. <constraint firstItem="Ux4-75-1DX" firstAttribute="centerY" secondItem="8X3-8M-Ij1" secondAttribute="centerY" id="qvP-h9-8zm"/>
  4910. <constraint firstItem="8X3-8M-Ij1" firstAttribute="leading" secondItem="Yoy-vh-wQP" secondAttribute="leading" constant="10" id="shq-UV-AFu"/>
  4911. <constraint firstItem="7dw-Qu-YxM" firstAttribute="leading" secondItem="DYB-Gv-3C1" secondAttribute="trailing" constant="10" id="yzd-f4-7b3"/>
  4912. </constraints>
  4913. </tableViewCellContentView>
  4914. <color key="backgroundColor" systemColor="systemGray5Color"/>
  4915. <connections>
  4916. <outlet property="lblHBlueTor" destination="8X3-8M-Ij1" id="iaB-wC-J4v"/>
  4917. <outlet property="lblHRed" destination="7dw-Qu-YxM" id="Lph-8K-PLZ"/>
  4918. <outlet property="lblHTotalBlue" destination="Ux4-75-1DX" id="7o6-Pm-bVY"/>
  4919. <outlet property="lblHTotalRed" destination="DYB-Gv-3C1" id="43h-Ch-Jze"/>
  4920. </connections>
  4921. </tableViewCell>
  4922. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SubRedCell" rowHeight="33" id="Tib-su-jUA" customClass="RedTbCell" customModule="CockFight" customModuleProvider="target">
  4923. <rect key="frame" x="0.0" y="58" width="364" height="33"/>
  4924. <autoresizingMask key="autoresizingMask"/>
  4925. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="Tib-su-jUA" id="YYz-Bm-0HB">
  4926. <rect key="frame" x="0.0" y="0.0" width="364" height="33"/>
  4927. <autoresizingMask key="autoresizingMask"/>
  4928. <subviews>
  4929. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="MKW-fa-a3U">
  4930. <rect key="frame" x="10" y="2.6666666666666679" width="65" height="28"/>
  4931. <constraints>
  4932. <constraint firstAttribute="width" constant="65" id="Bf3-1D-ese"/>
  4933. </constraints>
  4934. <fontDescription key="fontDescription" type="system" weight="black" pointSize="13"/>
  4935. <state key="normal" title="1.00">
  4936. <color key="titleColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4937. </state>
  4938. </button>
  4939. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Q8e-vv-pO0">
  4940. <rect key="frame" x="280" y="2.6666666666666679" width="75" height="28"/>
  4941. <constraints>
  4942. <constraint firstAttribute="width" constant="75" id="ylM-v5-oxk"/>
  4943. </constraints>
  4944. <fontDescription key="fontDescription" type="system" weight="black" pointSize="13"/>
  4945. <state key="normal" title="-0.95">
  4946. <color key="titleColor" systemColor="systemRedColor"/>
  4947. </state>
  4948. </button>
  4949. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="100" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="HxL-to-niE">
  4950. <rect key="frame" x="85" y="8.6666666666666643" width="55" height="16"/>
  4951. <constraints>
  4952. <constraint firstAttribute="width" constant="55" id="L2D-1b-en7"/>
  4953. </constraints>
  4954. <fontDescription key="fontDescription" type="system" weight="black" pointSize="13"/>
  4955. <color key="textColor" red="0.3803921569" green="0.73725490199999999" blue="0.098039215690000001" alpha="1" colorSpace="calibratedRGB"/>
  4956. <nil key="highlightedColor"/>
  4957. </label>
  4958. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="0" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="BZA-z8-MGe">
  4959. <rect key="frame" x="200" y="8.6666666666666643" width="70" height="16"/>
  4960. <constraints>
  4961. <constraint firstAttribute="width" constant="70" id="PLb-AM-ebD"/>
  4962. </constraints>
  4963. <fontDescription key="fontDescription" type="system" weight="black" pointSize="13"/>
  4964. <color key="textColor" red="0.3803921569" green="0.73649914800000005" blue="0.096971108649999999" alpha="1" colorSpace="calibratedRGB"/>
  4965. <nil key="highlightedColor"/>
  4966. </label>
  4967. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="dD8-Do-2Ch">
  4968. <rect key="frame" x="145" y="9" width="15" height="15"/>
  4969. <color key="backgroundColor" red="0.16862745100000001" green="0.25882352939999997" blue="0.80000000000000004" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4970. <constraints>
  4971. <constraint firstAttribute="width" constant="15" id="NSC-dn-Cv4"/>
  4972. <constraint firstAttribute="height" constant="15" id="uqz-pt-Vd4"/>
  4973. </constraints>
  4974. <fontDescription key="fontDescription" name="HelveticaNeue-Bold" family="Helvetica Neue" pointSize="12"/>
  4975. <state key="normal" title="X">
  4976. <color key="titleColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  4977. </state>
  4978. </button>
  4979. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="k8u-kA-xpg">
  4980. <rect key="frame" x="180" y="9" width="15" height="15"/>
  4981. <color key="backgroundColor" systemColor="systemRedColor"/>
  4982. <constraints>
  4983. <constraint firstAttribute="width" constant="15" id="hAp-Dg-GZ7"/>
  4984. <constraint firstAttribute="height" constant="15" id="yfV-v6-fGQ"/>
  4985. </constraints>
  4986. <fontDescription key="fontDescription" name="HelveticaNeue-Bold" family="Helvetica Neue" pointSize="12"/>
  4987. <state key="normal" title="X">
  4988. <color key="titleColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  4989. </state>
  4990. </button>
  4991. </subviews>
  4992. <constraints>
  4993. <constraint firstItem="BZA-z8-MGe" firstAttribute="centerY" secondItem="HxL-to-niE" secondAttribute="centerY" id="24r-RW-eAA"/>
  4994. <constraint firstItem="k8u-kA-xpg" firstAttribute="leading" secondItem="dD8-Do-2Ch" secondAttribute="trailing" constant="20" id="5pX-hf-xxb"/>
  4995. <constraint firstItem="Q8e-vv-pO0" firstAttribute="leading" secondItem="BZA-z8-MGe" secondAttribute="trailing" constant="10" id="62L-YB-3Ne"/>
  4996. <constraint firstItem="MKW-fa-a3U" firstAttribute="centerY" secondItem="YYz-Bm-0HB" secondAttribute="centerY" id="6UI-s5-fvV"/>
  4997. <constraint firstItem="dD8-Do-2Ch" firstAttribute="centerY" secondItem="YYz-Bm-0HB" secondAttribute="centerY" id="D9E-55-TXA"/>
  4998. <constraint firstItem="dD8-Do-2Ch" firstAttribute="leading" secondItem="HxL-to-niE" secondAttribute="trailing" constant="5" id="U3q-fR-2yW"/>
  4999. <constraint firstItem="Q8e-vv-pO0" firstAttribute="centerY" secondItem="BZA-z8-MGe" secondAttribute="centerY" id="YLm-Rn-4wb"/>
  5000. <constraint firstItem="MKW-fa-a3U" firstAttribute="leading" secondItem="YYz-Bm-0HB" secondAttribute="leading" constant="10" id="bjJ-kG-kW8"/>
  5001. <constraint firstItem="k8u-kA-xpg" firstAttribute="centerY" secondItem="YYz-Bm-0HB" secondAttribute="centerY" id="dM2-Fl-ISI"/>
  5002. <constraint firstItem="BZA-z8-MGe" firstAttribute="leading" secondItem="k8u-kA-xpg" secondAttribute="trailing" constant="5" id="ekZ-G6-Ydd"/>
  5003. <constraint firstItem="HxL-to-niE" firstAttribute="centerY" secondItem="MKW-fa-a3U" secondAttribute="centerY" id="lja-9T-h7y"/>
  5004. <constraint firstItem="HxL-to-niE" firstAttribute="leading" secondItem="MKW-fa-a3U" secondAttribute="trailing" constant="10" id="z4T-ce-wC0"/>
  5005. </constraints>
  5006. </tableViewCellContentView>
  5007. <color key="backgroundColor" systemColor="systemGray5Color"/>
  5008. <connections>
  5009. <outlet property="btnBlueTor" destination="MKW-fa-a3U" id="vOQ-nq-R53"/>
  5010. <outlet property="btnDeleteBlue" destination="dD8-Do-2Ch" id="MdR-3g-ic1"/>
  5011. <outlet property="btnDeleteRed" destination="k8u-kA-xpg" id="iLT-AW-SI4"/>
  5012. <outlet property="btnRedRong" destination="Q8e-vv-pO0" id="Utk-sO-mBW"/>
  5013. <outlet property="lblTotalBlue" destination="HxL-to-niE" id="l05-Td-Zle"/>
  5014. <outlet property="lblTotalRed" destination="BZA-z8-MGe" id="MeL-0A-NuF"/>
  5015. </connections>
  5016. </tableViewCell>
  5017. </prototypes>
  5018. <connections>
  5019. <outlet property="dataSource" destination="bPp-tV-eGp" id="jdY-eI-ej4"/>
  5020. <outlet property="delegate" destination="bPp-tV-eGp" id="IrK-fE-5Lf"/>
  5021. </connections>
  5022. </tableView>
  5023. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="gvH-JY-YmO" userLabel="VPongTable">
  5024. <rect key="frame" x="0.0" y="40" width="364" height="240"/>
  5025. <subviews>
  5026. <collectionView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" fixedFrame="YES" dataMode="prototypes" translatesAutoresizingMaskIntoConstraints="NO" id="lAx-rX-SAf">
  5027. <rect key="frame" x="0.0" y="0.0" width="364" height="240"/>
  5028. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  5029. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  5030. <collectionViewFlowLayout key="collectionViewLayout" minimumLineSpacing="0.0" minimumInteritemSpacing="0.0" id="nhG-kM-zCk">
  5031. <size key="itemSize" width="31" height="31"/>
  5032. <size key="headerReferenceSize" width="0.0" height="0.0"/>
  5033. <size key="footerReferenceSize" width="0.0" height="0.0"/>
  5034. <inset key="sectionInset" minX="0.0" minY="0.0" maxX="0.0" maxY="0.0"/>
  5035. </collectionViewFlowLayout>
  5036. <cells>
  5037. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" reuseIdentifier="SubBlueCell" id="WlH-J2-DTp" customClass="PongCollectionCell" customModule="CockFight" customModuleProvider="target">
  5038. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5039. <autoresizingMask key="autoresizingMask"/>
  5040. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="fcm-38-XnK">
  5041. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5042. <autoresizingMask key="autoresizingMask"/>
  5043. <subviews>
  5044. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="q4c-fE-1uu">
  5045. <rect key="frame" x="2.5" y="2.5" width="26" height="26"/>
  5046. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  5047. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  5048. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  5049. <nil key="textColor"/>
  5050. <nil key="highlightedColor"/>
  5051. </label>
  5052. </subviews>
  5053. </collectionViewCellContentView>
  5054. <connections>
  5055. <outlet property="lblRound" destination="q4c-fE-1uu" id="OGw-wA-3c1"/>
  5056. </connections>
  5057. </collectionViewCell>
  5058. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="0mQ-D5-rsJ">
  5059. <rect key="frame" x="33.333333333333336" y="0.0" width="31" height="31"/>
  5060. <autoresizingMask key="autoresizingMask"/>
  5061. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Moy-nW-pep">
  5062. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5063. <autoresizingMask key="autoresizingMask"/>
  5064. </collectionViewCellContentView>
  5065. </collectionViewCell>
  5066. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="XhS-yc-Ax9">
  5067. <rect key="frame" x="66.666666666666671" y="0.0" width="31" height="31"/>
  5068. <autoresizingMask key="autoresizingMask"/>
  5069. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="HvY-UE-3WP">
  5070. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5071. <autoresizingMask key="autoresizingMask"/>
  5072. </collectionViewCellContentView>
  5073. </collectionViewCell>
  5074. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="7nP-2g-Hp0">
  5075. <rect key="frame" x="100" y="0.0" width="31" height="31"/>
  5076. <autoresizingMask key="autoresizingMask"/>
  5077. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Ie6-ad-fju">
  5078. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5079. <autoresizingMask key="autoresizingMask"/>
  5080. </collectionViewCellContentView>
  5081. </collectionViewCell>
  5082. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="tS5-U0-MXI">
  5083. <rect key="frame" x="133.33333333333334" y="0.0" width="31" height="31"/>
  5084. <autoresizingMask key="autoresizingMask"/>
  5085. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="mYE-kn-9xI">
  5086. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5087. <autoresizingMask key="autoresizingMask"/>
  5088. </collectionViewCellContentView>
  5089. </collectionViewCell>
  5090. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="C4n-IH-bp7">
  5091. <rect key="frame" x="166.66666666666666" y="0.0" width="31" height="31"/>
  5092. <autoresizingMask key="autoresizingMask"/>
  5093. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="S4R-5q-Wos">
  5094. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5095. <autoresizingMask key="autoresizingMask"/>
  5096. </collectionViewCellContentView>
  5097. </collectionViewCell>
  5098. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="7lI-0V-oT1">
  5099. <rect key="frame" x="199.66666666666666" y="0.0" width="31" height="31"/>
  5100. <autoresizingMask key="autoresizingMask"/>
  5101. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="pHh-PV-pzK">
  5102. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5103. <autoresizingMask key="autoresizingMask"/>
  5104. </collectionViewCellContentView>
  5105. </collectionViewCell>
  5106. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="e95-Ff-W0Y">
  5107. <rect key="frame" x="233" y="0.0" width="31" height="31"/>
  5108. <autoresizingMask key="autoresizingMask"/>
  5109. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="8RO-3I-Qhd">
  5110. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5111. <autoresizingMask key="autoresizingMask"/>
  5112. </collectionViewCellContentView>
  5113. </collectionViewCell>
  5114. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Dso-lU-Ryo">
  5115. <rect key="frame" x="266.33333333333331" y="0.0" width="31" height="31"/>
  5116. <autoresizingMask key="autoresizingMask"/>
  5117. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="tIP-LZ-ViI">
  5118. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5119. <autoresizingMask key="autoresizingMask"/>
  5120. </collectionViewCellContentView>
  5121. </collectionViewCell>
  5122. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="z0y-lE-G7S">
  5123. <rect key="frame" x="299.66666666666669" y="0.0" width="31" height="31"/>
  5124. <autoresizingMask key="autoresizingMask"/>
  5125. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="RTD-1f-uit">
  5126. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5127. <autoresizingMask key="autoresizingMask"/>
  5128. </collectionViewCellContentView>
  5129. </collectionViewCell>
  5130. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="7JM-0M-dmd">
  5131. <rect key="frame" x="333" y="0.0" width="31" height="31"/>
  5132. <autoresizingMask key="autoresizingMask"/>
  5133. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="aIQ-sH-uqg">
  5134. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5135. <autoresizingMask key="autoresizingMask"/>
  5136. </collectionViewCellContentView>
  5137. </collectionViewCell>
  5138. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="bdY-vH-1oy">
  5139. <rect key="frame" x="0.0" y="31" width="31" height="31"/>
  5140. <autoresizingMask key="autoresizingMask"/>
  5141. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="raA-oi-tWh">
  5142. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5143. <autoresizingMask key="autoresizingMask"/>
  5144. </collectionViewCellContentView>
  5145. </collectionViewCell>
  5146. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Ik6-mm-0rf">
  5147. <rect key="frame" x="33.333333333333336" y="31" width="31" height="31"/>
  5148. <autoresizingMask key="autoresizingMask"/>
  5149. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="OhT-C3-bZs">
  5150. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5151. <autoresizingMask key="autoresizingMask"/>
  5152. </collectionViewCellContentView>
  5153. </collectionViewCell>
  5154. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="UPC-Ii-pxi">
  5155. <rect key="frame" x="66.666666666666671" y="31" width="31" height="31"/>
  5156. <autoresizingMask key="autoresizingMask"/>
  5157. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Vr1-Df-tD8">
  5158. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5159. <autoresizingMask key="autoresizingMask"/>
  5160. </collectionViewCellContentView>
  5161. </collectionViewCell>
  5162. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="7J2-tI-Oel">
  5163. <rect key="frame" x="100" y="31" width="31" height="31"/>
  5164. <autoresizingMask key="autoresizingMask"/>
  5165. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="vOx-Gd-YnX">
  5166. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5167. <autoresizingMask key="autoresizingMask"/>
  5168. </collectionViewCellContentView>
  5169. </collectionViewCell>
  5170. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="0tT-RH-6dv">
  5171. <rect key="frame" x="133.33333333333334" y="31" width="31" height="31"/>
  5172. <autoresizingMask key="autoresizingMask"/>
  5173. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="tba-6P-lbw">
  5174. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5175. <autoresizingMask key="autoresizingMask"/>
  5176. </collectionViewCellContentView>
  5177. </collectionViewCell>
  5178. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="29N-iD-hp9">
  5179. <rect key="frame" x="166.66666666666666" y="31" width="31" height="31"/>
  5180. <autoresizingMask key="autoresizingMask"/>
  5181. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="mqX-T8-5b0">
  5182. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5183. <autoresizingMask key="autoresizingMask"/>
  5184. </collectionViewCellContentView>
  5185. </collectionViewCell>
  5186. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="4ZL-vA-bPU">
  5187. <rect key="frame" x="199.66666666666666" y="31" width="31" height="31"/>
  5188. <autoresizingMask key="autoresizingMask"/>
  5189. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="sNT-s5-e7I">
  5190. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5191. <autoresizingMask key="autoresizingMask"/>
  5192. </collectionViewCellContentView>
  5193. </collectionViewCell>
  5194. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="k9H-Bz-3y3">
  5195. <rect key="frame" x="233" y="31" width="31" height="31"/>
  5196. <autoresizingMask key="autoresizingMask"/>
  5197. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="kW1-Zb-3YQ">
  5198. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5199. <autoresizingMask key="autoresizingMask"/>
  5200. </collectionViewCellContentView>
  5201. </collectionViewCell>
  5202. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Jpp-OZ-87N">
  5203. <rect key="frame" x="266.33333333333331" y="31" width="31" height="31"/>
  5204. <autoresizingMask key="autoresizingMask"/>
  5205. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="7t6-Lo-uqE">
  5206. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5207. <autoresizingMask key="autoresizingMask"/>
  5208. </collectionViewCellContentView>
  5209. </collectionViewCell>
  5210. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="AND-yZ-5fm">
  5211. <rect key="frame" x="299.66666666666669" y="31" width="31" height="31"/>
  5212. <autoresizingMask key="autoresizingMask"/>
  5213. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="jOe-7l-r13">
  5214. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5215. <autoresizingMask key="autoresizingMask"/>
  5216. </collectionViewCellContentView>
  5217. </collectionViewCell>
  5218. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Csc-4Z-Zfo">
  5219. <rect key="frame" x="333" y="31" width="31" height="31"/>
  5220. <autoresizingMask key="autoresizingMask"/>
  5221. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="D96-mW-9QC">
  5222. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5223. <autoresizingMask key="autoresizingMask"/>
  5224. </collectionViewCellContentView>
  5225. </collectionViewCell>
  5226. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="HTs-Ve-ucm">
  5227. <rect key="frame" x="0.0" y="62" width="31" height="31"/>
  5228. <autoresizingMask key="autoresizingMask"/>
  5229. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="0Os-ZZ-ykS">
  5230. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5231. <autoresizingMask key="autoresizingMask"/>
  5232. </collectionViewCellContentView>
  5233. </collectionViewCell>
  5234. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="qby-Md-Htg">
  5235. <rect key="frame" x="33.333333333333336" y="62" width="31" height="31"/>
  5236. <autoresizingMask key="autoresizingMask"/>
  5237. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="L5B-YE-V3J">
  5238. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5239. <autoresizingMask key="autoresizingMask"/>
  5240. </collectionViewCellContentView>
  5241. </collectionViewCell>
  5242. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="TYN-p7-S9x">
  5243. <rect key="frame" x="66.666666666666671" y="62" width="31" height="31"/>
  5244. <autoresizingMask key="autoresizingMask"/>
  5245. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="TGD-CP-Ygv">
  5246. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5247. <autoresizingMask key="autoresizingMask"/>
  5248. </collectionViewCellContentView>
  5249. </collectionViewCell>
  5250. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="hVU-3g-rRJ">
  5251. <rect key="frame" x="100" y="62" width="31" height="31"/>
  5252. <autoresizingMask key="autoresizingMask"/>
  5253. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="oAr-zq-scU">
  5254. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5255. <autoresizingMask key="autoresizingMask"/>
  5256. </collectionViewCellContentView>
  5257. </collectionViewCell>
  5258. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Cu3-aO-gQN">
  5259. <rect key="frame" x="133.33333333333334" y="62" width="31" height="31"/>
  5260. <autoresizingMask key="autoresizingMask"/>
  5261. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="1o1-Sv-hxX">
  5262. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5263. <autoresizingMask key="autoresizingMask"/>
  5264. </collectionViewCellContentView>
  5265. </collectionViewCell>
  5266. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Rnh-oc-g6f">
  5267. <rect key="frame" x="166.66666666666666" y="62" width="31" height="31"/>
  5268. <autoresizingMask key="autoresizingMask"/>
  5269. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Pa7-s1-PjE">
  5270. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5271. <autoresizingMask key="autoresizingMask"/>
  5272. </collectionViewCellContentView>
  5273. </collectionViewCell>
  5274. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Cl2-1Z-mIi">
  5275. <rect key="frame" x="199.66666666666666" y="62" width="31" height="31"/>
  5276. <autoresizingMask key="autoresizingMask"/>
  5277. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="8Ye-10-2Dm">
  5278. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5279. <autoresizingMask key="autoresizingMask"/>
  5280. </collectionViewCellContentView>
  5281. </collectionViewCell>
  5282. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="mFl-fY-BVc">
  5283. <rect key="frame" x="233" y="62" width="31" height="31"/>
  5284. <autoresizingMask key="autoresizingMask"/>
  5285. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="rY0-hg-L6a">
  5286. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5287. <autoresizingMask key="autoresizingMask"/>
  5288. </collectionViewCellContentView>
  5289. </collectionViewCell>
  5290. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="MlD-xV-wWV">
  5291. <rect key="frame" x="266.33333333333331" y="62" width="31" height="31"/>
  5292. <autoresizingMask key="autoresizingMask"/>
  5293. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="n5N-3d-XGa">
  5294. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5295. <autoresizingMask key="autoresizingMask"/>
  5296. </collectionViewCellContentView>
  5297. </collectionViewCell>
  5298. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="bsK-0x-MPk">
  5299. <rect key="frame" x="299.66666666666669" y="62" width="31" height="31"/>
  5300. <autoresizingMask key="autoresizingMask"/>
  5301. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="iaV-DL-L6z">
  5302. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5303. <autoresizingMask key="autoresizingMask"/>
  5304. </collectionViewCellContentView>
  5305. </collectionViewCell>
  5306. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="YMg-q9-edN">
  5307. <rect key="frame" x="333" y="62" width="31" height="31"/>
  5308. <autoresizingMask key="autoresizingMask"/>
  5309. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="cbF-lT-KQc">
  5310. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5311. <autoresizingMask key="autoresizingMask"/>
  5312. </collectionViewCellContentView>
  5313. </collectionViewCell>
  5314. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="xJE-Tn-9EL">
  5315. <rect key="frame" x="0.0" y="93" width="31" height="31"/>
  5316. <autoresizingMask key="autoresizingMask"/>
  5317. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="mdI-5v-CN0">
  5318. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5319. <autoresizingMask key="autoresizingMask"/>
  5320. </collectionViewCellContentView>
  5321. </collectionViewCell>
  5322. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="uHU-jE-93e">
  5323. <rect key="frame" x="33.333333333333336" y="93" width="31" height="31"/>
  5324. <autoresizingMask key="autoresizingMask"/>
  5325. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="YeD-1F-4Ec">
  5326. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5327. <autoresizingMask key="autoresizingMask"/>
  5328. </collectionViewCellContentView>
  5329. </collectionViewCell>
  5330. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="vNJ-Mz-V76">
  5331. <rect key="frame" x="66.666666666666671" y="93" width="31" height="31"/>
  5332. <autoresizingMask key="autoresizingMask"/>
  5333. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="J8C-My-jEq">
  5334. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5335. <autoresizingMask key="autoresizingMask"/>
  5336. </collectionViewCellContentView>
  5337. </collectionViewCell>
  5338. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="9Br-xq-jG0">
  5339. <rect key="frame" x="100" y="93" width="31" height="31"/>
  5340. <autoresizingMask key="autoresizingMask"/>
  5341. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="DQx-7W-W8f">
  5342. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5343. <autoresizingMask key="autoresizingMask"/>
  5344. </collectionViewCellContentView>
  5345. </collectionViewCell>
  5346. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="UUf-Ck-S51">
  5347. <rect key="frame" x="133.33333333333334" y="93" width="31" height="31"/>
  5348. <autoresizingMask key="autoresizingMask"/>
  5349. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="e9b-Q3-wmc">
  5350. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5351. <autoresizingMask key="autoresizingMask"/>
  5352. </collectionViewCellContentView>
  5353. </collectionViewCell>
  5354. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="PQm-Yy-YEe">
  5355. <rect key="frame" x="166.66666666666666" y="93" width="31" height="31"/>
  5356. <autoresizingMask key="autoresizingMask"/>
  5357. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Cyp-Mt-Gwr">
  5358. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5359. <autoresizingMask key="autoresizingMask"/>
  5360. </collectionViewCellContentView>
  5361. </collectionViewCell>
  5362. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="iRR-vr-4WS">
  5363. <rect key="frame" x="199.66666666666666" y="93" width="31" height="31"/>
  5364. <autoresizingMask key="autoresizingMask"/>
  5365. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="STJ-S9-yWj">
  5366. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5367. <autoresizingMask key="autoresizingMask"/>
  5368. </collectionViewCellContentView>
  5369. </collectionViewCell>
  5370. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="19B-kl-ZUz">
  5371. <rect key="frame" x="233" y="93" width="31" height="31"/>
  5372. <autoresizingMask key="autoresizingMask"/>
  5373. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="bjE-Pr-JUe">
  5374. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5375. <autoresizingMask key="autoresizingMask"/>
  5376. </collectionViewCellContentView>
  5377. </collectionViewCell>
  5378. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Z1b-97-lkt">
  5379. <rect key="frame" x="266.33333333333331" y="93" width="31" height="31"/>
  5380. <autoresizingMask key="autoresizingMask"/>
  5381. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="ABL-tb-mlc">
  5382. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5383. <autoresizingMask key="autoresizingMask"/>
  5384. </collectionViewCellContentView>
  5385. </collectionViewCell>
  5386. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="aLE-uK-1rA">
  5387. <rect key="frame" x="299.66666666666669" y="93" width="31" height="31"/>
  5388. <autoresizingMask key="autoresizingMask"/>
  5389. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="phr-pQ-uZk">
  5390. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5391. <autoresizingMask key="autoresizingMask"/>
  5392. </collectionViewCellContentView>
  5393. </collectionViewCell>
  5394. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="66j-eQ-uIL">
  5395. <rect key="frame" x="333" y="93" width="31" height="31"/>
  5396. <autoresizingMask key="autoresizingMask"/>
  5397. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="1Y2-fe-S2g">
  5398. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5399. <autoresizingMask key="autoresizingMask"/>
  5400. </collectionViewCellContentView>
  5401. </collectionViewCell>
  5402. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="P9T-VO-sMB">
  5403. <rect key="frame" x="0.0" y="124" width="31" height="31"/>
  5404. <autoresizingMask key="autoresizingMask"/>
  5405. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="4zc-Rk-WFa">
  5406. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5407. <autoresizingMask key="autoresizingMask"/>
  5408. </collectionViewCellContentView>
  5409. </collectionViewCell>
  5410. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="FBb-cb-glu">
  5411. <rect key="frame" x="33.333333333333336" y="124" width="31" height="31"/>
  5412. <autoresizingMask key="autoresizingMask"/>
  5413. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="vrj-pW-rIO">
  5414. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5415. <autoresizingMask key="autoresizingMask"/>
  5416. </collectionViewCellContentView>
  5417. </collectionViewCell>
  5418. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Tjy-2M-eHX">
  5419. <rect key="frame" x="66.666666666666671" y="124" width="31" height="31"/>
  5420. <autoresizingMask key="autoresizingMask"/>
  5421. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="fUP-pC-dR9">
  5422. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5423. <autoresizingMask key="autoresizingMask"/>
  5424. </collectionViewCellContentView>
  5425. </collectionViewCell>
  5426. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="QnL-R7-NkL">
  5427. <rect key="frame" x="100" y="124" width="31" height="31"/>
  5428. <autoresizingMask key="autoresizingMask"/>
  5429. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Uo8-aA-dWG">
  5430. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5431. <autoresizingMask key="autoresizingMask"/>
  5432. </collectionViewCellContentView>
  5433. </collectionViewCell>
  5434. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="dsp-5c-6dD">
  5435. <rect key="frame" x="133.33333333333334" y="124" width="31" height="31"/>
  5436. <autoresizingMask key="autoresizingMask"/>
  5437. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="o7c-fd-PtN">
  5438. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5439. <autoresizingMask key="autoresizingMask"/>
  5440. </collectionViewCellContentView>
  5441. </collectionViewCell>
  5442. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="9wS-KV-WNv">
  5443. <rect key="frame" x="166.66666666666666" y="124" width="31" height="31"/>
  5444. <autoresizingMask key="autoresizingMask"/>
  5445. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Wjc-QX-uoY">
  5446. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5447. <autoresizingMask key="autoresizingMask"/>
  5448. </collectionViewCellContentView>
  5449. </collectionViewCell>
  5450. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="YjB-mV-6dC">
  5451. <rect key="frame" x="199.66666666666666" y="124" width="31" height="31"/>
  5452. <autoresizingMask key="autoresizingMask"/>
  5453. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="YEC-kK-b3R">
  5454. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5455. <autoresizingMask key="autoresizingMask"/>
  5456. </collectionViewCellContentView>
  5457. </collectionViewCell>
  5458. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="haz-D9-K76">
  5459. <rect key="frame" x="233" y="124" width="31" height="31"/>
  5460. <autoresizingMask key="autoresizingMask"/>
  5461. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="tt2-6y-4Hj">
  5462. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5463. <autoresizingMask key="autoresizingMask"/>
  5464. </collectionViewCellContentView>
  5465. </collectionViewCell>
  5466. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="RWi-8T-02K">
  5467. <rect key="frame" x="266.33333333333331" y="124" width="31" height="31"/>
  5468. <autoresizingMask key="autoresizingMask"/>
  5469. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="b9E-7Q-oE7">
  5470. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5471. <autoresizingMask key="autoresizingMask"/>
  5472. </collectionViewCellContentView>
  5473. </collectionViewCell>
  5474. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="XDQ-gR-1O8">
  5475. <rect key="frame" x="299.66666666666669" y="124" width="31" height="31"/>
  5476. <autoresizingMask key="autoresizingMask"/>
  5477. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="0m0-zp-Gve">
  5478. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5479. <autoresizingMask key="autoresizingMask"/>
  5480. </collectionViewCellContentView>
  5481. </collectionViewCell>
  5482. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="gt5-Tx-nRe">
  5483. <rect key="frame" x="333" y="124" width="31" height="31"/>
  5484. <autoresizingMask key="autoresizingMask"/>
  5485. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="wps-uo-1B2">
  5486. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5487. <autoresizingMask key="autoresizingMask"/>
  5488. </collectionViewCellContentView>
  5489. </collectionViewCell>
  5490. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="NXU-GQ-x1r">
  5491. <rect key="frame" x="0.0" y="155" width="31" height="31"/>
  5492. <autoresizingMask key="autoresizingMask"/>
  5493. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="M0P-6v-G64">
  5494. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5495. <autoresizingMask key="autoresizingMask"/>
  5496. </collectionViewCellContentView>
  5497. </collectionViewCell>
  5498. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="nMH-Yd-aez">
  5499. <rect key="frame" x="33.333333333333336" y="155" width="31" height="31"/>
  5500. <autoresizingMask key="autoresizingMask"/>
  5501. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="2BV-jN-deY">
  5502. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5503. <autoresizingMask key="autoresizingMask"/>
  5504. </collectionViewCellContentView>
  5505. </collectionViewCell>
  5506. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="7ib-sN-8wJ">
  5507. <rect key="frame" x="66.666666666666671" y="155" width="31" height="31"/>
  5508. <autoresizingMask key="autoresizingMask"/>
  5509. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="sDa-hs-H3P">
  5510. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5511. <autoresizingMask key="autoresizingMask"/>
  5512. </collectionViewCellContentView>
  5513. </collectionViewCell>
  5514. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="EIl-cm-el2">
  5515. <rect key="frame" x="100" y="155" width="31" height="31"/>
  5516. <autoresizingMask key="autoresizingMask"/>
  5517. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="n9O-7Z-8bX">
  5518. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5519. <autoresizingMask key="autoresizingMask"/>
  5520. </collectionViewCellContentView>
  5521. </collectionViewCell>
  5522. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="BeI-4A-Cah">
  5523. <rect key="frame" x="133.33333333333334" y="155" width="31" height="31"/>
  5524. <autoresizingMask key="autoresizingMask"/>
  5525. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="9fl-M2-waF">
  5526. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5527. <autoresizingMask key="autoresizingMask"/>
  5528. </collectionViewCellContentView>
  5529. </collectionViewCell>
  5530. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="P2W-t6-R1d">
  5531. <rect key="frame" x="166.66666666666666" y="155" width="31" height="31"/>
  5532. <autoresizingMask key="autoresizingMask"/>
  5533. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="m2j-uM-WeN">
  5534. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5535. <autoresizingMask key="autoresizingMask"/>
  5536. </collectionViewCellContentView>
  5537. </collectionViewCell>
  5538. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Pfa-Ry-nwn">
  5539. <rect key="frame" x="199.66666666666666" y="155" width="31" height="31"/>
  5540. <autoresizingMask key="autoresizingMask"/>
  5541. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="5Bh-gE-Rtm">
  5542. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5543. <autoresizingMask key="autoresizingMask"/>
  5544. </collectionViewCellContentView>
  5545. </collectionViewCell>
  5546. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="fUe-Ra-vqv">
  5547. <rect key="frame" x="233" y="155" width="31" height="31"/>
  5548. <autoresizingMask key="autoresizingMask"/>
  5549. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="ACu-Az-mNa">
  5550. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5551. <autoresizingMask key="autoresizingMask"/>
  5552. </collectionViewCellContentView>
  5553. </collectionViewCell>
  5554. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="2CQ-Uc-yR7">
  5555. <rect key="frame" x="266.33333333333331" y="155" width="31" height="31"/>
  5556. <autoresizingMask key="autoresizingMask"/>
  5557. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="yME-qp-LJ2">
  5558. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5559. <autoresizingMask key="autoresizingMask"/>
  5560. </collectionViewCellContentView>
  5561. </collectionViewCell>
  5562. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Uia-zO-Mmp">
  5563. <rect key="frame" x="299.66666666666669" y="155" width="31" height="31"/>
  5564. <autoresizingMask key="autoresizingMask"/>
  5565. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Udm-gC-qYh">
  5566. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5567. <autoresizingMask key="autoresizingMask"/>
  5568. </collectionViewCellContentView>
  5569. </collectionViewCell>
  5570. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="hGQ-PK-w6r">
  5571. <rect key="frame" x="333" y="155" width="31" height="31"/>
  5572. <autoresizingMask key="autoresizingMask"/>
  5573. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="KS1-fK-8qx">
  5574. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5575. <autoresizingMask key="autoresizingMask"/>
  5576. </collectionViewCellContentView>
  5577. </collectionViewCell>
  5578. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="09a-PB-MaR">
  5579. <rect key="frame" x="0.0" y="186" width="31" height="31"/>
  5580. <autoresizingMask key="autoresizingMask"/>
  5581. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="dIM-jx-Bql">
  5582. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5583. <autoresizingMask key="autoresizingMask"/>
  5584. </collectionViewCellContentView>
  5585. </collectionViewCell>
  5586. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="aHj-Pa-kE0">
  5587. <rect key="frame" x="33.333333333333336" y="186" width="31" height="31"/>
  5588. <autoresizingMask key="autoresizingMask"/>
  5589. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="cpL-4k-ssg">
  5590. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5591. <autoresizingMask key="autoresizingMask"/>
  5592. </collectionViewCellContentView>
  5593. </collectionViewCell>
  5594. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="dCl-DX-pgX">
  5595. <rect key="frame" x="66.666666666666671" y="186" width="31" height="31"/>
  5596. <autoresizingMask key="autoresizingMask"/>
  5597. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="SM9-Jw-thO">
  5598. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5599. <autoresizingMask key="autoresizingMask"/>
  5600. </collectionViewCellContentView>
  5601. </collectionViewCell>
  5602. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="uL3-Es-r9G">
  5603. <rect key="frame" x="100" y="186" width="31" height="31"/>
  5604. <autoresizingMask key="autoresizingMask"/>
  5605. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="VqT-1A-eBo">
  5606. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5607. <autoresizingMask key="autoresizingMask"/>
  5608. </collectionViewCellContentView>
  5609. </collectionViewCell>
  5610. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="PlM-Mj-GEF">
  5611. <rect key="frame" x="133.33333333333334" y="186" width="31" height="31"/>
  5612. <autoresizingMask key="autoresizingMask"/>
  5613. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="zaM-Ey-MbR">
  5614. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5615. <autoresizingMask key="autoresizingMask"/>
  5616. </collectionViewCellContentView>
  5617. </collectionViewCell>
  5618. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Jnw-8o-dc4">
  5619. <rect key="frame" x="166.66666666666666" y="186" width="31" height="31"/>
  5620. <autoresizingMask key="autoresizingMask"/>
  5621. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="2yE-Sk-PXL">
  5622. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5623. <autoresizingMask key="autoresizingMask"/>
  5624. </collectionViewCellContentView>
  5625. </collectionViewCell>
  5626. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="EHk-91-oeQ">
  5627. <rect key="frame" x="199.66666666666666" y="186" width="31" height="31"/>
  5628. <autoresizingMask key="autoresizingMask"/>
  5629. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="p5a-jx-NYu">
  5630. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5631. <autoresizingMask key="autoresizingMask"/>
  5632. </collectionViewCellContentView>
  5633. </collectionViewCell>
  5634. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="iax-SQ-uSx">
  5635. <rect key="frame" x="233" y="186" width="31" height="31"/>
  5636. <autoresizingMask key="autoresizingMask"/>
  5637. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="KUR-tR-fzi">
  5638. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5639. <autoresizingMask key="autoresizingMask"/>
  5640. </collectionViewCellContentView>
  5641. </collectionViewCell>
  5642. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="8KS-Do-sKc">
  5643. <rect key="frame" x="266.33333333333331" y="186" width="31" height="31"/>
  5644. <autoresizingMask key="autoresizingMask"/>
  5645. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="ksc-er-zzu">
  5646. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5647. <autoresizingMask key="autoresizingMask"/>
  5648. </collectionViewCellContentView>
  5649. </collectionViewCell>
  5650. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="oOA-US-dZu">
  5651. <rect key="frame" x="299.66666666666669" y="186" width="31" height="31"/>
  5652. <autoresizingMask key="autoresizingMask"/>
  5653. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="gD0-B2-du2">
  5654. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5655. <autoresizingMask key="autoresizingMask"/>
  5656. </collectionViewCellContentView>
  5657. </collectionViewCell>
  5658. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="WLr-lI-Thy">
  5659. <rect key="frame" x="333" y="186" width="31" height="31"/>
  5660. <autoresizingMask key="autoresizingMask"/>
  5661. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="eQg-fy-SqX">
  5662. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5663. <autoresizingMask key="autoresizingMask"/>
  5664. </collectionViewCellContentView>
  5665. </collectionViewCell>
  5666. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="fcu-tk-qc3">
  5667. <rect key="frame" x="0.0" y="217" width="31" height="31"/>
  5668. <autoresizingMask key="autoresizingMask"/>
  5669. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="TVr-nM-y1f">
  5670. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5671. <autoresizingMask key="autoresizingMask"/>
  5672. </collectionViewCellContentView>
  5673. </collectionViewCell>
  5674. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="UFL-h7-xT1">
  5675. <rect key="frame" x="33.333333333333336" y="217" width="31" height="31"/>
  5676. <autoresizingMask key="autoresizingMask"/>
  5677. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="pWA-O1-Lpg">
  5678. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5679. <autoresizingMask key="autoresizingMask"/>
  5680. </collectionViewCellContentView>
  5681. </collectionViewCell>
  5682. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="y0f-dj-dp9">
  5683. <rect key="frame" x="66.666666666666671" y="217" width="31" height="31"/>
  5684. <autoresizingMask key="autoresizingMask"/>
  5685. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="xrd-n9-UBl">
  5686. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5687. <autoresizingMask key="autoresizingMask"/>
  5688. </collectionViewCellContentView>
  5689. </collectionViewCell>
  5690. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="pVD-nV-g2z">
  5691. <rect key="frame" x="100" y="217" width="31" height="31"/>
  5692. <autoresizingMask key="autoresizingMask"/>
  5693. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="6qa-Kj-Rh4">
  5694. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5695. <autoresizingMask key="autoresizingMask"/>
  5696. </collectionViewCellContentView>
  5697. </collectionViewCell>
  5698. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Oaq-ff-FHE">
  5699. <rect key="frame" x="133.33333333333334" y="217" width="31" height="31"/>
  5700. <autoresizingMask key="autoresizingMask"/>
  5701. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="bok-ab-yKE">
  5702. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5703. <autoresizingMask key="autoresizingMask"/>
  5704. </collectionViewCellContentView>
  5705. </collectionViewCell>
  5706. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="r4p-xW-KgK">
  5707. <rect key="frame" x="166.66666666666666" y="217" width="31" height="31"/>
  5708. <autoresizingMask key="autoresizingMask"/>
  5709. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="UEA-w1-grc">
  5710. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5711. <autoresizingMask key="autoresizingMask"/>
  5712. </collectionViewCellContentView>
  5713. </collectionViewCell>
  5714. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="ylr-U8-FYj">
  5715. <rect key="frame" x="199.66666666666666" y="217" width="31" height="31"/>
  5716. <autoresizingMask key="autoresizingMask"/>
  5717. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="g91-MU-2zY">
  5718. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5719. <autoresizingMask key="autoresizingMask"/>
  5720. </collectionViewCellContentView>
  5721. </collectionViewCell>
  5722. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="8bc-Kz-eTZ">
  5723. <rect key="frame" x="233" y="217" width="31" height="31"/>
  5724. <autoresizingMask key="autoresizingMask"/>
  5725. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="ApW-3e-ZVG">
  5726. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5727. <autoresizingMask key="autoresizingMask"/>
  5728. </collectionViewCellContentView>
  5729. </collectionViewCell>
  5730. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="roR-zp-esU">
  5731. <rect key="frame" x="266.33333333333331" y="217" width="31" height="31"/>
  5732. <autoresizingMask key="autoresizingMask"/>
  5733. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="0sA-Dd-bRD">
  5734. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5735. <autoresizingMask key="autoresizingMask"/>
  5736. </collectionViewCellContentView>
  5737. </collectionViewCell>
  5738. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="cY5-JH-nbp">
  5739. <rect key="frame" x="299.66666666666669" y="217" width="31" height="31"/>
  5740. <autoresizingMask key="autoresizingMask"/>
  5741. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="aZN-DA-5Lo">
  5742. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5743. <autoresizingMask key="autoresizingMask"/>
  5744. </collectionViewCellContentView>
  5745. </collectionViewCell>
  5746. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="4tv-dG-Q04">
  5747. <rect key="frame" x="333" y="217" width="31" height="31"/>
  5748. <autoresizingMask key="autoresizingMask"/>
  5749. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="ooV-La-v6A">
  5750. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5751. <autoresizingMask key="autoresizingMask"/>
  5752. </collectionViewCellContentView>
  5753. </collectionViewCell>
  5754. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="6Sv-ka-DUS">
  5755. <rect key="frame" x="0.0" y="248" width="31" height="31"/>
  5756. <autoresizingMask key="autoresizingMask"/>
  5757. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" id="Exv-Yj-riu">
  5758. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5759. <autoresizingMask key="autoresizingMask"/>
  5760. </collectionViewCellContentView>
  5761. </collectionViewCell>
  5762. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="7fX-Hb-oCr">
  5763. <rect key="frame" x="33.333333333333336" y="248" width="31" height="31"/>
  5764. <autoresizingMask key="autoresizingMask"/>
  5765. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" id="vsY-D6-VIS">
  5766. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5767. <autoresizingMask key="autoresizingMask"/>
  5768. </collectionViewCellContentView>
  5769. </collectionViewCell>
  5770. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="P3g-ft-CId">
  5771. <rect key="frame" x="66.666666666666671" y="248" width="31" height="31"/>
  5772. <autoresizingMask key="autoresizingMask"/>
  5773. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" id="RkT-Bh-p03">
  5774. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5775. <autoresizingMask key="autoresizingMask"/>
  5776. </collectionViewCellContentView>
  5777. </collectionViewCell>
  5778. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="hac-gI-we8">
  5779. <rect key="frame" x="100" y="248" width="31" height="31"/>
  5780. <autoresizingMask key="autoresizingMask"/>
  5781. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" id="KMH-Yt-dLF">
  5782. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5783. <autoresizingMask key="autoresizingMask"/>
  5784. </collectionViewCellContentView>
  5785. </collectionViewCell>
  5786. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="UfG-Rr-1G7">
  5787. <rect key="frame" x="133.33333333333334" y="248" width="31" height="31"/>
  5788. <autoresizingMask key="autoresizingMask"/>
  5789. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" id="fXq-QS-ipe">
  5790. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5791. <autoresizingMask key="autoresizingMask"/>
  5792. </collectionViewCellContentView>
  5793. </collectionViewCell>
  5794. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="9iR-Vh-E8S">
  5795. <rect key="frame" x="166.66666666666666" y="248" width="31" height="31"/>
  5796. <autoresizingMask key="autoresizingMask"/>
  5797. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" id="rZc-2a-teh">
  5798. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5799. <autoresizingMask key="autoresizingMask"/>
  5800. </collectionViewCellContentView>
  5801. </collectionViewCell>
  5802. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="ech-Yb-FaO">
  5803. <rect key="frame" x="199.66666666666666" y="248" width="31" height="31"/>
  5804. <autoresizingMask key="autoresizingMask"/>
  5805. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" id="A6g-Dx-9Co">
  5806. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5807. <autoresizingMask key="autoresizingMask"/>
  5808. </collectionViewCellContentView>
  5809. </collectionViewCell>
  5810. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="y5Z-js-u21">
  5811. <rect key="frame" x="233" y="248" width="31" height="31"/>
  5812. <autoresizingMask key="autoresizingMask"/>
  5813. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" id="4aN-fd-2W4">
  5814. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5815. <autoresizingMask key="autoresizingMask"/>
  5816. </collectionViewCellContentView>
  5817. </collectionViewCell>
  5818. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="KXX-Z5-nmY">
  5819. <rect key="frame" x="266.33333333333331" y="248" width="31" height="31"/>
  5820. <autoresizingMask key="autoresizingMask"/>
  5821. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" id="KfT-zz-bcv">
  5822. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5823. <autoresizingMask key="autoresizingMask"/>
  5824. </collectionViewCellContentView>
  5825. </collectionViewCell>
  5826. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="8lR-Vw-Pft">
  5827. <rect key="frame" x="299.66666666666669" y="248" width="31" height="31"/>
  5828. <autoresizingMask key="autoresizingMask"/>
  5829. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" id="QxN-yF-lLk">
  5830. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5831. <autoresizingMask key="autoresizingMask"/>
  5832. </collectionViewCellContentView>
  5833. </collectionViewCell>
  5834. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="c8L-zw-VPU">
  5835. <rect key="frame" x="333" y="248" width="31" height="31"/>
  5836. <autoresizingMask key="autoresizingMask"/>
  5837. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" id="GYt-a4-GJW">
  5838. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5839. <autoresizingMask key="autoresizingMask"/>
  5840. </collectionViewCellContentView>
  5841. </collectionViewCell>
  5842. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="fx4-v4-SaL">
  5843. <rect key="frame" x="0.0" y="279" width="31" height="31"/>
  5844. <autoresizingMask key="autoresizingMask"/>
  5845. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" id="8X9-vy-SCT">
  5846. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5847. <autoresizingMask key="autoresizingMask"/>
  5848. </collectionViewCellContentView>
  5849. </collectionViewCell>
  5850. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="9jn-Cx-5BO">
  5851. <rect key="frame" x="33.333333333333336" y="279" width="31" height="31"/>
  5852. <autoresizingMask key="autoresizingMask"/>
  5853. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" id="FTO-hF-mpI">
  5854. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5855. <autoresizingMask key="autoresizingMask"/>
  5856. </collectionViewCellContentView>
  5857. </collectionViewCell>
  5858. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Qkv-2N-GPF">
  5859. <rect key="frame" x="66.666666666666671" y="279" width="31" height="31"/>
  5860. <autoresizingMask key="autoresizingMask"/>
  5861. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" id="EYW-hQ-pqm">
  5862. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5863. <autoresizingMask key="autoresizingMask"/>
  5864. </collectionViewCellContentView>
  5865. </collectionViewCell>
  5866. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="tBR-0c-acY">
  5867. <rect key="frame" x="100" y="279" width="31" height="31"/>
  5868. <autoresizingMask key="autoresizingMask"/>
  5869. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" id="3Ul-Wx-Nlv">
  5870. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5871. <autoresizingMask key="autoresizingMask"/>
  5872. </collectionViewCellContentView>
  5873. </collectionViewCell>
  5874. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="71O-8m-jhU">
  5875. <rect key="frame" x="133.33333333333334" y="279" width="31" height="31"/>
  5876. <autoresizingMask key="autoresizingMask"/>
  5877. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" id="1Wc-Gb-6L4">
  5878. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5879. <autoresizingMask key="autoresizingMask"/>
  5880. </collectionViewCellContentView>
  5881. </collectionViewCell>
  5882. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="6yY-Jh-jye">
  5883. <rect key="frame" x="166.66666666666666" y="279" width="31" height="31"/>
  5884. <autoresizingMask key="autoresizingMask"/>
  5885. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" id="Ewh-cg-8WO">
  5886. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5887. <autoresizingMask key="autoresizingMask"/>
  5888. </collectionViewCellContentView>
  5889. </collectionViewCell>
  5890. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="iEN-bH-yJt">
  5891. <rect key="frame" x="199.66666666666666" y="279" width="31" height="31"/>
  5892. <autoresizingMask key="autoresizingMask"/>
  5893. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" id="c7g-8a-l5U">
  5894. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5895. <autoresizingMask key="autoresizingMask"/>
  5896. </collectionViewCellContentView>
  5897. </collectionViewCell>
  5898. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="DVP-XD-lwO">
  5899. <rect key="frame" x="233" y="279" width="31" height="31"/>
  5900. <autoresizingMask key="autoresizingMask"/>
  5901. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" id="R6g-W1-ybW">
  5902. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5903. <autoresizingMask key="autoresizingMask"/>
  5904. </collectionViewCellContentView>
  5905. </collectionViewCell>
  5906. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="fbQ-da-m1E">
  5907. <rect key="frame" x="266.33333333333331" y="279" width="31" height="31"/>
  5908. <autoresizingMask key="autoresizingMask"/>
  5909. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" id="iKw-vB-tlz">
  5910. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5911. <autoresizingMask key="autoresizingMask"/>
  5912. </collectionViewCellContentView>
  5913. </collectionViewCell>
  5914. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="XUo-l1-ZV4">
  5915. <rect key="frame" x="299.66666666666669" y="279" width="31" height="31"/>
  5916. <autoresizingMask key="autoresizingMask"/>
  5917. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" id="W5w-2m-sBg">
  5918. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5919. <autoresizingMask key="autoresizingMask"/>
  5920. </collectionViewCellContentView>
  5921. </collectionViewCell>
  5922. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="H3U-8J-kJy">
  5923. <rect key="frame" x="333" y="279" width="31" height="31"/>
  5924. <autoresizingMask key="autoresizingMask"/>
  5925. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" id="dbW-gx-JCw">
  5926. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5927. <autoresizingMask key="autoresizingMask"/>
  5928. </collectionViewCellContentView>
  5929. </collectionViewCell>
  5930. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="cCF-bf-H3J">
  5931. <rect key="frame" x="0.0" y="310" width="31" height="31"/>
  5932. <autoresizingMask key="autoresizingMask"/>
  5933. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" id="y2j-m4-605">
  5934. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5935. <autoresizingMask key="autoresizingMask"/>
  5936. </collectionViewCellContentView>
  5937. </collectionViewCell>
  5938. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="m4s-Sv-iEu">
  5939. <rect key="frame" x="33.333333333333336" y="310" width="31" height="31"/>
  5940. <autoresizingMask key="autoresizingMask"/>
  5941. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" id="t8A-En-w9H">
  5942. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5943. <autoresizingMask key="autoresizingMask"/>
  5944. </collectionViewCellContentView>
  5945. </collectionViewCell>
  5946. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="TMu-xV-ewx">
  5947. <rect key="frame" x="66.666666666666671" y="310" width="31" height="31"/>
  5948. <autoresizingMask key="autoresizingMask"/>
  5949. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" id="GcK-J9-cvw">
  5950. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5951. <autoresizingMask key="autoresizingMask"/>
  5952. </collectionViewCellContentView>
  5953. </collectionViewCell>
  5954. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="iLA-uQ-9re">
  5955. <rect key="frame" x="100" y="310" width="31" height="31"/>
  5956. <autoresizingMask key="autoresizingMask"/>
  5957. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" id="pxH-1m-bhd">
  5958. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5959. <autoresizingMask key="autoresizingMask"/>
  5960. </collectionViewCellContentView>
  5961. </collectionViewCell>
  5962. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="AdE-Tw-aO4">
  5963. <rect key="frame" x="133.33333333333334" y="310" width="31" height="31"/>
  5964. <autoresizingMask key="autoresizingMask"/>
  5965. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" id="KYD-zt-fcz">
  5966. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5967. <autoresizingMask key="autoresizingMask"/>
  5968. </collectionViewCellContentView>
  5969. </collectionViewCell>
  5970. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="0LV-yn-Thj">
  5971. <rect key="frame" x="166.66666666666666" y="310" width="31" height="31"/>
  5972. <autoresizingMask key="autoresizingMask"/>
  5973. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" id="oYB-eh-EKn">
  5974. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5975. <autoresizingMask key="autoresizingMask"/>
  5976. </collectionViewCellContentView>
  5977. </collectionViewCell>
  5978. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="Mdj-7i-27y">
  5979. <rect key="frame" x="199.66666666666666" y="310" width="31" height="31"/>
  5980. <autoresizingMask key="autoresizingMask"/>
  5981. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" id="isg-NI-aeP">
  5982. <rect key="frame" x="0.0" y="0.0" width="31" height="31"/>
  5983. <autoresizingMask key="autoresizingMask"/>
  5984. </collectionViewCellContentView>
  5985. </collectionViewCell>
  5986. </cells>
  5987. <connections>
  5988. <outlet property="dataSource" destination="bPp-tV-eGp" id="30T-P2-3G8"/>
  5989. <outlet property="delegate" destination="bPp-tV-eGp" id="cEv-Ba-zFK"/>
  5990. </connections>
  5991. </collectionView>
  5992. </subviews>
  5993. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  5994. <constraints>
  5995. <constraint firstAttribute="height" constant="240" id="pby-ui-Bj6"/>
  5996. </constraints>
  5997. </view>
  5998. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="hhi-7h-Ez3">
  5999. <rect key="frame" x="168" y="40" width="2" height="376"/>
  6000. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  6001. <constraints>
  6002. <constraint firstAttribute="width" constant="2" id="5Li-58-Iwz"/>
  6003. <constraint firstAttribute="height" constant="376" id="MLC-gj-NVE"/>
  6004. </constraints>
  6005. </view>
  6006. </subviews>
  6007. <constraints>
  6008. <constraint firstItem="d2h-Ru-3pj" firstAttribute="leading" secondItem="qfI-1P-IPy" secondAttribute="leading" id="01n-9F-LSx"/>
  6009. <constraint firstItem="X98-kc-x3t" firstAttribute="top" secondItem="qfI-1P-IPy" secondAttribute="top" constant="40" id="1ii-5w-IT7"/>
  6010. <constraint firstAttribute="trailing" secondItem="Hxd-nx-Mii" secondAttribute="trailing" id="3YH-6Z-6L1"/>
  6011. <constraint firstItem="Hxd-nx-Mii" firstAttribute="top" secondItem="qfI-1P-IPy" secondAttribute="top" constant="40" id="45F-85-RbT"/>
  6012. <constraint firstItem="hhi-7h-Ez3" firstAttribute="top" secondItem="ABC-gt-to0" secondAttribute="bottom" id="E9Z-kb-6Dg"/>
  6013. <constraint firstItem="gvH-JY-YmO" firstAttribute="leading" secondItem="qfI-1P-IPy" secondAttribute="leading" id="EGr-cX-Qkh"/>
  6014. <constraint firstItem="SBW-2G-Jg5" firstAttribute="top" secondItem="qfI-1P-IPy" secondAttribute="top" constant="40" id="FTb-u4-kQI"/>
  6015. <constraint firstItem="hhi-7h-Ez3" firstAttribute="leading" secondItem="qfI-1P-IPy" secondAttribute="leading" constant="168" id="Hkt-c6-hpD"/>
  6016. <constraint firstItem="d2h-Ru-3pj" firstAttribute="top" secondItem="qfI-1P-IPy" secondAttribute="top" constant="40" id="LeG-lb-p1e"/>
  6017. <constraint firstItem="X98-kc-x3t" firstAttribute="leading" secondItem="qfI-1P-IPy" secondAttribute="leading" id="OOL-h8-64S"/>
  6018. <constraint firstAttribute="height" constant="312" id="R6k-ro-3UC"/>
  6019. <constraint firstItem="ABC-gt-to0" firstAttribute="top" secondItem="qfI-1P-IPy" secondAttribute="top" id="RC0-9R-aeb"/>
  6020. <constraint firstItem="SBW-2G-Jg5" firstAttribute="leading" secondItem="ABC-gt-to0" secondAttribute="leading" id="Wfe-L3-oIm"/>
  6021. <constraint firstAttribute="bottom" secondItem="SBW-2G-Jg5" secondAttribute="bottom" id="ZBS-JT-zgf"/>
  6022. <constraint firstAttribute="trailing" secondItem="SBW-2G-Jg5" secondAttribute="trailing" id="dav-Jm-i2N"/>
  6023. <constraint firstItem="Hxd-nx-Mii" firstAttribute="leading" secondItem="qfI-1P-IPy" secondAttribute="leading" id="fWu-Tf-gJk"/>
  6024. <constraint firstAttribute="trailing" secondItem="d2h-Ru-3pj" secondAttribute="trailing" id="hO7-1z-moq"/>
  6025. <constraint firstAttribute="bottom" secondItem="d2h-Ru-3pj" secondAttribute="bottom" id="mJe-fi-KxC"/>
  6026. <constraint firstAttribute="bottom" secondItem="Hxd-nx-Mii" secondAttribute="bottom" id="mu0-Qf-fHI"/>
  6027. <constraint firstItem="SBW-2G-Jg5" firstAttribute="trailing" secondItem="ABC-gt-to0" secondAttribute="trailing" id="nyQ-Bf-z57"/>
  6028. <constraint firstAttribute="trailing" secondItem="gvH-JY-YmO" secondAttribute="trailing" id="p7y-ua-Ylk"/>
  6029. <constraint firstItem="gvH-JY-YmO" firstAttribute="top" secondItem="ABC-gt-to0" secondAttribute="bottom" id="qEr-rt-pCQ"/>
  6030. <constraint firstItem="SBW-2G-Jg5" firstAttribute="leading" secondItem="qfI-1P-IPy" secondAttribute="leading" id="rO0-LT-yMT"/>
  6031. <constraint firstAttribute="bottom" secondItem="X98-kc-x3t" secondAttribute="bottom" id="ycI-Di-7DB"/>
  6032. <constraint firstAttribute="trailing" secondItem="X98-kc-x3t" secondAttribute="trailing" id="zya-OZ-JbP"/>
  6033. </constraints>
  6034. </view>
  6035. </subviews>
  6036. <color key="backgroundColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  6037. <constraints>
  6038. <constraint firstAttribute="trailing" secondItem="aLQ-Yt-Qq9" secondAttribute="trailing" id="4ki-aQ-2NL"/>
  6039. <constraint firstItem="aLQ-Yt-Qq9" firstAttribute="leading" secondItem="3IC-v0-NdT" secondAttribute="leading" id="5hv-9K-oog"/>
  6040. <constraint firstAttribute="height" constant="357" id="D1O-Fv-dN0"/>
  6041. <constraint firstItem="qfI-1P-IPy" firstAttribute="top" secondItem="aLQ-Yt-Qq9" secondAttribute="bottom" constant="5" id="WQq-kW-ae8"/>
  6042. <constraint firstItem="qfI-1P-IPy" firstAttribute="centerX" secondItem="3IC-v0-NdT" secondAttribute="centerX" id="opM-OB-Eql"/>
  6043. <constraint firstItem="aLQ-Yt-Qq9" firstAttribute="top" secondItem="3IC-v0-NdT" secondAttribute="top" id="uiE-hV-pA4"/>
  6044. </constraints>
  6045. </view>
  6046. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="diE-s8-NcE" userLabel="SubTopBar">
  6047. <rect key="frame" x="0.0" y="75" width="428" height="40"/>
  6048. <subviews>
  6049. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Information" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="kSe-WU-JaE">
  6050. <rect key="frame" x="10" y="6" width="137" height="28"/>
  6051. <constraints>
  6052. <constraint firstAttribute="width" constant="137" id="seR-id-DAN"/>
  6053. <constraint firstAttribute="height" constant="28" id="uEj-hB-Z66"/>
  6054. </constraints>
  6055. <fontDescription key="fontDescription" type="system" weight="black" pointSize="20"/>
  6056. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6057. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6058. </label>
  6059. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Current Date Time" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="gpV-8L-B77">
  6060. <rect key="frame" x="157" y="13.666666666666671" width="117" height="14.666666666666664"/>
  6061. <fontDescription key="fontDescription" type="system" weight="black" pointSize="12"/>
  6062. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6063. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6064. </label>
  6065. </subviews>
  6066. <color key="backgroundColor" red="0.36078431370000003" green="0.36078431370000003" blue="0.36078431370000003" alpha="1" colorSpace="calibratedRGB"/>
  6067. <constraints>
  6068. <constraint firstItem="gpV-8L-B77" firstAttribute="leading" secondItem="kSe-WU-JaE" secondAttribute="trailing" constant="10" id="AKZ-YH-HSY"/>
  6069. <constraint firstItem="kSe-WU-JaE" firstAttribute="leading" secondItem="diE-s8-NcE" secondAttribute="leading" constant="10" id="GEK-Gp-Eh0"/>
  6070. <constraint firstItem="gpV-8L-B77" firstAttribute="firstBaseline" secondItem="kSe-WU-JaE" secondAttribute="firstBaseline" id="Nuw-2q-HyV"/>
  6071. <constraint firstItem="kSe-WU-JaE" firstAttribute="centerY" secondItem="diE-s8-NcE" secondAttribute="centerY" id="ejK-OJ-cOW"/>
  6072. <constraint firstAttribute="height" constant="40" id="ldD-3J-8XU"/>
  6073. <constraint firstItem="gpV-8L-B77" firstAttribute="leading" secondItem="kSe-WU-JaE" secondAttribute="trailing" constant="10" id="qAt-wZ-Y9v"/>
  6074. </constraints>
  6075. </view>
  6076. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Hlz-HQ-J6y">
  6077. <rect key="frame" x="0.0" y="340" width="428" height="190"/>
  6078. <subviews>
  6079. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="WxZ-rs-PCD" customClass="NVActivityIndicatorView" customModule="NVActivityIndicatorView">
  6080. <rect key="frame" x="194" y="59.666666666666686" width="40" height="40"/>
  6081. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  6082. <constraints>
  6083. <constraint firstAttribute="height" constant="40" id="KFZ-CT-cdQ"/>
  6084. <constraint firstAttribute="width" constant="40" id="peX-Hz-CIg"/>
  6085. </constraints>
  6086. </view>
  6087. </subviews>
  6088. <color key="backgroundColor" systemColor="systemGray2Color"/>
  6089. <constraints>
  6090. <constraint firstItem="WxZ-rs-PCD" firstAttribute="centerX" secondItem="Hlz-HQ-J6y" secondAttribute="centerX" id="YaW-7X-gH6"/>
  6091. <constraint firstAttribute="height" constant="190" id="lMi-nB-78Q"/>
  6092. <constraint firstItem="WxZ-rs-PCD" firstAttribute="centerY" secondItem="Hlz-HQ-J6y" secondAttribute="centerY" constant="-15.5" id="pq1-fc-D3l"/>
  6093. </constraints>
  6094. </view>
  6095. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="3bP-1r-rxS" userLabel="KeyboardBlue">
  6096. <rect key="frame" x="0.0" y="0.0" width="428" height="1186"/>
  6097. <subviews>
  6098. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="1B4-Uc-jjA">
  6099. <rect key="frame" x="26.666666666666657" y="926" width="375" height="260"/>
  6100. <subviews>
  6101. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="vit-M2-Twq">
  6102. <rect key="frame" x="0.0" y="0.0" width="375" height="55"/>
  6103. <subviews>
  6104. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ហាងឆេង" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="9r6-Lz-xbR">
  6105. <rect key="frame" x="7.9999999999999964" y="19.666666666666629" width="46" height="16"/>
  6106. <fontDescription key="fontDescription" type="system" pointSize="13"/>
  6107. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6108. <nil key="highlightedColor"/>
  6109. </label>
  6110. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="0.90" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="q1l-DE-qfF">
  6111. <rect key="frame" x="56" y="5.6666666666666288" width="79" height="44"/>
  6112. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6113. <constraints>
  6114. <constraint firstAttribute="width" constant="79" id="eNo-5g-MZg"/>
  6115. <constraint firstAttribute="height" constant="44" id="gRf-c1-nfV"/>
  6116. </constraints>
  6117. <fontDescription key="fontDescription" type="system" weight="black" pointSize="16"/>
  6118. <nil key="textColor"/>
  6119. <nil key="highlightedColor"/>
  6120. </label>
  6121. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="1000000" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="wEN-Lu-G1A">
  6122. <rect key="frame" x="195" y="6" width="100" height="43"/>
  6123. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6124. <constraints>
  6125. <constraint firstAttribute="height" constant="43" id="36H-RT-2NA"/>
  6126. <constraint firstAttribute="width" constant="100" id="TLg-0j-p1c"/>
  6127. </constraints>
  6128. <fontDescription key="fontDescription" type="system" weight="black" pointSize="16"/>
  6129. <nil key="textColor"/>
  6130. <nil key="highlightedColor"/>
  6131. </label>
  6132. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="លុយភ្នាល់" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="nQp-TK-bh4">
  6133. <rect key="frame" x="143" y="19.666666666666629" width="50" height="16"/>
  6134. <constraints>
  6135. <constraint firstAttribute="width" constant="50" id="Bvs-OP-znz"/>
  6136. </constraints>
  6137. <fontDescription key="fontDescription" type="system" pointSize="13"/>
  6138. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6139. <nil key="highlightedColor"/>
  6140. </label>
  6141. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="qnR-hc-Iql">
  6142. <rect key="frame" x="302" y="5.6666666666666288" width="65" height="44"/>
  6143. <color key="backgroundColor" red="0.19215686269999999" green="0.22352941179999999" blue="0.82745098039999998" alpha="1" colorSpace="calibratedRGB"/>
  6144. <constraints>
  6145. <constraint firstAttribute="height" constant="44" id="24b-r1-PQE"/>
  6146. <constraint firstAttribute="width" constant="65" id="nYs-kG-U8g"/>
  6147. </constraints>
  6148. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  6149. <state key="normal" title="ខៀវ">
  6150. <color key="titleColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  6151. </state>
  6152. <connections>
  6153. <action selector="blueAcceptClick:" destination="bPp-tV-eGp" eventType="touchUpInside" id="nzg-7y-3ta"/>
  6154. </connections>
  6155. </button>
  6156. </subviews>
  6157. <color key="backgroundColor" red="0.050980392159999999" green="0.023529411760000001" blue="0.37647058820000001" alpha="1" colorSpace="calibratedRGB"/>
  6158. <constraints>
  6159. <constraint firstItem="q1l-DE-qfF" firstAttribute="leading" secondItem="9r6-Lz-xbR" secondAttribute="trailing" constant="2" id="0fb-aF-whw"/>
  6160. <constraint firstAttribute="trailing" secondItem="qnR-hc-Iql" secondAttribute="trailing" constant="8" id="8Ay-DM-ley"/>
  6161. <constraint firstItem="wEN-Lu-G1A" firstAttribute="centerY" secondItem="nQp-TK-bh4" secondAttribute="centerY" id="HzD-0M-vEe"/>
  6162. <constraint firstItem="9r6-Lz-xbR" firstAttribute="centerY" secondItem="vit-M2-Twq" secondAttribute="centerY" id="N52-db-GzJ"/>
  6163. <constraint firstItem="nQp-TK-bh4" firstAttribute="leading" secondItem="q1l-DE-qfF" secondAttribute="trailing" constant="8" symbolic="YES" id="XN1-HD-kKT"/>
  6164. <constraint firstItem="qnR-hc-Iql" firstAttribute="centerY" secondItem="vit-M2-Twq" secondAttribute="centerY" id="ZW2-eA-PlO"/>
  6165. <constraint firstItem="wEN-Lu-G1A" firstAttribute="leading" secondItem="nQp-TK-bh4" secondAttribute="trailing" constant="2" id="jvQ-dZ-BSm"/>
  6166. <constraint firstItem="nQp-TK-bh4" firstAttribute="centerY" secondItem="q1l-DE-qfF" secondAttribute="centerY" id="qYL-hQ-oOZ"/>
  6167. <constraint firstItem="9r6-Lz-xbR" firstAttribute="leading" secondItem="vit-M2-Twq" secondAttribute="leading" constant="8" id="rPN-hr-Hhk"/>
  6168. <constraint firstAttribute="height" constant="55" id="sA1-fA-mB2"/>
  6169. <constraint firstItem="q1l-DE-qfF" firstAttribute="centerY" secondItem="9r6-Lz-xbR" secondAttribute="centerY" id="yPo-Oj-RxX"/>
  6170. </constraints>
  6171. </view>
  6172. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="ruo-8F-y5s">
  6173. <rect key="frame" x="1" y="56" width="125" height="50"/>
  6174. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6175. <constraints>
  6176. <constraint firstAttribute="height" constant="50" id="Qa2-SL-Yvo"/>
  6177. <constraint firstAttribute="width" constant="125" id="Z4p-Lz-tOk"/>
  6178. </constraints>
  6179. <fontDescription key="fontDescription" type="system" pointSize="30"/>
  6180. <state key="normal" title="1">
  6181. <color key="titleColor" systemColor="labelColor"/>
  6182. </state>
  6183. <connections>
  6184. <action selector="oneKeyBlue:" destination="bPp-tV-eGp" eventType="touchUpInside" id="5eq-2M-QZK"/>
  6185. </connections>
  6186. </button>
  6187. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="IQH-dv-cbF">
  6188. <rect key="frame" x="127" y="56" width="125" height="50"/>
  6189. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6190. <fontDescription key="fontDescription" type="system" pointSize="30"/>
  6191. <state key="normal" title="2">
  6192. <color key="titleColor" systemColor="labelColor"/>
  6193. </state>
  6194. <connections>
  6195. <action selector="TwoKeyBlue:" destination="bPp-tV-eGp" eventType="touchUpInside" id="YcR-bq-mwC"/>
  6196. </connections>
  6197. </button>
  6198. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="fSQ-Pn-foP">
  6199. <rect key="frame" x="253" y="56" width="125" height="50"/>
  6200. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6201. <fontDescription key="fontDescription" type="system" pointSize="30"/>
  6202. <state key="normal" title="3">
  6203. <color key="titleColor" systemColor="labelColor"/>
  6204. </state>
  6205. <connections>
  6206. <action selector="ThreeKeyBlue:" destination="bPp-tV-eGp" eventType="touchUpInside" id="DZT-Gc-kPq"/>
  6207. </connections>
  6208. </button>
  6209. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="AiX-yc-x0Q">
  6210. <rect key="frame" x="1" y="107" width="125" height="50"/>
  6211. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6212. <constraints>
  6213. <constraint firstAttribute="width" constant="125" id="0DF-Bu-dz0"/>
  6214. <constraint firstAttribute="height" constant="50" id="aF4-ad-Drz"/>
  6215. </constraints>
  6216. <fontDescription key="fontDescription" type="system" pointSize="30"/>
  6217. <state key="normal" title="4">
  6218. <color key="titleColor" systemColor="labelColor"/>
  6219. </state>
  6220. <connections>
  6221. <action selector="FourKeyBlue:" destination="bPp-tV-eGp" eventType="touchUpInside" id="DGv-Cv-Ffa"/>
  6222. </connections>
  6223. </button>
  6224. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="fo3-TO-9f7">
  6225. <rect key="frame" x="127" y="107" width="125" height="50"/>
  6226. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6227. <fontDescription key="fontDescription" type="system" pointSize="30"/>
  6228. <state key="normal" title="5">
  6229. <color key="titleColor" systemColor="labelColor"/>
  6230. </state>
  6231. <connections>
  6232. <action selector="FiveKeyBlue:" destination="bPp-tV-eGp" eventType="touchUpInside" id="jrZ-OA-9Zs"/>
  6233. </connections>
  6234. </button>
  6235. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="3Bd-Nh-oHR">
  6236. <rect key="frame" x="253" y="107" width="125" height="50"/>
  6237. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6238. <fontDescription key="fontDescription" type="system" pointSize="30"/>
  6239. <state key="normal" title="6">
  6240. <color key="titleColor" systemColor="labelColor"/>
  6241. </state>
  6242. <connections>
  6243. <action selector="SixKeyBlue:" destination="bPp-tV-eGp" eventType="touchUpInside" id="blu-Tj-NiC"/>
  6244. </connections>
  6245. </button>
  6246. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="ySp-S3-JqP">
  6247. <rect key="frame" x="1" y="158" width="125" height="50"/>
  6248. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6249. <constraints>
  6250. <constraint firstAttribute="height" constant="50" id="SCb-3A-HoW"/>
  6251. <constraint firstAttribute="width" constant="125" id="tun-QU-npa"/>
  6252. </constraints>
  6253. <fontDescription key="fontDescription" type="system" pointSize="30"/>
  6254. <state key="normal" title="7">
  6255. <color key="titleColor" systemColor="labelColor"/>
  6256. </state>
  6257. <connections>
  6258. <action selector="SevenKeyBlue:" destination="bPp-tV-eGp" eventType="touchUpInside" id="kDP-3R-b2z"/>
  6259. </connections>
  6260. </button>
  6261. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="1lD-Mt-z6T">
  6262. <rect key="frame" x="127" y="158" width="125" height="50"/>
  6263. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6264. <fontDescription key="fontDescription" type="system" pointSize="30"/>
  6265. <state key="normal" title="8">
  6266. <color key="titleColor" systemColor="labelColor"/>
  6267. </state>
  6268. <connections>
  6269. <action selector="EightKeyBlue:" destination="bPp-tV-eGp" eventType="touchUpInside" id="ZWi-fL-SYa"/>
  6270. </connections>
  6271. </button>
  6272. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="mid-uK-fVl">
  6273. <rect key="frame" x="253" y="158" width="125" height="50"/>
  6274. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6275. <fontDescription key="fontDescription" type="system" pointSize="30"/>
  6276. <state key="normal" title="9">
  6277. <color key="titleColor" systemColor="labelColor"/>
  6278. </state>
  6279. <connections>
  6280. <action selector="NineKeyBlue:" destination="bPp-tV-eGp" eventType="touchUpInside" id="0Cf-KI-ngB"/>
  6281. </connections>
  6282. </button>
  6283. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="MmE-BZ-e34">
  6284. <rect key="frame" x="1" y="209" width="125" height="50"/>
  6285. <color key="backgroundColor" systemColor="systemGray2Color"/>
  6286. <constraints>
  6287. <constraint firstAttribute="width" constant="125" id="BAo-L1-XBS"/>
  6288. <constraint firstAttribute="height" constant="50" id="cgr-lg-Fly"/>
  6289. </constraints>
  6290. <fontDescription key="fontDescription" type="system" weight="black" pointSize="21"/>
  6291. <state key="normal" title="Delete">
  6292. <color key="titleColor" systemColor="labelColor"/>
  6293. </state>
  6294. <connections>
  6295. <action selector="DeleteKeyBlue:" destination="bPp-tV-eGp" eventType="touchUpInside" id="ndv-bA-bfZ"/>
  6296. </connections>
  6297. </button>
  6298. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="qkV-oh-diZ">
  6299. <rect key="frame" x="127" y="209" width="125" height="50"/>
  6300. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6301. <fontDescription key="fontDescription" type="system" pointSize="30"/>
  6302. <state key="normal" title="0">
  6303. <color key="titleColor" systemColor="labelColor"/>
  6304. </state>
  6305. <connections>
  6306. <action selector="ZeroKeyBlue:" destination="bPp-tV-eGp" eventType="touchUpInside" id="6hO-vn-VJd"/>
  6307. </connections>
  6308. </button>
  6309. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="70K-70-bdb">
  6310. <rect key="frame" x="253" y="209" width="125" height="50"/>
  6311. <color key="backgroundColor" systemColor="systemGray2Color"/>
  6312. <fontDescription key="fontDescription" type="system" pointSize="30"/>
  6313. <state key="normal">
  6314. <color key="titleColor" systemColor="labelColor"/>
  6315. </state>
  6316. <connections>
  6317. <action selector="CrossKeyBlue:" destination="bPp-tV-eGp" eventType="touchUpInside" id="gB2-S7-aaB"/>
  6318. </connections>
  6319. </button>
  6320. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ic_backspace.jpeg" translatesAutoresizingMaskIntoConstraints="NO" id="MEp-YZ-hdG">
  6321. <rect key="frame" x="298" y="221.66666666666674" width="35" height="25"/>
  6322. <constraints>
  6323. <constraint firstAttribute="height" constant="25" id="1yB-nq-fbs"/>
  6324. <constraint firstAttribute="width" constant="35" id="Y6h-yh-zYE"/>
  6325. </constraints>
  6326. </imageView>
  6327. </subviews>
  6328. <color key="backgroundColor" systemColor="systemGray3Color"/>
  6329. <constraints>
  6330. <constraint firstItem="qkV-oh-diZ" firstAttribute="width" secondItem="MmE-BZ-e34" secondAttribute="width" id="100-Qd-ZDd"/>
  6331. <constraint firstItem="fo3-TO-9f7" firstAttribute="width" secondItem="AiX-yc-x0Q" secondAttribute="width" id="1bf-2A-jUl"/>
  6332. <constraint firstItem="IQH-dv-cbF" firstAttribute="centerY" secondItem="ruo-8F-y5s" secondAttribute="centerY" id="3xY-MO-2B3"/>
  6333. <constraint firstItem="70K-70-bdb" firstAttribute="centerY" secondItem="qkV-oh-diZ" secondAttribute="centerY" id="4Vd-au-iX1"/>
  6334. <constraint firstItem="AiX-yc-x0Q" firstAttribute="top" secondItem="ruo-8F-y5s" secondAttribute="bottom" constant="1" id="7qT-xd-wam"/>
  6335. <constraint firstItem="1lD-Mt-z6T" firstAttribute="centerY" secondItem="ySp-S3-JqP" secondAttribute="centerY" id="8LE-qV-hqo"/>
  6336. <constraint firstItem="MEp-YZ-hdG" firstAttribute="centerX" secondItem="70K-70-bdb" secondAttribute="centerX" id="AvV-AG-3lI"/>
  6337. <constraint firstItem="fo3-TO-9f7" firstAttribute="height" secondItem="AiX-yc-x0Q" secondAttribute="height" id="BmN-kR-uLG"/>
  6338. <constraint firstItem="70K-70-bdb" firstAttribute="height" secondItem="qkV-oh-diZ" secondAttribute="height" id="CP6-8d-PQO"/>
  6339. <constraint firstItem="70K-70-bdb" firstAttribute="width" secondItem="qkV-oh-diZ" secondAttribute="width" id="Cw5-bu-N3b"/>
  6340. <constraint firstItem="ruo-8F-y5s" firstAttribute="top" secondItem="vit-M2-Twq" secondAttribute="bottom" constant="1" id="EQP-g6-ozP"/>
  6341. <constraint firstItem="1lD-Mt-z6T" firstAttribute="width" secondItem="ySp-S3-JqP" secondAttribute="width" id="EoM-5p-KhX"/>
  6342. <constraint firstAttribute="height" constant="260" id="Eto-jH-OL8"/>
  6343. <constraint firstItem="fSQ-Pn-foP" firstAttribute="leading" secondItem="IQH-dv-cbF" secondAttribute="trailing" constant="1" id="FFS-dM-Z8F"/>
  6344. <constraint firstItem="qkV-oh-diZ" firstAttribute="leading" secondItem="MmE-BZ-e34" secondAttribute="trailing" constant="1" id="G9j-UG-VkR"/>
  6345. <constraint firstItem="3Bd-Nh-oHR" firstAttribute="top" secondItem="fSQ-Pn-foP" secondAttribute="bottom" constant="1" id="Htg-us-cXJ"/>
  6346. <constraint firstItem="3Bd-Nh-oHR" firstAttribute="height" secondItem="fo3-TO-9f7" secondAttribute="height" id="Ke3-kA-sgD"/>
  6347. <constraint firstItem="ySp-S3-JqP" firstAttribute="top" secondItem="AiX-yc-x0Q" secondAttribute="bottom" constant="1" id="M5A-rW-3dg"/>
  6348. <constraint firstItem="MEp-YZ-hdG" firstAttribute="centerY" secondItem="70K-70-bdb" secondAttribute="centerY" id="Muo-9G-Jjs"/>
  6349. <constraint firstAttribute="trailing" secondItem="vit-M2-Twq" secondAttribute="trailing" id="N0D-rD-Lsa"/>
  6350. <constraint firstItem="mid-uK-fVl" firstAttribute="top" secondItem="3Bd-Nh-oHR" secondAttribute="bottom" constant="1" id="OLU-9f-dD2"/>
  6351. <constraint firstItem="vit-M2-Twq" firstAttribute="top" secondItem="1B4-Uc-jjA" secondAttribute="top" id="OvB-xg-z6o"/>
  6352. <constraint firstItem="qkV-oh-diZ" firstAttribute="centerY" secondItem="MmE-BZ-e34" secondAttribute="centerY" id="S1Z-lO-HnW"/>
  6353. <constraint firstItem="fSQ-Pn-foP" firstAttribute="height" secondItem="IQH-dv-cbF" secondAttribute="height" id="Szz-bt-JlW"/>
  6354. <constraint firstItem="mid-uK-fVl" firstAttribute="height" secondItem="1lD-Mt-z6T" secondAttribute="height" id="VEN-1z-FLH"/>
  6355. <constraint firstItem="ruo-8F-y5s" firstAttribute="leading" secondItem="1B4-Uc-jjA" secondAttribute="leading" constant="1" id="VwM-e1-1mF"/>
  6356. <constraint firstItem="fo3-TO-9f7" firstAttribute="top" secondItem="IQH-dv-cbF" secondAttribute="bottom" constant="1" id="XxZ-bS-juo"/>
  6357. <constraint firstItem="vit-M2-Twq" firstAttribute="leading" secondItem="1B4-Uc-jjA" secondAttribute="leading" id="ZDt-5U-woB"/>
  6358. <constraint firstItem="qkV-oh-diZ" firstAttribute="top" secondItem="1lD-Mt-z6T" secondAttribute="bottom" constant="1" id="Zdb-je-PZN"/>
  6359. <constraint firstItem="fSQ-Pn-foP" firstAttribute="width" secondItem="IQH-dv-cbF" secondAttribute="width" id="a5t-WD-47z"/>
  6360. <constraint firstItem="fo3-TO-9f7" firstAttribute="centerY" secondItem="AiX-yc-x0Q" secondAttribute="centerY" id="ayI-wn-jiF"/>
  6361. <constraint firstItem="MmE-BZ-e34" firstAttribute="leading" secondItem="ySp-S3-JqP" secondAttribute="leading" id="cg3-Xs-45h"/>
  6362. <constraint firstItem="ySp-S3-JqP" firstAttribute="leading" secondItem="AiX-yc-x0Q" secondAttribute="leading" id="dQ9-ou-79f"/>
  6363. <constraint firstAttribute="width" constant="375" id="e3z-ip-CPR"/>
  6364. <constraint firstItem="IQH-dv-cbF" firstAttribute="height" secondItem="ruo-8F-y5s" secondAttribute="height" id="fZ3-Jh-WBB"/>
  6365. <constraint firstItem="IQH-dv-cbF" firstAttribute="leading" secondItem="ruo-8F-y5s" secondAttribute="trailing" constant="1" id="fat-PP-vOf"/>
  6366. <constraint firstItem="70K-70-bdb" firstAttribute="top" secondItem="mid-uK-fVl" secondAttribute="bottom" constant="1" id="g2W-NU-BIE"/>
  6367. <constraint firstItem="1lD-Mt-z6T" firstAttribute="leading" secondItem="ySp-S3-JqP" secondAttribute="trailing" constant="1" id="gkw-kG-nY1"/>
  6368. <constraint firstItem="AiX-yc-x0Q" firstAttribute="leading" secondItem="1B4-Uc-jjA" secondAttribute="leading" constant="1" id="gmd-P3-MZe"/>
  6369. <constraint firstItem="fo3-TO-9f7" firstAttribute="leading" secondItem="AiX-yc-x0Q" secondAttribute="trailing" constant="1" id="h25-Yw-mgq"/>
  6370. <constraint firstItem="mid-uK-fVl" firstAttribute="centerY" secondItem="1lD-Mt-z6T" secondAttribute="centerY" id="hdt-aW-5v7"/>
  6371. <constraint firstItem="1lD-Mt-z6T" firstAttribute="height" secondItem="ySp-S3-JqP" secondAttribute="height" id="izN-de-l3E"/>
  6372. <constraint firstItem="70K-70-bdb" firstAttribute="leading" secondItem="qkV-oh-diZ" secondAttribute="trailing" constant="1" id="jky-KG-PPC"/>
  6373. <constraint firstItem="1lD-Mt-z6T" firstAttribute="top" secondItem="fo3-TO-9f7" secondAttribute="bottom" constant="1" id="l6I-zB-TXe"/>
  6374. <constraint firstItem="mid-uK-fVl" firstAttribute="leading" secondItem="1lD-Mt-z6T" secondAttribute="trailing" constant="1" id="lJ8-Rh-M6q"/>
  6375. <constraint firstItem="3Bd-Nh-oHR" firstAttribute="width" secondItem="fo3-TO-9f7" secondAttribute="width" id="lT8-Pf-Aeb"/>
  6376. <constraint firstItem="3Bd-Nh-oHR" firstAttribute="leading" secondItem="fo3-TO-9f7" secondAttribute="trailing" constant="1" id="r48-IG-zEx"/>
  6377. <constraint firstItem="3Bd-Nh-oHR" firstAttribute="centerY" secondItem="fo3-TO-9f7" secondAttribute="centerY" id="txw-Cq-caE"/>
  6378. <constraint firstItem="MmE-BZ-e34" firstAttribute="top" secondItem="ySp-S3-JqP" secondAttribute="bottom" constant="1" id="vb8-ZF-pLG"/>
  6379. <constraint firstItem="fSQ-Pn-foP" firstAttribute="centerY" secondItem="IQH-dv-cbF" secondAttribute="centerY" id="w8y-8Y-OKU"/>
  6380. <constraint firstItem="IQH-dv-cbF" firstAttribute="width" secondItem="ruo-8F-y5s" secondAttribute="width" id="wrc-NA-3WN"/>
  6381. <constraint firstItem="mid-uK-fVl" firstAttribute="width" secondItem="1lD-Mt-z6T" secondAttribute="width" id="xoV-8P-BLx"/>
  6382. <constraint firstItem="qkV-oh-diZ" firstAttribute="height" secondItem="MmE-BZ-e34" secondAttribute="height" id="ztz-8I-3Sf"/>
  6383. </constraints>
  6384. </view>
  6385. </subviews>
  6386. <constraints>
  6387. <constraint firstItem="1B4-Uc-jjA" firstAttribute="centerX" secondItem="3bP-1r-rxS" secondAttribute="centerX" id="5ee-6M-Lsn"/>
  6388. <constraint firstAttribute="bottom" secondItem="1B4-Uc-jjA" secondAttribute="bottom" id="rrc-dW-Vfq"/>
  6389. </constraints>
  6390. </view>
  6391. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="cTI-wH-thA" userLabel="KeyboardRed">
  6392. <rect key="frame" x="0.0" y="0.0" width="428" height="1186"/>
  6393. <subviews>
  6394. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="j3b-Tt-9Tl">
  6395. <rect key="frame" x="26.666666666666657" y="926" width="375" height="260"/>
  6396. <subviews>
  6397. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="NUR-n0-WDh">
  6398. <rect key="frame" x="0.0" y="0.0" width="375" height="55"/>
  6399. <subviews>
  6400. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ហាងឆេង" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3jU-KW-YU7">
  6401. <rect key="frame" x="7.9999999999999964" y="19.666666666666629" width="46" height="16"/>
  6402. <fontDescription key="fontDescription" type="system" pointSize="13"/>
  6403. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6404. <nil key="highlightedColor"/>
  6405. </label>
  6406. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="-0.90" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="sat-nF-2N8">
  6407. <rect key="frame" x="56" y="5.6666666666666288" width="79" height="44"/>
  6408. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6409. <constraints>
  6410. <constraint firstAttribute="width" constant="79" id="u0Z-pt-Llx"/>
  6411. <constraint firstAttribute="height" constant="44" id="uLf-uX-Clg"/>
  6412. </constraints>
  6413. <fontDescription key="fontDescription" type="system" weight="black" pointSize="16"/>
  6414. <color key="textColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
  6415. <color key="highlightedColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
  6416. </label>
  6417. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="1000000" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="XVz-dh-408">
  6418. <rect key="frame" x="195" y="6" width="100" height="43"/>
  6419. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6420. <constraints>
  6421. <constraint firstAttribute="height" constant="43" id="P2d-hz-u9v"/>
  6422. <constraint firstAttribute="width" constant="100" id="SkP-5Z-xcO"/>
  6423. </constraints>
  6424. <fontDescription key="fontDescription" type="system" weight="black" pointSize="16"/>
  6425. <nil key="highlightedColor"/>
  6426. </label>
  6427. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="លុយភ្នាល់" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="158-Mr-exx">
  6428. <rect key="frame" x="143" y="19.666666666666629" width="50" height="16"/>
  6429. <constraints>
  6430. <constraint firstAttribute="width" constant="50" id="6eC-IU-x3t"/>
  6431. </constraints>
  6432. <fontDescription key="fontDescription" type="system" pointSize="13"/>
  6433. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6434. <nil key="highlightedColor"/>
  6435. </label>
  6436. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="fgi-zo-3cM">
  6437. <rect key="frame" x="302" y="5.6666666666666288" width="65" height="44"/>
  6438. <color key="backgroundColor" red="0.92156862750000001" green="0.1215686275" blue="0.1764705882" alpha="1" colorSpace="calibratedRGB"/>
  6439. <constraints>
  6440. <constraint firstAttribute="width" constant="65" id="GKC-uH-AaF"/>
  6441. <constraint firstAttribute="height" constant="44" id="ngP-xM-Cmu"/>
  6442. </constraints>
  6443. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  6444. <state key="normal" title="ក្រហម">
  6445. <color key="titleColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  6446. </state>
  6447. <connections>
  6448. <action selector="redAcceptClick:" destination="bPp-tV-eGp" eventType="touchUpInside" id="gj7-cO-a1v"/>
  6449. </connections>
  6450. </button>
  6451. </subviews>
  6452. <color key="backgroundColor" red="0.5450980392" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
  6453. <constraints>
  6454. <constraint firstItem="fgi-zo-3cM" firstAttribute="centerY" secondItem="NUR-n0-WDh" secondAttribute="centerY" id="2VR-e0-4r9"/>
  6455. <constraint firstAttribute="trailing" secondItem="fgi-zo-3cM" secondAttribute="trailing" constant="8" id="4Ma-pn-Dtd"/>
  6456. <constraint firstItem="sat-nF-2N8" firstAttribute="leading" secondItem="3jU-KW-YU7" secondAttribute="trailing" constant="2" id="5fy-y3-Rbe"/>
  6457. <constraint firstItem="158-Mr-exx" firstAttribute="centerY" secondItem="sat-nF-2N8" secondAttribute="centerY" id="7jl-ez-BE0"/>
  6458. <constraint firstItem="XVz-dh-408" firstAttribute="leading" secondItem="158-Mr-exx" secondAttribute="trailing" constant="2" id="8PC-oR-Pl9"/>
  6459. <constraint firstItem="XVz-dh-408" firstAttribute="centerY" secondItem="158-Mr-exx" secondAttribute="centerY" id="CWd-sQ-KAv"/>
  6460. <constraint firstItem="158-Mr-exx" firstAttribute="leading" secondItem="sat-nF-2N8" secondAttribute="trailing" constant="8" symbolic="YES" id="LKL-bs-pso"/>
  6461. <constraint firstAttribute="height" constant="55" id="OsW-P0-BvB"/>
  6462. <constraint firstItem="3jU-KW-YU7" firstAttribute="centerY" secondItem="NUR-n0-WDh" secondAttribute="centerY" id="PBN-Gj-Mr6"/>
  6463. <constraint firstItem="3jU-KW-YU7" firstAttribute="leading" secondItem="NUR-n0-WDh" secondAttribute="leading" constant="8" id="PaD-8e-E9O"/>
  6464. <constraint firstItem="sat-nF-2N8" firstAttribute="centerY" secondItem="3jU-KW-YU7" secondAttribute="centerY" id="ehu-NI-Qkz"/>
  6465. </constraints>
  6466. </view>
  6467. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="NCN-cW-kw5">
  6468. <rect key="frame" x="0.0" y="56" width="125" height="50"/>
  6469. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6470. <constraints>
  6471. <constraint firstAttribute="height" constant="50" id="NlQ-p8-q8R"/>
  6472. <constraint firstAttribute="width" constant="125" id="g71-vz-JqD"/>
  6473. </constraints>
  6474. <fontDescription key="fontDescription" type="system" pointSize="30"/>
  6475. <state key="normal" title="1">
  6476. <color key="titleColor" systemColor="labelColor"/>
  6477. </state>
  6478. <connections>
  6479. <action selector="oneKeyRed:" destination="bPp-tV-eGp" eventType="touchUpInside" id="LFG-Rs-o2Y"/>
  6480. </connections>
  6481. </button>
  6482. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="e6q-AH-Ke2">
  6483. <rect key="frame" x="126" y="56" width="125" height="50"/>
  6484. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6485. <fontDescription key="fontDescription" type="system" pointSize="30"/>
  6486. <state key="normal" title="2">
  6487. <color key="titleColor" systemColor="labelColor"/>
  6488. </state>
  6489. <connections>
  6490. <action selector="TwoKeyRed:" destination="bPp-tV-eGp" eventType="touchUpInside" id="gMM-i3-JOp"/>
  6491. </connections>
  6492. </button>
  6493. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="UH7-Pb-QgG">
  6494. <rect key="frame" x="252" y="56" width="125" height="50"/>
  6495. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6496. <fontDescription key="fontDescription" type="system" pointSize="30"/>
  6497. <state key="normal" title="3">
  6498. <color key="titleColor" systemColor="labelColor"/>
  6499. </state>
  6500. <connections>
  6501. <action selector="ThreeKeyRed:" destination="bPp-tV-eGp" eventType="touchUpInside" id="szE-GP-kei"/>
  6502. </connections>
  6503. </button>
  6504. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Nbk-4z-hpE">
  6505. <rect key="frame" x="0.0" y="107" width="125" height="50"/>
  6506. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6507. <constraints>
  6508. <constraint firstAttribute="height" constant="50" id="0zm-hD-5i7"/>
  6509. <constraint firstAttribute="width" constant="125" id="Vg9-0w-zy5"/>
  6510. </constraints>
  6511. <fontDescription key="fontDescription" type="system" pointSize="30"/>
  6512. <state key="normal" title="4">
  6513. <color key="titleColor" systemColor="labelColor"/>
  6514. </state>
  6515. <connections>
  6516. <action selector="FourKeyRed:" destination="bPp-tV-eGp" eventType="touchUpInside" id="LhV-dM-QIG"/>
  6517. </connections>
  6518. </button>
  6519. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="hCF-Br-O9s">
  6520. <rect key="frame" x="126" y="107" width="125" height="50"/>
  6521. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6522. <fontDescription key="fontDescription" type="system" pointSize="30"/>
  6523. <state key="normal" title="5">
  6524. <color key="titleColor" systemColor="labelColor"/>
  6525. </state>
  6526. <connections>
  6527. <action selector="FiveKeyRed:" destination="bPp-tV-eGp" eventType="touchUpInside" id="Bzz-55-g2b"/>
  6528. </connections>
  6529. </button>
  6530. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="lhN-Vt-2ji">
  6531. <rect key="frame" x="252" y="107" width="125" height="50"/>
  6532. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6533. <fontDescription key="fontDescription" type="system" pointSize="30"/>
  6534. <state key="normal" title="6">
  6535. <color key="titleColor" systemColor="labelColor"/>
  6536. </state>
  6537. <connections>
  6538. <action selector="SixKeyRed:" destination="bPp-tV-eGp" eventType="touchUpInside" id="78U-db-FRB"/>
  6539. </connections>
  6540. </button>
  6541. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="qKx-BT-s3Z">
  6542. <rect key="frame" x="0.0" y="158" width="125" height="50"/>
  6543. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6544. <constraints>
  6545. <constraint firstAttribute="width" constant="125" id="3mC-De-wYN"/>
  6546. <constraint firstAttribute="height" constant="50" id="cWM-OL-my4"/>
  6547. </constraints>
  6548. <fontDescription key="fontDescription" type="system" pointSize="30"/>
  6549. <state key="normal" title="7">
  6550. <color key="titleColor" systemColor="labelColor"/>
  6551. </state>
  6552. <connections>
  6553. <action selector="SevenKeyRed:" destination="bPp-tV-eGp" eventType="touchUpInside" id="Ptu-uc-LoO"/>
  6554. </connections>
  6555. </button>
  6556. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="RDc-hA-mK2">
  6557. <rect key="frame" x="126" y="158" width="125" height="50"/>
  6558. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6559. <fontDescription key="fontDescription" type="system" pointSize="30"/>
  6560. <state key="normal" title="8">
  6561. <color key="titleColor" systemColor="labelColor"/>
  6562. </state>
  6563. <connections>
  6564. <action selector="EightKeyRed:" destination="bPp-tV-eGp" eventType="touchUpInside" id="N07-PG-13y"/>
  6565. </connections>
  6566. </button>
  6567. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="55V-Fw-Cjf">
  6568. <rect key="frame" x="252" y="158" width="125" height="50"/>
  6569. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6570. <fontDescription key="fontDescription" type="system" pointSize="30"/>
  6571. <state key="normal" title="9">
  6572. <color key="titleColor" systemColor="labelColor"/>
  6573. </state>
  6574. <connections>
  6575. <action selector="NineKeyRed:" destination="bPp-tV-eGp" eventType="touchUpInside" id="oXu-ED-ruV"/>
  6576. </connections>
  6577. </button>
  6578. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="9Kf-cV-PAa">
  6579. <rect key="frame" x="0.0" y="209" width="125" height="50"/>
  6580. <color key="backgroundColor" systemColor="systemGray2Color"/>
  6581. <constraints>
  6582. <constraint firstAttribute="height" constant="50" id="iuN-Ch-u4l"/>
  6583. <constraint firstAttribute="width" constant="125" id="ubF-ds-HTR"/>
  6584. </constraints>
  6585. <fontDescription key="fontDescription" type="system" weight="black" pointSize="21"/>
  6586. <state key="normal" title="Delete">
  6587. <color key="titleColor" systemColor="labelColor"/>
  6588. </state>
  6589. <connections>
  6590. <action selector="DeleteKeyRed:" destination="bPp-tV-eGp" eventType="touchUpInside" id="Rom-LQ-XVc"/>
  6591. </connections>
  6592. </button>
  6593. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="dqD-NI-Qed">
  6594. <rect key="frame" x="126" y="209" width="125" height="50"/>
  6595. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6596. <fontDescription key="fontDescription" type="system" pointSize="30"/>
  6597. <state key="normal" title="0">
  6598. <color key="titleColor" systemColor="labelColor"/>
  6599. </state>
  6600. <connections>
  6601. <action selector="ZeroKeyRed:" destination="bPp-tV-eGp" eventType="touchUpInside" id="NzL-tp-IoY"/>
  6602. </connections>
  6603. </button>
  6604. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="PPO-Ip-IBT">
  6605. <rect key="frame" x="252" y="209" width="125" height="50"/>
  6606. <color key="backgroundColor" systemColor="systemGray2Color"/>
  6607. <fontDescription key="fontDescription" type="system" pointSize="36"/>
  6608. <state key="normal">
  6609. <color key="titleColor" systemColor="labelColor"/>
  6610. </state>
  6611. <connections>
  6612. <action selector="CrossKeyRed:" destination="bPp-tV-eGp" eventType="touchUpInside" id="Crn-A8-nl3"/>
  6613. </connections>
  6614. </button>
  6615. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ic_backspace.jpeg" translatesAutoresizingMaskIntoConstraints="NO" id="g8p-pO-bs3">
  6616. <rect key="frame" x="297" y="221.66666666666674" width="35" height="25"/>
  6617. <constraints>
  6618. <constraint firstAttribute="width" constant="35" id="0V5-rQ-wBr"/>
  6619. <constraint firstAttribute="height" constant="25" id="m6A-Hq-fuh"/>
  6620. </constraints>
  6621. </imageView>
  6622. </subviews>
  6623. <color key="backgroundColor" systemColor="systemGray3Color"/>
  6624. <constraints>
  6625. <constraint firstItem="hCF-Br-O9s" firstAttribute="centerY" secondItem="Nbk-4z-hpE" secondAttribute="centerY" id="0x7-dD-Ynx"/>
  6626. <constraint firstItem="e6q-AH-Ke2" firstAttribute="width" secondItem="NCN-cW-kw5" secondAttribute="width" id="1NX-Kd-Iw7"/>
  6627. <constraint firstItem="55V-Fw-Cjf" firstAttribute="height" secondItem="RDc-hA-mK2" secondAttribute="height" id="2Im-2g-cXC"/>
  6628. <constraint firstItem="Nbk-4z-hpE" firstAttribute="leading" secondItem="NCN-cW-kw5" secondAttribute="leading" id="2Xq-u0-Vy5"/>
  6629. <constraint firstItem="RDc-hA-mK2" firstAttribute="height" secondItem="qKx-BT-s3Z" secondAttribute="height" id="3SY-23-jkU"/>
  6630. <constraint firstItem="55V-Fw-Cjf" firstAttribute="leading" secondItem="RDc-hA-mK2" secondAttribute="trailing" constant="1" id="44C-rW-981"/>
  6631. <constraint firstItem="dqD-NI-Qed" firstAttribute="top" secondItem="RDc-hA-mK2" secondAttribute="bottom" constant="1" id="4J9-EU-0A3"/>
  6632. <constraint firstItem="9Kf-cV-PAa" firstAttribute="top" secondItem="qKx-BT-s3Z" secondAttribute="bottom" constant="1" id="5Dm-bc-39I"/>
  6633. <constraint firstItem="dqD-NI-Qed" firstAttribute="height" secondItem="9Kf-cV-PAa" secondAttribute="height" id="6YX-CJ-Mb9"/>
  6634. <constraint firstItem="hCF-Br-O9s" firstAttribute="width" secondItem="Nbk-4z-hpE" secondAttribute="width" id="6jp-zj-raj"/>
  6635. <constraint firstItem="dqD-NI-Qed" firstAttribute="leading" secondItem="9Kf-cV-PAa" secondAttribute="trailing" constant="1" id="AJo-vS-7Hb"/>
  6636. <constraint firstItem="hCF-Br-O9s" firstAttribute="leading" secondItem="Nbk-4z-hpE" secondAttribute="trailing" constant="1" id="ALn-hX-zdP"/>
  6637. <constraint firstItem="lhN-Vt-2ji" firstAttribute="top" secondItem="UH7-Pb-QgG" secondAttribute="bottom" constant="1" id="AUT-OB-x4g"/>
  6638. <constraint firstItem="PPO-Ip-IBT" firstAttribute="leading" secondItem="dqD-NI-Qed" secondAttribute="trailing" constant="1" id="Acm-4h-vgb"/>
  6639. <constraint firstItem="NCN-cW-kw5" firstAttribute="top" secondItem="NUR-n0-WDh" secondAttribute="bottom" constant="1" id="Adu-8V-JuB"/>
  6640. <constraint firstItem="RDc-hA-mK2" firstAttribute="top" secondItem="hCF-Br-O9s" secondAttribute="bottom" constant="1" id="DAc-lS-FGe"/>
  6641. <constraint firstItem="e6q-AH-Ke2" firstAttribute="leading" secondItem="NCN-cW-kw5" secondAttribute="trailing" constant="1" id="E4i-Y2-tvW"/>
  6642. <constraint firstItem="UH7-Pb-QgG" firstAttribute="height" secondItem="e6q-AH-Ke2" secondAttribute="height" id="HNU-a1-num"/>
  6643. <constraint firstItem="PPO-Ip-IBT" firstAttribute="centerY" secondItem="dqD-NI-Qed" secondAttribute="centerY" id="Hor-sU-JOD"/>
  6644. <constraint firstItem="qKx-BT-s3Z" firstAttribute="top" secondItem="Nbk-4z-hpE" secondAttribute="bottom" constant="1" id="LBf-44-rhS"/>
  6645. <constraint firstItem="9Kf-cV-PAa" firstAttribute="leading" secondItem="qKx-BT-s3Z" secondAttribute="leading" id="La9-cy-v1w"/>
  6646. <constraint firstItem="UH7-Pb-QgG" firstAttribute="width" secondItem="e6q-AH-Ke2" secondAttribute="width" id="NEQ-8T-wqM"/>
  6647. <constraint firstItem="55V-Fw-Cjf" firstAttribute="width" secondItem="RDc-hA-mK2" secondAttribute="width" id="NpG-B7-Ckn"/>
  6648. <constraint firstItem="lhN-Vt-2ji" firstAttribute="centerY" secondItem="hCF-Br-O9s" secondAttribute="centerY" id="ODe-jh-z7p"/>
  6649. <constraint firstItem="RDc-hA-mK2" firstAttribute="width" secondItem="qKx-BT-s3Z" secondAttribute="width" id="QTy-zo-gq7"/>
  6650. <constraint firstItem="RDc-hA-mK2" firstAttribute="centerY" secondItem="qKx-BT-s3Z" secondAttribute="centerY" id="QlR-fa-Qmx"/>
  6651. <constraint firstItem="lhN-Vt-2ji" firstAttribute="width" secondItem="hCF-Br-O9s" secondAttribute="width" id="SQV-ig-12h"/>
  6652. <constraint firstAttribute="height" constant="260" id="Tar-Fg-8US"/>
  6653. <constraint firstItem="55V-Fw-Cjf" firstAttribute="top" secondItem="lhN-Vt-2ji" secondAttribute="bottom" constant="1" id="Tdx-jA-iTI"/>
  6654. <constraint firstItem="g8p-pO-bs3" firstAttribute="centerY" secondItem="PPO-Ip-IBT" secondAttribute="centerY" id="Ugq-zO-T0H"/>
  6655. <constraint firstItem="lhN-Vt-2ji" firstAttribute="leading" secondItem="hCF-Br-O9s" secondAttribute="trailing" constant="1" id="VR9-hF-zX0"/>
  6656. <constraint firstItem="UH7-Pb-QgG" firstAttribute="centerY" secondItem="e6q-AH-Ke2" secondAttribute="centerY" id="W5t-9m-ZB3"/>
  6657. <constraint firstItem="lhN-Vt-2ji" firstAttribute="height" secondItem="hCF-Br-O9s" secondAttribute="height" id="ZXm-ej-TRC"/>
  6658. <constraint firstItem="PPO-Ip-IBT" firstAttribute="top" secondItem="55V-Fw-Cjf" secondAttribute="bottom" constant="1" id="aO1-q3-h6N"/>
  6659. <constraint firstItem="UH7-Pb-QgG" firstAttribute="leading" secondItem="e6q-AH-Ke2" secondAttribute="trailing" constant="1" id="bi4-oI-2sx"/>
  6660. <constraint firstItem="dqD-NI-Qed" firstAttribute="width" secondItem="9Kf-cV-PAa" secondAttribute="width" id="c4L-8k-lom"/>
  6661. <constraint firstItem="hCF-Br-O9s" firstAttribute="height" secondItem="Nbk-4z-hpE" secondAttribute="height" id="c4u-n8-rXv"/>
  6662. <constraint firstItem="hCF-Br-O9s" firstAttribute="top" secondItem="e6q-AH-Ke2" secondAttribute="bottom" constant="1" id="fXj-u4-EPF"/>
  6663. <constraint firstAttribute="trailing" secondItem="NUR-n0-WDh" secondAttribute="trailing" id="hz9-p3-e4W"/>
  6664. <constraint firstItem="e6q-AH-Ke2" firstAttribute="height" secondItem="NCN-cW-kw5" secondAttribute="height" id="iRe-o4-FYx"/>
  6665. <constraint firstItem="NCN-cW-kw5" firstAttribute="leading" secondItem="NUR-n0-WDh" secondAttribute="leading" id="jNf-nV-Pgv"/>
  6666. <constraint firstItem="55V-Fw-Cjf" firstAttribute="centerY" secondItem="RDc-hA-mK2" secondAttribute="centerY" id="kim-jn-4l8"/>
  6667. <constraint firstItem="PPO-Ip-IBT" firstAttribute="width" secondItem="dqD-NI-Qed" secondAttribute="width" id="laI-5s-cbx"/>
  6668. <constraint firstItem="NUR-n0-WDh" firstAttribute="leading" secondItem="j3b-Tt-9Tl" secondAttribute="leading" id="liU-Ck-QbF"/>
  6669. <constraint firstItem="RDc-hA-mK2" firstAttribute="leading" secondItem="qKx-BT-s3Z" secondAttribute="trailing" constant="1" id="nIR-2p-sez"/>
  6670. <constraint firstItem="g8p-pO-bs3" firstAttribute="centerX" secondItem="PPO-Ip-IBT" secondAttribute="centerX" id="ory-pC-mYg"/>
  6671. <constraint firstItem="PPO-Ip-IBT" firstAttribute="height" secondItem="dqD-NI-Qed" secondAttribute="height" id="rfL-bZ-jVQ"/>
  6672. <constraint firstItem="e6q-AH-Ke2" firstAttribute="centerY" secondItem="NCN-cW-kw5" secondAttribute="centerY" id="sdg-2X-9oH"/>
  6673. <constraint firstItem="Nbk-4z-hpE" firstAttribute="top" secondItem="NCN-cW-kw5" secondAttribute="bottom" constant="1" id="uW1-ig-t6e"/>
  6674. <constraint firstAttribute="width" constant="375" id="vCQ-ah-zXC"/>
  6675. <constraint firstItem="qKx-BT-s3Z" firstAttribute="leading" secondItem="Nbk-4z-hpE" secondAttribute="leading" id="xQC-IN-aZO"/>
  6676. <constraint firstItem="dqD-NI-Qed" firstAttribute="centerY" secondItem="9Kf-cV-PAa" secondAttribute="centerY" id="xzx-wE-AJl"/>
  6677. <constraint firstItem="NUR-n0-WDh" firstAttribute="top" secondItem="j3b-Tt-9Tl" secondAttribute="top" id="zbx-n2-P7g"/>
  6678. </constraints>
  6679. </view>
  6680. </subviews>
  6681. <constraints>
  6682. <constraint firstAttribute="bottom" secondItem="j3b-Tt-9Tl" secondAttribute="bottom" id="Exw-eb-QsC"/>
  6683. <constraint firstItem="j3b-Tt-9Tl" firstAttribute="centerX" secondItem="cTI-wH-thA" secondAttribute="centerX" id="TqR-28-JUk"/>
  6684. </constraints>
  6685. </view>
  6686. </subviews>
  6687. <viewLayoutGuide key="safeArea" id="9AN-zb-pIL"/>
  6688. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  6689. <constraints>
  6690. <constraint firstItem="Hlz-HQ-J6y" firstAttribute="trailing" secondItem="9AN-zb-pIL" secondAttribute="trailing" id="0bh-8J-Tvw"/>
  6691. <constraint firstItem="3IC-v0-NdT" firstAttribute="top" secondItem="Hlz-HQ-J6y" secondAttribute="bottom" constant="5" id="1Xm-ap-OE0"/>
  6692. <constraint firstItem="cTI-wH-thA" firstAttribute="leading" secondItem="9AN-zb-pIL" secondAttribute="leading" id="1at-as-8hA"/>
  6693. <constraint firstItem="diE-s8-NcE" firstAttribute="leading" secondItem="9AN-zb-pIL" secondAttribute="leading" id="22n-iJ-qFQ"/>
  6694. <constraint firstItem="3bP-1r-rxS" firstAttribute="leading" secondItem="9AN-zb-pIL" secondAttribute="leading" id="4ma-YQ-8Eo"/>
  6695. <constraint firstItem="PLI-UE-RXG" firstAttribute="leading" secondItem="9AN-zb-pIL" secondAttribute="leading" id="6ka-Gu-pLi"/>
  6696. <constraint firstItem="3IC-v0-NdT" firstAttribute="leading" secondItem="9AN-zb-pIL" secondAttribute="leading" id="F66-2l-DbQ"/>
  6697. <constraint firstItem="3IC-v0-NdT" firstAttribute="trailing" secondItem="9AN-zb-pIL" secondAttribute="trailing" id="FwN-Cf-2bT"/>
  6698. <constraint firstItem="PLI-UE-RXG" firstAttribute="top" secondItem="vV9-wY-srQ" secondAttribute="top" id="Jd7-CP-SR3"/>
  6699. <constraint firstAttribute="trailing" secondItem="PLI-UE-RXG" secondAttribute="trailing" id="Lne-59-o66"/>
  6700. <constraint firstAttribute="bottom" secondItem="cTI-wH-thA" secondAttribute="bottom" constant="-260" id="Uz0-6J-Tsv"/>
  6701. <constraint firstItem="3IC-v0-NdT" firstAttribute="bottom" secondItem="9AN-zb-pIL" secondAttribute="bottom" id="Vgy-IN-eIR"/>
  6702. <constraint firstItem="cTI-wH-thA" firstAttribute="trailing" secondItem="9AN-zb-pIL" secondAttribute="trailing" id="WN5-xd-tJt"/>
  6703. <constraint firstItem="cTI-wH-thA" firstAttribute="top" secondItem="vV9-wY-srQ" secondAttribute="top" id="dJb-48-EBK"/>
  6704. <constraint firstItem="Hlz-HQ-J6y" firstAttribute="leading" secondItem="9AN-zb-pIL" secondAttribute="leading" id="fCz-kk-C2u"/>
  6705. <constraint firstAttribute="bottom" secondItem="3bP-1r-rxS" secondAttribute="bottom" constant="-260" id="jeO-UB-l8q"/>
  6706. <constraint firstItem="3bP-1r-rxS" firstAttribute="trailing" secondItem="9AN-zb-pIL" secondAttribute="trailing" id="qhA-JA-YUI"/>
  6707. <constraint firstItem="3bP-1r-rxS" firstAttribute="top" secondItem="vV9-wY-srQ" secondAttribute="top" id="rje-SW-wRW"/>
  6708. <constraint firstItem="diE-s8-NcE" firstAttribute="trailing" secondItem="9AN-zb-pIL" secondAttribute="trailing" id="wsK-p1-Qhg"/>
  6709. <constraint firstItem="diE-s8-NcE" firstAttribute="top" secondItem="PLI-UE-RXG" secondAttribute="bottom" constant="5" id="yh1-iz-V2r"/>
  6710. </constraints>
  6711. </view>
  6712. <navigationItem key="navigationItem" id="ddM-ME-4ie"/>
  6713. <connections>
  6714. <outlet property="PongTableCollectionV" destination="lAx-rX-SAf" id="NSL-0d-fCl"/>
  6715. <outlet property="btnBet" destination="sUX-72-MyQ" id="OeK-pS-4jR"/>
  6716. <outlet property="btnBlue" destination="owr-W8-ZhH" id="APC-P7-MBe"/>
  6717. <outlet property="btnBlueAccept" destination="qnR-hc-Iql" id="8e9-NC-vod"/>
  6718. <outlet property="btnPong" destination="Pfo-OC-Tvs" id="ExM-mc-846"/>
  6719. <outlet property="btnRed" destination="R3J-6B-U9k" id="fr1-ik-UP5"/>
  6720. <outlet property="btnRedAccept" destination="fgi-zo-3cM" id="Gco-H5-R9n"/>
  6721. <outlet property="btnWait" destination="Bfu-rs-dld" id="lbn-ah-KBT"/>
  6722. <outlet property="lblBalance" destination="bgE-vh-Ugn" id="9tI-tP-hnt"/>
  6723. <outlet property="lblBlueAmountBet" destination="wEN-Lu-G1A" id="czh-P0-v3E"/>
  6724. <outlet property="lblBlueExchangeRate" destination="q1l-DE-qfF" id="zMM-6C-tbH"/>
  6725. <outlet property="lblCurrentDate" destination="gpV-8L-B77" id="8U6-6L-fx3"/>
  6726. <outlet property="lblFightNo" destination="cYM-IN-7x1" id="Uhf-yB-ff7"/>
  6727. <outlet property="lblRedAmountBet" destination="XVz-dh-408" id="rcr-gu-Btn"/>
  6728. <outlet property="lblRedExchangeRate" destination="sat-nF-2N8" id="gFS-vh-HwM"/>
  6729. <outlet property="lblStatus" destination="ipT-tH-99c" id="RPD-zj-DoY"/>
  6730. <outlet property="lblUserName" destination="iWE-Av-fX8" id="Vfb-th-lLF"/>
  6731. <outlet property="loading" destination="WxZ-rs-PCD" id="PzZ-jm-yE2"/>
  6732. <outlet property="tbBet" destination="SBW-2G-Jg5" id="h9d-or-GvP"/>
  6733. <outlet property="tbBlueBet" destination="Hxd-nx-Mii" id="4cF-qJ-cGL"/>
  6734. <outlet property="tbRedBet" destination="d2h-Ru-3pj" id="Mc5-YS-a6v"/>
  6735. <outlet property="tbWait" destination="X98-kc-x3t" id="2ih-eB-HRe"/>
  6736. <outlet property="vBarButton" destination="ABC-gt-to0" id="xrA-6t-5Aa"/>
  6737. <outlet property="vBlurKeyBoardBlue" destination="3bP-1r-rxS" id="Bix-d3-RiY"/>
  6738. <outlet property="vBlurKeyBoardRed" destination="cTI-wH-thA" id="ufg-lG-UFx"/>
  6739. <outlet property="vKeyboardBlue" destination="1B4-Uc-jjA" id="4Ze-di-owM"/>
  6740. <outlet property="vKeyboardRed" destination="j3b-Tt-9Tl" id="wO3-eV-uJo"/>
  6741. <outlet property="vLineTable" destination="hhi-7h-Ez3" id="IRm-eu-Azo"/>
  6742. <outlet property="vLived" destination="Hlz-HQ-J6y" id="2dS-OJ-U6s"/>
  6743. <outlet property="vMainReplaceView" destination="qfI-1P-IPy" id="jJs-hY-7oD"/>
  6744. <outlet property="vPongTable" destination="gvH-JY-YmO" id="XZT-by-2fg"/>
  6745. </connections>
  6746. </viewController>
  6747. <placeholder placeholderIdentifier="IBFirstResponder" id="69J-MU-fbD" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  6748. </objects>
  6749. <point key="canvasLocation" x="1050" y="950"/>
  6750. </scene>
  6751. <!--SettingVC-->
  6752. <scene sceneID="Ao0-x8-kFe">
  6753. <objects>
  6754. <viewController modalPresentationStyle="fullScreen" id="oqp-ou-gCF" customClass="SettingVC" customModule="CockFight" customModuleProvider="target" sceneMemberID="viewController">
  6755. <view key="view" contentMode="scaleToFill" id="zic-JQ-alO">
  6756. <rect key="frame" x="0.0" y="0.0" width="428" height="926"/>
  6757. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  6758. <subviews>
  6759. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="uq7-1x-tb4" userLabel="TopBar">
  6760. <rect key="frame" x="0.0" y="0.0" width="428" height="100"/>
  6761. <subviews>
  6762. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="logo.png" translatesAutoresizingMaskIntoConstraints="NO" id="vPH-lj-nNE">
  6763. <rect key="frame" x="10" y="40" width="50" height="50"/>
  6764. <constraints>
  6765. <constraint firstAttribute="height" constant="50" id="CC2-sx-wir"/>
  6766. <constraint firstAttribute="width" constant="50" id="CqL-O9-haE"/>
  6767. </constraints>
  6768. </imageView>
  6769. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="100,121,300" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="cN1-ek-2TM">
  6770. <rect key="frame" x="65" y="63.666666666666657" width="77" height="17"/>
  6771. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  6772. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  6773. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6774. </label>
  6775. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="CYN-uT-4pb">
  6776. <rect key="frame" x="388" y="50" width="30" height="30"/>
  6777. <constraints>
  6778. <constraint firstAttribute="width" constant="30" id="1xV-7W-Vhg"/>
  6779. <constraint firstAttribute="height" constant="30" id="fEF-e5-zPd"/>
  6780. </constraints>
  6781. <state key="normal" image="ic_setting.png"/>
  6782. </button>
  6783. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="rGC-ZM-5A5">
  6784. <rect key="frame" x="348" y="50" width="30" height="30"/>
  6785. <constraints>
  6786. <constraint firstAttribute="width" constant="30" id="Xhf-kl-9pJ"/>
  6787. <constraint firstAttribute="height" constant="30" id="YRB-hE-1rx"/>
  6788. </constraints>
  6789. <state key="normal" image="ic_unmute.png"/>
  6790. </button>
  6791. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="lYb-Hf-87h">
  6792. <rect key="frame" x="303" y="45" width="35" height="40"/>
  6793. <constraints>
  6794. <constraint firstAttribute="height" constant="40" id="qgX-9b-vVG"/>
  6795. <constraint firstAttribute="width" constant="35" id="sM0-yV-mCn"/>
  6796. </constraints>
  6797. <state key="normal" image="ic_report.png"/>
  6798. </button>
  6799. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="p5" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="IVk-lX-azA">
  6800. <rect key="frame" x="65" y="40" width="17" height="17"/>
  6801. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  6802. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  6803. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6804. </label>
  6805. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="user.png" translatesAutoresizingMaskIntoConstraints="NO" id="zvH-gc-T1s">
  6806. <rect key="frame" x="85" y="38.666666666666664" width="15" height="20"/>
  6807. <constraints>
  6808. <constraint firstAttribute="height" constant="20" id="n6b-pK-Gob"/>
  6809. <constraint firstAttribute="width" constant="15" id="uiS-7l-UaP"/>
  6810. </constraints>
  6811. </imageView>
  6812. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="T5M-Mp-HCz">
  6813. <rect key="frame" x="145" y="63.666666666666657" width="20" height="17"/>
  6814. <constraints>
  6815. <constraint firstAttribute="width" constant="20" id="5IH-Sw-oR5"/>
  6816. <constraint firstAttribute="height" constant="17" id="rwc-p5-qfv"/>
  6817. </constraints>
  6818. <state key="normal" image="ic_refresh.png"/>
  6819. </button>
  6820. </subviews>
  6821. <color key="backgroundColor" red="0.3803921569" green="0.37254901959999998" blue="0.37254901959999998" alpha="1" colorSpace="calibratedRGB"/>
  6822. <constraints>
  6823. <constraint firstItem="rGC-ZM-5A5" firstAttribute="centerY" secondItem="CYN-uT-4pb" secondAttribute="centerY" id="0bh-sR-B4K"/>
  6824. <constraint firstItem="IVk-lX-azA" firstAttribute="top" secondItem="vPH-lj-nNE" secondAttribute="top" id="C0V-Ay-dob"/>
  6825. <constraint firstItem="CYN-uT-4pb" firstAttribute="leading" secondItem="rGC-ZM-5A5" secondAttribute="trailing" constant="10" id="EAo-JB-QtQ"/>
  6826. <constraint firstAttribute="trailing" secondItem="CYN-uT-4pb" secondAttribute="trailing" constant="10" id="JyD-TY-6z0"/>
  6827. <constraint firstItem="T5M-Mp-HCz" firstAttribute="centerY" secondItem="cN1-ek-2TM" secondAttribute="centerY" id="TEe-2R-l2d"/>
  6828. <constraint firstItem="rGC-ZM-5A5" firstAttribute="leading" secondItem="lYb-Hf-87h" secondAttribute="trailing" constant="10" id="U54-OE-Dh6"/>
  6829. <constraint firstItem="cN1-ek-2TM" firstAttribute="top" secondItem="zvH-gc-T1s" secondAttribute="bottom" constant="5" id="Yuf-jJ-eAv"/>
  6830. <constraint firstItem="vPH-lj-nNE" firstAttribute="leading" secondItem="uq7-1x-tb4" secondAttribute="leading" constant="10" id="ZpA-lz-Ehx"/>
  6831. <constraint firstAttribute="bottom" secondItem="vPH-lj-nNE" secondAttribute="bottom" constant="10" id="fi2-xu-5XS"/>
  6832. <constraint firstItem="T5M-Mp-HCz" firstAttribute="leading" secondItem="cN1-ek-2TM" secondAttribute="trailing" constant="3" id="lD0-ho-Wwe"/>
  6833. <constraint firstItem="cN1-ek-2TM" firstAttribute="leading" secondItem="IVk-lX-azA" secondAttribute="leading" id="maM-3Q-7x7"/>
  6834. <constraint firstItem="CYN-uT-4pb" firstAttribute="centerY" secondItem="vPH-lj-nNE" secondAttribute="centerY" id="n5Z-ID-FuX"/>
  6835. <constraint firstItem="IVk-lX-azA" firstAttribute="leading" secondItem="vPH-lj-nNE" secondAttribute="trailing" constant="5" id="oJZ-gO-G8V"/>
  6836. <constraint firstAttribute="height" constant="100" id="oxv-zd-lgW"/>
  6837. <constraint firstItem="lYb-Hf-87h" firstAttribute="centerY" secondItem="rGC-ZM-5A5" secondAttribute="centerY" id="tCJ-EO-hjZ"/>
  6838. <constraint firstItem="zvH-gc-T1s" firstAttribute="centerY" secondItem="IVk-lX-azA" secondAttribute="centerY" id="vfR-lH-nUQ"/>
  6839. <constraint firstItem="zvH-gc-T1s" firstAttribute="leading" secondItem="IVk-lX-azA" secondAttribute="trailing" constant="3" id="vtR-9w-vJL"/>
  6840. </constraints>
  6841. </view>
  6842. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="backgound.png" translatesAutoresizingMaskIntoConstraints="NO" id="3Ig-l0-i9L">
  6843. <rect key="frame" x="0.0" y="105" width="428" height="821"/>
  6844. </imageView>
  6845. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="i0d-tm-Vf0" userLabel="VDeposit">
  6846. <rect key="frame" x="22" y="140" width="384" height="670"/>
  6847. <subviews>
  6848. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="AFA-L7-71R">
  6849. <rect key="frame" x="0.0" y="0.0" width="384" height="52"/>
  6850. <color key="backgroundColor" systemColor="systemGray2Color"/>
  6851. <color key="tintColor" systemColor="systemGray2Color"/>
  6852. <constraints>
  6853. <constraint firstAttribute="height" constant="52" id="npP-pM-d3s"/>
  6854. </constraints>
  6855. </imageView>
  6856. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="zUn-TS-NRx">
  6857. <rect key="frame" x="0.0" y="0.0" width="128" height="52"/>
  6858. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6859. <constraints>
  6860. <constraint firstAttribute="height" constant="52" id="KNj-YM-Xxc"/>
  6861. <constraint firstAttribute="width" constant="128" id="Y51-QE-raL"/>
  6862. </constraints>
  6863. <fontDescription key="fontDescription" type="system" pointSize="21"/>
  6864. <state key="normal" title="គណនីខ្ញុំ">
  6865. <color key="titleColor" systemColor="labelColor"/>
  6866. </state>
  6867. <connections>
  6868. <action selector="myAccountClick:" destination="oqp-ou-gCF" eventType="touchUpInside" id="5tY-xF-P04"/>
  6869. </connections>
  6870. </button>
  6871. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="O5N-rR-Ipo">
  6872. <rect key="frame" x="128" y="0.0" width="128" height="52"/>
  6873. <fontDescription key="fontDescription" type="system" pointSize="21"/>
  6874. <state key="normal" title="ការដកប្រាក់">
  6875. <color key="titleColor" systemColor="labelColor"/>
  6876. </state>
  6877. <connections>
  6878. <action selector="withdrawClick:" destination="oqp-ou-gCF" eventType="touchUpInside" id="aDO-Me-ixO"/>
  6879. </connections>
  6880. </button>
  6881. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Ho9-dv-22p">
  6882. <rect key="frame" x="256" y="0.0" width="128" height="52"/>
  6883. <fontDescription key="fontDescription" type="system" pointSize="21"/>
  6884. <state key="normal" title="ការដាក់ប្រាក់">
  6885. <color key="titleColor" systemColor="labelColor"/>
  6886. </state>
  6887. <connections>
  6888. <action selector="depositClick:" destination="oqp-ou-gCF" eventType="touchUpInside" id="f5W-RH-iJ3"/>
  6889. </connections>
  6890. </button>
  6891. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="m6w-tL-ssg" userLabel="VDeposit">
  6892. <rect key="frame" x="0.0" y="51" width="384" height="467"/>
  6893. <subviews>
  6894. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="សូមជ្រើសរើសឈ្មោះធនាគារ" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Xnq-qI-lrD">
  6895. <rect key="frame" x="8" y="8" width="197" height="22"/>
  6896. <constraints>
  6897. <constraint firstAttribute="height" constant="22" id="OSB-Rz-0wE"/>
  6898. </constraints>
  6899. <fontDescription key="fontDescription" type="system" pointSize="18"/>
  6900. <nil key="textColor"/>
  6901. <nil key="highlightedColor"/>
  6902. </label>
  6903. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="សូមបញ្ចូលទឹកប្រាក់ដែលត្រូវដាក់" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="jUY-le-jYY">
  6904. <rect key="frame" x="0.0" y="155" width="384" height="28"/>
  6905. <constraints>
  6906. <constraint firstAttribute="height" constant="28" id="Tbo-JN-sGx"/>
  6907. </constraints>
  6908. <fontDescription key="fontDescription" type="system" pointSize="20"/>
  6909. <color key="textColor" red="0.050980392159999999" green="0.023529411760000001" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6910. <nil key="highlightedColor"/>
  6911. </label>
  6912. <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="BSa-ed-yC6">
  6913. <rect key="frame" x="8" y="191" width="368" height="34"/>
  6914. <constraints>
  6915. <constraint firstAttribute="height" constant="34" id="zjF-X6-kSz"/>
  6916. </constraints>
  6917. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  6918. <textInputTraits key="textInputTraits"/>
  6919. </textField>
  6920. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" usesAttributedText="YES" lineBreakMode="wordWrap" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="76F-7h-ifY">
  6921. <rect key="frame" x="8" y="225" width="368" height="120"/>
  6922. <constraints>
  6923. <constraint firstAttribute="height" constant="120" id="e2W-GZ-nex"/>
  6924. </constraints>
  6925. <attributedString key="attributedText">
  6926. <fragment content="សូមពិនិត្យឈ្មោះធានាគារ">
  6927. <attributes>
  6928. <color key="NSColor" name="textColor" catalog="System" colorSpace="catalog"/>
  6929. <font key="NSFont" size="18" name="KhmerSangamMN"/>
  6930. <paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0"/>
  6931. </attributes>
  6932. </fragment>
  6933. <fragment content=" ">
  6934. <attributes>
  6935. <color key="NSColor" name="textColor" catalog="System" colorSpace="catalog"/>
  6936. <font key="NSFont" metaFont="system" size="18"/>
  6937. <paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0"/>
  6938. </attributes>
  6939. </fragment>
  6940. <fragment content="លេខគណនី">
  6941. <attributes>
  6942. <color key="NSColor" name="textColor" catalog="System" colorSpace="catalog"/>
  6943. <font key="NSFont" size="18" name="KhmerSangamMN"/>
  6944. <paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0"/>
  6945. </attributes>
  6946. </fragment>
  6947. <fragment content=" ">
  6948. <attributes>
  6949. <color key="NSColor" name="textColor" catalog="System" colorSpace="catalog"/>
  6950. <font key="NSFont" metaFont="system" size="18"/>
  6951. <paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0"/>
  6952. </attributes>
  6953. </fragment>
  6954. <fragment content="និងឈ្មោះគណនី">
  6955. <attributes>
  6956. <color key="NSColor" name="textColor" catalog="System" colorSpace="catalog"/>
  6957. <font key="NSFont" size="18" name="KhmerSangamMN"/>
  6958. <paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0"/>
  6959. </attributes>
  6960. </fragment>
  6961. <fragment content=" ">
  6962. <attributes>
  6963. <color key="NSColor" name="textColor" catalog="System" colorSpace="catalog"/>
  6964. <font key="NSFont" metaFont="system" size="18"/>
  6965. <paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0"/>
  6966. </attributes>
  6967. </fragment>
  6968. <fragment content="របស់អ្នកអោយបានច្បាស់ មុននិងធ្វើការបាញ់ទឹកប្រាក់របស់អ្នកចេញពីកុងរបស់អ្នក។">
  6969. <attributes>
  6970. <color key="NSColor" name="textColor" catalog="System" colorSpace="catalog"/>
  6971. <font key="NSFont" size="18" name="KhmerSangamMN"/>
  6972. <paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0"/>
  6973. </attributes>
  6974. </fragment>
  6975. </attributedString>
  6976. <nil key="highlightedColor"/>
  6977. </label>
  6978. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="PM0-01-VTY">
  6979. <rect key="frame" x="115" y="357" width="154" height="35"/>
  6980. <color key="backgroundColor" red="0.36078431370000003" green="0.73725490199999999" blue="0.062745098040000002" alpha="1" colorSpace="calibratedRGB"/>
  6981. <constraints>
  6982. <constraint firstAttribute="width" constant="154" id="Pw5-qD-MrL"/>
  6983. <constraint firstAttribute="height" constant="35" id="xgd-es-76J"/>
  6984. </constraints>
  6985. <fontDescription key="fontDescription" type="system" pointSize="18"/>
  6986. <state key="normal">
  6987. <color key="titleColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  6988. </state>
  6989. <connections>
  6990. <action selector="sendDepositMoney:" destination="oqp-ou-gCF" eventType="touchUpInside" id="Ufh-6O-8tM"/>
  6991. </connections>
  6992. </button>
  6993. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="bhu-SW-uGK">
  6994. <rect key="frame" x="115" y="417" width="154" height="35"/>
  6995. <color key="backgroundColor" systemColor="systemRedColor"/>
  6996. <constraints>
  6997. <constraint firstAttribute="height" constant="35" id="DGr-o7-PPB"/>
  6998. <constraint firstAttribute="width" constant="154" id="KfU-KV-gHg"/>
  6999. </constraints>
  7000. <connections>
  7001. <action selector="btnDepositLogout:" destination="oqp-ou-gCF" eventType="touchUpInside" id="i2R-4G-SK9"/>
  7002. </connections>
  7003. </button>
  7004. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="6CO-Ow-QdO">
  7005. <rect key="frame" x="8" y="404" width="368" height="1"/>
  7006. <color key="backgroundColor" systemColor="labelColor"/>
  7007. <constraints>
  7008. <constraint firstAttribute="height" constant="1" id="0Uk-eC-yZK"/>
  7009. </constraints>
  7010. </view>
  7011. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="bluetooth sign out.png" translatesAutoresizingMaskIntoConstraints="NO" id="ClG-jU-GF8">
  7012. <rect key="frame" x="127" y="422" width="130" height="25"/>
  7013. <constraints>
  7014. <constraint firstAttribute="height" constant="25" id="3uS-D8-IcV"/>
  7015. <constraint firstAttribute="width" constant="130" id="Etz-V7-1jW"/>
  7016. </constraints>
  7017. </imageView>
  7018. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="បញ្ជូន" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="dxh-ma-bFH">
  7019. <rect key="frame" x="170" y="361" width="37" height="23"/>
  7020. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7021. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  7022. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  7023. <nil key="highlightedColor"/>
  7024. </label>
  7025. <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="JkK-gV-VSL">
  7026. <rect key="frame" x="8" y="38" width="368" height="34"/>
  7027. <constraints>
  7028. <constraint firstAttribute="width" constant="368" id="6ec-cR-FGH"/>
  7029. <constraint firstAttribute="height" constant="34" id="EMM-Km-14z"/>
  7030. </constraints>
  7031. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  7032. <textInputTraits key="textInputTraits"/>
  7033. </textField>
  7034. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="លេខគណនី" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="9Dz-iM-nTa">
  7035. <rect key="frame" x="60" y="82" width="81" height="22"/>
  7036. <constraints>
  7037. <constraint firstAttribute="height" constant="22" id="7t2-Rs-kLP"/>
  7038. <constraint firstAttribute="width" constant="81" id="8Qi-0U-Oud"/>
  7039. </constraints>
  7040. <fontDescription key="fontDescription" type="system" pointSize="18"/>
  7041. <nil key="textColor"/>
  7042. <nil key="highlightedColor"/>
  7043. </label>
  7044. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ឈ្មោះគណនី" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="N35-Fy-nPd">
  7045. <rect key="frame" x="52" y="116" width="89" height="22"/>
  7046. <fontDescription key="fontDescription" type="system" pointSize="18"/>
  7047. <nil key="textColor"/>
  7048. <nil key="highlightedColor"/>
  7049. </label>
  7050. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Long Theara" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="e02-y6-89E">
  7051. <rect key="frame" x="149" y="114" width="130" height="26"/>
  7052. <fontDescription key="fontDescription" type="system" weight="black" pointSize="21"/>
  7053. <nil key="highlightedColor"/>
  7054. </label>
  7055. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="000 345 678" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="lI5-gL-lUD">
  7056. <rect key="frame" x="149" y="80" width="139" height="26"/>
  7057. <constraints>
  7058. <constraint firstAttribute="width" constant="139" id="XUT-yP-JcL"/>
  7059. </constraints>
  7060. <fontDescription key="fontDescription" type="system" weight="black" pointSize="21"/>
  7061. <nil key="highlightedColor"/>
  7062. </label>
  7063. </subviews>
  7064. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  7065. <constraints>
  7066. <constraint firstItem="lI5-gL-lUD" firstAttribute="leading" secondItem="9Dz-iM-nTa" secondAttribute="trailing" constant="8" id="328-3x-7iL"/>
  7067. <constraint firstItem="N35-Fy-nPd" firstAttribute="centerY" secondItem="e02-y6-89E" secondAttribute="centerY" id="710-m0-Pxh"/>
  7068. <constraint firstItem="ClG-jU-GF8" firstAttribute="centerY" secondItem="bhu-SW-uGK" secondAttribute="centerY" id="B6j-vT-goJ"/>
  7069. <constraint firstItem="9Dz-iM-nTa" firstAttribute="leading" secondItem="m6w-tL-ssg" secondAttribute="leading" constant="60" id="BHB-E5-sX5"/>
  7070. <constraint firstItem="PM0-01-VTY" firstAttribute="top" secondItem="76F-7h-ifY" secondAttribute="bottom" constant="12" id="BIl-4b-ycc"/>
  7071. <constraint firstAttribute="trailing" secondItem="BSa-ed-yC6" secondAttribute="trailing" constant="8" id="D1f-KO-VoE"/>
  7072. <constraint firstItem="jUY-le-jYY" firstAttribute="top" secondItem="e02-y6-89E" secondAttribute="bottom" constant="15" id="EV4-jc-Gyg"/>
  7073. <constraint firstItem="6CO-Ow-QdO" firstAttribute="leading" secondItem="m6w-tL-ssg" secondAttribute="leading" constant="8" id="Fxw-P1-yEc"/>
  7074. <constraint firstItem="PM0-01-VTY" firstAttribute="centerX" secondItem="m6w-tL-ssg" secondAttribute="centerX" id="GKc-Mx-PZo"/>
  7075. <constraint firstItem="JkK-gV-VSL" firstAttribute="leading" secondItem="Xnq-qI-lrD" secondAttribute="leading" id="Hlf-Lr-0G1"/>
  7076. <constraint firstItem="jUY-le-jYY" firstAttribute="leading" secondItem="m6w-tL-ssg" secondAttribute="leading" id="IGJ-vC-Ebo"/>
  7077. <constraint firstItem="Xnq-qI-lrD" firstAttribute="top" secondItem="m6w-tL-ssg" secondAttribute="top" constant="8" id="Jtl-0d-o19"/>
  7078. <constraint firstAttribute="trailing" secondItem="76F-7h-ifY" secondAttribute="trailing" constant="8" id="MjA-0f-Aoj"/>
  7079. <constraint firstAttribute="height" constant="467" id="PEb-Lb-PMC"/>
  7080. <constraint firstItem="e02-y6-89E" firstAttribute="leading" secondItem="lI5-gL-lUD" secondAttribute="leading" id="Q5c-Q1-Vjc"/>
  7081. <constraint firstItem="BSa-ed-yC6" firstAttribute="leading" secondItem="m6w-tL-ssg" secondAttribute="leading" constant="8" id="Sn1-57-A2e"/>
  7082. <constraint firstItem="Xnq-qI-lrD" firstAttribute="leading" secondItem="m6w-tL-ssg" secondAttribute="leading" constant="8" id="Thv-99-FUA"/>
  7083. <constraint firstItem="lI5-gL-lUD" firstAttribute="centerY" secondItem="9Dz-iM-nTa" secondAttribute="centerY" id="Uuk-z1-ygF"/>
  7084. <constraint firstItem="e02-y6-89E" firstAttribute="top" secondItem="lI5-gL-lUD" secondAttribute="bottom" constant="8" id="Veo-o3-7EX"/>
  7085. <constraint firstItem="76F-7h-ifY" firstAttribute="leading" secondItem="m6w-tL-ssg" secondAttribute="leading" constant="8" id="WO5-wY-18c"/>
  7086. <constraint firstItem="BSa-ed-yC6" firstAttribute="top" secondItem="jUY-le-jYY" secondAttribute="bottom" constant="8" id="Y7O-gI-Vg0"/>
  7087. <constraint firstItem="6CO-Ow-QdO" firstAttribute="top" secondItem="PM0-01-VTY" secondAttribute="bottom" constant="12" id="cpM-53-zYg"/>
  7088. <constraint firstItem="76F-7h-ifY" firstAttribute="top" secondItem="BSa-ed-yC6" secondAttribute="bottom" id="d4Z-qt-zyW"/>
  7089. <constraint firstAttribute="trailing" secondItem="jUY-le-jYY" secondAttribute="trailing" id="mXa-Cx-zZS"/>
  7090. <constraint firstItem="9Dz-iM-nTa" firstAttribute="top" secondItem="JkK-gV-VSL" secondAttribute="bottom" constant="10" id="pHX-XA-WQq"/>
  7091. <constraint firstItem="ClG-jU-GF8" firstAttribute="centerX" secondItem="m6w-tL-ssg" secondAttribute="centerX" id="sUb-S6-s9s"/>
  7092. <constraint firstItem="e02-y6-89E" firstAttribute="leading" secondItem="N35-Fy-nPd" secondAttribute="trailing" constant="8" id="v55-iJ-sZ4"/>
  7093. <constraint firstItem="bhu-SW-uGK" firstAttribute="leading" secondItem="PM0-01-VTY" secondAttribute="leading" id="w9N-zh-gzk"/>
  7094. <constraint firstItem="bhu-SW-uGK" firstAttribute="top" secondItem="6CO-Ow-QdO" secondAttribute="bottom" constant="12" id="wKY-8I-rM0"/>
  7095. <constraint firstItem="JkK-gV-VSL" firstAttribute="top" secondItem="Xnq-qI-lrD" secondAttribute="bottom" constant="8" symbolic="YES" id="xuW-9Y-ITq"/>
  7096. <constraint firstAttribute="trailing" secondItem="6CO-Ow-QdO" secondAttribute="trailing" constant="8" id="zGC-lq-EHW"/>
  7097. </constraints>
  7098. </view>
  7099. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="LVD-97-CRb" userLabel="VWithdraw">
  7100. <rect key="frame" x="0.0" y="50" width="384" height="388"/>
  7101. <subviews>
  7102. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ឈ្មោះធានាគារ ឈ្មោះគណនី និងលេខគណនីរបស់អ្នក" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="LBb-Bs-9dR">
  7103. <rect key="frame" x="8" y="10" width="357" height="22"/>
  7104. <constraints>
  7105. <constraint firstAttribute="height" constant="22" id="VtT-fd-s7W"/>
  7106. </constraints>
  7107. <fontDescription key="fontDescription" type="system" pointSize="18"/>
  7108. <nil key="textColor"/>
  7109. <nil key="highlightedColor"/>
  7110. </label>
  7111. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="សូមបញ្ចូលទឹកប្រាក់ដែលត្រូវដក" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="cor-Kk-j5G">
  7112. <rect key="frame" x="8" y="135" width="368" height="28"/>
  7113. <constraints>
  7114. <constraint firstAttribute="height" constant="28" id="AbF-iY-47s"/>
  7115. </constraints>
  7116. <fontDescription key="fontDescription" type="system" pointSize="18"/>
  7117. <nil key="textColor"/>
  7118. <nil key="highlightedColor"/>
  7119. </label>
  7120. <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="oCl-ps-XZm">
  7121. <rect key="frame" x="8" y="171" width="368" height="34"/>
  7122. <constraints>
  7123. <constraint firstAttribute="height" constant="34" id="HLR-bn-vRB"/>
  7124. <constraint firstAttribute="width" constant="368" id="xHt-QL-jNd"/>
  7125. </constraints>
  7126. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  7127. <textInputTraits key="textInputTraits"/>
  7128. </textField>
  7129. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ABA" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="SxH-YA-0hw">
  7130. <rect key="frame" x="8" y="40" width="368" height="26"/>
  7131. <constraints>
  7132. <constraint firstAttribute="height" constant="26" id="f1W-t9-622"/>
  7133. </constraints>
  7134. <fontDescription key="fontDescription" type="system" weight="black" pointSize="21"/>
  7135. <nil key="textColor"/>
  7136. <nil key="highlightedColor"/>
  7137. </label>
  7138. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Long Theara" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ZDp-ut-C8z">
  7139. <rect key="frame" x="8" y="67" width="368" height="26"/>
  7140. <constraints>
  7141. <constraint firstAttribute="height" constant="26" id="qQG-eq-QBb"/>
  7142. </constraints>
  7143. <fontDescription key="fontDescription" type="system" weight="black" pointSize="21"/>
  7144. <color key="textColor" systemColor="linkColor"/>
  7145. <nil key="highlightedColor"/>
  7146. </label>
  7147. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="000 345 678" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="FqW-CB-Hun">
  7148. <rect key="frame" x="8" y="94" width="368" height="26"/>
  7149. <constraints>
  7150. <constraint firstAttribute="height" constant="26" id="afR-Oo-PHS"/>
  7151. </constraints>
  7152. <fontDescription key="fontDescription" type="system" weight="black" pointSize="21"/>
  7153. <color key="textColor" systemColor="linkColor"/>
  7154. <nil key="highlightedColor"/>
  7155. </label>
  7156. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" usesAttributedText="YES" lineBreakMode="wordWrap" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="SQg-1J-Pld">
  7157. <rect key="frame" x="8" y="215" width="368" height="60"/>
  7158. <constraints>
  7159. <constraint firstAttribute="height" constant="60" id="E0m-qz-waE"/>
  7160. </constraints>
  7161. <attributedString key="attributedText">
  7162. <fragment content="សូមពិនិត្យឈ្មោះធានាគារ លេខគណនី និងឈ្មោះគណនី របស់អ្នកអោយច្បាស់មុននឹងចុចបញ្ជូន">
  7163. <attributes>
  7164. <font key="NSFont" metaFont="system" size="18"/>
  7165. <paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0"/>
  7166. </attributes>
  7167. </fragment>
  7168. </attributedString>
  7169. <nil key="highlightedColor"/>
  7170. </label>
  7171. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="5z1-89-ZkJ">
  7172. <rect key="frame" x="115" y="280" width="154" height="35"/>
  7173. <color key="backgroundColor" red="0.36078431370000003" green="0.73725490199999999" blue="0.062745098040000002" alpha="1" colorSpace="calibratedRGB"/>
  7174. <constraints>
  7175. <constraint firstAttribute="width" constant="154" id="5oQ-IS-AXz"/>
  7176. <constraint firstAttribute="height" constant="35" id="kjs-vX-gAm"/>
  7177. </constraints>
  7178. <fontDescription key="fontDescription" type="system" pointSize="18"/>
  7179. <state key="normal">
  7180. <color key="titleColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  7181. </state>
  7182. <connections>
  7183. <action selector="sendWithDrawMoney:" destination="oqp-ou-gCF" eventType="touchUpInside" id="1Ug-9d-K53"/>
  7184. </connections>
  7185. </button>
  7186. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Wdf-a2-K8b">
  7187. <rect key="frame" x="115" y="338" width="154" height="35"/>
  7188. <color key="backgroundColor" systemColor="systemRedColor"/>
  7189. <constraints>
  7190. <constraint firstAttribute="width" constant="154" id="JaQ-1j-NRA"/>
  7191. <constraint firstAttribute="height" constant="35" id="d1D-oL-6We"/>
  7192. </constraints>
  7193. <connections>
  7194. <action selector="btnWithDrawLogout:" destination="oqp-ou-gCF" eventType="touchUpInside" id="Rjp-7l-6MQ"/>
  7195. </connections>
  7196. </button>
  7197. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="xHe-lW-M94">
  7198. <rect key="frame" x="8" y="326" width="368" height="1"/>
  7199. <color key="backgroundColor" systemColor="labelColor"/>
  7200. <constraints>
  7201. <constraint firstAttribute="height" constant="1" id="cb8-sc-5VN"/>
  7202. <constraint firstAttribute="width" constant="368" id="duA-w4-wiA"/>
  7203. </constraints>
  7204. </view>
  7205. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="bluetooth sign out.png" translatesAutoresizingMaskIntoConstraints="NO" id="FNE-0e-Mow">
  7206. <rect key="frame" x="127" y="343" width="130" height="25"/>
  7207. <constraints>
  7208. <constraint firstAttribute="height" constant="25" id="XQQ-Da-uCK"/>
  7209. <constraint firstAttribute="width" constant="130" id="atR-1w-cj8"/>
  7210. </constraints>
  7211. </imageView>
  7212. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="បញ្ជូន" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="J5A-bv-r9e">
  7213. <rect key="frame" x="170" y="283" width="37" height="23"/>
  7214. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7215. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  7216. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  7217. <nil key="highlightedColor"/>
  7218. </label>
  7219. </subviews>
  7220. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  7221. <constraints>
  7222. <constraint firstAttribute="trailing" secondItem="SQg-1J-Pld" secondAttribute="trailing" constant="8" id="3lC-N8-nc5"/>
  7223. <constraint firstItem="Wdf-a2-K8b" firstAttribute="leading" secondItem="5z1-89-ZkJ" secondAttribute="leading" id="562-fc-NIP"/>
  7224. <constraint firstItem="cor-Kk-j5G" firstAttribute="leading" secondItem="LVD-97-CRb" secondAttribute="leading" constant="8" id="6Z7-tw-yuw"/>
  7225. <constraint firstItem="oCl-ps-XZm" firstAttribute="centerX" secondItem="LVD-97-CRb" secondAttribute="centerX" id="9dx-jU-7Oh"/>
  7226. <constraint firstAttribute="trailing" secondItem="SxH-YA-0hw" secondAttribute="trailing" constant="8" id="CUR-tf-Jlp"/>
  7227. <constraint firstAttribute="trailing" secondItem="FqW-CB-Hun" secondAttribute="trailing" constant="8" id="Eru-zf-Ook"/>
  7228. <constraint firstItem="Wdf-a2-K8b" firstAttribute="top" secondItem="xHe-lW-M94" secondAttribute="bottom" constant="11" id="JdC-YI-xgD"/>
  7229. <constraint firstItem="FqW-CB-Hun" firstAttribute="top" secondItem="ZDp-ut-C8z" secondAttribute="bottom" constant="1" id="Osn-5L-koD"/>
  7230. <constraint firstItem="SxH-YA-0hw" firstAttribute="top" secondItem="LBb-Bs-9dR" secondAttribute="bottom" constant="8" symbolic="YES" id="QHA-f3-DDV"/>
  7231. <constraint firstItem="LBb-Bs-9dR" firstAttribute="top" secondItem="LVD-97-CRb" secondAttribute="top" constant="10" id="QP0-AJ-SGb"/>
  7232. <constraint firstItem="5z1-89-ZkJ" firstAttribute="centerX" secondItem="LVD-97-CRb" secondAttribute="centerX" id="RHp-V0-RqD"/>
  7233. <constraint firstItem="SxH-YA-0hw" firstAttribute="leading" secondItem="LVD-97-CRb" secondAttribute="leading" constant="8" id="Rb2-kb-gYp"/>
  7234. <constraint firstItem="SQg-1J-Pld" firstAttribute="top" secondItem="oCl-ps-XZm" secondAttribute="bottom" constant="10" id="Rcy-fW-iQA"/>
  7235. <constraint firstItem="xHe-lW-M94" firstAttribute="centerX" secondItem="LVD-97-CRb" secondAttribute="centerX" id="TNu-WV-kj5"/>
  7236. <constraint firstItem="SQg-1J-Pld" firstAttribute="leading" secondItem="LVD-97-CRb" secondAttribute="leading" constant="8" id="ThY-9b-wiu"/>
  7237. <constraint firstItem="LBb-Bs-9dR" firstAttribute="leading" secondItem="LVD-97-CRb" secondAttribute="leading" constant="8" id="WHF-pD-nyM"/>
  7238. <constraint firstItem="xHe-lW-M94" firstAttribute="top" secondItem="5z1-89-ZkJ" secondAttribute="bottom" constant="11" id="ZDX-m0-gOA"/>
  7239. <constraint firstItem="cor-Kk-j5G" firstAttribute="top" secondItem="FqW-CB-Hun" secondAttribute="bottom" constant="15" id="ZWB-cB-5QN"/>
  7240. <constraint firstItem="oCl-ps-XZm" firstAttribute="top" secondItem="cor-Kk-j5G" secondAttribute="bottom" constant="8" id="a00-EC-fxS"/>
  7241. <constraint firstItem="FNE-0e-Mow" firstAttribute="centerX" secondItem="LVD-97-CRb" secondAttribute="centerX" id="aQM-et-iPi"/>
  7242. <constraint firstItem="ZDp-ut-C8z" firstAttribute="top" secondItem="SxH-YA-0hw" secondAttribute="bottom" constant="1" id="czP-lN-sPh"/>
  7243. <constraint firstItem="FqW-CB-Hun" firstAttribute="leading" secondItem="LVD-97-CRb" secondAttribute="leading" constant="8" id="gia-i5-Su7"/>
  7244. <constraint firstAttribute="trailing" secondItem="cor-Kk-j5G" secondAttribute="trailing" constant="8" id="gmo-cc-Bqk"/>
  7245. <constraint firstItem="5z1-89-ZkJ" firstAttribute="top" secondItem="SQg-1J-Pld" secondAttribute="bottom" constant="5" id="mm7-tj-zLE"/>
  7246. <constraint firstAttribute="height" constant="388" id="ost-O4-cro"/>
  7247. <constraint firstItem="FNE-0e-Mow" firstAttribute="centerY" secondItem="Wdf-a2-K8b" secondAttribute="centerY" id="pOm-eL-NsN"/>
  7248. <constraint firstItem="ZDp-ut-C8z" firstAttribute="leading" secondItem="LVD-97-CRb" secondAttribute="leading" constant="8" id="pg2-EF-oKm"/>
  7249. <constraint firstAttribute="trailing" secondItem="ZDp-ut-C8z" secondAttribute="trailing" constant="8" id="vjF-Kc-YG2"/>
  7250. </constraints>
  7251. </view>
  7252. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="uZ5-Kn-YJQ" userLabel="VMyAccount">
  7253. <rect key="frame" x="0.0" y="52" width="384" height="618"/>
  7254. <subviews>
  7255. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="text new pwd_black.png" translatesAutoresizingMaskIntoConstraints="NO" id="hAj-P5-xCk">
  7256. <rect key="frame" x="20" y="8" width="70" height="30"/>
  7257. <constraints>
  7258. <constraint firstAttribute="height" constant="30" id="2Im-97-RZP"/>
  7259. <constraint firstAttribute="width" constant="70" id="OrW-d2-vMr"/>
  7260. </constraints>
  7261. </imageView>
  7262. <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="Fjd-fp-9OJ">
  7263. <rect key="frame" x="20" y="40" width="336" height="34"/>
  7264. <constraints>
  7265. <constraint firstAttribute="width" constant="336" id="PcW-vm-gU2"/>
  7266. <constraint firstAttribute="height" constant="34" id="oNv-sh-4Jr"/>
  7267. </constraints>
  7268. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  7269. <textInputTraits key="textInputTraits"/>
  7270. </textField>
  7271. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="text confirm new.png" translatesAutoresizingMaskIntoConstraints="NO" id="wcs-Jj-B3R">
  7272. <rect key="frame" x="20" y="79" width="112" height="30"/>
  7273. <constraints>
  7274. <constraint firstAttribute="width" constant="112" id="Gkl-df-fr1"/>
  7275. <constraint firstAttribute="height" constant="30" id="zaq-cv-fYN"/>
  7276. </constraints>
  7277. </imageView>
  7278. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Xby-Mg-3Bm">
  7279. <rect key="frame" x="127" y="153" width="130" height="35"/>
  7280. <color key="backgroundColor" red="0.36078431370000003" green="0.73725490199999999" blue="0.062745098040000002" alpha="1" colorSpace="calibratedRGB"/>
  7281. <constraints>
  7282. <constraint firstAttribute="width" constant="130" id="N3J-Ti-eV6"/>
  7283. <constraint firstAttribute="height" constant="35" id="rmB-pu-7JT"/>
  7284. </constraints>
  7285. </button>
  7286. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="msD-cv-xae">
  7287. <rect key="frame" x="24" y="203" width="336" height="1"/>
  7288. <color key="backgroundColor" systemColor="labelColor"/>
  7289. <constraints>
  7290. <constraint firstAttribute="width" constant="336" id="8xJ-iu-A73"/>
  7291. <constraint firstAttribute="height" constant="1" id="owv-N4-q5y"/>
  7292. </constraints>
  7293. </view>
  7294. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" usesAttributedText="YES" lineBreakMode="clip" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="hkC-jK-4FM">
  7295. <rect key="frame" x="20" y="214" width="336" height="75"/>
  7296. <constraints>
  7297. <constraint firstAttribute="height" constant="75" id="2UX-6T-PEh"/>
  7298. <constraint firstAttribute="width" constant="336" id="Nqd-I5-VEb"/>
  7299. </constraints>
  7300. <attributedString key="attributedText">
  7301. <fragment content="សូមបញ្ចូលពត៌មានធានាគារ របស់អ្នកដើម្បីងាយស្រួលក្នុងការដក និង ដាក់ប្រាក់រហ័ស">
  7302. <attributes>
  7303. <color key="NSColor" name="textColor" catalog="System" colorSpace="catalog"/>
  7304. <font key="NSFont" size="20" name="KhmerSangamMN"/>
  7305. </attributes>
  7306. </fragment>
  7307. </attributedString>
  7308. <nil key="highlightedColor"/>
  7309. </label>
  7310. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ឈ្មោះធានាគាររបស់អ្នក" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="mNN-Hf-lRa">
  7311. <rect key="frame" x="20" y="299" width="175" height="24"/>
  7312. <fontDescription key="fontDescription" type="system" pointSize="20"/>
  7313. <color key="textColor" systemColor="linkColor"/>
  7314. <nil key="highlightedColor"/>
  7315. </label>
  7316. <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="Ca7-Vq-7E3" customClass="DropDown" customModule="iOSDropDown">
  7317. <rect key="frame" x="20" y="328" width="336" height="34"/>
  7318. <constraints>
  7319. <constraint firstAttribute="height" constant="34" id="hJH-qe-8WI"/>
  7320. <constraint firstAttribute="width" constant="336" id="vlE-OK-v7c"/>
  7321. </constraints>
  7322. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  7323. <textInputTraits key="textInputTraits"/>
  7324. </textField>
  7325. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ឈ្មោះគណនីរបស់អ្នក" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="GLL-CV-psA">
  7326. <rect key="frame" x="20" y="370" width="161" height="24"/>
  7327. <constraints>
  7328. <constraint firstAttribute="width" constant="161" id="2Di-XP-VQM"/>
  7329. </constraints>
  7330. <fontDescription key="fontDescription" type="system" pointSize="20"/>
  7331. <color key="textColor" systemColor="linkColor"/>
  7332. <nil key="highlightedColor"/>
  7333. </label>
  7334. <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="BBD-2C-lCw">
  7335. <rect key="frame" x="20" y="399" width="338" height="34"/>
  7336. <constraints>
  7337. <constraint firstAttribute="width" constant="338" id="frU-JL-r5Q"/>
  7338. <constraint firstAttribute="height" constant="34" id="g4B-Rb-hSX"/>
  7339. </constraints>
  7340. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  7341. <textInputTraits key="textInputTraits"/>
  7342. </textField>
  7343. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="លេខគណនីរបស់អ្នក" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="CSc-hE-m5R">
  7344. <rect key="frame" x="20" y="441" width="151" height="24"/>
  7345. <fontDescription key="fontDescription" type="system" pointSize="20"/>
  7346. <color key="textColor" systemColor="linkColor"/>
  7347. <nil key="highlightedColor"/>
  7348. </label>
  7349. <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="0M8-DN-zHh">
  7350. <rect key="frame" x="20" y="470" width="338" height="34"/>
  7351. <constraints>
  7352. <constraint firstAttribute="width" constant="338" id="ASM-Jj-tj6"/>
  7353. <constraint firstAttribute="height" constant="34" id="ZfA-o1-VqQ"/>
  7354. </constraints>
  7355. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  7356. <textInputTraits key="textInputTraits"/>
  7357. </textField>
  7358. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="7jq-is-2u9">
  7359. <rect key="frame" x="127" y="519" width="130" height="35"/>
  7360. <color key="backgroundColor" red="0.36078431370000003" green="0.73725490199999999" blue="0.062745098040000002" alpha="1" colorSpace="calibratedRGB"/>
  7361. <constraints>
  7362. <constraint firstAttribute="width" constant="130" id="ad7-mZ-szv"/>
  7363. <constraint firstAttribute="height" constant="35" id="swE-AJ-Gzs"/>
  7364. </constraints>
  7365. </button>
  7366. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="30g-Nq-CGM">
  7367. <rect key="frame" x="127" y="573" width="130" height="35"/>
  7368. <color key="backgroundColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
  7369. <constraints>
  7370. <constraint firstAttribute="width" constant="130" id="XeO-mu-crX"/>
  7371. <constraint firstAttribute="height" constant="35" id="c9F-qx-Q0t"/>
  7372. </constraints>
  7373. <connections>
  7374. <action selector="btnMyAccLogout:" destination="oqp-ou-gCF" eventType="touchUpInside" id="jQp-BG-uTR"/>
  7375. </connections>
  7376. </button>
  7377. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="text save.png" translatesAutoresizingMaskIntoConstraints="NO" id="Hg0-rw-tkK">
  7378. <rect key="frame" x="156" y="526.66666666666663" width="72" height="20"/>
  7379. <constraints>
  7380. <constraint firstAttribute="width" constant="72" id="fhG-9g-x1X"/>
  7381. <constraint firstAttribute="height" constant="20" id="rzE-K6-YkR"/>
  7382. </constraints>
  7383. </imageView>
  7384. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="text save.png" translatesAutoresizingMaskIntoConstraints="NO" id="cr3-iq-w9r">
  7385. <rect key="frame" x="156" y="160.66666666666669" width="72" height="20"/>
  7386. <constraints>
  7387. <constraint firstAttribute="height" constant="20" id="hQc-wL-6hb"/>
  7388. <constraint firstAttribute="width" constant="72" id="nBj-6r-gFd"/>
  7389. </constraints>
  7390. </imageView>
  7391. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="bluetooth sign out.png" translatesAutoresizingMaskIntoConstraints="NO" id="8aO-yP-XkH">
  7392. <rect key="frame" x="133.66666666666666" y="579.66666666666663" width="117" height="22"/>
  7393. <constraints>
  7394. <constraint firstAttribute="width" constant="117" id="L8w-zD-f49"/>
  7395. <constraint firstAttribute="height" constant="22" id="bS2-TG-HdN"/>
  7396. </constraints>
  7397. </imageView>
  7398. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Qpa-jr-joE">
  7399. <rect key="frame" x="24" y="563" width="336" height="1"/>
  7400. <color key="backgroundColor" systemColor="labelColor"/>
  7401. <constraints>
  7402. <constraint firstAttribute="height" constant="1" id="qSR-hQ-bbr"/>
  7403. <constraint firstAttribute="width" constant="336" id="zDY-9G-J0g"/>
  7404. </constraints>
  7405. </view>
  7406. <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="jwe-wB-Vud">
  7407. <rect key="frame" x="20" y="111" width="336" height="34"/>
  7408. <constraints>
  7409. <constraint firstAttribute="width" constant="336" id="DzN-LW-W8o"/>
  7410. <constraint firstAttribute="height" constant="34" id="WEY-Nh-Cgp"/>
  7411. </constraints>
  7412. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  7413. <textInputTraits key="textInputTraits"/>
  7414. </textField>
  7415. </subviews>
  7416. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  7417. <constraints>
  7418. <constraint firstItem="7jq-is-2u9" firstAttribute="centerX" secondItem="uZ5-Kn-YJQ" secondAttribute="centerX" id="39d-jx-qIC"/>
  7419. <constraint firstItem="8aO-yP-XkH" firstAttribute="centerX" secondItem="30g-Nq-CGM" secondAttribute="centerX" id="5Cj-xd-Ngw"/>
  7420. <constraint firstItem="CSc-hE-m5R" firstAttribute="top" secondItem="BBD-2C-lCw" secondAttribute="bottom" constant="8" id="65s-5q-w6b"/>
  7421. <constraint firstItem="8aO-yP-XkH" firstAttribute="centerY" secondItem="30g-Nq-CGM" secondAttribute="centerY" id="7f8-TV-bjZ"/>
  7422. <constraint firstItem="0M8-DN-zHh" firstAttribute="leading" secondItem="CSc-hE-m5R" secondAttribute="leading" id="96W-L5-x5f"/>
  7423. <constraint firstItem="CSc-hE-m5R" firstAttribute="leading" secondItem="BBD-2C-lCw" secondAttribute="leading" id="AbN-NB-sLo"/>
  7424. <constraint firstItem="Fjd-fp-9OJ" firstAttribute="top" secondItem="hAj-P5-xCk" secondAttribute="bottom" constant="2" id="BJU-Da-yFS"/>
  7425. <constraint firstItem="30g-Nq-CGM" firstAttribute="top" secondItem="Qpa-jr-joE" secondAttribute="bottom" constant="9" id="Cyx-ee-fdL"/>
  7426. <constraint firstItem="Fjd-fp-9OJ" firstAttribute="leading" secondItem="hAj-P5-xCk" secondAttribute="leading" id="EJF-JG-nZ5"/>
  7427. <constraint firstItem="Hg0-rw-tkK" firstAttribute="centerY" secondItem="7jq-is-2u9" secondAttribute="centerY" id="HD8-yw-KJS"/>
  7428. <constraint firstItem="hAj-P5-xCk" firstAttribute="leading" secondItem="uZ5-Kn-YJQ" secondAttribute="leading" constant="20" symbolic="YES" id="HVE-bm-HEr"/>
  7429. <constraint firstItem="BBD-2C-lCw" firstAttribute="leading" secondItem="GLL-CV-psA" secondAttribute="leading" id="Ikh-4S-eIl"/>
  7430. <constraint firstItem="7jq-is-2u9" firstAttribute="top" secondItem="0M8-DN-zHh" secondAttribute="bottom" constant="15" id="JYR-xV-bN7"/>
  7431. <constraint firstItem="Ca7-Vq-7E3" firstAttribute="leading" secondItem="mNN-Hf-lRa" secondAttribute="leading" id="LcN-wN-nUk"/>
  7432. <constraint firstItem="mNN-Hf-lRa" firstAttribute="leading" secondItem="hkC-jK-4FM" secondAttribute="leading" id="QAR-KI-iNG"/>
  7433. <constraint firstItem="msD-cv-xae" firstAttribute="centerX" secondItem="uZ5-Kn-YJQ" secondAttribute="centerX" id="R2m-Cj-Nah"/>
  7434. <constraint firstItem="0M8-DN-zHh" firstAttribute="top" secondItem="CSc-hE-m5R" secondAttribute="bottom" constant="5" id="RLr-Ee-bbk"/>
  7435. <constraint firstItem="GLL-CV-psA" firstAttribute="top" secondItem="Ca7-Vq-7E3" secondAttribute="bottom" constant="8" id="RXE-AH-PAh"/>
  7436. <constraint firstItem="Qpa-jr-joE" firstAttribute="top" secondItem="7jq-is-2u9" secondAttribute="bottom" constant="9" id="Umf-QN-HBs"/>
  7437. <constraint firstItem="Ca7-Vq-7E3" firstAttribute="top" secondItem="mNN-Hf-lRa" secondAttribute="bottom" constant="5" id="YPD-rn-Qjo"/>
  7438. <constraint firstItem="wcs-Jj-B3R" firstAttribute="leading" secondItem="Fjd-fp-9OJ" secondAttribute="leading" id="bGu-nO-LZG"/>
  7439. <constraint firstItem="Hg0-rw-tkK" firstAttribute="centerX" secondItem="uZ5-Kn-YJQ" secondAttribute="centerX" id="bhT-tu-Yz8"/>
  7440. <constraint firstItem="cr3-iq-w9r" firstAttribute="centerX" secondItem="uZ5-Kn-YJQ" secondAttribute="centerX" id="dL9-he-adG"/>
  7441. <constraint firstItem="BBD-2C-lCw" firstAttribute="top" secondItem="GLL-CV-psA" secondAttribute="bottom" constant="5" id="eEO-Sk-j88"/>
  7442. <constraint firstItem="jwe-wB-Vud" firstAttribute="leading" secondItem="wcs-Jj-B3R" secondAttribute="leading" id="fuZ-6x-0p0"/>
  7443. <constraint firstItem="hAj-P5-xCk" firstAttribute="top" secondItem="uZ5-Kn-YJQ" secondAttribute="top" constant="8" id="g94-Jp-TqY"/>
  7444. <constraint firstItem="jwe-wB-Vud" firstAttribute="top" secondItem="wcs-Jj-B3R" secondAttribute="bottom" constant="2" id="heB-vq-gxu"/>
  7445. <constraint firstItem="wcs-Jj-B3R" firstAttribute="top" secondItem="Fjd-fp-9OJ" secondAttribute="bottom" constant="5" id="meW-LP-pDu"/>
  7446. <constraint firstItem="Xby-Mg-3Bm" firstAttribute="centerX" secondItem="uZ5-Kn-YJQ" secondAttribute="centerX" id="moc-ll-86U"/>
  7447. <constraint firstItem="GLL-CV-psA" firstAttribute="leading" secondItem="Ca7-Vq-7E3" secondAttribute="leading" id="ncy-BY-zl6"/>
  7448. <constraint firstItem="Qpa-jr-joE" firstAttribute="centerX" secondItem="uZ5-Kn-YJQ" secondAttribute="centerX" id="tu8-4l-1Iu"/>
  7449. <constraint firstItem="msD-cv-xae" firstAttribute="top" secondItem="Xby-Mg-3Bm" secondAttribute="bottom" constant="15" id="udD-nE-N5A"/>
  7450. <constraint firstItem="mNN-Hf-lRa" firstAttribute="top" secondItem="hkC-jK-4FM" secondAttribute="bottom" constant="10" id="v4e-Sp-3u2"/>
  7451. <constraint firstItem="Xby-Mg-3Bm" firstAttribute="top" secondItem="jwe-wB-Vud" secondAttribute="bottom" constant="8" symbolic="YES" id="xOT-Ja-Deg"/>
  7452. <constraint firstItem="cr3-iq-w9r" firstAttribute="centerY" secondItem="Xby-Mg-3Bm" secondAttribute="centerY" id="xnk-Oh-OV6"/>
  7453. <constraint firstItem="hkC-jK-4FM" firstAttribute="leading" secondItem="jwe-wB-Vud" secondAttribute="leading" id="xvO-G6-D8g"/>
  7454. <constraint firstItem="30g-Nq-CGM" firstAttribute="leading" secondItem="7jq-is-2u9" secondAttribute="leading" id="z2m-cz-UN2"/>
  7455. <constraint firstItem="hkC-jK-4FM" firstAttribute="top" secondItem="msD-cv-xae" secondAttribute="bottom" constant="10" id="zQS-cA-3co"/>
  7456. </constraints>
  7457. </view>
  7458. </subviews>
  7459. <constraints>
  7460. <constraint firstItem="AFA-L7-71R" firstAttribute="top" secondItem="i0d-tm-Vf0" secondAttribute="top" id="3P9-DY-Ffv"/>
  7461. <constraint firstAttribute="trailing" secondItem="uZ5-Kn-YJQ" secondAttribute="trailing" id="5M7-4f-Cbl"/>
  7462. <constraint firstItem="zUn-TS-NRx" firstAttribute="top" secondItem="i0d-tm-Vf0" secondAttribute="top" id="825-EV-qSp"/>
  7463. <constraint firstItem="uZ5-Kn-YJQ" firstAttribute="top" secondItem="AFA-L7-71R" secondAttribute="bottom" id="8I5-DO-K4t"/>
  7464. <constraint firstItem="O5N-rR-Ipo" firstAttribute="width" secondItem="zUn-TS-NRx" secondAttribute="width" id="9s9-20-wim"/>
  7465. <constraint firstAttribute="trailing" secondItem="AFA-L7-71R" secondAttribute="trailing" id="A7E-ih-7WY"/>
  7466. <constraint firstItem="m6w-tL-ssg" firstAttribute="leading" secondItem="i0d-tm-Vf0" secondAttribute="leading" id="F0t-vE-MrZ"/>
  7467. <constraint firstItem="Ho9-dv-22p" firstAttribute="leading" secondItem="O5N-rR-Ipo" secondAttribute="trailing" id="Ffs-2J-8NV"/>
  7468. <constraint firstItem="AFA-L7-71R" firstAttribute="leading" secondItem="i0d-tm-Vf0" secondAttribute="leading" id="Lfe-2N-i54"/>
  7469. <constraint firstItem="O5N-rR-Ipo" firstAttribute="leading" secondItem="zUn-TS-NRx" secondAttribute="trailing" id="RCh-E9-Lkb"/>
  7470. <constraint firstItem="LVD-97-CRb" firstAttribute="leading" secondItem="i0d-tm-Vf0" secondAttribute="leading" id="VtM-k6-qVY"/>
  7471. <constraint firstItem="m6w-tL-ssg" firstAttribute="top" secondItem="i0d-tm-Vf0" secondAttribute="top" constant="51" id="XUy-Ix-bOP"/>
  7472. <constraint firstItem="O5N-rR-Ipo" firstAttribute="height" secondItem="zUn-TS-NRx" secondAttribute="height" id="YCz-g7-LeR"/>
  7473. <constraint firstItem="Ho9-dv-22p" firstAttribute="width" secondItem="O5N-rR-Ipo" secondAttribute="width" id="Z0x-5V-EJd"/>
  7474. <constraint firstItem="Ho9-dv-22p" firstAttribute="centerY" secondItem="O5N-rR-Ipo" secondAttribute="centerY" id="dID-b3-dnq"/>
  7475. <constraint firstAttribute="trailing" secondItem="m6w-tL-ssg" secondAttribute="trailing" id="eAR-1n-MxO"/>
  7476. <constraint firstItem="zUn-TS-NRx" firstAttribute="leading" secondItem="i0d-tm-Vf0" secondAttribute="leading" id="etF-S9-fcO"/>
  7477. <constraint firstItem="uZ5-Kn-YJQ" firstAttribute="leading" secondItem="i0d-tm-Vf0" secondAttribute="leading" id="fRm-3W-RVW"/>
  7478. <constraint firstItem="Ho9-dv-22p" firstAttribute="height" secondItem="O5N-rR-Ipo" secondAttribute="height" id="hs6-cg-8LX"/>
  7479. <constraint firstAttribute="trailing" secondItem="LVD-97-CRb" secondAttribute="trailing" id="kTP-a1-Hng"/>
  7480. <constraint firstAttribute="bottom" secondItem="uZ5-Kn-YJQ" secondAttribute="bottom" id="lLD-nr-xTP"/>
  7481. <constraint firstItem="O5N-rR-Ipo" firstAttribute="centerY" secondItem="zUn-TS-NRx" secondAttribute="centerY" id="mOo-IA-g1s"/>
  7482. <constraint firstAttribute="height" constant="670" id="rQs-cG-OzZ"/>
  7483. <constraint firstItem="LVD-97-CRb" firstAttribute="top" secondItem="i0d-tm-Vf0" secondAttribute="top" constant="50" id="tdw-mQ-Ig5"/>
  7484. <constraint firstAttribute="width" constant="384" id="wz2-ge-1jo"/>
  7485. </constraints>
  7486. </view>
  7487. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="mI2-cJ-WAa">
  7488. <rect key="frame" x="147" y="855" width="134" height="45"/>
  7489. <constraints>
  7490. <constraint firstAttribute="width" constant="134" id="0uU-NF-SBy"/>
  7491. <constraint firstAttribute="height" constant="45" id="v9f-u3-u3Y"/>
  7492. </constraints>
  7493. <state key="normal" image="ic_btn_close.png"/>
  7494. <connections>
  7495. <action selector="closeClick:" destination="oqp-ou-gCF" eventType="touchUpInside" id="rgO-qV-1WH"/>
  7496. </connections>
  7497. </button>
  7498. </subviews>
  7499. <viewLayoutGuide key="safeArea" id="Ecp-Sg-Iou"/>
  7500. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  7501. <constraints>
  7502. <constraint firstItem="uq7-1x-tb4" firstAttribute="trailing" secondItem="Ecp-Sg-Iou" secondAttribute="trailing" id="8SW-bw-Qab"/>
  7503. <constraint firstAttribute="bottom" secondItem="mI2-cJ-WAa" secondAttribute="bottom" constant="26" id="8fe-Zc-YUX"/>
  7504. <constraint firstItem="uq7-1x-tb4" firstAttribute="top" secondItem="zic-JQ-alO" secondAttribute="top" id="I6X-ju-At9"/>
  7505. <constraint firstAttribute="bottom" secondItem="3Ig-l0-i9L" secondAttribute="bottom" id="L46-Ol-v8D"/>
  7506. <constraint firstItem="3Ig-l0-i9L" firstAttribute="trailing" secondItem="Ecp-Sg-Iou" secondAttribute="trailing" id="ZOP-Wv-xgl"/>
  7507. <constraint firstItem="i0d-tm-Vf0" firstAttribute="top" secondItem="uq7-1x-tb4" secondAttribute="bottom" constant="40" id="aeR-28-bBq"/>
  7508. <constraint firstItem="i0d-tm-Vf0" firstAttribute="centerX" secondItem="zic-JQ-alO" secondAttribute="centerX" id="iGD-Fw-guO"/>
  7509. <constraint firstItem="3Ig-l0-i9L" firstAttribute="top" secondItem="uq7-1x-tb4" secondAttribute="bottom" constant="5" id="lN8-tE-aDs"/>
  7510. <constraint firstItem="mI2-cJ-WAa" firstAttribute="centerX" secondItem="zic-JQ-alO" secondAttribute="centerX" id="sQL-rV-oGD"/>
  7511. <constraint firstItem="uq7-1x-tb4" firstAttribute="leading" secondItem="Ecp-Sg-Iou" secondAttribute="leading" id="wJd-i2-wCb"/>
  7512. <constraint firstItem="3Ig-l0-i9L" firstAttribute="leading" secondItem="Ecp-Sg-Iou" secondAttribute="leading" id="yQz-vJ-jv7"/>
  7513. </constraints>
  7514. </view>
  7515. <navigationItem key="navigationItem" id="3cu-EW-ZYq"/>
  7516. <connections>
  7517. <outlet property="bottomConstraintCloseBtn" destination="8fe-Zc-YUX" id="pFU-mh-fNw"/>
  7518. <outlet property="btMyAccount" destination="zUn-TS-NRx" id="cOe-5c-2zB"/>
  7519. <outlet property="btnDeposit" destination="Ho9-dv-22p" id="k2P-zd-QFF"/>
  7520. <outlet property="btnExitSys" destination="30g-Nq-CGM" id="TzL-kJ-yR7"/>
  7521. <outlet property="btnExitSysDeposit" destination="bhu-SW-uGK" id="Vbq-k1-R7R"/>
  7522. <outlet property="btnExitSysWithDraw" destination="Wdf-a2-K8b" id="NND-wA-6vE"/>
  7523. <outlet property="btnSaveMayAccount2" destination="7jq-is-2u9" id="vQg-XH-PoS"/>
  7524. <outlet property="btnSaveMyAccount" destination="Xby-Mg-3Bm" id="2Nx-YJ-zOu"/>
  7525. <outlet property="btnSendDeposit" destination="PM0-01-VTY" id="xA6-MZ-1GS"/>
  7526. <outlet property="btnSendWithDraw" destination="5z1-89-ZkJ" id="kYt-9e-gIO"/>
  7527. <outlet property="btnWithdraw" destination="O5N-rR-Ipo" id="D3i-lR-NPz"/>
  7528. <outlet property="myAccount" destination="Ca7-Vq-7E3" id="RSf-Sd-OOl"/>
  7529. <outlet property="txtAmountDeposit" destination="BSa-ed-yC6" id="LmM-0B-uCT"/>
  7530. <outlet property="txtAmountWithDraw" destination="oCl-ps-XZm" id="6PC-3h-cGj"/>
  7531. <outlet property="vDeposit" destination="m6w-tL-ssg" id="Huy-o5-Qtj"/>
  7532. <outlet property="vMainSetting" destination="i0d-tm-Vf0" id="wKf-bj-TSR"/>
  7533. <outlet property="vMyAccount" destination="uZ5-Kn-YJQ" id="NbM-dg-pF6"/>
  7534. <outlet property="vWithdraw" destination="LVD-97-CRb" id="sQn-Mu-oBD"/>
  7535. </connections>
  7536. </viewController>
  7537. <placeholder placeholderIdentifier="IBFirstResponder" id="Zyu-En-QB9" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  7538. </objects>
  7539. <point key="canvasLocation" x="1758" y="950"/>
  7540. </scene>
  7541. <!--ViPhoneX+-->
  7542. <scene sceneID="i4l-Cs-2Of">
  7543. <objects>
  7544. <viewController title="ViPhoneX+" modalPresentationStyle="fullScreen" id="XZc-oF-vtz" customClass="ReportVC" customModule="CockFight" sceneMemberID="viewController">
  7545. <view key="view" contentMode="scaleToFill" id="Edq-69-9uX">
  7546. <rect key="frame" x="0.0" y="0.0" width="428" height="926"/>
  7547. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  7548. <subviews>
  7549. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Gnq-DT-ctc">
  7550. <rect key="frame" x="0.0" y="0.0" width="428" height="100"/>
  7551. <color key="backgroundColor" red="0.36078431370000003" green="0.36078431370000003" blue="0.36078431370000003" alpha="1" colorSpace="calibratedRGB"/>
  7552. <constraints>
  7553. <constraint firstAttribute="height" constant="100" id="ILU-ei-Cd0"/>
  7554. </constraints>
  7555. </view>
  7556. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="logo.png" translatesAutoresizingMaskIntoConstraints="NO" id="KFk-4e-Yja">
  7557. <rect key="frame" x="10" y="40" width="50" height="50"/>
  7558. <constraints>
  7559. <constraint firstAttribute="height" constant="50" id="pya-ly-tXF"/>
  7560. <constraint firstAttribute="width" constant="50" id="y9I-0W-gaz"/>
  7561. </constraints>
  7562. </imageView>
  7563. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="100,121,300" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="eap-Z8-KvV">
  7564. <rect key="frame" x="65" y="63.666666666666657" width="77" height="17"/>
  7565. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  7566. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  7567. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  7568. </label>
  7569. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="p5" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="iO1-1j-pCo">
  7570. <rect key="frame" x="65" y="40" width="17" height="17"/>
  7571. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  7572. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  7573. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  7574. </label>
  7575. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="user.png" translatesAutoresizingMaskIntoConstraints="NO" id="3qG-ZX-U3k">
  7576. <rect key="frame" x="85" y="38.666666666666664" width="15" height="20"/>
  7577. <constraints>
  7578. <constraint firstAttribute="width" constant="15" id="4NT-kJ-gE7"/>
  7579. <constraint firstAttribute="height" constant="20" id="hKT-zQ-wGS"/>
  7580. </constraints>
  7581. </imageView>
  7582. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="5kS-vf-xlh">
  7583. <rect key="frame" x="145" y="63.666666666666657" width="20" height="17"/>
  7584. <constraints>
  7585. <constraint firstAttribute="height" constant="17" id="HD2-Sd-PJc"/>
  7586. <constraint firstAttribute="width" constant="20" id="Of7-Ba-pI5"/>
  7587. </constraints>
  7588. <state key="normal" image="ic_refresh.png"/>
  7589. </button>
  7590. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="qBg-4O-RbY">
  7591. <rect key="frame" x="0.0" y="100" width="414" height="797"/>
  7592. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7593. <subviews>
  7594. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" image="backgound.png" translatesAutoresizingMaskIntoConstraints="NO" id="Prv-V9-PZE">
  7595. <rect key="frame" x="0.0" y="5" width="414" height="792"/>
  7596. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7597. </imageView>
  7598. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="YqH-FJ-hF8">
  7599. <rect key="frame" x="147" y="706" width="120" height="38"/>
  7600. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7601. <state key="normal" image="ic_btn_close.png"/>
  7602. <connections>
  7603. <action selector="actionCloseView:" destination="XZc-oF-vtz" eventType="touchUpInside" id="6jP-H5-B1J"/>
  7604. </connections>
  7605. </button>
  7606. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="cEr-BH-uGP" userLabel="VReportResult">
  7607. <rect key="frame" x="35" y="21" width="338" height="648"/>
  7608. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7609. <subviews>
  7610. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="ftk-wD-abd">
  7611. <rect key="frame" x="2" y="0.0" width="340" height="56"/>
  7612. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7613. <color key="backgroundColor" systemColor="systemGray2Color"/>
  7614. </imageView>
  7615. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="lFO-S1-Voi">
  7616. <rect key="frame" x="2" y="52" width="340" height="598"/>
  7617. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7618. <subviews>
  7619. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Ozf-ib-KH2">
  7620. <rect key="frame" x="0.0" y="0.0" width="340" height="35"/>
  7621. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7622. <subviews>
  7623. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="oNt-Eo-MCJ">
  7624. <rect key="frame" x="30" y="1" width="1" height="598"/>
  7625. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7626. <color key="backgroundColor" systemColor="labelColor"/>
  7627. </view>
  7628. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="លុយភ្នាល់:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="M2z-vb-kNl">
  7629. <rect key="frame" x="154" y="8" width="62" height="18"/>
  7630. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7631. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  7632. <nil key="textColor"/>
  7633. <nil key="highlightedColor"/>
  7634. </label>
  7635. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="ចាញ់/ឈ្នះ" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="0Me-Xz-eE3">
  7636. <rect key="frame" x="265" y="8" width="58" height="18"/>
  7637. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7638. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  7639. <nil key="textColor"/>
  7640. <nil key="highlightedColor"/>
  7641. </label>
  7642. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="kUi-rP-4n5">
  7643. <rect key="frame" x="133" y="1" width="1" height="598"/>
  7644. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7645. <color key="backgroundColor" systemColor="labelColor"/>
  7646. </view>
  7647. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="កាលបរិច្ឆេទ" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Qud-FF-rfR">
  7648. <rect key="frame" x="51" y="8" width="68" height="18"/>
  7649. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7650. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  7651. <nil key="textColor"/>
  7652. <nil key="highlightedColor"/>
  7653. </label>
  7654. </subviews>
  7655. <color key="backgroundColor" systemColor="systemGray2Color"/>
  7656. </view>
  7657. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="YV8-ze-NDm">
  7658. <rect key="frame" x="236" y="1" width="1" height="597"/>
  7659. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7660. <color key="backgroundColor" systemColor="labelColor"/>
  7661. </view>
  7662. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="2021-03-29" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="l2k-HI-u6Y">
  7663. <rect key="frame" x="45" y="39" width="79" height="17"/>
  7664. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7665. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  7666. <nil key="textColor"/>
  7667. <nil key="highlightedColor"/>
  7668. </label>
  7669. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="4,000" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Z07-jj-weq">
  7670. <rect key="frame" x="166" y="39" width="38" height="17"/>
  7671. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7672. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  7673. <nil key="textColor"/>
  7674. <nil key="highlightedColor"/>
  7675. </label>
  7676. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="-2,020" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="y6k-yT-Whu">
  7677. <rect key="frame" x="272" y="39" width="44" height="17"/>
  7678. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7679. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  7680. <color key="textColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
  7681. <color key="highlightedColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
  7682. </label>
  7683. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="hYb-NB-Gxf">
  7684. <rect key="frame" x="0.0" y="35" width="340" height="1"/>
  7685. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7686. <subviews>
  7687. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="BMs-Mt-NBf">
  7688. <rect key="frame" x="0.0" y="-34" width="340" height="1"/>
  7689. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7690. <color key="backgroundColor" systemColor="labelColor"/>
  7691. </view>
  7692. </subviews>
  7693. <color key="backgroundColor" systemColor="labelColor"/>
  7694. </view>
  7695. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="nIB-lN-klA">
  7696. <rect key="frame" x="0.0" y="60" width="340" height="1"/>
  7697. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7698. <color key="backgroundColor" systemColor="labelColor"/>
  7699. </view>
  7700. </subviews>
  7701. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  7702. </view>
  7703. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="0To-i4-ZeR">
  7704. <rect key="frame" x="278" y="8" width="48" height="36"/>
  7705. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7706. <state key="normal" image="ic_tab_report.png"/>
  7707. <connections>
  7708. <action selector="actionBtnReport_ReportVC:" destination="XZc-oF-vtz" eventType="touchUpInside" id="ZT4-Jl-PTc"/>
  7709. </connections>
  7710. </button>
  7711. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="EuJ-VJ-zfz">
  7712. <rect key="frame" x="20" y="8" width="49" height="36"/>
  7713. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7714. <state key="normal" image="ic_tab_win.png"/>
  7715. <connections>
  7716. <action selector="actionBtnWin_ReportVC:" destination="XZc-oF-vtz" eventType="touchUpInside" id="2Ch-oS-aAY"/>
  7717. </connections>
  7718. </button>
  7719. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Ayq-ER-bK1">
  7720. <rect key="frame" x="150" y="8" width="48" height="36"/>
  7721. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7722. <state key="normal" image="ic_tab_play.png"/>
  7723. <connections>
  7724. <action selector="actionBtnResult_ReportVC:" destination="XZc-oF-vtz" eventType="touchUpInside" id="gmF-je-gJ0"/>
  7725. </connections>
  7726. </button>
  7727. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" image="bar select.png" translatesAutoresizingMaskIntoConstraints="NO" id="pYA-Bl-BCq">
  7728. <rect key="frame" x="238" y="35" width="126" height="32"/>
  7729. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7730. </imageView>
  7731. </subviews>
  7732. </view>
  7733. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="VBd-dn-Gjh" userLabel="VBetResult">
  7734. <rect key="frame" x="35" y="21" width="338" height="648"/>
  7735. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7736. <subviews>
  7737. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="qGY-Kn-Sqo">
  7738. <rect key="frame" x="2" y="0.0" width="340" height="56"/>
  7739. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7740. <color key="backgroundColor" systemColor="systemGray2Color"/>
  7741. </imageView>
  7742. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="NAg-7Z-kbv">
  7743. <rect key="frame" x="2" y="52" width="340" height="598"/>
  7744. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7745. <subviews>
  7746. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="GE0-h7-Yha">
  7747. <rect key="frame" x="5" y="68" width="331" height="1"/>
  7748. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7749. <color key="backgroundColor" systemColor="systemGray2Color"/>
  7750. </view>
  7751. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="rJt-1p-7pg">
  7752. <rect key="frame" x="5" y="39" width="331" height="1"/>
  7753. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7754. <color key="backgroundColor" systemColor="systemGray2Color"/>
  7755. </view>
  7756. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="O" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="gdY-XK-Qui">
  7757. <rect key="frame" x="136" y="14" width="11" height="17"/>
  7758. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7759. <fontDescription key="fontDescription" type="boldSystem" pointSize="14"/>
  7760. <nil key="textColor"/>
  7761. <nil key="highlightedColor"/>
  7762. </label>
  7763. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="1Kx1.95=1950" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="lXy-Fb-pRC">
  7764. <rect key="frame" x="167" y="46" width="79" height="14.5"/>
  7765. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7766. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  7767. <color key="textColor" red="0.0" green="0.1210455355" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  7768. <color key="highlightedColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  7769. </label>
  7770. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="1Kx1.95=1950" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="sIa-mI-yIZ">
  7771. <rect key="frame" x="167" y="15" width="79" height="14.5"/>
  7772. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7773. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  7774. <color key="textColor" red="0.0" green="0.1210455355" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  7775. <color key="highlightedColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  7776. </label>
  7777. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="U" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="nGQ-Cc-poV">
  7778. <rect key="frame" x="136" y="45" width="11" height="17"/>
  7779. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7780. <fontDescription key="fontDescription" type="boldSystem" pointSize="14"/>
  7781. <nil key="textColor"/>
  7782. <nil key="highlightedColor"/>
  7783. </label>
  7784. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="11066851" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="uE1-WW-kBe">
  7785. <rect key="frame" x="268.5" y="46" width="55" height="14.5"/>
  7786. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7787. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  7788. <color key="textColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  7789. <color key="highlightedColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  7790. </label>
  7791. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="11066851" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="iXF-pp-qaF">
  7792. <rect key="frame" x="268.5" y="15" width="55" height="14.5"/>
  7793. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7794. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  7795. <color key="textColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  7796. <color key="highlightedColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  7797. </label>
  7798. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="0119#42528 18:40" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="xIo-73-WqE">
  7799. <rect key="frame" x="5" y="15" width="106.5" height="14.5"/>
  7800. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7801. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  7802. <nil key="textColor"/>
  7803. <nil key="highlightedColor"/>
  7804. </label>
  7805. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="0119#42528 18:40" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="N9b-hl-qvb">
  7806. <rect key="frame" x="5" y="46" width="106.5" height="14.5"/>
  7807. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7808. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  7809. <nil key="textColor"/>
  7810. <nil key="highlightedColor"/>
  7811. </label>
  7812. </subviews>
  7813. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  7814. </view>
  7815. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="NHM-Lt-eob">
  7816. <rect key="frame" x="278" y="8" width="48" height="36"/>
  7817. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7818. <state key="normal" image="ic_tab_report.png"/>
  7819. <connections>
  7820. <action selector="actionBtnReport_ResultVC:" destination="XZc-oF-vtz" eventType="touchUpInside" id="uTb-9r-mDU"/>
  7821. </connections>
  7822. </button>
  7823. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Nlz-bn-ioe">
  7824. <rect key="frame" x="20" y="8" width="49" height="36"/>
  7825. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7826. <state key="normal" image="ic_tab_win.png"/>
  7827. <connections>
  7828. <action selector="actionBtnBet_ResultVC:" destination="XZc-oF-vtz" eventType="touchUpInside" id="Lmo-Vd-fcK"/>
  7829. <action selector="actionBtnWin_ResultVC:" destination="XZc-oF-vtz" eventType="touchUpInside" id="Jrk-fY-h9u"/>
  7830. </connections>
  7831. </button>
  7832. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="H9S-kT-boh">
  7833. <rect key="frame" x="141" y="8" width="48" height="36"/>
  7834. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7835. <state key="normal" image="ic_tab_play.png"/>
  7836. </button>
  7837. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" image="bar select.png" translatesAutoresizingMaskIntoConstraints="NO" id="IgM-CR-BR4">
  7838. <rect key="frame" x="102" y="35" width="126" height="32"/>
  7839. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7840. </imageView>
  7841. </subviews>
  7842. </view>
  7843. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="PSR-Cg-1fh" userLabel="VWinResult">
  7844. <rect key="frame" x="35" y="21" width="338" height="648"/>
  7845. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7846. <subviews>
  7847. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="ZBs-sW-g8P">
  7848. <rect key="frame" x="2" y="0.0" width="340" height="56"/>
  7849. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7850. <color key="backgroundColor" systemColor="systemGray2Color"/>
  7851. </imageView>
  7852. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="0kx-Yc-ODH">
  7853. <rect key="frame" x="2" y="52" width="340" height="598"/>
  7854. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7855. <subviews>
  7856. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="0119#42528 18:40" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="cXK-0Q-uXx">
  7857. <rect key="frame" x="5" y="15" width="106.5" height="14.5"/>
  7858. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7859. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  7860. <nil key="textColor"/>
  7861. <nil key="highlightedColor"/>
  7862. </label>
  7863. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="O" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3Ab-a0-TSL">
  7864. <rect key="frame" x="136.5" y="14" width="11" height="17"/>
  7865. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7866. <fontDescription key="fontDescription" type="boldSystem" pointSize="14"/>
  7867. <nil key="textColor"/>
  7868. <nil key="highlightedColor"/>
  7869. </label>
  7870. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="4Js-UN-JXF">
  7871. <rect key="frame" x="5" y="36" width="331" height="1"/>
  7872. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7873. <color key="backgroundColor" systemColor="systemGray2Color"/>
  7874. </view>
  7875. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="1Kx1.95=1950" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="1WM-wR-6sY">
  7876. <rect key="frame" x="167.5" y="15" width="79" height="14.5"/>
  7877. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7878. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  7879. <color key="textColor" red="0.0" green="0.1210455355" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  7880. <color key="highlightedColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  7881. </label>
  7882. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="11066851" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="jd6-4o-u6N">
  7883. <rect key="frame" x="268.5" y="15" width="55" height="14.5"/>
  7884. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7885. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  7886. <color key="textColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  7887. <color key="highlightedColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  7888. </label>
  7889. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="0119#42528 18:40" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="k1e-tr-7xT">
  7890. <rect key="frame" x="5" y="46" width="106.5" height="14.5"/>
  7891. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7892. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  7893. <nil key="textColor"/>
  7894. <nil key="highlightedColor"/>
  7895. </label>
  7896. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="O" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="c9j-Ck-KkL">
  7897. <rect key="frame" x="136" y="45" width="11" height="17"/>
  7898. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7899. <fontDescription key="fontDescription" type="boldSystem" pointSize="14"/>
  7900. <nil key="textColor"/>
  7901. <nil key="highlightedColor"/>
  7902. </label>
  7903. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="mLn-0R-pyi">
  7904. <rect key="frame" x="5" y="67" width="331" height="1"/>
  7905. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7906. <color key="backgroundColor" systemColor="systemGray2Color"/>
  7907. </view>
  7908. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="1Kx1.95=1950" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="553-WE-sNv">
  7909. <rect key="frame" x="167" y="46" width="79" height="14.5"/>
  7910. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7911. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  7912. <color key="textColor" red="0.0" green="0.1210455355" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  7913. <color key="highlightedColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  7914. </label>
  7915. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="11066851" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="znL-Ji-Iln">
  7916. <rect key="frame" x="268" y="46" width="55" height="14.5"/>
  7917. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7918. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  7919. <color key="textColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  7920. <color key="highlightedColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  7921. </label>
  7922. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="0119#42528 18:40" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="OBp-Sy-oMe">
  7923. <rect key="frame" x="5" y="75" width="106.5" height="14.5"/>
  7924. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7925. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  7926. <nil key="textColor"/>
  7927. <nil key="highlightedColor"/>
  7928. </label>
  7929. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="O" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Wgm-Wl-pOj">
  7930. <rect key="frame" x="136" y="74" width="11" height="17"/>
  7931. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7932. <fontDescription key="fontDescription" type="boldSystem" pointSize="14"/>
  7933. <nil key="textColor"/>
  7934. <nil key="highlightedColor"/>
  7935. </label>
  7936. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="gMz-8L-dWz">
  7937. <rect key="frame" x="5" y="96" width="331" height="1"/>
  7938. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7939. <color key="backgroundColor" systemColor="systemGray2Color"/>
  7940. </view>
  7941. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="1Kx1.95=1950" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="clY-eB-A2M">
  7942. <rect key="frame" x="167" y="75" width="79" height="14.5"/>
  7943. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7944. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  7945. <color key="textColor" red="0.0" green="0.1210455355" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  7946. <color key="highlightedColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  7947. </label>
  7948. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="11066851" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="wlc-tW-fJa">
  7949. <rect key="frame" x="268" y="75" width="55" height="14.5"/>
  7950. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7951. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  7952. <color key="textColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  7953. <color key="highlightedColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  7954. </label>
  7955. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="0119#42528 18:40" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="frI-Lc-V3D">
  7956. <rect key="frame" x="5" y="106" width="106.5" height="14.5"/>
  7957. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7958. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  7959. <nil key="textColor"/>
  7960. <nil key="highlightedColor"/>
  7961. </label>
  7962. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="O" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="RMv-Tf-cyP">
  7963. <rect key="frame" x="136" y="105" width="11" height="17"/>
  7964. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7965. <fontDescription key="fontDescription" type="boldSystem" pointSize="14"/>
  7966. <nil key="textColor"/>
  7967. <nil key="highlightedColor"/>
  7968. </label>
  7969. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="bfN-e0-ey7">
  7970. <rect key="frame" x="5" y="127" width="331" height="1"/>
  7971. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7972. <color key="backgroundColor" systemColor="systemGray2Color"/>
  7973. </view>
  7974. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="1Kx1.95=1950" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="YdY-aY-9dv">
  7975. <rect key="frame" x="167" y="106" width="79" height="14.5"/>
  7976. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7977. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  7978. <color key="textColor" red="0.0" green="0.1210455355" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  7979. <color key="highlightedColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  7980. </label>
  7981. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="11066851" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="yjO-b5-UPu">
  7982. <rect key="frame" x="268" y="106" width="55" height="14.5"/>
  7983. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7984. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  7985. <color key="textColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  7986. <color key="highlightedColor" red="0.15686274510000001" green="0.20392156859999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  7987. </label>
  7988. </subviews>
  7989. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  7990. </view>
  7991. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="qhK-A4-8cj">
  7992. <rect key="frame" x="278" y="8" width="48" height="36"/>
  7993. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  7994. <state key="normal" image="ic_tab_report.png"/>
  7995. <connections>
  7996. <action selector="actionBtnReport_WinVC:" destination="XZc-oF-vtz" eventType="touchUpInside" id="VTe-9b-3NQ"/>
  7997. </connections>
  7998. </button>
  7999. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="ltg-3p-p6m">
  8000. <rect key="frame" x="20" y="8" width="49" height="36"/>
  8001. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  8002. <state key="normal" image="ic_tab_win.png"/>
  8003. <connections>
  8004. <action selector="actionBtnWin_WinVC:" destination="XZc-oF-vtz" eventType="touchUpInside" id="5oN-UJ-QnV"/>
  8005. </connections>
  8006. </button>
  8007. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="BOa-Zx-PLf">
  8008. <rect key="frame" x="150" y="8" width="48" height="36"/>
  8009. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  8010. <state key="normal" image="ic_tab_play.png"/>
  8011. <connections>
  8012. <action selector="actionBtnBetView_WinVC:" destination="XZc-oF-vtz" eventType="touchUpInside" id="Yiq-cb-q8k"/>
  8013. </connections>
  8014. </button>
  8015. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" image="bar select.png" translatesAutoresizingMaskIntoConstraints="NO" id="yyo-Tg-f8T">
  8016. <rect key="frame" x="-19" y="35" width="126" height="32"/>
  8017. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  8018. </imageView>
  8019. </subviews>
  8020. </view>
  8021. </subviews>
  8022. </view>
  8023. </subviews>
  8024. <viewLayoutGuide key="safeArea" id="mOx-cj-cIo"/>
  8025. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  8026. <constraints>
  8027. <constraint firstItem="3qG-ZX-U3k" firstAttribute="leading" secondItem="iO1-1j-pCo" secondAttribute="trailing" constant="3" id="0Gn-uI-NTA"/>
  8028. <constraint firstItem="Gnq-DT-ctc" firstAttribute="leading" secondItem="mOx-cj-cIo" secondAttribute="leading" id="HI5-tb-C6V"/>
  8029. <constraint firstItem="KFk-4e-Yja" firstAttribute="top" secondItem="Edq-69-9uX" secondAttribute="top" constant="40" id="HZx-hc-2Kv"/>
  8030. <constraint firstItem="eap-Z8-KvV" firstAttribute="top" secondItem="3qG-ZX-U3k" secondAttribute="bottom" constant="5" id="OQI-ut-19Q"/>
  8031. <constraint firstItem="5kS-vf-xlh" firstAttribute="centerY" secondItem="eap-Z8-KvV" secondAttribute="centerY" id="Qpv-HU-wgU"/>
  8032. <constraint firstItem="KFk-4e-Yja" firstAttribute="leading" secondItem="mOx-cj-cIo" secondAttribute="leading" constant="10" id="SZX-nJ-rYA"/>
  8033. <constraint firstItem="3qG-ZX-U3k" firstAttribute="centerY" secondItem="iO1-1j-pCo" secondAttribute="centerY" id="YqO-xz-GSf"/>
  8034. <constraint firstItem="5kS-vf-xlh" firstAttribute="leading" secondItem="eap-Z8-KvV" secondAttribute="trailing" constant="3" id="bFD-jp-JaS"/>
  8035. <constraint firstItem="Gnq-DT-ctc" firstAttribute="trailing" secondItem="mOx-cj-cIo" secondAttribute="trailing" id="jND-ex-GmO"/>
  8036. <constraint firstItem="iO1-1j-pCo" firstAttribute="top" secondItem="KFk-4e-Yja" secondAttribute="top" id="ln9-Vr-nNh"/>
  8037. <constraint firstItem="iO1-1j-pCo" firstAttribute="leading" secondItem="KFk-4e-Yja" secondAttribute="trailing" constant="5" id="m4O-jV-p3F"/>
  8038. <constraint firstItem="Gnq-DT-ctc" firstAttribute="top" secondItem="Edq-69-9uX" secondAttribute="top" id="qUs-UQ-d0e"/>
  8039. <constraint firstItem="eap-Z8-KvV" firstAttribute="leading" secondItem="iO1-1j-pCo" secondAttribute="leading" id="y41-2K-BLk"/>
  8040. </constraints>
  8041. </view>
  8042. <navigationItem key="navigationItem" id="Tqv-1V-l0T"/>
  8043. <connections>
  8044. <outlet property="vcBetResult" destination="VBd-dn-Gjh" id="Ypz-Dc-c7X"/>
  8045. <outlet property="vcReportResult" destination="cEr-BH-uGP" id="U03-My-4jS"/>
  8046. <outlet property="vcWinResult" destination="PSR-Cg-1fh" id="vHw-IF-jeV"/>
  8047. </connections>
  8048. </viewController>
  8049. <placeholder placeholderIdentifier="IBFirstResponder" id="kBc-qj-dBm" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  8050. </objects>
  8051. <point key="canvasLocation" x="2494" y="950"/>
  8052. </scene>
  8053. </scenes>
  8054. <inferredMetricsTieBreakers>
  8055. <segue reference="Dcr-Ej-FMa"/>
  8056. </inferredMetricsTieBreakers>
  8057. <resources>
  8058. <image name="backgound.png" width="606" height="1253"/>
  8059. <image name="bar select.png" width="68.25" height="28.5"/>
  8060. <image name="bluetooth sign out.png" width="138" height="42.75"/>
  8061. <image name="ic_aba.png" width="150" height="150"/>
  8062. <image name="ic_backspace.jpeg" width="512" height="512"/>
  8063. <image name="ic_btn_close.png" width="276" height="86"/>
  8064. <image name="ic_refresh.png" width="51" height="42"/>
  8065. <image name="ic_report.png" width="53" height="59"/>
  8066. <image name="ic_setting.png" width="58" height="59"/>
  8067. <image name="ic_tab_play.png" width="93" height="72"/>
  8068. <image name="ic_tab_report.png" width="91" height="67"/>
  8069. <image name="ic_tab_win.png" width="87" height="73"/>
  8070. <image name="ic_unmute.png" width="59" height="47"/>
  8071. <image name="logo.png" width="500" height="500"/>
  8072. <image name="text confirm new.png" width="157.5" height="31.5"/>
  8073. <image name="text new pwd_black.png" width="104.25" height="31.5"/>
  8074. <image name="text save.png" width="66" height="27"/>
  8075. <image name="user.png" width="33.75" height="33.75"/>
  8076. <namedColor name="AccentColor">
  8077. <color red="0.0" green="0.46000000000000002" blue="0.89000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  8078. </namedColor>
  8079. <systemColor name="labelColor">
  8080. <color white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  8081. </systemColor>
  8082. <systemColor name="linkColor">
  8083. <color red="0.0" green="0.47843137254901963" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  8084. </systemColor>
  8085. <systemColor name="systemBackgroundColor">
  8086. <color white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  8087. </systemColor>
  8088. <systemColor name="systemGray2Color">
  8089. <color red="0.68235294117647061" green="0.68235294117647061" blue="0.69803921568627447" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  8090. </systemColor>
  8091. <systemColor name="systemGray3Color">
  8092. <color red="0.7803921568627451" green="0.7803921568627451" blue="0.80000000000000004" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  8093. </systemColor>
  8094. <systemColor name="systemGray5Color">
  8095. <color red="0.89803921568627454" green="0.89803921568627454" blue="0.91764705882352937" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  8096. </systemColor>
  8097. <systemColor name="systemPinkColor">
  8098. <color red="1" green="0.17647058823529413" blue="0.33333333333333331" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  8099. </systemColor>
  8100. <systemColor name="systemRedColor">
  8101. <color red="1" green="0.23137254901960785" blue="0.18823529411764706" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  8102. </systemColor>
  8103. </resources>
  8104. </document>