CocoaLumberjack.mdj 160 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253
  1. {
  2. "_type": "Project",
  3. "_id": "AAAAAAFF+h6SjaM2Hec=",
  4. "name": "Logging component",
  5. "ownedElements": [
  6. {
  7. "_type": "UMLModel",
  8. "_id": "AAAAAAFF+qBWK6M3Z8Y=",
  9. "_parent": {
  10. "$ref": "AAAAAAFF+h6SjaM2Hec="
  11. },
  12. "name": "Model",
  13. "ownedElements": [
  14. {
  15. "_type": "UMLClassDiagram",
  16. "_id": "AAAAAAFF+qBtyKM79qY=",
  17. "_parent": {
  18. "$ref": "AAAAAAFF+qBWK6M3Z8Y="
  19. },
  20. "name": "ClassDiagram",
  21. "defaultDiagram": true,
  22. "ownedViews": [
  23. {
  24. "_type": "UMLClassView",
  25. "_id": "AAAAAAFTQcZ2PK0J0m8=",
  26. "_parent": {
  27. "$ref": "AAAAAAFF+qBtyKM79qY="
  28. },
  29. "model": {
  30. "$ref": "AAAAAAFTQboi3atOLvk="
  31. },
  32. "subViews": [
  33. {
  34. "_type": "UMLNameCompartmentView",
  35. "_id": "AAAAAAFTQcZ2PK0Kk/4=",
  36. "_parent": {
  37. "$ref": "AAAAAAFTQcZ2PK0J0m8="
  38. },
  39. "model": {
  40. "$ref": "AAAAAAFTQboi3atOLvk="
  41. },
  42. "subViews": [
  43. {
  44. "_type": "LabelView",
  45. "_id": "AAAAAAFTQcZ2PK0Lv+o=",
  46. "_parent": {
  47. "$ref": "AAAAAAFTQcZ2PK0Kk/4="
  48. },
  49. "visible": false,
  50. "fillColor": "#c6c6c6",
  51. "font": "Arial;13;0",
  52. "left": -514,
  53. "top": 166,
  54. "height": 13
  55. },
  56. {
  57. "_type": "LabelView",
  58. "_id": "AAAAAAFTQcZ2PK0Mxu0=",
  59. "_parent": {
  60. "$ref": "AAAAAAFTQcZ2PK0Kk/4="
  61. },
  62. "fillColor": "#c6c6c6",
  63. "font": "Arial;13;1",
  64. "left": 181,
  65. "top": 263,
  66. "width": 213.4208526611328,
  67. "height": 13,
  68. "text": "DDLog"
  69. },
  70. {
  71. "_type": "LabelView",
  72. "_id": "AAAAAAFTQcZ2PK0NUE8=",
  73. "_parent": {
  74. "$ref": "AAAAAAFTQcZ2PK0Kk/4="
  75. },
  76. "fillColor": "#c6c6c6",
  77. "font": "Arial;13;0",
  78. "left": 181,
  79. "top": 278,
  80. "width": 213.4208526611328,
  81. "height": 13,
  82. "text": "(from CocoaLumberjack)"
  83. },
  84. {
  85. "_type": "LabelView",
  86. "_id": "AAAAAAFTQcZ2PK0OjmY=",
  87. "_parent": {
  88. "$ref": "AAAAAAFTQcZ2PK0Kk/4="
  89. },
  90. "visible": false,
  91. "fillColor": "#c6c6c6",
  92. "font": "Arial;13;0",
  93. "left": -514,
  94. "top": 166,
  95. "height": 13,
  96. "horizontalAlignment": 1
  97. }
  98. ],
  99. "fillColor": "#c6c6c6",
  100. "font": "Arial;13;0",
  101. "left": 176,
  102. "top": 256,
  103. "width": 223.4208526611328,
  104. "height": 40,
  105. "stereotypeLabel": {
  106. "$ref": "AAAAAAFTQcZ2PK0Lv+o="
  107. },
  108. "nameLabel": {
  109. "$ref": "AAAAAAFTQcZ2PK0Mxu0="
  110. },
  111. "namespaceLabel": {
  112. "$ref": "AAAAAAFTQcZ2PK0NUE8="
  113. },
  114. "propertyLabel": {
  115. "$ref": "AAAAAAFTQcZ2PK0OjmY="
  116. }
  117. },
  118. {
  119. "_type": "UMLAttributeCompartmentView",
  120. "_id": "AAAAAAFTQcZ2PK0PVQo=",
  121. "_parent": {
  122. "$ref": "AAAAAAFTQcZ2PK0J0m8="
  123. },
  124. "model": {
  125. "$ref": "AAAAAAFTQboi3atOLvk="
  126. },
  127. "subViews": [
  128. {
  129. "_type": "UMLAttributeView",
  130. "_id": "AAAAAAFTQcZ2Rq0vUK4=",
  131. "_parent": {
  132. "$ref": "AAAAAAFTQcZ2PK0PVQo="
  133. },
  134. "model": {
  135. "$ref": "AAAAAAFTQcC0PavoeNk="
  136. },
  137. "fillColor": "#c6c6c6",
  138. "font": "Arial;13;0",
  139. "left": 181,
  140. "top": 301,
  141. "width": 213.4208526611328,
  142. "height": 13,
  143. "text": "+loggingQueue",
  144. "horizontalAlignment": 0
  145. },
  146. {
  147. "_type": "UMLAttributeView",
  148. "_id": "AAAAAAFTUWpzMEs8+dk=",
  149. "_parent": {
  150. "$ref": "AAAAAAFTQcZ2PK0PVQo="
  151. },
  152. "model": {
  153. "$ref": "AAAAAAFTUWpzHUs5hn8="
  154. },
  155. "fillColor": "#c6c6c6",
  156. "font": "Arial;13;0",
  157. "left": 181,
  158. "top": 316,
  159. "width": 213.4208526611328,
  160. "height": 13,
  161. "text": "-loggers: [DDLogger]",
  162. "horizontalAlignment": 0
  163. }
  164. ],
  165. "fillColor": "#c6c6c6",
  166. "font": "Arial;13;0",
  167. "left": 176,
  168. "top": 296,
  169. "width": 223.4208526611328,
  170. "height": 38
  171. },
  172. {
  173. "_type": "UMLOperationCompartmentView",
  174. "_id": "AAAAAAFTQcZ2Pa0QJn4=",
  175. "_parent": {
  176. "$ref": "AAAAAAFTQcZ2PK0J0m8="
  177. },
  178. "model": {
  179. "$ref": "AAAAAAFTQboi3atOLvk="
  180. },
  181. "subViews": [
  182. {
  183. "_type": "UMLOperationView",
  184. "_id": "AAAAAAFTQcZ2R60yBkA=",
  185. "_parent": {
  186. "$ref": "AAAAAAFTQcZ2Pa0QJn4="
  187. },
  188. "model": {
  189. "$ref": "AAAAAAFTQbt/PKuBaDQ="
  190. },
  191. "fillColor": "#c6c6c6",
  192. "font": "Arial;13;0",
  193. "left": 181,
  194. "top": 339,
  195. "width": 213.4208526611328,
  196. "height": 13,
  197. "text": "+log:()",
  198. "horizontalAlignment": 0
  199. },
  200. {
  201. "_type": "UMLOperationView",
  202. "_id": "AAAAAAFTQcZ2R601yaI=",
  203. "_parent": {
  204. "$ref": "AAAAAAFTQcZ2Pa0QJn4="
  205. },
  206. "model": {
  207. "$ref": "AAAAAAFTQbw7AquIOPo="
  208. },
  209. "fillColor": "#c6c6c6",
  210. "font": "Arial;13;0",
  211. "left": 181,
  212. "top": 354,
  213. "width": 213.4208526611328,
  214. "height": 13,
  215. "text": "+addLogger:(logger: DDLogger)",
  216. "horizontalAlignment": 0
  217. },
  218. {
  219. "_type": "UMLOperationView",
  220. "_id": "AAAAAAFTQcZ2Sa04jbg=",
  221. "_parent": {
  222. "$ref": "AAAAAAFTQcZ2Pa0QJn4="
  223. },
  224. "model": {
  225. "$ref": "AAAAAAFTQbyeA6uTw6s="
  226. },
  227. "fillColor": "#c6c6c6",
  228. "font": "Arial;13;0",
  229. "left": 181,
  230. "top": 369,
  231. "width": 213.4208526611328,
  232. "height": 13,
  233. "text": "+removeLogger:(logger: DDLogger)",
  234. "horizontalAlignment": 0
  235. },
  236. {
  237. "_type": "UMLOperationView",
  238. "_id": "AAAAAAFTQcZ2Sa07WQg=",
  239. "_parent": {
  240. "$ref": "AAAAAAFTQcZ2Pa0QJn4="
  241. },
  242. "model": {
  243. "$ref": "AAAAAAFTQcErxav2uJ8="
  244. },
  245. "fillColor": "#c6c6c6",
  246. "font": "Arial;13;0",
  247. "left": 181,
  248. "top": 384,
  249. "width": 213.4208526611328,
  250. "height": 13,
  251. "text": "+allLoggers()",
  252. "horizontalAlignment": 0
  253. },
  254. {
  255. "_type": "UMLOperationView",
  256. "_id": "AAAAAAFTQcZ2Sa0+iYA=",
  257. "_parent": {
  258. "$ref": "AAAAAAFTQcZ2Pa0QJn4="
  259. },
  260. "model": {
  261. "$ref": "AAAAAAFTQcEAiKvvGFk="
  262. },
  263. "fillColor": "#c6c6c6",
  264. "font": "Arial;13;0",
  265. "left": 181,
  266. "top": 399,
  267. "width": 213.4208526611328,
  268. "height": 13,
  269. "text": "+removeAllLoggers()",
  270. "horizontalAlignment": 0
  271. }
  272. ],
  273. "fillColor": "#c6c6c6",
  274. "font": "Arial;13;0",
  275. "left": 176,
  276. "top": 334,
  277. "width": 223.4208526611328,
  278. "height": 83
  279. },
  280. {
  281. "_type": "UMLReceptionCompartmentView",
  282. "_id": "AAAAAAFTQcZ2Pa0Rn3Q=",
  283. "_parent": {
  284. "$ref": "AAAAAAFTQcZ2PK0J0m8="
  285. },
  286. "model": {
  287. "$ref": "AAAAAAFTQboi3atOLvk="
  288. },
  289. "visible": false,
  290. "fillColor": "#c6c6c6",
  291. "font": "Arial;13;0",
  292. "left": -257,
  293. "top": 83,
  294. "width": 10,
  295. "height": 10
  296. },
  297. {
  298. "_type": "UMLTemplateParameterCompartmentView",
  299. "_id": "AAAAAAFTQcZ2Pa0Soa8=",
  300. "_parent": {
  301. "$ref": "AAAAAAFTQcZ2PK0J0m8="
  302. },
  303. "model": {
  304. "$ref": "AAAAAAFTQboi3atOLvk="
  305. },
  306. "visible": false,
  307. "fillColor": "#c6c6c6",
  308. "font": "Arial;13;0",
  309. "left": -257,
  310. "top": 83,
  311. "width": 10,
  312. "height": 10
  313. }
  314. ],
  315. "fillColor": "#c6c6c6",
  316. "font": "Arial;13;0",
  317. "containerChangeable": true,
  318. "left": 176,
  319. "top": 256,
  320. "width": 223.4208526611328,
  321. "height": 161,
  322. "showNamespace": true,
  323. "nameCompartment": {
  324. "$ref": "AAAAAAFTQcZ2PK0Kk/4="
  325. },
  326. "attributeCompartment": {
  327. "$ref": "AAAAAAFTQcZ2PK0PVQo="
  328. },
  329. "operationCompartment": {
  330. "$ref": "AAAAAAFTQcZ2Pa0QJn4="
  331. },
  332. "receptionCompartment": {
  333. "$ref": "AAAAAAFTQcZ2Pa0Rn3Q="
  334. },
  335. "templateParameterCompartment": {
  336. "$ref": "AAAAAAFTQcZ2Pa0Soa8="
  337. }
  338. },
  339. {
  340. "_type": "UMLClassView",
  341. "_id": "AAAAAAFTQcfNOq4OFig=",
  342. "_parent": {
  343. "$ref": "AAAAAAFF+qBtyKM79qY="
  344. },
  345. "model": {
  346. "$ref": "AAAAAAFTQcd7qa4I83s="
  347. },
  348. "subViews": [
  349. {
  350. "_type": "UMLNameCompartmentView",
  351. "_id": "AAAAAAFTQcfNOq4Pogk=",
  352. "_parent": {
  353. "$ref": "AAAAAAFTQcfNOq4OFig="
  354. },
  355. "model": {
  356. "$ref": "AAAAAAFTQcd7qa4I83s="
  357. },
  358. "subViews": [
  359. {
  360. "_type": "LabelView",
  361. "_id": "AAAAAAFTQcfNOq4Q6pY=",
  362. "_parent": {
  363. "$ref": "AAAAAAFTQcfNOq4Pogk="
  364. },
  365. "visible": false,
  366. "fillColor": "#c6c6c6",
  367. "font": "Arial;13;0",
  368. "left": -118,
  369. "top": 770,
  370. "height": 13
  371. },
  372. {
  373. "_type": "LabelView",
  374. "_id": "AAAAAAFTQcfNOq4RqgM=",
  375. "_parent": {
  376. "$ref": "AAAAAAFTQcfNOq4Pogk="
  377. },
  378. "fillColor": "#c6c6c6",
  379. "font": "Arial;13;3",
  380. "left": 565,
  381. "top": 679,
  382. "width": 150.73489379882812,
  383. "height": 13,
  384. "text": "DDAbstractLogger"
  385. },
  386. {
  387. "_type": "LabelView",
  388. "_id": "AAAAAAFTQcfNOq4SgYs=",
  389. "_parent": {
  390. "$ref": "AAAAAAFTQcfNOq4Pogk="
  391. },
  392. "fillColor": "#c6c6c6",
  393. "font": "Arial;13;0",
  394. "left": 565,
  395. "top": 694,
  396. "width": 150.73489379882812,
  397. "height": 13,
  398. "text": "(from CocoaLumberjack)"
  399. },
  400. {
  401. "_type": "LabelView",
  402. "_id": "AAAAAAFTQcfNOq4T0hI=",
  403. "_parent": {
  404. "$ref": "AAAAAAFTQcfNOq4Pogk="
  405. },
  406. "visible": false,
  407. "fillColor": "#c6c6c6",
  408. "font": "Arial;13;0",
  409. "left": -118,
  410. "top": 770,
  411. "height": 13,
  412. "horizontalAlignment": 1
  413. }
  414. ],
  415. "fillColor": "#c6c6c6",
  416. "font": "Arial;13;0",
  417. "left": 560,
  418. "top": 672,
  419. "width": 160.73489379882812,
  420. "height": 40,
  421. "stereotypeLabel": {
  422. "$ref": "AAAAAAFTQcfNOq4Q6pY="
  423. },
  424. "nameLabel": {
  425. "$ref": "AAAAAAFTQcfNOq4RqgM="
  426. },
  427. "namespaceLabel": {
  428. "$ref": "AAAAAAFTQcfNOq4SgYs="
  429. },
  430. "propertyLabel": {
  431. "$ref": "AAAAAAFTQcfNOq4T0hI="
  432. }
  433. },
  434. {
  435. "_type": "UMLAttributeCompartmentView",
  436. "_id": "AAAAAAFTQcfNOq4UuvA=",
  437. "_parent": {
  438. "$ref": "AAAAAAFTQcfNOq4OFig="
  439. },
  440. "model": {
  441. "$ref": "AAAAAAFTQcd7qa4I83s="
  442. },
  443. "fillColor": "#c6c6c6",
  444. "font": "Arial;13;0",
  445. "left": 560,
  446. "top": 712,
  447. "width": 160.73489379882812,
  448. "height": 10
  449. },
  450. {
  451. "_type": "UMLOperationCompartmentView",
  452. "_id": "AAAAAAFTQcfNOq4Vn4I=",
  453. "_parent": {
  454. "$ref": "AAAAAAFTQcfNOq4OFig="
  455. },
  456. "model": {
  457. "$ref": "AAAAAAFTQcd7qa4I83s="
  458. },
  459. "fillColor": "#c6c6c6",
  460. "font": "Arial;13;0",
  461. "left": 560,
  462. "top": 722,
  463. "width": 160.73489379882812,
  464. "height": 10
  465. },
  466. {
  467. "_type": "UMLReceptionCompartmentView",
  468. "_id": "AAAAAAFTQcfNO64WsmE=",
  469. "_parent": {
  470. "$ref": "AAAAAAFTQcfNOq4OFig="
  471. },
  472. "model": {
  473. "$ref": "AAAAAAFTQcd7qa4I83s="
  474. },
  475. "visible": false,
  476. "fillColor": "#c6c6c6",
  477. "font": "Arial;13;0",
  478. "left": -99,
  479. "top": 329,
  480. "width": 10,
  481. "height": 10
  482. },
  483. {
  484. "_type": "UMLTemplateParameterCompartmentView",
  485. "_id": "AAAAAAFTQcfNO64Xqjo=",
  486. "_parent": {
  487. "$ref": "AAAAAAFTQcfNOq4OFig="
  488. },
  489. "model": {
  490. "$ref": "AAAAAAFTQcd7qa4I83s="
  491. },
  492. "visible": false,
  493. "fillColor": "#c6c6c6",
  494. "font": "Arial;13;0",
  495. "left": -99,
  496. "top": 329,
  497. "width": 10,
  498. "height": 10
  499. }
  500. ],
  501. "fillColor": "#c6c6c6",
  502. "font": "Arial;13;0",
  503. "containerChangeable": true,
  504. "left": 560,
  505. "top": 672,
  506. "width": 160.73489379882812,
  507. "height": 60,
  508. "showNamespace": true,
  509. "nameCompartment": {
  510. "$ref": "AAAAAAFTQcfNOq4Pogk="
  511. },
  512. "attributeCompartment": {
  513. "$ref": "AAAAAAFTQcfNOq4UuvA="
  514. },
  515. "operationCompartment": {
  516. "$ref": "AAAAAAFTQcfNOq4Vn4I="
  517. },
  518. "receptionCompartment": {
  519. "$ref": "AAAAAAFTQcfNO64WsmE="
  520. },
  521. "templateParameterCompartment": {
  522. "$ref": "AAAAAAFTQcfNO64Xqjo="
  523. }
  524. },
  525. {
  526. "_type": "UMLInterfaceView",
  527. "_id": "AAAAAAFTQcfW2a41+cc=",
  528. "_parent": {
  529. "$ref": "AAAAAAFF+qBtyKM79qY="
  530. },
  531. "model": {
  532. "$ref": "AAAAAAFTQb0M+auaawA="
  533. },
  534. "subViews": [
  535. {
  536. "_type": "UMLNameCompartmentView",
  537. "_id": "AAAAAAFTQcfW2a426kg=",
  538. "_parent": {
  539. "$ref": "AAAAAAFTQcfW2a41+cc="
  540. },
  541. "model": {
  542. "$ref": "AAAAAAFTQb0M+auaawA="
  543. },
  544. "subViews": [
  545. {
  546. "_type": "LabelView",
  547. "_id": "AAAAAAFTQcfW2a43Auw=",
  548. "_parent": {
  549. "$ref": "AAAAAAFTQcfW2a426kg="
  550. },
  551. "fillColor": "#c6c6c6",
  552. "font": "Arial;13;0",
  553. "left": 501,
  554. "top": 325,
  555. "width": 245.51779174804688,
  556. "height": 13,
  557. "text": "«interface»"
  558. },
  559. {
  560. "_type": "LabelView",
  561. "_id": "AAAAAAFTQcfW2a440L8=",
  562. "_parent": {
  563. "$ref": "AAAAAAFTQcfW2a426kg="
  564. },
  565. "fillColor": "#c6c6c6",
  566. "font": "Arial;13;1",
  567. "left": 501,
  568. "top": 340,
  569. "width": 245.51779174804688,
  570. "height": 13,
  571. "text": "DDLogger"
  572. },
  573. {
  574. "_type": "LabelView",
  575. "_id": "AAAAAAFTQcfW2a45Ei8=",
  576. "_parent": {
  577. "$ref": "AAAAAAFTQcfW2a426kg="
  578. },
  579. "fillColor": "#c6c6c6",
  580. "font": "Arial;13;0",
  581. "left": 501,
  582. "top": 355,
  583. "width": 245.51779174804688,
  584. "height": 13,
  585. "text": "(from CocoaLumberjack)"
  586. },
  587. {
  588. "_type": "LabelView",
  589. "_id": "AAAAAAFTQcfW2a46JwM=",
  590. "_parent": {
  591. "$ref": "AAAAAAFTQcfW2a426kg="
  592. },
  593. "visible": false,
  594. "fillColor": "#c6c6c6",
  595. "font": "Arial;13;0",
  596. "left": -258,
  597. "top": 282,
  598. "height": 13,
  599. "horizontalAlignment": 1
  600. }
  601. ],
  602. "fillColor": "#c6c6c6",
  603. "font": "Arial;13;0",
  604. "left": 496,
  605. "top": 320,
  606. "width": 255.51779174804688,
  607. "height": 53,
  608. "stereotypeLabel": {
  609. "$ref": "AAAAAAFTQcfW2a43Auw="
  610. },
  611. "nameLabel": {
  612. "$ref": "AAAAAAFTQcfW2a440L8="
  613. },
  614. "namespaceLabel": {
  615. "$ref": "AAAAAAFTQcfW2a45Ei8="
  616. },
  617. "propertyLabel": {
  618. "$ref": "AAAAAAFTQcfW2a46JwM="
  619. }
  620. },
  621. {
  622. "_type": "UMLAttributeCompartmentView",
  623. "_id": "AAAAAAFTQcfW2a47ojU=",
  624. "_parent": {
  625. "$ref": "AAAAAAFTQcfW2a41+cc="
  626. },
  627. "model": {
  628. "$ref": "AAAAAAFTQb0M+auaawA="
  629. },
  630. "subViews": [
  631. {
  632. "_type": "UMLAttributeView",
  633. "_id": "AAAAAAFTQc22JbCX3BY=",
  634. "_parent": {
  635. "$ref": "AAAAAAFTQcfW2a47ojU="
  636. },
  637. "model": {
  638. "$ref": "AAAAAAFTQc22ELCUq+k="
  639. },
  640. "fillColor": "#c6c6c6",
  641. "font": "Arial;13;0",
  642. "left": 501,
  643. "top": 378,
  644. "width": 245.51779174804688,
  645. "height": 13,
  646. "text": "+logFormatter: DDLogFormatter",
  647. "horizontalAlignment": 0
  648. },
  649. {
  650. "_type": "UMLAttributeView",
  651. "_id": "AAAAAAFTQdSfGrcG/XM=",
  652. "_parent": {
  653. "$ref": "AAAAAAFTQcfW2a47ojU="
  654. },
  655. "model": {
  656. "$ref": "AAAAAAFTQdSfBLcDZnI="
  657. },
  658. "fillColor": "#c6c6c6",
  659. "font": "Arial;13;0",
  660. "left": 501,
  661. "top": 393,
  662. "width": 245.51779174804688,
  663. "height": 13,
  664. "text": "+loggerQueue",
  665. "horizontalAlignment": 0
  666. },
  667. {
  668. "_type": "UMLAttributeView",
  669. "_id": "AAAAAAFTQdTFZbdVXYM=",
  670. "_parent": {
  671. "$ref": "AAAAAAFTQcfW2a47ojU="
  672. },
  673. "model": {
  674. "$ref": "AAAAAAFTQdTFVLdS0MM="
  675. },
  676. "fillColor": "#c6c6c6",
  677. "font": "Arial;13;0",
  678. "left": 501,
  679. "top": 408,
  680. "width": 245.51779174804688,
  681. "height": 13,
  682. "text": "+loggerName",
  683. "horizontalAlignment": 0
  684. }
  685. ],
  686. "fillColor": "#c6c6c6",
  687. "font": "Arial;13;0",
  688. "left": 496,
  689. "top": 373,
  690. "width": 255.51779174804688,
  691. "height": 53
  692. },
  693. {
  694. "_type": "UMLOperationCompartmentView",
  695. "_id": "AAAAAAFTQcfW2a48M/U=",
  696. "_parent": {
  697. "$ref": "AAAAAAFTQcfW2a41+cc="
  698. },
  699. "model": {
  700. "$ref": "AAAAAAFTQb0M+auaawA="
  701. },
  702. "subViews": [
  703. {
  704. "_type": "UMLOperationView",
  705. "_id": "AAAAAAFTQcfW4a5bVIg=",
  706. "_parent": {
  707. "$ref": "AAAAAAFTQcfW2a48M/U="
  708. },
  709. "model": {
  710. "$ref": "AAAAAAFTQcLQX6w4sEw="
  711. },
  712. "fillColor": "#c6c6c6",
  713. "font": "Arial;13;0",
  714. "left": 501,
  715. "top": 431,
  716. "width": 245.51779174804688,
  717. "height": 13,
  718. "text": "+logMessage(message: DDLogMessage)",
  719. "horizontalAlignment": 0
  720. },
  721. {
  722. "_type": "UMLOperationView",
  723. "_id": "AAAAAAFTQdOE37Xjabs=",
  724. "_parent": {
  725. "$ref": "AAAAAAFTQcfW2a48M/U="
  726. },
  727. "model": {
  728. "$ref": "AAAAAAFTQdOEy7XgiKs="
  729. },
  730. "fillColor": "#c6c6c6",
  731. "font": "Arial;13;0",
  732. "left": 501,
  733. "top": 446,
  734. "width": 245.51779174804688,
  735. "height": 13,
  736. "text": "+didAddLogger()",
  737. "horizontalAlignment": 0
  738. },
  739. {
  740. "_type": "UMLOperationView",
  741. "_id": "AAAAAAFTQdOyFrYyMiI=",
  742. "_parent": {
  743. "$ref": "AAAAAAFTQcfW2a48M/U="
  744. },
  745. "model": {
  746. "$ref": "AAAAAAFTQdOyBLYv5cg="
  747. },
  748. "fillColor": "#c6c6c6",
  749. "font": "Arial;13;0",
  750. "left": 501,
  751. "top": 461,
  752. "width": 245.51779174804688,
  753. "height": 13,
  754. "text": "+willRemoveLogger()",
  755. "horizontalAlignment": 0
  756. },
  757. {
  758. "_type": "UMLOperationView",
  759. "_id": "AAAAAAFTQdR72baZR1k=",
  760. "_parent": {
  761. "$ref": "AAAAAAFTQcfW2a48M/U="
  762. },
  763. "model": {
  764. "$ref": "AAAAAAFTQdR7xbaWT4s="
  765. },
  766. "fillColor": "#c6c6c6",
  767. "font": "Arial;13;0",
  768. "left": 501,
  769. "top": 476,
  770. "width": 245.51779174804688,
  771. "height": 13,
  772. "text": "+flush()",
  773. "horizontalAlignment": 0
  774. }
  775. ],
  776. "fillColor": "#c6c6c6",
  777. "font": "Arial;13;0",
  778. "left": 496,
  779. "top": 426,
  780. "width": 255.51779174804688,
  781. "height": 68
  782. },
  783. {
  784. "_type": "UMLReceptionCompartmentView",
  785. "_id": "AAAAAAFTQcfW2a490A8=",
  786. "_parent": {
  787. "$ref": "AAAAAAFTQcfW2a41+cc="
  788. },
  789. "model": {
  790. "$ref": "AAAAAAFTQb0M+auaawA="
  791. },
  792. "visible": false,
  793. "fillColor": "#c6c6c6",
  794. "font": "Arial;13;0",
  795. "left": -25,
  796. "top": 53,
  797. "width": 10,
  798. "height": 10
  799. },
  800. {
  801. "_type": "UMLTemplateParameterCompartmentView",
  802. "_id": "AAAAAAFTQcfW2a4+DSs=",
  803. "_parent": {
  804. "$ref": "AAAAAAFTQcfW2a41+cc="
  805. },
  806. "model": {
  807. "$ref": "AAAAAAFTQb0M+auaawA="
  808. },
  809. "visible": false,
  810. "fillColor": "#c6c6c6",
  811. "font": "Arial;13;0",
  812. "left": -25,
  813. "top": 53,
  814. "width": 10,
  815. "height": 10
  816. }
  817. ],
  818. "fillColor": "#c6c6c6",
  819. "font": "Arial;13;0",
  820. "containerChangeable": true,
  821. "left": 496,
  822. "top": 320,
  823. "width": 255.51779174804688,
  824. "height": 174,
  825. "showNamespace": true,
  826. "nameCompartment": {
  827. "$ref": "AAAAAAFTQcfW2a426kg="
  828. },
  829. "attributeCompartment": {
  830. "$ref": "AAAAAAFTQcfW2a47ojU="
  831. },
  832. "operationCompartment": {
  833. "$ref": "AAAAAAFTQcfW2a48M/U="
  834. },
  835. "receptionCompartment": {
  836. "$ref": "AAAAAAFTQcfW2a490A8="
  837. },
  838. "templateParameterCompartment": {
  839. "$ref": "AAAAAAFTQcfW2a4+DSs="
  840. }
  841. },
  842. {
  843. "_type": "UMLInterfaceRealizationView",
  844. "_id": "AAAAAAFTQckQy66DNWg=",
  845. "_parent": {
  846. "$ref": "AAAAAAFF+qBtyKM79qY="
  847. },
  848. "model": {
  849. "$ref": "AAAAAAFTQckQy66CFMc="
  850. },
  851. "subViews": [
  852. {
  853. "_type": "EdgeLabelView",
  854. "_id": "AAAAAAFTQckQzK6EGjM=",
  855. "_parent": {
  856. "$ref": "AAAAAAFTQckQy66DNWg="
  857. },
  858. "model": {
  859. "$ref": "AAAAAAFTQckQy66CFMc="
  860. },
  861. "visible": false,
  862. "font": "Arial;13;0",
  863. "left": 611,
  864. "top": 575,
  865. "width": 76.97291564941406,
  866. "height": 13,
  867. "alpha": 1.5707963267948966,
  868. "distance": 15,
  869. "hostEdge": {
  870. "$ref": "AAAAAAFTQckQy66DNWg="
  871. },
  872. "edgePosition": 1,
  873. "text": "+implements"
  874. },
  875. {
  876. "_type": "EdgeLabelView",
  877. "_id": "AAAAAAFTQckQzK6FITc=",
  878. "_parent": {
  879. "$ref": "AAAAAAFTQckQy66DNWg="
  880. },
  881. "model": {
  882. "$ref": "AAAAAAFTQckQy66CFMc="
  883. },
  884. "visible": null,
  885. "font": "Arial;13;0",
  886. "left": 634,
  887. "top": 575,
  888. "height": 13,
  889. "alpha": 1.5707963267948966,
  890. "distance": 30,
  891. "hostEdge": {
  892. "$ref": "AAAAAAFTQckQy66DNWg="
  893. },
  894. "edgePosition": 1
  895. },
  896. {
  897. "_type": "EdgeLabelView",
  898. "_id": "AAAAAAFTQckQzK6G3iU=",
  899. "_parent": {
  900. "$ref": "AAAAAAFTQckQy66DNWg="
  901. },
  902. "model": {
  903. "$ref": "AAAAAAFTQckQy66CFMc="
  904. },
  905. "visible": false,
  906. "font": "Arial;13;0",
  907. "left": 678,
  908. "top": 576,
  909. "height": 13,
  910. "alpha": -1.5707963267948966,
  911. "distance": 15,
  912. "hostEdge": {
  913. "$ref": "AAAAAAFTQckQy66DNWg="
  914. },
  915. "edgePosition": 1
  916. }
  917. ],
  918. "font": "Arial;13;0",
  919. "head": {
  920. "$ref": "AAAAAAFTQcfW2a41+cc="
  921. },
  922. "tail": {
  923. "$ref": "AAAAAAFTQcfNOq4OFig="
  924. },
  925. "points": "664:672;664:493",
  926. "showVisibility": true,
  927. "nameLabel": {
  928. "$ref": "AAAAAAFTQckQzK6EGjM="
  929. },
  930. "stereotypeLabel": {
  931. "$ref": "AAAAAAFTQckQzK6FITc="
  932. },
  933. "propertyLabel": {
  934. "$ref": "AAAAAAFTQckQzK6G3iU="
  935. }
  936. },
  937. {
  938. "_type": "UMLAssociationView",
  939. "_id": "AAAAAAFTQcqp8q6ogBU=",
  940. "_parent": {
  941. "$ref": "AAAAAAFF+qBtyKM79qY="
  942. },
  943. "model": {
  944. "$ref": "AAAAAAFTQcqp8K6kDCM="
  945. },
  946. "subViews": [
  947. {
  948. "_type": "EdgeLabelView",
  949. "_id": "AAAAAAFTQcqp866paz4=",
  950. "_parent": {
  951. "$ref": "AAAAAAFTQcqp8q6ogBU="
  952. },
  953. "model": {
  954. "$ref": "AAAAAAFTQcqp8K6kDCM="
  955. },
  956. "font": "Arial;13;0",
  957. "left": 420,
  958. "top": 353,
  959. "width": 52.428955078125,
  960. "height": 13,
  961. "alpha": 1.5707963267948966,
  962. "distance": 15,
  963. "hostEdge": {
  964. "$ref": "AAAAAAFTQcqp8q6ogBU="
  965. },
  966. "edgePosition": 1,
  967. "text": "-loggers"
  968. },
  969. {
  970. "_type": "EdgeLabelView",
  971. "_id": "AAAAAAFTQcqp866q+DQ=",
  972. "_parent": {
  973. "$ref": "AAAAAAFTQcqp8q6ogBU="
  974. },
  975. "model": {
  976. "$ref": "AAAAAAFTQcqp8K6kDCM="
  977. },
  978. "visible": null,
  979. "font": "Arial;13;0",
  980. "left": 446,
  981. "top": 368,
  982. "height": 13,
  983. "alpha": 1.5707963267948966,
  984. "distance": 30,
  985. "hostEdge": {
  986. "$ref": "AAAAAAFTQcqp8q6ogBU="
  987. },
  988. "edgePosition": 1
  989. },
  990. {
  991. "_type": "EdgeLabelView",
  992. "_id": "AAAAAAFTQcqp866rlZo=",
  993. "_parent": {
  994. "$ref": "AAAAAAFTQcqp8q6ogBU="
  995. },
  996. "model": {
  997. "$ref": "AAAAAAFTQcqp8K6kDCM="
  998. },
  999. "visible": false,
  1000. "font": "Arial;13;0",
  1001. "left": 447,
  1002. "top": 323,
  1003. "height": 13,
  1004. "alpha": -1.5707963267948966,
  1005. "distance": 15,
  1006. "hostEdge": {
  1007. "$ref": "AAAAAAFTQcqp8q6ogBU="
  1008. },
  1009. "edgePosition": 1
  1010. },
  1011. {
  1012. "_type": "EdgeLabelView",
  1013. "_id": "AAAAAAFTQcqp866sqo4=",
  1014. "_parent": {
  1015. "$ref": "AAAAAAFTQcqp8q6ogBU="
  1016. },
  1017. "model": {
  1018. "$ref": "AAAAAAFTQcqp8K6lXOI="
  1019. },
  1020. "visible": false,
  1021. "font": "Arial;13;0",
  1022. "left": 470,
  1023. "top": 352,
  1024. "height": 13,
  1025. "alpha": 0.5235987755982988,
  1026. "distance": 30,
  1027. "hostEdge": {
  1028. "$ref": "AAAAAAFTQcqp8q6ogBU="
  1029. },
  1030. "edgePosition": 2
  1031. },
  1032. {
  1033. "_type": "EdgeLabelView",
  1034. "_id": "AAAAAAFTQcqp866tK4Q=",
  1035. "_parent": {
  1036. "$ref": "AAAAAAFTQcqp8q6ogBU="
  1037. },
  1038. "model": {
  1039. "$ref": "AAAAAAFTQcqp8K6lXOI="
  1040. },
  1041. "visible": false,
  1042. "font": "Arial;13;0",
  1043. "left": 467,
  1044. "top": 366,
  1045. "height": 13,
  1046. "alpha": 0.7853981633974483,
  1047. "distance": 40,
  1048. "hostEdge": {
  1049. "$ref": "AAAAAAFTQcqp8q6ogBU="
  1050. },
  1051. "edgePosition": 2
  1052. },
  1053. {
  1054. "_type": "EdgeLabelView",
  1055. "_id": "AAAAAAFTQcqp866uSJI=",
  1056. "_parent": {
  1057. "$ref": "AAAAAAFTQcqp8q6ogBU="
  1058. },
  1059. "model": {
  1060. "$ref": "AAAAAAFTQcqp8K6lXOI="
  1061. },
  1062. "font": "Arial;13;0",
  1063. "left": 471,
  1064. "top": 325,
  1065. "width": 6.5779876708984375,
  1066. "height": 13,
  1067. "alpha": -0.5235987755982988,
  1068. "distance": 25,
  1069. "hostEdge": {
  1070. "$ref": "AAAAAAFTQcqp8q6ogBU="
  1071. },
  1072. "edgePosition": 2,
  1073. "text": "*"
  1074. },
  1075. {
  1076. "_type": "EdgeLabelView",
  1077. "_id": "AAAAAAFTQcqp866vCXQ=",
  1078. "_parent": {
  1079. "$ref": "AAAAAAFTQcqp8q6ogBU="
  1080. },
  1081. "model": {
  1082. "$ref": "AAAAAAFTQcqp8K6m4wQ="
  1083. },
  1084. "visible": false,
  1085. "font": "Arial;13;0",
  1086. "left": 423,
  1087. "top": 352,
  1088. "height": 13,
  1089. "alpha": -0.5235987755982988,
  1090. "distance": 30,
  1091. "hostEdge": {
  1092. "$ref": "AAAAAAFTQcqp8q6ogBU="
  1093. }
  1094. },
  1095. {
  1096. "_type": "EdgeLabelView",
  1097. "_id": "AAAAAAFTQcqp866w1TA=",
  1098. "_parent": {
  1099. "$ref": "AAAAAAFTQcqp8q6ogBU="
  1100. },
  1101. "model": {
  1102. "$ref": "AAAAAAFTQcqp8K6m4wQ="
  1103. },
  1104. "visible": false,
  1105. "font": "Arial;13;0",
  1106. "left": 426,
  1107. "top": 366,
  1108. "height": 13,
  1109. "alpha": -0.7853981633974483,
  1110. "distance": 40,
  1111. "hostEdge": {
  1112. "$ref": "AAAAAAFTQcqp8q6ogBU="
  1113. }
  1114. },
  1115. {
  1116. "_type": "EdgeLabelView",
  1117. "_id": "AAAAAAFTQcqp866xGdI=",
  1118. "_parent": {
  1119. "$ref": "AAAAAAFTQcqp8q6ogBU="
  1120. },
  1121. "model": {
  1122. "$ref": "AAAAAAFTQcqp8K6m4wQ="
  1123. },
  1124. "font": "Arial;13;0",
  1125. "left": 416,
  1126. "top": 325,
  1127. "width": 7.22998046875,
  1128. "height": 13,
  1129. "alpha": 0.5235987755982988,
  1130. "distance": 25,
  1131. "hostEdge": {
  1132. "$ref": "AAAAAAFTQcqp8q6ogBU="
  1133. },
  1134. "text": "1"
  1135. },
  1136. {
  1137. "_type": "UMLQualifierCompartmentView",
  1138. "_id": "AAAAAAFTQcqp9K6yQgM=",
  1139. "_parent": {
  1140. "$ref": "AAAAAAFTQcqp8q6ogBU="
  1141. },
  1142. "model": {
  1143. "$ref": "AAAAAAFTQcqp8K6lXOI="
  1144. },
  1145. "visible": false,
  1146. "font": "Arial;13;0",
  1147. "left": -32,
  1148. "width": 10,
  1149. "height": 10
  1150. },
  1151. {
  1152. "_type": "UMLQualifierCompartmentView",
  1153. "_id": "AAAAAAFTQcqp9K6z31Y=",
  1154. "_parent": {
  1155. "$ref": "AAAAAAFTQcqp8q6ogBU="
  1156. },
  1157. "model": {
  1158. "$ref": "AAAAAAFTQcqp8K6m4wQ="
  1159. },
  1160. "visible": false,
  1161. "font": "Arial;13;0",
  1162. "left": -32,
  1163. "width": 10,
  1164. "height": 10
  1165. }
  1166. ],
  1167. "font": "Arial;13;0",
  1168. "head": {
  1169. "$ref": "AAAAAAFTQcZ2PK0J0m8="
  1170. },
  1171. "tail": {
  1172. "$ref": "AAAAAAFTQcfW2a41+cc="
  1173. },
  1174. "points": "496:344;398:344",
  1175. "showVisibility": true,
  1176. "nameLabel": {
  1177. "$ref": "AAAAAAFTQcqp866paz4="
  1178. },
  1179. "stereotypeLabel": {
  1180. "$ref": "AAAAAAFTQcqp866q+DQ="
  1181. },
  1182. "propertyLabel": {
  1183. "$ref": "AAAAAAFTQcqp866rlZo="
  1184. },
  1185. "tailRoleNameLabel": {
  1186. "$ref": "AAAAAAFTQcqp866sqo4="
  1187. },
  1188. "tailPropertyLabel": {
  1189. "$ref": "AAAAAAFTQcqp866tK4Q="
  1190. },
  1191. "tailMultiplicityLabel": {
  1192. "$ref": "AAAAAAFTQcqp866uSJI="
  1193. },
  1194. "headRoleNameLabel": {
  1195. "$ref": "AAAAAAFTQcqp866vCXQ="
  1196. },
  1197. "headPropertyLabel": {
  1198. "$ref": "AAAAAAFTQcqp866w1TA="
  1199. },
  1200. "headMultiplicityLabel": {
  1201. "$ref": "AAAAAAFTQcqp866xGdI="
  1202. },
  1203. "tailQualifiersCompartment": {
  1204. "$ref": "AAAAAAFTQcqp9K6yQgM="
  1205. },
  1206. "headQualifiersCompartment": {
  1207. "$ref": "AAAAAAFTQcqp9K6z31Y="
  1208. }
  1209. },
  1210. {
  1211. "_type": "UMLInterfaceView",
  1212. "_id": "AAAAAAFTQc6+R7Gvjn8=",
  1213. "_parent": {
  1214. "$ref": "AAAAAAFF+qBtyKM79qY="
  1215. },
  1216. "model": {
  1217. "$ref": "AAAAAAFTQcG+a6v+1oM="
  1218. },
  1219. "subViews": [
  1220. {
  1221. "_type": "UMLNameCompartmentView",
  1222. "_id": "AAAAAAFTQc6+R7GwODo=",
  1223. "_parent": {
  1224. "$ref": "AAAAAAFTQc6+R7Gvjn8="
  1225. },
  1226. "model": {
  1227. "$ref": "AAAAAAFTQcG+a6v+1oM="
  1228. },
  1229. "subViews": [
  1230. {
  1231. "_type": "LabelView",
  1232. "_id": "AAAAAAFTQc6+R7Gxi7U=",
  1233. "_parent": {
  1234. "$ref": "AAAAAAFTQc6+R7GwODo="
  1235. },
  1236. "fillColor": "#c6c6c6",
  1237. "font": "Arial;13;0",
  1238. "left": 877,
  1239. "top": 357,
  1240. "width": 352.6376953125,
  1241. "height": 13,
  1242. "text": "«interface»"
  1243. },
  1244. {
  1245. "_type": "LabelView",
  1246. "_id": "AAAAAAFTQc6+SLGyMkI=",
  1247. "_parent": {
  1248. "$ref": "AAAAAAFTQc6+R7GwODo="
  1249. },
  1250. "fillColor": "#c6c6c6",
  1251. "font": "Arial;13;1",
  1252. "left": 877,
  1253. "top": 372,
  1254. "width": 352.6376953125,
  1255. "height": 13,
  1256. "text": "DDLogFormatter"
  1257. },
  1258. {
  1259. "_type": "LabelView",
  1260. "_id": "AAAAAAFTQc6+SLGzf/Y=",
  1261. "_parent": {
  1262. "$ref": "AAAAAAFTQc6+R7GwODo="
  1263. },
  1264. "fillColor": "#c6c6c6",
  1265. "font": "Arial;13;0",
  1266. "left": 877,
  1267. "top": 387,
  1268. "width": 352.6376953125,
  1269. "height": 13,
  1270. "text": "(from CocoaLumberjack)"
  1271. },
  1272. {
  1273. "_type": "LabelView",
  1274. "_id": "AAAAAAFTQc6+SLG0xDk=",
  1275. "_parent": {
  1276. "$ref": "AAAAAAFTQc6+R7GwODo="
  1277. },
  1278. "visible": false,
  1279. "fillColor": "#c6c6c6",
  1280. "font": "Arial;13;0",
  1281. "left": 102,
  1282. "top": 56,
  1283. "height": 13,
  1284. "horizontalAlignment": 1
  1285. }
  1286. ],
  1287. "fillColor": "#c6c6c6",
  1288. "font": "Arial;13;0",
  1289. "left": 872,
  1290. "top": 352,
  1291. "width": 362.6376953125,
  1292. "height": 53,
  1293. "stereotypeLabel": {
  1294. "$ref": "AAAAAAFTQc6+R7Gxi7U="
  1295. },
  1296. "nameLabel": {
  1297. "$ref": "AAAAAAFTQc6+SLGyMkI="
  1298. },
  1299. "namespaceLabel": {
  1300. "$ref": "AAAAAAFTQc6+SLGzf/Y="
  1301. },
  1302. "propertyLabel": {
  1303. "$ref": "AAAAAAFTQc6+SLG0xDk="
  1304. }
  1305. },
  1306. {
  1307. "_type": "UMLAttributeCompartmentView",
  1308. "_id": "AAAAAAFTQc6+SLG1TEY=",
  1309. "_parent": {
  1310. "$ref": "AAAAAAFTQc6+R7Gvjn8="
  1311. },
  1312. "model": {
  1313. "$ref": "AAAAAAFTQcG+a6v+1oM="
  1314. },
  1315. "fillColor": "#c6c6c6",
  1316. "font": "Arial;13;0",
  1317. "left": 872,
  1318. "top": 405,
  1319. "width": 362.6376953125,
  1320. "height": 10
  1321. },
  1322. {
  1323. "_type": "UMLOperationCompartmentView",
  1324. "_id": "AAAAAAFTQc6+SLG2hzw=",
  1325. "_parent": {
  1326. "$ref": "AAAAAAFTQc6+R7Gvjn8="
  1327. },
  1328. "model": {
  1329. "$ref": "AAAAAAFTQcG+a6v+1oM="
  1330. },
  1331. "subViews": [
  1332. {
  1333. "_type": "UMLOperationView",
  1334. "_id": "AAAAAAFTQc6+WbHYP7A=",
  1335. "_parent": {
  1336. "$ref": "AAAAAAFTQc6+SLG2hzw="
  1337. },
  1338. "model": {
  1339. "$ref": "AAAAAAFTQcIlpawppWo="
  1340. },
  1341. "fillColor": "#c6c6c6",
  1342. "font": "Arial;13;0",
  1343. "left": 877,
  1344. "top": 420,
  1345. "width": 352.6376953125,
  1346. "height": 13,
  1347. "text": "+formatLogMessage(logMessage: DDLogMessage): String",
  1348. "horizontalAlignment": 0
  1349. },
  1350. {
  1351. "_type": "UMLOperationView",
  1352. "_id": "AAAAAAFTQdBHA7Shwqg=",
  1353. "_parent": {
  1354. "$ref": "AAAAAAFTQc6+SLG2hzw="
  1355. },
  1356. "model": {
  1357. "$ref": "AAAAAAFTQdBG4rSb4DA="
  1358. },
  1359. "fillColor": "#c6c6c6",
  1360. "font": "Arial;13;0",
  1361. "left": 877,
  1362. "top": 435,
  1363. "width": 352.6376953125,
  1364. "height": 13,
  1365. "text": "+didAddToLogger()",
  1366. "horizontalAlignment": 0
  1367. },
  1368. {
  1369. "_type": "UMLOperationView",
  1370. "_id": "AAAAAAFTQdBx9rTwgRE=",
  1371. "_parent": {
  1372. "$ref": "AAAAAAFTQc6+SLG2hzw="
  1373. },
  1374. "model": {
  1375. "$ref": "AAAAAAFTQdBx5bTqGpU="
  1376. },
  1377. "fillColor": "#c6c6c6",
  1378. "font": "Arial;13;0",
  1379. "left": 877,
  1380. "top": 450,
  1381. "width": 352.6376953125,
  1382. "height": 13,
  1383. "text": "+willRemoveFromLogger()",
  1384. "horizontalAlignment": 0
  1385. }
  1386. ],
  1387. "fillColor": "#c6c6c6",
  1388. "font": "Arial;13;0",
  1389. "left": 872,
  1390. "top": 415,
  1391. "width": 362.6376953125,
  1392. "height": 53
  1393. },
  1394. {
  1395. "_type": "UMLReceptionCompartmentView",
  1396. "_id": "AAAAAAFTQc6+SbG39wA=",
  1397. "_parent": {
  1398. "$ref": "AAAAAAFTQc6+R7Gvjn8="
  1399. },
  1400. "model": {
  1401. "$ref": "AAAAAAFTQcG+a6v+1oM="
  1402. },
  1403. "visible": false,
  1404. "fillColor": "#c6c6c6",
  1405. "font": "Arial;13;0",
  1406. "left": 51,
  1407. "top": 20,
  1408. "width": 10,
  1409. "height": 10
  1410. },
  1411. {
  1412. "_type": "UMLTemplateParameterCompartmentView",
  1413. "_id": "AAAAAAFTQc6+SbG4vLQ=",
  1414. "_parent": {
  1415. "$ref": "AAAAAAFTQc6+R7Gvjn8="
  1416. },
  1417. "model": {
  1418. "$ref": "AAAAAAFTQcG+a6v+1oM="
  1419. },
  1420. "visible": false,
  1421. "fillColor": "#c6c6c6",
  1422. "font": "Arial;13;0",
  1423. "left": 51,
  1424. "top": 20,
  1425. "width": 10,
  1426. "height": 10
  1427. }
  1428. ],
  1429. "fillColor": "#c6c6c6",
  1430. "font": "Arial;13;0",
  1431. "containerChangeable": true,
  1432. "left": 872,
  1433. "top": 352,
  1434. "width": 362.6376953125,
  1435. "height": 116,
  1436. "showNamespace": true,
  1437. "nameCompartment": {
  1438. "$ref": "AAAAAAFTQc6+R7GwODo="
  1439. },
  1440. "attributeCompartment": {
  1441. "$ref": "AAAAAAFTQc6+SLG1TEY="
  1442. },
  1443. "operationCompartment": {
  1444. "$ref": "AAAAAAFTQc6+SLG2hzw="
  1445. },
  1446. "receptionCompartment": {
  1447. "$ref": "AAAAAAFTQc6+SbG39wA="
  1448. },
  1449. "templateParameterCompartment": {
  1450. "$ref": "AAAAAAFTQc6+SbG4vLQ="
  1451. }
  1452. },
  1453. {
  1454. "_type": "UMLAssociationView",
  1455. "_id": "AAAAAAFTQc8ymbIq1dw=",
  1456. "_parent": {
  1457. "$ref": "AAAAAAFF+qBtyKM79qY="
  1458. },
  1459. "model": {
  1460. "$ref": "AAAAAAFTQc8yl7ImwsE="
  1461. },
  1462. "subViews": [
  1463. {
  1464. "_type": "EdgeLabelView",
  1465. "_id": "AAAAAAFTQc8ymbIrEZA=",
  1466. "_parent": {
  1467. "$ref": "AAAAAAFTQc8ymbIq1dw="
  1468. },
  1469. "model": {
  1470. "$ref": "AAAAAAFTQc8yl7ImwsE="
  1471. },
  1472. "font": "Arial;13;0",
  1473. "left": 768,
  1474. "top": 393,
  1475. "width": 85.65692138671875,
  1476. "height": 13,
  1477. "alpha": 1.5707963267948966,
  1478. "distance": 15,
  1479. "hostEdge": {
  1480. "$ref": "AAAAAAFTQc8ymbIq1dw="
  1481. },
  1482. "edgePosition": 1,
  1483. "text": "+logFormatter"
  1484. },
  1485. {
  1486. "_type": "EdgeLabelView",
  1487. "_id": "AAAAAAFTQc8ymbIs0zE=",
  1488. "_parent": {
  1489. "$ref": "AAAAAAFTQc8ymbIq1dw="
  1490. },
  1491. "model": {
  1492. "$ref": "AAAAAAFTQc8yl7ImwsE="
  1493. },
  1494. "visible": null,
  1495. "font": "Arial;13;0",
  1496. "left": 810,
  1497. "top": 408,
  1498. "height": 13,
  1499. "alpha": 1.5707963267948966,
  1500. "distance": 30,
  1501. "hostEdge": {
  1502. "$ref": "AAAAAAFTQc8ymbIq1dw="
  1503. },
  1504. "edgePosition": 1
  1505. },
  1506. {
  1507. "_type": "EdgeLabelView",
  1508. "_id": "AAAAAAFTQc8ymrItoXY=",
  1509. "_parent": {
  1510. "$ref": "AAAAAAFTQc8ymbIq1dw="
  1511. },
  1512. "model": {
  1513. "$ref": "AAAAAAFTQc8yl7ImwsE="
  1514. },
  1515. "visible": false,
  1516. "font": "Arial;13;0",
  1517. "left": 811,
  1518. "top": 363,
  1519. "height": 13,
  1520. "alpha": -1.5707963267948966,
  1521. "distance": 15,
  1522. "hostEdge": {
  1523. "$ref": "AAAAAAFTQc8ymbIq1dw="
  1524. },
  1525. "edgePosition": 1
  1526. },
  1527. {
  1528. "_type": "EdgeLabelView",
  1529. "_id": "AAAAAAFTQc8ymrIuIpg=",
  1530. "_parent": {
  1531. "$ref": "AAAAAAFTQc8ymbIq1dw="
  1532. },
  1533. "model": {
  1534. "$ref": "AAAAAAFTQc8yl7InemA="
  1535. },
  1536. "visible": false,
  1537. "font": "Arial;13;0",
  1538. "left": 839,
  1539. "top": 392,
  1540. "width": 15.131988525390625,
  1541. "height": 13,
  1542. "alpha": 0.5235987755982988,
  1543. "distance": 30,
  1544. "hostEdge": {
  1545. "$ref": "AAAAAAFTQc8ymbIq1dw="
  1546. },
  1547. "edgePosition": 2,
  1548. "text": "+a"
  1549. },
  1550. {
  1551. "_type": "EdgeLabelView",
  1552. "_id": "AAAAAAFTQc8ymrIvcJ0=",
  1553. "_parent": {
  1554. "$ref": "AAAAAAFTQc8ymbIq1dw="
  1555. },
  1556. "model": {
  1557. "$ref": "AAAAAAFTQc8yl7InemA="
  1558. },
  1559. "visible": false,
  1560. "font": "Arial;13;0",
  1561. "left": 843,
  1562. "top": 406,
  1563. "height": 13,
  1564. "alpha": 0.7853981633974483,
  1565. "distance": 40,
  1566. "hostEdge": {
  1567. "$ref": "AAAAAAFTQc8ymbIq1dw="
  1568. },
  1569. "edgePosition": 2
  1570. },
  1571. {
  1572. "_type": "EdgeLabelView",
  1573. "_id": "AAAAAAFTQc8ymrIwQCI=",
  1574. "_parent": {
  1575. "$ref": "AAAAAAFTQc8ymbIq1dw="
  1576. },
  1577. "model": {
  1578. "$ref": "AAAAAAFTQc8yl7InemA="
  1579. },
  1580. "font": "Arial;13;0",
  1581. "left": 839,
  1582. "top": 365,
  1583. "width": 22,
  1584. "height": 13,
  1585. "alpha": -0.5235987755982988,
  1586. "distance": 25,
  1587. "hostEdge": {
  1588. "$ref": "AAAAAAFTQc8ymbIq1dw="
  1589. },
  1590. "edgePosition": 2,
  1591. "text": "0..1"
  1592. },
  1593. {
  1594. "_type": "EdgeLabelView",
  1595. "_id": "AAAAAAFTQc8ymrIx2kg=",
  1596. "_parent": {
  1597. "$ref": "AAAAAAFTQc8ymbIq1dw="
  1598. },
  1599. "model": {
  1600. "$ref": "AAAAAAFTQc8yl7IoNK0="
  1601. },
  1602. "visible": false,
  1603. "font": "Arial;13;0",
  1604. "left": 776,
  1605. "top": 392,
  1606. "height": 13,
  1607. "alpha": -0.5235987755982988,
  1608. "distance": 30,
  1609. "hostEdge": {
  1610. "$ref": "AAAAAAFTQc8ymbIq1dw="
  1611. }
  1612. },
  1613. {
  1614. "_type": "EdgeLabelView",
  1615. "_id": "AAAAAAFTQc8ymrIyvyk=",
  1616. "_parent": {
  1617. "$ref": "AAAAAAFTQc8ymbIq1dw="
  1618. },
  1619. "model": {
  1620. "$ref": "AAAAAAFTQc8yl7IoNK0="
  1621. },
  1622. "visible": false,
  1623. "font": "Arial;13;0",
  1624. "left": 779,
  1625. "top": 406,
  1626. "height": 13,
  1627. "alpha": -0.7853981633974483,
  1628. "distance": 40,
  1629. "hostEdge": {
  1630. "$ref": "AAAAAAFTQc8ymbIq1dw="
  1631. }
  1632. },
  1633. {
  1634. "_type": "EdgeLabelView",
  1635. "_id": "AAAAAAFTQc8ymrIzCmU=",
  1636. "_parent": {
  1637. "$ref": "AAAAAAFTQc8ymbIq1dw="
  1638. },
  1639. "model": {
  1640. "$ref": "AAAAAAFTQc8yl7IoNK0="
  1641. },
  1642. "font": "Arial;13;0",
  1643. "left": 761,
  1644. "top": 365,
  1645. "width": 22,
  1646. "height": 13,
  1647. "alpha": 0.5235987755982988,
  1648. "distance": 25,
  1649. "hostEdge": {
  1650. "$ref": "AAAAAAFTQc8ymbIq1dw="
  1651. },
  1652. "text": "0..1"
  1653. },
  1654. {
  1655. "_type": "UMLQualifierCompartmentView",
  1656. "_id": "AAAAAAFTQc8ymrI0KJI=",
  1657. "_parent": {
  1658. "$ref": "AAAAAAFTQc8ymbIq1dw="
  1659. },
  1660. "model": {
  1661. "$ref": "AAAAAAFTQc8yl7InemA="
  1662. },
  1663. "visible": false,
  1664. "font": "Arial;13;0",
  1665. "width": 10,
  1666. "height": 10
  1667. },
  1668. {
  1669. "_type": "UMLQualifierCompartmentView",
  1670. "_id": "AAAAAAFTQc8ymrI14Dg=",
  1671. "_parent": {
  1672. "$ref": "AAAAAAFTQc8ymbIq1dw="
  1673. },
  1674. "model": {
  1675. "$ref": "AAAAAAFTQc8yl7IoNK0="
  1676. },
  1677. "visible": false,
  1678. "font": "Arial;13;0",
  1679. "width": 10,
  1680. "height": 10
  1681. }
  1682. ],
  1683. "font": "Arial;13;0",
  1684. "head": {
  1685. "$ref": "AAAAAAFTQcfW2a41+cc="
  1686. },
  1687. "tail": {
  1688. "$ref": "AAAAAAFTQc6+R7Gvjn8="
  1689. },
  1690. "points": "872:384;751:384",
  1691. "showVisibility": true,
  1692. "nameLabel": {
  1693. "$ref": "AAAAAAFTQc8ymbIrEZA="
  1694. },
  1695. "stereotypeLabel": {
  1696. "$ref": "AAAAAAFTQc8ymbIs0zE="
  1697. },
  1698. "propertyLabel": {
  1699. "$ref": "AAAAAAFTQc8ymrItoXY="
  1700. },
  1701. "tailRoleNameLabel": {
  1702. "$ref": "AAAAAAFTQc8ymrIuIpg="
  1703. },
  1704. "tailPropertyLabel": {
  1705. "$ref": "AAAAAAFTQc8ymrIvcJ0="
  1706. },
  1707. "tailMultiplicityLabel": {
  1708. "$ref": "AAAAAAFTQc8ymrIwQCI="
  1709. },
  1710. "headRoleNameLabel": {
  1711. "$ref": "AAAAAAFTQc8ymrIx2kg="
  1712. },
  1713. "headPropertyLabel": {
  1714. "$ref": "AAAAAAFTQc8ymrIyvyk="
  1715. },
  1716. "headMultiplicityLabel": {
  1717. "$ref": "AAAAAAFTQc8ymrIzCmU="
  1718. },
  1719. "tailQualifiersCompartment": {
  1720. "$ref": "AAAAAAFTQc8ymrI0KJI="
  1721. },
  1722. "headQualifiersCompartment": {
  1723. "$ref": "AAAAAAFTQc8ymrI14Dg="
  1724. }
  1725. },
  1726. {
  1727. "_type": "UMLClassView",
  1728. "_id": "AAAAAAFTQdU8E7gnfX0=",
  1729. "_parent": {
  1730. "$ref": "AAAAAAFF+qBtyKM79qY="
  1731. },
  1732. "model": {
  1733. "$ref": "AAAAAAFTQcVwIKyu1No="
  1734. },
  1735. "subViews": [
  1736. {
  1737. "_type": "UMLNameCompartmentView",
  1738. "_id": "AAAAAAFTQdU8FLgoYo4=",
  1739. "_parent": {
  1740. "$ref": "AAAAAAFTQdU8E7gnfX0="
  1741. },
  1742. "model": {
  1743. "$ref": "AAAAAAFTQcVwIKyu1No="
  1744. },
  1745. "subViews": [
  1746. {
  1747. "_type": "LabelView",
  1748. "_id": "AAAAAAFTQdU8FLgp3Ms=",
  1749. "_parent": {
  1750. "$ref": "AAAAAAFTQdU8FLgoYo4="
  1751. },
  1752. "visible": false,
  1753. "fillColor": "#c6c6c6",
  1754. "font": "Arial;13;0",
  1755. "left": -320,
  1756. "top": -554,
  1757. "height": 13
  1758. },
  1759. {
  1760. "_type": "LabelView",
  1761. "_id": "AAAAAAFTQdU8FLgqEWU=",
  1762. "_parent": {
  1763. "$ref": "AAAAAAFTQdU8FLgoYo4="
  1764. },
  1765. "fillColor": "#c6c6c6",
  1766. "font": "Arial;13;1",
  1767. "left": 181,
  1768. "top": 439,
  1769. "width": 215,
  1770. "height": 13,
  1771. "text": "DDLogMessage"
  1772. },
  1773. {
  1774. "_type": "LabelView",
  1775. "_id": "AAAAAAFTQdU8FLgr19U=",
  1776. "_parent": {
  1777. "$ref": "AAAAAAFTQdU8FLgoYo4="
  1778. },
  1779. "fillColor": "#c6c6c6",
  1780. "font": "Arial;13;0",
  1781. "left": 181,
  1782. "top": 454,
  1783. "width": 215,
  1784. "height": 13,
  1785. "text": "(from CocoaLumberjack)"
  1786. },
  1787. {
  1788. "_type": "LabelView",
  1789. "_id": "AAAAAAFTQdU8FLgs344=",
  1790. "_parent": {
  1791. "$ref": "AAAAAAFTQdU8FLgoYo4="
  1792. },
  1793. "visible": false,
  1794. "fillColor": "#c6c6c6",
  1795. "font": "Arial;13;0",
  1796. "left": -320,
  1797. "top": -554,
  1798. "height": 13,
  1799. "horizontalAlignment": 1
  1800. }
  1801. ],
  1802. "fillColor": "#c6c6c6",
  1803. "font": "Arial;13;0",
  1804. "left": 176,
  1805. "top": 432,
  1806. "width": 225,
  1807. "height": 40,
  1808. "stereotypeLabel": {
  1809. "$ref": "AAAAAAFTQdU8FLgp3Ms="
  1810. },
  1811. "nameLabel": {
  1812. "$ref": "AAAAAAFTQdU8FLgqEWU="
  1813. },
  1814. "namespaceLabel": {
  1815. "$ref": "AAAAAAFTQdU8FLgr19U="
  1816. },
  1817. "propertyLabel": {
  1818. "$ref": "AAAAAAFTQdU8FLgs344="
  1819. }
  1820. },
  1821. {
  1822. "_type": "UMLAttributeCompartmentView",
  1823. "_id": "AAAAAAFTQdU8FbgtUvs=",
  1824. "_parent": {
  1825. "$ref": "AAAAAAFTQdU8E7gnfX0="
  1826. },
  1827. "model": {
  1828. "$ref": "AAAAAAFTQcVwIKyu1No="
  1829. },
  1830. "subViews": [
  1831. {
  1832. "_type": "UMLAttributeView",
  1833. "_id": "AAAAAAFTQdV9pril1cU=",
  1834. "_parent": {
  1835. "$ref": "AAAAAAFTQdU8FbgtUvs="
  1836. },
  1837. "model": {
  1838. "$ref": "AAAAAAFTQdV9jbicNCQ="
  1839. },
  1840. "fillColor": "#c6c6c6",
  1841. "font": "Arial;13;0",
  1842. "left": 181,
  1843. "top": 477,
  1844. "width": 215,
  1845. "height": 13,
  1846. "text": "+message: String",
  1847. "horizontalAlignment": 0
  1848. },
  1849. {
  1850. "_type": "UMLAttributeView",
  1851. "_id": "AAAAAAFTQdXC+7kNjKE=",
  1852. "_parent": {
  1853. "$ref": "AAAAAAFTQdU8FbgtUvs="
  1854. },
  1855. "model": {
  1856. "$ref": "AAAAAAFTQdXC57kEgKE="
  1857. },
  1858. "fillColor": "#c6c6c6",
  1859. "font": "Arial;13;0",
  1860. "left": 181,
  1861. "top": 492,
  1862. "width": 215,
  1863. "height": 13,
  1864. "text": "+level: DDLogLevel",
  1865. "horizontalAlignment": 0
  1866. },
  1867. {
  1868. "_type": "UMLAttributeView",
  1869. "_id": "AAAAAAFTQdYkBrl14z8=",
  1870. "_parent": {
  1871. "$ref": "AAAAAAFTQdU8FbgtUvs="
  1872. },
  1873. "model": {
  1874. "$ref": "AAAAAAFTQdYj8LlsCYQ="
  1875. },
  1876. "fillColor": "#c6c6c6",
  1877. "font": "Arial;13;0",
  1878. "left": 181,
  1879. "top": 507,
  1880. "width": 215,
  1881. "height": 13,
  1882. "text": "+flag: DDLogFlag",
  1883. "horizontalAlignment": 0
  1884. },
  1885. {
  1886. "_type": "UMLAttributeView",
  1887. "_id": "AAAAAAFTQdZjabndz5U=",
  1888. "_parent": {
  1889. "$ref": "AAAAAAFTQdU8FbgtUvs="
  1890. },
  1891. "model": {
  1892. "$ref": "AAAAAAFTQdZjWLnUYu4="
  1893. },
  1894. "fillColor": "#c6c6c6",
  1895. "font": "Arial;13;0",
  1896. "left": 181,
  1897. "top": 522,
  1898. "width": 215,
  1899. "height": 13,
  1900. "text": "+context: Int",
  1901. "horizontalAlignment": 0
  1902. },
  1903. {
  1904. "_type": "UMLAttributeView",
  1905. "_id": "AAAAAAFTQdaKtLpF5Lo=",
  1906. "_parent": {
  1907. "$ref": "AAAAAAFTQdU8FbgtUvs="
  1908. },
  1909. "model": {
  1910. "$ref": "AAAAAAFTQdaKoro8pXc="
  1911. },
  1912. "fillColor": "#c6c6c6",
  1913. "font": "Arial;13;0",
  1914. "left": 181,
  1915. "top": 537,
  1916. "width": 215,
  1917. "height": 13,
  1918. "text": "+file: String",
  1919. "horizontalAlignment": 0
  1920. },
  1921. {
  1922. "_type": "UMLAttributeView",
  1923. "_id": "AAAAAAF3YhDBit0kXlg=",
  1924. "_parent": {
  1925. "$ref": "AAAAAAFTQdU8FbgtUvs="
  1926. },
  1927. "model": {
  1928. "$ref": "AAAAAAF3YhDBdd0bD5Q="
  1929. },
  1930. "fillColor": "#c6c6c6",
  1931. "font": "Arial;13;0",
  1932. "left": 181,
  1933. "top": 552,
  1934. "width": 215,
  1935. "height": 13,
  1936. "text": "+fileName: String",
  1937. "horizontalAlignment": 0
  1938. },
  1939. {
  1940. "_type": "UMLAttributeView",
  1941. "_id": "AAAAAAFTQda90bqt0+4=",
  1942. "_parent": {
  1943. "$ref": "AAAAAAFTQdU8FbgtUvs="
  1944. },
  1945. "model": {
  1946. "$ref": "AAAAAAFTQda9vrqkaOQ="
  1947. },
  1948. "fillColor": "#c6c6c6",
  1949. "font": "Arial;13;0",
  1950. "left": 181,
  1951. "top": 567,
  1952. "width": 215,
  1953. "height": 13,
  1954. "text": "+function: String",
  1955. "horizontalAlignment": 0
  1956. },
  1957. {
  1958. "_type": "UMLAttributeView",
  1959. "_id": "AAAAAAFTQdb1PbsV8nU=",
  1960. "_parent": {
  1961. "$ref": "AAAAAAFTQdU8FbgtUvs="
  1962. },
  1963. "model": {
  1964. "$ref": "AAAAAAFTQdb1KbsMFu4="
  1965. },
  1966. "fillColor": "#c6c6c6",
  1967. "font": "Arial;13;0",
  1968. "left": 181,
  1969. "top": 582,
  1970. "width": 215,
  1971. "height": 13,
  1972. "text": "+line: Int",
  1973. "horizontalAlignment": 0
  1974. },
  1975. {
  1976. "_type": "UMLAttributeView",
  1977. "_id": "AAAAAAFTQdc1MLt9X5k=",
  1978. "_parent": {
  1979. "$ref": "AAAAAAFTQdU8FbgtUvs="
  1980. },
  1981. "model": {
  1982. "$ref": "AAAAAAFTQdc1Grt0EBk="
  1983. },
  1984. "fillColor": "#c6c6c6",
  1985. "font": "Arial;13;0",
  1986. "left": 181,
  1987. "top": 597,
  1988. "width": 215,
  1989. "height": 13,
  1990. "text": "+tag",
  1991. "horizontalAlignment": 0
  1992. },
  1993. {
  1994. "_type": "UMLAttributeView",
  1995. "_id": "AAAAAAFTQddQm7veaGg=",
  1996. "_parent": {
  1997. "$ref": "AAAAAAFTQdU8FbgtUvs="
  1998. },
  1999. "model": {
  2000. "$ref": "AAAAAAFTQddQhrvV9wQ="
  2001. },
  2002. "fillColor": "#c6c6c6",
  2003. "font": "Arial;13;0",
  2004. "left": 181,
  2005. "top": 612,
  2006. "width": 215,
  2007. "height": 13,
  2008. "text": "+options: DDLogMessageOptions",
  2009. "horizontalAlignment": 0
  2010. },
  2011. {
  2012. "_type": "UMLAttributeView",
  2013. "_id": "AAAAAAFTQdiDz7xSXyk=",
  2014. "_parent": {
  2015. "$ref": "AAAAAAFTQdU8FbgtUvs="
  2016. },
  2017. "model": {
  2018. "$ref": "AAAAAAFTQdiDtrxJGDY="
  2019. },
  2020. "fillColor": "#c6c6c6",
  2021. "font": "Arial;13;0",
  2022. "left": 181,
  2023. "top": 627,
  2024. "width": 215,
  2025. "height": 13,
  2026. "text": "+timestamp: Date",
  2027. "horizontalAlignment": 0
  2028. },
  2029. {
  2030. "_type": "UMLAttributeView",
  2031. "_id": "AAAAAAFTQdivk7y6OeI=",
  2032. "_parent": {
  2033. "$ref": "AAAAAAFTQdU8FbgtUvs="
  2034. },
  2035. "model": {
  2036. "$ref": "AAAAAAFTQdiveryxWHw="
  2037. },
  2038. "fillColor": "#c6c6c6",
  2039. "font": "Arial;13;0",
  2040. "left": 181,
  2041. "top": 642,
  2042. "width": 215,
  2043. "height": 13,
  2044. "text": "+threadID: String",
  2045. "horizontalAlignment": 0
  2046. },
  2047. {
  2048. "_type": "UMLAttributeView",
  2049. "_id": "AAAAAAFTQdjk0r0ih2c=",
  2050. "_parent": {
  2051. "$ref": "AAAAAAFTQdU8FbgtUvs="
  2052. },
  2053. "model": {
  2054. "$ref": "AAAAAAFTQdjkvL0ZfwQ="
  2055. },
  2056. "fillColor": "#c6c6c6",
  2057. "font": "Arial;13;0",
  2058. "left": 181,
  2059. "top": 657,
  2060. "width": 215,
  2061. "height": 13,
  2062. "text": "+threadName: String",
  2063. "horizontalAlignment": 0
  2064. },
  2065. {
  2066. "_type": "UMLAttributeView",
  2067. "_id": "AAAAAAFTQdkKhr2KTCM=",
  2068. "_parent": {
  2069. "$ref": "AAAAAAFTQdU8FbgtUvs="
  2070. },
  2071. "model": {
  2072. "$ref": "AAAAAAFTQdkKcL2BSyI="
  2073. },
  2074. "fillColor": "#c6c6c6",
  2075. "font": "Arial;13;0",
  2076. "left": 181,
  2077. "top": 672,
  2078. "width": 215,
  2079. "height": 13,
  2080. "text": "+queueLabel: String",
  2081. "horizontalAlignment": 0
  2082. }
  2083. ],
  2084. "fillColor": "#c6c6c6",
  2085. "font": "Arial;13;0",
  2086. "left": 176,
  2087. "top": 472,
  2088. "width": 225,
  2089. "height": 218
  2090. },
  2091. {
  2092. "_type": "UMLOperationCompartmentView",
  2093. "_id": "AAAAAAFTQdU8FbguTHA=",
  2094. "_parent": {
  2095. "$ref": "AAAAAAFTQdU8E7gnfX0="
  2096. },
  2097. "model": {
  2098. "$ref": "AAAAAAFTQcVwIKyu1No="
  2099. },
  2100. "fillColor": "#c6c6c6",
  2101. "font": "Arial;13;0",
  2102. "left": 176,
  2103. "top": 690,
  2104. "width": 225,
  2105. "height": 10
  2106. },
  2107. {
  2108. "_type": "UMLReceptionCompartmentView",
  2109. "_id": "AAAAAAFTQdU8FbgvHZM=",
  2110. "_parent": {
  2111. "$ref": "AAAAAAFTQdU8E7gnfX0="
  2112. },
  2113. "model": {
  2114. "$ref": "AAAAAAFTQcVwIKyu1No="
  2115. },
  2116. "visible": false,
  2117. "fillColor": "#c6c6c6",
  2118. "font": "Arial;13;0",
  2119. "left": -160,
  2120. "top": -285,
  2121. "width": 10,
  2122. "height": 10
  2123. },
  2124. {
  2125. "_type": "UMLTemplateParameterCompartmentView",
  2126. "_id": "AAAAAAFTQdU8FrgwDwM=",
  2127. "_parent": {
  2128. "$ref": "AAAAAAFTQdU8E7gnfX0="
  2129. },
  2130. "model": {
  2131. "$ref": "AAAAAAFTQcVwIKyu1No="
  2132. },
  2133. "visible": false,
  2134. "fillColor": "#c6c6c6",
  2135. "font": "Arial;13;0",
  2136. "left": 279.08349609375,
  2137. "top": 432,
  2138. "width": 130.6689453125,
  2139. "height": 10
  2140. }
  2141. ],
  2142. "fillColor": "#c6c6c6",
  2143. "font": "Arial;13;0",
  2144. "containerChangeable": true,
  2145. "left": 176,
  2146. "top": 432,
  2147. "width": 225,
  2148. "height": 271,
  2149. "showNamespace": true,
  2150. "nameCompartment": {
  2151. "$ref": "AAAAAAFTQdU8FLgoYo4="
  2152. },
  2153. "attributeCompartment": {
  2154. "$ref": "AAAAAAFTQdU8FbgtUvs="
  2155. },
  2156. "operationCompartment": {
  2157. "$ref": "AAAAAAFTQdU8FbguTHA="
  2158. },
  2159. "receptionCompartment": {
  2160. "$ref": "AAAAAAFTQdU8FbgvHZM="
  2161. },
  2162. "templateParameterCompartment": {
  2163. "$ref": "AAAAAAFTQdU8FrgwDwM="
  2164. }
  2165. },
  2166. {
  2167. "_type": "UMLClassView",
  2168. "_id": "AAAAAAFTQd3hMsXa+04=",
  2169. "_parent": {
  2170. "$ref": "AAAAAAFF+qBtyKM79qY="
  2171. },
  2172. "model": {
  2173. "$ref": "AAAAAAFTQdp91b7JZFg="
  2174. },
  2175. "subViews": [
  2176. {
  2177. "_type": "UMLNameCompartmentView",
  2178. "_id": "AAAAAAFTQd3hM8XbII8=",
  2179. "_parent": {
  2180. "$ref": "AAAAAAFTQd3hMsXa+04="
  2181. },
  2182. "model": {
  2183. "$ref": "AAAAAAFTQdp91b7JZFg="
  2184. },
  2185. "subViews": [
  2186. {
  2187. "_type": "LabelView",
  2188. "_id": "AAAAAAFTQd3hM8XcRUE=",
  2189. "_parent": {
  2190. "$ref": "AAAAAAFTQd3hM8XbII8="
  2191. },
  2192. "visible": false,
  2193. "fillColor": "#c6c6c6",
  2194. "font": "Arial;13;0",
  2195. "left": -112,
  2196. "top": 96,
  2197. "height": 13
  2198. },
  2199. {
  2200. "_type": "LabelView",
  2201. "_id": "AAAAAAFTQd3hM8XdTbU=",
  2202. "_parent": {
  2203. "$ref": "AAAAAAFTQd3hM8XbII8="
  2204. },
  2205. "fillColor": "#c6c6c6",
  2206. "font": "Arial;13;1",
  2207. "left": 461,
  2208. "top": 799,
  2209. "width": 150.73489379882812,
  2210. "height": 13,
  2211. "text": "DDTTYLogger"
  2212. },
  2213. {
  2214. "_type": "LabelView",
  2215. "_id": "AAAAAAFTQd3hM8Xet+Q=",
  2216. "_parent": {
  2217. "$ref": "AAAAAAFTQd3hM8XbII8="
  2218. },
  2219. "fillColor": "#c6c6c6",
  2220. "font": "Arial;13;0",
  2221. "left": 461,
  2222. "top": 814,
  2223. "width": 150.73489379882812,
  2224. "height": 13,
  2225. "text": "(from CocoaLumberjack)"
  2226. },
  2227. {
  2228. "_type": "LabelView",
  2229. "_id": "AAAAAAFTQd3hM8Xf/w4=",
  2230. "_parent": {
  2231. "$ref": "AAAAAAFTQd3hM8XbII8="
  2232. },
  2233. "visible": false,
  2234. "fillColor": "#c6c6c6",
  2235. "font": "Arial;13;0",
  2236. "left": -112,
  2237. "top": 96,
  2238. "height": 13,
  2239. "horizontalAlignment": 1
  2240. }
  2241. ],
  2242. "fillColor": "#c6c6c6",
  2243. "font": "Arial;13;0",
  2244. "left": 456,
  2245. "top": 792,
  2246. "width": 160.73489379882812,
  2247. "height": 40,
  2248. "stereotypeLabel": {
  2249. "$ref": "AAAAAAFTQd3hM8XcRUE="
  2250. },
  2251. "nameLabel": {
  2252. "$ref": "AAAAAAFTQd3hM8XdTbU="
  2253. },
  2254. "namespaceLabel": {
  2255. "$ref": "AAAAAAFTQd3hM8Xet+Q="
  2256. },
  2257. "propertyLabel": {
  2258. "$ref": "AAAAAAFTQd3hM8Xf/w4="
  2259. }
  2260. },
  2261. {
  2262. "_type": "UMLAttributeCompartmentView",
  2263. "_id": "AAAAAAFTQd3hM8XguZM=",
  2264. "_parent": {
  2265. "$ref": "AAAAAAFTQd3hMsXa+04="
  2266. },
  2267. "model": {
  2268. "$ref": "AAAAAAFTQdp91b7JZFg="
  2269. },
  2270. "fillColor": "#c6c6c6",
  2271. "font": "Arial;13;0",
  2272. "left": 456,
  2273. "top": 832,
  2274. "width": 160.73489379882812,
  2275. "height": 10
  2276. },
  2277. {
  2278. "_type": "UMLOperationCompartmentView",
  2279. "_id": "AAAAAAFTQd3hNMXhXNA=",
  2280. "_parent": {
  2281. "$ref": "AAAAAAFTQd3hMsXa+04="
  2282. },
  2283. "model": {
  2284. "$ref": "AAAAAAFTQdp91b7JZFg="
  2285. },
  2286. "fillColor": "#c6c6c6",
  2287. "font": "Arial;13;0",
  2288. "left": 456,
  2289. "top": 842,
  2290. "width": 160.73489379882812,
  2291. "height": 10
  2292. },
  2293. {
  2294. "_type": "UMLReceptionCompartmentView",
  2295. "_id": "AAAAAAFTQd3hNMXiDo4=",
  2296. "_parent": {
  2297. "$ref": "AAAAAAFTQd3hMsXa+04="
  2298. },
  2299. "model": {
  2300. "$ref": "AAAAAAFTQdp91b7JZFg="
  2301. },
  2302. "visible": false,
  2303. "fillColor": "#c6c6c6",
  2304. "font": "Arial;13;0",
  2305. "left": -56,
  2306. "top": 48,
  2307. "width": 10,
  2308. "height": 10
  2309. },
  2310. {
  2311. "_type": "UMLTemplateParameterCompartmentView",
  2312. "_id": "AAAAAAFTQd3hNMXj/68=",
  2313. "_parent": {
  2314. "$ref": "AAAAAAFTQd3hMsXa+04="
  2315. },
  2316. "model": {
  2317. "$ref": "AAAAAAFTQdp91b7JZFg="
  2318. },
  2319. "visible": false,
  2320. "fillColor": "#c6c6c6",
  2321. "font": "Arial;13;0",
  2322. "left": -56,
  2323. "top": 48,
  2324. "width": 10,
  2325. "height": 10
  2326. }
  2327. ],
  2328. "fillColor": "#c6c6c6",
  2329. "font": "Arial;13;0",
  2330. "containerChangeable": true,
  2331. "left": 456,
  2332. "top": 792,
  2333. "width": 160.73489379882812,
  2334. "height": 60,
  2335. "showNamespace": true,
  2336. "nameCompartment": {
  2337. "$ref": "AAAAAAFTQd3hM8XbII8="
  2338. },
  2339. "attributeCompartment": {
  2340. "$ref": "AAAAAAFTQd3hM8XguZM="
  2341. },
  2342. "operationCompartment": {
  2343. "$ref": "AAAAAAFTQd3hNMXhXNA="
  2344. },
  2345. "receptionCompartment": {
  2346. "$ref": "AAAAAAFTQd3hNMXiDo4="
  2347. },
  2348. "templateParameterCompartment": {
  2349. "$ref": "AAAAAAFTQd3hNMXj/68="
  2350. }
  2351. },
  2352. {
  2353. "_type": "UMLClassView",
  2354. "_id": "AAAAAAFTQd7K58jRla0=",
  2355. "_parent": {
  2356. "$ref": "AAAAAAFF+qBtyKM79qY="
  2357. },
  2358. "model": {
  2359. "$ref": "AAAAAAFTQdsEb78Kg3c="
  2360. },
  2361. "subViews": [
  2362. {
  2363. "_type": "UMLNameCompartmentView",
  2364. "_id": "AAAAAAFTQd7K58jS+Os=",
  2365. "_parent": {
  2366. "$ref": "AAAAAAFTQd7K58jRla0="
  2367. },
  2368. "model": {
  2369. "$ref": "AAAAAAFTQdsEb78Kg3c="
  2370. },
  2371. "subViews": [
  2372. {
  2373. "_type": "LabelView",
  2374. "_id": "AAAAAAFTQd7K58jTp8Y=",
  2375. "_parent": {
  2376. "$ref": "AAAAAAFTQd7K58jS+Os="
  2377. },
  2378. "visible": false,
  2379. "fillColor": "#c6c6c6",
  2380. "font": "Arial;13;0",
  2381. "left": -60,
  2382. "top": 92,
  2383. "height": 13
  2384. },
  2385. {
  2386. "_type": "LabelView",
  2387. "_id": "AAAAAAFTQd7K6MjUwW0=",
  2388. "_parent": {
  2389. "$ref": "AAAAAAFTQd7K58jS+Os="
  2390. },
  2391. "fillColor": "#c6c6c6",
  2392. "font": "Arial;13;1",
  2393. "left": 629,
  2394. "top": 799,
  2395. "width": 150.73489379882812,
  2396. "height": 13,
  2397. "text": "DDASLLogger"
  2398. },
  2399. {
  2400. "_type": "LabelView",
  2401. "_id": "AAAAAAFTQd7K6MjVtBQ=",
  2402. "_parent": {
  2403. "$ref": "AAAAAAFTQd7K58jS+Os="
  2404. },
  2405. "fillColor": "#c6c6c6",
  2406. "font": "Arial;13;0",
  2407. "left": 629,
  2408. "top": 814,
  2409. "width": 150.73489379882812,
  2410. "height": 13,
  2411. "text": "(from CocoaLumberjack)"
  2412. },
  2413. {
  2414. "_type": "LabelView",
  2415. "_id": "AAAAAAFTQd7K6MjW/YI=",
  2416. "_parent": {
  2417. "$ref": "AAAAAAFTQd7K58jS+Os="
  2418. },
  2419. "visible": false,
  2420. "fillColor": "#c6c6c6",
  2421. "font": "Arial;13;0",
  2422. "left": -60,
  2423. "top": 92,
  2424. "height": 13,
  2425. "horizontalAlignment": 1
  2426. }
  2427. ],
  2428. "fillColor": "#c6c6c6",
  2429. "font": "Arial;13;0",
  2430. "left": 624,
  2431. "top": 792,
  2432. "width": 160.73489379882812,
  2433. "height": 40,
  2434. "stereotypeLabel": {
  2435. "$ref": "AAAAAAFTQd7K58jTp8Y="
  2436. },
  2437. "nameLabel": {
  2438. "$ref": "AAAAAAFTQd7K6MjUwW0="
  2439. },
  2440. "namespaceLabel": {
  2441. "$ref": "AAAAAAFTQd7K6MjVtBQ="
  2442. },
  2443. "propertyLabel": {
  2444. "$ref": "AAAAAAFTQd7K6MjW/YI="
  2445. }
  2446. },
  2447. {
  2448. "_type": "UMLAttributeCompartmentView",
  2449. "_id": "AAAAAAFTQd7K6MjXTnc=",
  2450. "_parent": {
  2451. "$ref": "AAAAAAFTQd7K58jRla0="
  2452. },
  2453. "model": {
  2454. "$ref": "AAAAAAFTQdsEb78Kg3c="
  2455. },
  2456. "fillColor": "#c6c6c6",
  2457. "font": "Arial;13;0",
  2458. "left": 624,
  2459. "top": 832,
  2460. "width": 160.73489379882812,
  2461. "height": 10
  2462. },
  2463. {
  2464. "_type": "UMLOperationCompartmentView",
  2465. "_id": "AAAAAAFTQd7K6MjYAsY=",
  2466. "_parent": {
  2467. "$ref": "AAAAAAFTQd7K58jRla0="
  2468. },
  2469. "model": {
  2470. "$ref": "AAAAAAFTQdsEb78Kg3c="
  2471. },
  2472. "fillColor": "#c6c6c6",
  2473. "font": "Arial;13;0",
  2474. "left": 624,
  2475. "top": 842,
  2476. "width": 160.73489379882812,
  2477. "height": 10
  2478. },
  2479. {
  2480. "_type": "UMLReceptionCompartmentView",
  2481. "_id": "AAAAAAFTQd7K6cjZDOc=",
  2482. "_parent": {
  2483. "$ref": "AAAAAAFTQd7K58jRla0="
  2484. },
  2485. "model": {
  2486. "$ref": "AAAAAAFTQdsEb78Kg3c="
  2487. },
  2488. "visible": false,
  2489. "fillColor": "#c6c6c6",
  2490. "font": "Arial;13;0",
  2491. "left": -30,
  2492. "top": 46,
  2493. "width": 10,
  2494. "height": 10
  2495. },
  2496. {
  2497. "_type": "UMLTemplateParameterCompartmentView",
  2498. "_id": "AAAAAAFTQd7K6cja9U0=",
  2499. "_parent": {
  2500. "$ref": "AAAAAAFTQd7K58jRla0="
  2501. },
  2502. "model": {
  2503. "$ref": "AAAAAAFTQdsEb78Kg3c="
  2504. },
  2505. "visible": false,
  2506. "fillColor": "#c6c6c6",
  2507. "font": "Arial;13;0",
  2508. "left": -30,
  2509. "top": 46,
  2510. "width": 10,
  2511. "height": 10
  2512. }
  2513. ],
  2514. "fillColor": "#c6c6c6",
  2515. "font": "Arial;13;0",
  2516. "containerChangeable": true,
  2517. "left": 624,
  2518. "top": 792,
  2519. "width": 160.73489379882812,
  2520. "height": 60,
  2521. "showNamespace": true,
  2522. "nameCompartment": {
  2523. "$ref": "AAAAAAFTQd7K58jS+Os="
  2524. },
  2525. "attributeCompartment": {
  2526. "$ref": "AAAAAAFTQd7K6MjXTnc="
  2527. },
  2528. "operationCompartment": {
  2529. "$ref": "AAAAAAFTQd7K6MjYAsY="
  2530. },
  2531. "receptionCompartment": {
  2532. "$ref": "AAAAAAFTQd7K6cjZDOc="
  2533. },
  2534. "templateParameterCompartment": {
  2535. "$ref": "AAAAAAFTQd7K6cja9U0="
  2536. }
  2537. },
  2538. {
  2539. "_type": "UMLClassView",
  2540. "_id": "AAAAAAFTQd7njclu8cE=",
  2541. "_parent": {
  2542. "$ref": "AAAAAAFF+qBtyKM79qY="
  2543. },
  2544. "model": {
  2545. "$ref": "AAAAAAFTQdsvJr8+Ur8="
  2546. },
  2547. "subViews": [
  2548. {
  2549. "_type": "UMLNameCompartmentView",
  2550. "_id": "AAAAAAFTQd7njclvM28=",
  2551. "_parent": {
  2552. "$ref": "AAAAAAFTQd7njclu8cE="
  2553. },
  2554. "model": {
  2555. "$ref": "AAAAAAFTQdsvJr8+Ur8="
  2556. },
  2557. "subViews": [
  2558. {
  2559. "_type": "LabelView",
  2560. "_id": "AAAAAAFTQd7njclwiXc=",
  2561. "_parent": {
  2562. "$ref": "AAAAAAFTQd7njclvM28="
  2563. },
  2564. "visible": false,
  2565. "fillColor": "#c6c6c6",
  2566. "font": "Arial;13;0",
  2567. "left": 360,
  2568. "top": 92,
  2569. "height": 13
  2570. },
  2571. {
  2572. "_type": "LabelView",
  2573. "_id": "AAAAAAFTQd7njslxJW4=",
  2574. "_parent": {
  2575. "$ref": "AAAAAAFTQd7njclvM28="
  2576. },
  2577. "fillColor": "#c6c6c6",
  2578. "font": "Arial;13;1",
  2579. "left": 965,
  2580. "top": 799,
  2581. "width": 150.73489379882812,
  2582. "height": 13,
  2583. "text": "DDFileLogger"
  2584. },
  2585. {
  2586. "_type": "LabelView",
  2587. "_id": "AAAAAAFTQd7njsly1wI=",
  2588. "_parent": {
  2589. "$ref": "AAAAAAFTQd7njclvM28="
  2590. },
  2591. "fillColor": "#c6c6c6",
  2592. "font": "Arial;13;0",
  2593. "left": 965,
  2594. "top": 814,
  2595. "width": 150.73489379882812,
  2596. "height": 13,
  2597. "text": "(from CocoaLumberjack)"
  2598. },
  2599. {
  2600. "_type": "LabelView",
  2601. "_id": "AAAAAAFTQd7njslzEDE=",
  2602. "_parent": {
  2603. "$ref": "AAAAAAFTQd7njclvM28="
  2604. },
  2605. "visible": false,
  2606. "fillColor": "#c6c6c6",
  2607. "font": "Arial;13;0",
  2608. "left": 360,
  2609. "top": 92,
  2610. "height": 13,
  2611. "horizontalAlignment": 1
  2612. }
  2613. ],
  2614. "fillColor": "#c6c6c6",
  2615. "font": "Arial;13;0",
  2616. "left": 960,
  2617. "top": 792,
  2618. "width": 160.73489379882812,
  2619. "height": 40,
  2620. "stereotypeLabel": {
  2621. "$ref": "AAAAAAFTQd7njclwiXc="
  2622. },
  2623. "nameLabel": {
  2624. "$ref": "AAAAAAFTQd7njslxJW4="
  2625. },
  2626. "namespaceLabel": {
  2627. "$ref": "AAAAAAFTQd7njsly1wI="
  2628. },
  2629. "propertyLabel": {
  2630. "$ref": "AAAAAAFTQd7njslzEDE="
  2631. }
  2632. },
  2633. {
  2634. "_type": "UMLAttributeCompartmentView",
  2635. "_id": "AAAAAAFTQd7njsl09YQ=",
  2636. "_parent": {
  2637. "$ref": "AAAAAAFTQd7njclu8cE="
  2638. },
  2639. "model": {
  2640. "$ref": "AAAAAAFTQdsvJr8+Ur8="
  2641. },
  2642. "fillColor": "#c6c6c6",
  2643. "font": "Arial;13;0",
  2644. "left": 960,
  2645. "top": 832,
  2646. "width": 160.73489379882812,
  2647. "height": 10
  2648. },
  2649. {
  2650. "_type": "UMLOperationCompartmentView",
  2651. "_id": "AAAAAAFTQd7njsl1p4c=",
  2652. "_parent": {
  2653. "$ref": "AAAAAAFTQd7njclu8cE="
  2654. },
  2655. "model": {
  2656. "$ref": "AAAAAAFTQdsvJr8+Ur8="
  2657. },
  2658. "fillColor": "#c6c6c6",
  2659. "font": "Arial;13;0",
  2660. "left": 960,
  2661. "top": 842,
  2662. "width": 160.73489379882812,
  2663. "height": 10
  2664. },
  2665. {
  2666. "_type": "UMLReceptionCompartmentView",
  2667. "_id": "AAAAAAFTQd7njsl2L5s=",
  2668. "_parent": {
  2669. "$ref": "AAAAAAFTQd7njclu8cE="
  2670. },
  2671. "model": {
  2672. "$ref": "AAAAAAFTQdsvJr8+Ur8="
  2673. },
  2674. "visible": false,
  2675. "fillColor": "#c6c6c6",
  2676. "font": "Arial;13;0",
  2677. "left": 180,
  2678. "top": 46,
  2679. "width": 10,
  2680. "height": 10
  2681. },
  2682. {
  2683. "_type": "UMLTemplateParameterCompartmentView",
  2684. "_id": "AAAAAAFTQd7nj8l3NXE=",
  2685. "_parent": {
  2686. "$ref": "AAAAAAFTQd7njclu8cE="
  2687. },
  2688. "model": {
  2689. "$ref": "AAAAAAFTQdsvJr8+Ur8="
  2690. },
  2691. "visible": false,
  2692. "fillColor": "#c6c6c6",
  2693. "font": "Arial;13;0",
  2694. "left": 180,
  2695. "top": 46,
  2696. "width": 10,
  2697. "height": 10
  2698. }
  2699. ],
  2700. "fillColor": "#c6c6c6",
  2701. "font": "Arial;13;0",
  2702. "containerChangeable": true,
  2703. "left": 960,
  2704. "top": 792,
  2705. "width": 160.73489379882812,
  2706. "height": 60,
  2707. "showNamespace": true,
  2708. "nameCompartment": {
  2709. "$ref": "AAAAAAFTQd7njclvM28="
  2710. },
  2711. "attributeCompartment": {
  2712. "$ref": "AAAAAAFTQd7njsl09YQ="
  2713. },
  2714. "operationCompartment": {
  2715. "$ref": "AAAAAAFTQd7njsl1p4c="
  2716. },
  2717. "receptionCompartment": {
  2718. "$ref": "AAAAAAFTQd7njsl2L5s="
  2719. },
  2720. "templateParameterCompartment": {
  2721. "$ref": "AAAAAAFTQd7nj8l3NXE="
  2722. }
  2723. },
  2724. {
  2725. "_type": "UMLDependencyView",
  2726. "_id": "AAAAAAFTUYaAHJxajVY=",
  2727. "_parent": {
  2728. "$ref": "AAAAAAFF+qBtyKM79qY="
  2729. },
  2730. "model": {
  2731. "$ref": "AAAAAAFTUYaAHJxYZr8="
  2732. },
  2733. "subViews": [
  2734. {
  2735. "_type": "EdgeLabelView",
  2736. "_id": "AAAAAAFTUYaAHJxbcCQ=",
  2737. "_parent": {
  2738. "$ref": "AAAAAAFTUYaAHJxajVY="
  2739. },
  2740. "model": {
  2741. "$ref": "AAAAAAFTUYaAHJxYZr8="
  2742. },
  2743. "visible": false,
  2744. "font": "Arial;13;0",
  2745. "left": 486,
  2746. "top": 445,
  2747. "height": 13,
  2748. "alpha": 1.5707963267948966,
  2749. "distance": 15,
  2750. "hostEdge": {
  2751. "$ref": "AAAAAAFTUYaAHJxajVY="
  2752. },
  2753. "edgePosition": 1
  2754. },
  2755. {
  2756. "_type": "EdgeLabelView",
  2757. "_id": "AAAAAAFTUYaAHJxcoQw=",
  2758. "_parent": {
  2759. "$ref": "AAAAAAFTUYaAHJxajVY="
  2760. },
  2761. "model": {
  2762. "$ref": "AAAAAAFTUYaAHJxYZr8="
  2763. },
  2764. "visible": null,
  2765. "font": "Arial;13;0",
  2766. "left": 501,
  2767. "top": 445,
  2768. "height": 13,
  2769. "alpha": 1.5707963267948966,
  2770. "distance": 30,
  2771. "hostEdge": {
  2772. "$ref": "AAAAAAFTUYaAHJxajVY="
  2773. },
  2774. "edgePosition": 1
  2775. },
  2776. {
  2777. "_type": "EdgeLabelView",
  2778. "_id": "AAAAAAFTUYaAHJxdeNA=",
  2779. "_parent": {
  2780. "$ref": "AAAAAAFTUYaAHJxajVY="
  2781. },
  2782. "model": {
  2783. "$ref": "AAAAAAFTUYaAHJxYZr8="
  2784. },
  2785. "visible": false,
  2786. "font": "Arial;13;0",
  2787. "left": 457,
  2788. "top": 446,
  2789. "height": 13,
  2790. "alpha": -1.5707963267948966,
  2791. "distance": 15,
  2792. "hostEdge": {
  2793. "$ref": "AAAAAAFTUYaAHJxajVY="
  2794. },
  2795. "edgePosition": 1
  2796. }
  2797. ],
  2798. "font": "Arial;13;0",
  2799. "head": {
  2800. "$ref": "AAAAAAFTQdU8E7gnfX0="
  2801. },
  2802. "tail": {
  2803. "$ref": "AAAAAAFTQcfW2a41+cc="
  2804. },
  2805. "points": "496:440;472:440;472:464;400:464",
  2806. "showVisibility": true,
  2807. "nameLabel": {
  2808. "$ref": "AAAAAAFTUYaAHJxbcCQ="
  2809. },
  2810. "stereotypeLabel": {
  2811. "$ref": "AAAAAAFTUYaAHJxcoQw="
  2812. },
  2813. "propertyLabel": {
  2814. "$ref": "AAAAAAFTUYaAHJxdeNA="
  2815. }
  2816. },
  2817. {
  2818. "_type": "UMLGeneralizationView",
  2819. "_id": "AAAAAAFVDFcUVuxFLpU=",
  2820. "_parent": {
  2821. "$ref": "AAAAAAFF+qBtyKM79qY="
  2822. },
  2823. "model": {
  2824. "$ref": "AAAAAAFVDFcUVuxDXic="
  2825. },
  2826. "subViews": [
  2827. {
  2828. "_type": "EdgeLabelView",
  2829. "_id": "AAAAAAFVDFcUVuxGIyE=",
  2830. "_parent": {
  2831. "$ref": "AAAAAAFVDFcUVuxFLpU="
  2832. },
  2833. "model": {
  2834. "$ref": "AAAAAAFVDFcUVuxDXic="
  2835. },
  2836. "visible": false,
  2837. "font": "Arial;13;0",
  2838. "left": 569,
  2839. "top": 751,
  2840. "height": 13,
  2841. "alpha": 1.5707963267948966,
  2842. "distance": 15,
  2843. "hostEdge": {
  2844. "$ref": "AAAAAAFVDFcUVuxFLpU="
  2845. },
  2846. "edgePosition": 1
  2847. },
  2848. {
  2849. "_type": "EdgeLabelView",
  2850. "_id": "AAAAAAFVDFcUVuxHg34=",
  2851. "_parent": {
  2852. "$ref": "AAAAAAFVDFcUVuxFLpU="
  2853. },
  2854. "model": {
  2855. "$ref": "AAAAAAFVDFcUVuxDXic="
  2856. },
  2857. "visible": null,
  2858. "font": "Arial;13;0",
  2859. "left": 569,
  2860. "top": 736,
  2861. "height": 13,
  2862. "alpha": 1.5707963267948966,
  2863. "distance": 30,
  2864. "hostEdge": {
  2865. "$ref": "AAAAAAFVDFcUVuxFLpU="
  2866. },
  2867. "edgePosition": 1
  2868. },
  2869. {
  2870. "_type": "EdgeLabelView",
  2871. "_id": "AAAAAAFVDFcUVuxIzok=",
  2872. "_parent": {
  2873. "$ref": "AAAAAAFVDFcUVuxFLpU="
  2874. },
  2875. "model": {
  2876. "$ref": "AAAAAAFVDFcUVuxDXic="
  2877. },
  2878. "visible": false,
  2879. "font": "Arial;13;0",
  2880. "left": 569,
  2881. "top": 781,
  2882. "height": 13,
  2883. "alpha": -1.5707963267948966,
  2884. "distance": 15,
  2885. "hostEdge": {
  2886. "$ref": "AAAAAAFVDFcUVuxFLpU="
  2887. },
  2888. "edgePosition": 1
  2889. }
  2890. ],
  2891. "font": "Arial;13;0",
  2892. "head": {
  2893. "$ref": "AAAAAAFTQcfNOq4OFig="
  2894. },
  2895. "tail": {
  2896. "$ref": "AAAAAAFTQd3hMsXa+04="
  2897. },
  2898. "points": "531:792;531:772;608:772;608:731",
  2899. "showVisibility": true,
  2900. "nameLabel": {
  2901. "$ref": "AAAAAAFVDFcUVuxGIyE="
  2902. },
  2903. "stereotypeLabel": {
  2904. "$ref": "AAAAAAFVDFcUVuxHg34="
  2905. },
  2906. "propertyLabel": {
  2907. "$ref": "AAAAAAFVDFcUVuxIzok="
  2908. }
  2909. },
  2910. {
  2911. "_type": "UMLGeneralizationView",
  2912. "_id": "AAAAAAFVDFdQDuzKSd0=",
  2913. "_parent": {
  2914. "$ref": "AAAAAAFF+qBtyKM79qY="
  2915. },
  2916. "model": {
  2917. "$ref": "AAAAAAFVDFdQDezIIfU="
  2918. },
  2919. "subViews": [
  2920. {
  2921. "_type": "EdgeLabelView",
  2922. "_id": "AAAAAAFVDFdQDuzLSvM=",
  2923. "_parent": {
  2924. "$ref": "AAAAAAFVDFdQDuzKSd0="
  2925. },
  2926. "model": {
  2927. "$ref": "AAAAAAFVDFdQDezIIfU="
  2928. },
  2929. "visible": false,
  2930. "font": "Arial;13;0",
  2931. "left": 633,
  2932. "top": 754,
  2933. "height": 13,
  2934. "alpha": 1.5707963267948966,
  2935. "distance": 15,
  2936. "hostEdge": {
  2937. "$ref": "AAAAAAFVDFdQDuzKSd0="
  2938. },
  2939. "edgePosition": 1
  2940. },
  2941. {
  2942. "_type": "EdgeLabelView",
  2943. "_id": "AAAAAAFVDFdQDuzM36s=",
  2944. "_parent": {
  2945. "$ref": "AAAAAAFVDFdQDuzKSd0="
  2946. },
  2947. "model": {
  2948. "$ref": "AAAAAAFVDFdQDezIIfU="
  2949. },
  2950. "visible": null,
  2951. "font": "Arial;13;0",
  2952. "left": 618,
  2953. "top": 754,
  2954. "height": 13,
  2955. "alpha": 1.5707963267948966,
  2956. "distance": 30,
  2957. "hostEdge": {
  2958. "$ref": "AAAAAAFVDFdQDuzKSd0="
  2959. },
  2960. "edgePosition": 1
  2961. },
  2962. {
  2963. "_type": "EdgeLabelView",
  2964. "_id": "AAAAAAFVDFdQDuzNQbA=",
  2965. "_parent": {
  2966. "$ref": "AAAAAAFVDFdQDuzKSd0="
  2967. },
  2968. "model": {
  2969. "$ref": "AAAAAAFVDFdQDezIIfU="
  2970. },
  2971. "visible": false,
  2972. "font": "Arial;13;0",
  2973. "left": 662,
  2974. "top": 755,
  2975. "height": 13,
  2976. "alpha": -1.5707963267948966,
  2977. "distance": 15,
  2978. "hostEdge": {
  2979. "$ref": "AAAAAAFVDFdQDuzKSd0="
  2980. },
  2981. "edgePosition": 1
  2982. }
  2983. ],
  2984. "font": "Arial;13;0",
  2985. "head": {
  2986. "$ref": "AAAAAAFTQcfNOq4OFig="
  2987. },
  2988. "tail": {
  2989. "$ref": "AAAAAAFTQd7K58jRla0="
  2990. },
  2991. "points": "648:792;648:731",
  2992. "showVisibility": true,
  2993. "nameLabel": {
  2994. "$ref": "AAAAAAFVDFdQDuzLSvM="
  2995. },
  2996. "stereotypeLabel": {
  2997. "$ref": "AAAAAAFVDFdQDuzM36s="
  2998. },
  2999. "propertyLabel": {
  3000. "$ref": "AAAAAAFVDFdQDuzNQbA="
  3001. }
  3002. },
  3003. {
  3004. "_type": "UMLClassView",
  3005. "_id": "AAAAAAFVDFmvHu7JJxo=",
  3006. "_parent": {
  3007. "$ref": "AAAAAAFF+qBtyKM79qY="
  3008. },
  3009. "model": {
  3010. "$ref": "AAAAAAFVDFltuu6ycXs="
  3011. },
  3012. "subViews": [
  3013. {
  3014. "_type": "UMLNameCompartmentView",
  3015. "_id": "AAAAAAFVDFmvHu7KDt0=",
  3016. "_parent": {
  3017. "$ref": "AAAAAAFVDFmvHu7JJxo="
  3018. },
  3019. "model": {
  3020. "$ref": "AAAAAAFVDFltuu6ycXs="
  3021. },
  3022. "subViews": [
  3023. {
  3024. "_type": "LabelView",
  3025. "_id": "AAAAAAFVDFmvHu7L96Q=",
  3026. "_parent": {
  3027. "$ref": "AAAAAAFVDFmvHu7KDt0="
  3028. },
  3029. "visible": false,
  3030. "fillColor": "#c6c6c6",
  3031. "font": "Arial;13;0",
  3032. "left": 386,
  3033. "top": 116,
  3034. "height": 13
  3035. },
  3036. {
  3037. "_type": "LabelView",
  3038. "_id": "AAAAAAFVDFmvH+7MVUg=",
  3039. "_parent": {
  3040. "$ref": "AAAAAAFVDFmvHu7KDt0="
  3041. },
  3042. "fillColor": "#c6c6c6",
  3043. "font": "Arial;13;1",
  3044. "left": 1133,
  3045. "top": 799,
  3046. "width": 185.78955078125,
  3047. "height": 13,
  3048. "text": "DDAbstractDatabaseLogger"
  3049. },
  3050. {
  3051. "_type": "LabelView",
  3052. "_id": "AAAAAAFVDFmvH+7NjVQ=",
  3053. "_parent": {
  3054. "$ref": "AAAAAAFVDFmvHu7KDt0="
  3055. },
  3056. "fillColor": "#c6c6c6",
  3057. "font": "Arial;13;0",
  3058. "left": 1133,
  3059. "top": 814,
  3060. "width": 185.78955078125,
  3061. "height": 13,
  3062. "text": "(from CocoaLumberjack)"
  3063. },
  3064. {
  3065. "_type": "LabelView",
  3066. "_id": "AAAAAAFVDFmvH+7O8Js=",
  3067. "_parent": {
  3068. "$ref": "AAAAAAFVDFmvHu7KDt0="
  3069. },
  3070. "visible": false,
  3071. "fillColor": "#c6c6c6",
  3072. "font": "Arial;13;0",
  3073. "left": 386,
  3074. "top": 116,
  3075. "height": 13,
  3076. "horizontalAlignment": 1
  3077. }
  3078. ],
  3079. "fillColor": "#c6c6c6",
  3080. "font": "Arial;13;0",
  3081. "left": 1128,
  3082. "top": 792,
  3083. "width": 195.78955078125,
  3084. "height": 40,
  3085. "stereotypeLabel": {
  3086. "$ref": "AAAAAAFVDFmvHu7L96Q="
  3087. },
  3088. "nameLabel": {
  3089. "$ref": "AAAAAAFVDFmvH+7MVUg="
  3090. },
  3091. "namespaceLabel": {
  3092. "$ref": "AAAAAAFVDFmvH+7NjVQ="
  3093. },
  3094. "propertyLabel": {
  3095. "$ref": "AAAAAAFVDFmvH+7O8Js="
  3096. }
  3097. },
  3098. {
  3099. "_type": "UMLAttributeCompartmentView",
  3100. "_id": "AAAAAAFVDFmvH+7PTyI=",
  3101. "_parent": {
  3102. "$ref": "AAAAAAFVDFmvHu7JJxo="
  3103. },
  3104. "model": {
  3105. "$ref": "AAAAAAFVDFltuu6ycXs="
  3106. },
  3107. "fillColor": "#c6c6c6",
  3108. "font": "Arial;13;0",
  3109. "left": 1128,
  3110. "top": 832,
  3111. "width": 195.78955078125,
  3112. "height": 10
  3113. },
  3114. {
  3115. "_type": "UMLOperationCompartmentView",
  3116. "_id": "AAAAAAFVDFmvH+7QrPg=",
  3117. "_parent": {
  3118. "$ref": "AAAAAAFVDFmvHu7JJxo="
  3119. },
  3120. "model": {
  3121. "$ref": "AAAAAAFVDFltuu6ycXs="
  3122. },
  3123. "fillColor": "#c6c6c6",
  3124. "font": "Arial;13;0",
  3125. "left": 1128,
  3126. "top": 842,
  3127. "width": 195.78955078125,
  3128. "height": 10
  3129. },
  3130. {
  3131. "_type": "UMLReceptionCompartmentView",
  3132. "_id": "AAAAAAFVDFmvIO7RaAg=",
  3133. "_parent": {
  3134. "$ref": "AAAAAAFVDFmvHu7JJxo="
  3135. },
  3136. "model": {
  3137. "$ref": "AAAAAAFVDFltuu6ycXs="
  3138. },
  3139. "visible": false,
  3140. "fillColor": "#c6c6c6",
  3141. "font": "Arial;13;0",
  3142. "left": 193,
  3143. "top": 58,
  3144. "width": 10,
  3145. "height": 10
  3146. },
  3147. {
  3148. "_type": "UMLTemplateParameterCompartmentView",
  3149. "_id": "AAAAAAFVDFmvIO7S00I=",
  3150. "_parent": {
  3151. "$ref": "AAAAAAFVDFmvHu7JJxo="
  3152. },
  3153. "model": {
  3154. "$ref": "AAAAAAFVDFltuu6ycXs="
  3155. },
  3156. "visible": false,
  3157. "fillColor": "#c6c6c6",
  3158. "font": "Arial;13;0",
  3159. "left": 193,
  3160. "top": 58,
  3161. "width": 10,
  3162. "height": 10
  3163. }
  3164. ],
  3165. "fillColor": "#c6c6c6",
  3166. "font": "Arial;13;0",
  3167. "containerChangeable": true,
  3168. "left": 1128,
  3169. "top": 792,
  3170. "width": 195.78955078125,
  3171. "height": 60,
  3172. "showNamespace": true,
  3173. "nameCompartment": {
  3174. "$ref": "AAAAAAFVDFmvHu7KDt0="
  3175. },
  3176. "attributeCompartment": {
  3177. "$ref": "AAAAAAFVDFmvH+7PTyI="
  3178. },
  3179. "operationCompartment": {
  3180. "$ref": "AAAAAAFVDFmvH+7QrPg="
  3181. },
  3182. "receptionCompartment": {
  3183. "$ref": "AAAAAAFVDFmvIO7RaAg="
  3184. },
  3185. "templateParameterCompartment": {
  3186. "$ref": "AAAAAAFVDFmvIO7S00I="
  3187. }
  3188. },
  3189. {
  3190. "_type": "UMLGeneralizationView",
  3191. "_id": "AAAAAAFVDFp2Ju/5TOA=",
  3192. "_parent": {
  3193. "$ref": "AAAAAAFF+qBtyKM79qY="
  3194. },
  3195. "model": {
  3196. "$ref": "AAAAAAFVDFp2Ju/3Y54="
  3197. },
  3198. "subViews": [
  3199. {
  3200. "_type": "EdgeLabelView",
  3201. "_id": "AAAAAAFVDFp2Ju/6dI4=",
  3202. "_parent": {
  3203. "$ref": "AAAAAAFVDFp2Ju/5TOA="
  3204. },
  3205. "model": {
  3206. "$ref": "AAAAAAFVDFp2Ju/3Y54="
  3207. },
  3208. "visible": false,
  3209. "font": "Arial;13;0",
  3210. "left": 1151,
  3211. "top": 697,
  3212. "height": 13,
  3213. "alpha": 1.5707963267948966,
  3214. "distance": 15,
  3215. "hostEdge": {
  3216. "$ref": "AAAAAAFVDFp2Ju/5TOA="
  3217. },
  3218. "edgePosition": 1
  3219. },
  3220. {
  3221. "_type": "EdgeLabelView",
  3222. "_id": "AAAAAAFVDFp2J+/7oT0=",
  3223. "_parent": {
  3224. "$ref": "AAAAAAFVDFp2Ju/5TOA="
  3225. },
  3226. "model": {
  3227. "$ref": "AAAAAAFVDFp2Ju/3Y54="
  3228. },
  3229. "visible": null,
  3230. "font": "Arial;13;0",
  3231. "left": 1151,
  3232. "top": 712,
  3233. "height": 13,
  3234. "alpha": 1.5707963267948966,
  3235. "distance": 30,
  3236. "hostEdge": {
  3237. "$ref": "AAAAAAFVDFp2Ju/5TOA="
  3238. },
  3239. "edgePosition": 1
  3240. },
  3241. {
  3242. "_type": "EdgeLabelView",
  3243. "_id": "AAAAAAFVDFp2J+/8I5w=",
  3244. "_parent": {
  3245. "$ref": "AAAAAAFVDFp2Ju/5TOA="
  3246. },
  3247. "model": {
  3248. "$ref": "AAAAAAFVDFp2Ju/3Y54="
  3249. },
  3250. "visible": false,
  3251. "font": "Arial;13;0",
  3252. "left": 1152,
  3253. "top": 667,
  3254. "height": 13,
  3255. "alpha": -1.5707963267948966,
  3256. "distance": 15,
  3257. "hostEdge": {
  3258. "$ref": "AAAAAAFVDFp2Ju/5TOA="
  3259. },
  3260. "edgePosition": 1
  3261. }
  3262. ],
  3263. "font": "Arial;13;0",
  3264. "head": {
  3265. "$ref": "AAAAAAFTQcfNOq4OFig="
  3266. },
  3267. "tail": {
  3268. "$ref": "AAAAAAFVDFmvHu7JJxo="
  3269. },
  3270. "points": "1152:792;1152:688;720:688",
  3271. "showVisibility": true,
  3272. "nameLabel": {
  3273. "$ref": "AAAAAAFVDFp2Ju/6dI4="
  3274. },
  3275. "stereotypeLabel": {
  3276. "$ref": "AAAAAAFVDFp2J+/7oT0="
  3277. },
  3278. "propertyLabel": {
  3279. "$ref": "AAAAAAFVDFp2J+/8I5w="
  3280. }
  3281. },
  3282. {
  3283. "_type": "UMLClassView",
  3284. "_id": "AAAAAAFVDFtq6/D8Vss=",
  3285. "_parent": {
  3286. "$ref": "AAAAAAFF+qBtyKM79qY="
  3287. },
  3288. "model": {
  3289. "$ref": "AAAAAAFVDFtKePDlB+o="
  3290. },
  3291. "subViews": [
  3292. {
  3293. "_type": "UMLNameCompartmentView",
  3294. "_id": "AAAAAAFVDFtq6/D9R7g=",
  3295. "_parent": {
  3296. "$ref": "AAAAAAFVDFtq6/D8Vss="
  3297. },
  3298. "model": {
  3299. "$ref": "AAAAAAFVDFtKePDlB+o="
  3300. },
  3301. "subViews": [
  3302. {
  3303. "_type": "LabelView",
  3304. "_id": "AAAAAAFVDFtq6/D+TOs=",
  3305. "_parent": {
  3306. "$ref": "AAAAAAFVDFtq6/D9R7g="
  3307. },
  3308. "visible": false,
  3309. "fillColor": "#cccccc",
  3310. "font": "Arial;13;0",
  3311. "left": -682,
  3312. "top": -14,
  3313. "height": 13
  3314. },
  3315. {
  3316. "_type": "LabelView",
  3317. "_id": "AAAAAAFVDFtq7PD/Zgo=",
  3318. "_parent": {
  3319. "$ref": "AAAAAAFVDFtq6/D9R7g="
  3320. },
  3321. "fillColor": "#cccccc",
  3322. "font": "Arial;13;1",
  3323. "left": 781,
  3324. "top": 615,
  3325. "width": 212.93212890625,
  3326. "height": 13,
  3327. "text": "DDDispatchQueueLogFormatter"
  3328. },
  3329. {
  3330. "_type": "LabelView",
  3331. "_id": "AAAAAAFVDFtq7PEAhTw=",
  3332. "_parent": {
  3333. "$ref": "AAAAAAFVDFtq6/D9R7g="
  3334. },
  3335. "fillColor": "#cccccc",
  3336. "font": "Arial;13;0",
  3337. "left": 781,
  3338. "top": 630,
  3339. "width": 212.93212890625,
  3340. "height": 13,
  3341. "text": "(from CocoaLumberjack)"
  3342. },
  3343. {
  3344. "_type": "LabelView",
  3345. "_id": "AAAAAAFVDFtq7PEBPC8=",
  3346. "_parent": {
  3347. "$ref": "AAAAAAFVDFtq6/D9R7g="
  3348. },
  3349. "visible": false,
  3350. "fillColor": "#cccccc",
  3351. "font": "Arial;13;0",
  3352. "left": -682,
  3353. "top": -14,
  3354. "height": 13,
  3355. "horizontalAlignment": 1
  3356. }
  3357. ],
  3358. "fillColor": "#cccccc",
  3359. "font": "Arial;13;0",
  3360. "left": 776,
  3361. "top": 608,
  3362. "width": 222.93212890625,
  3363. "height": 40,
  3364. "stereotypeLabel": {
  3365. "$ref": "AAAAAAFVDFtq6/D+TOs="
  3366. },
  3367. "nameLabel": {
  3368. "$ref": "AAAAAAFVDFtq7PD/Zgo="
  3369. },
  3370. "namespaceLabel": {
  3371. "$ref": "AAAAAAFVDFtq7PEAhTw="
  3372. },
  3373. "propertyLabel": {
  3374. "$ref": "AAAAAAFVDFtq7PEBPC8="
  3375. }
  3376. },
  3377. {
  3378. "_type": "UMLAttributeCompartmentView",
  3379. "_id": "AAAAAAFVDFtq7PEC+/U=",
  3380. "_parent": {
  3381. "$ref": "AAAAAAFVDFtq6/D8Vss="
  3382. },
  3383. "model": {
  3384. "$ref": "AAAAAAFVDFtKePDlB+o="
  3385. },
  3386. "fillColor": "#cccccc",
  3387. "font": "Arial;13;0",
  3388. "left": 776,
  3389. "top": 648,
  3390. "width": 222.93212890625,
  3391. "height": 10
  3392. },
  3393. {
  3394. "_type": "UMLOperationCompartmentView",
  3395. "_id": "AAAAAAFVDFtq7PEDe5w=",
  3396. "_parent": {
  3397. "$ref": "AAAAAAFVDFtq6/D8Vss="
  3398. },
  3399. "model": {
  3400. "$ref": "AAAAAAFVDFtKePDlB+o="
  3401. },
  3402. "fillColor": "#cccccc",
  3403. "font": "Arial;13;0",
  3404. "left": 776,
  3405. "top": 658,
  3406. "width": 222.93212890625,
  3407. "height": 10
  3408. },
  3409. {
  3410. "_type": "UMLReceptionCompartmentView",
  3411. "_id": "AAAAAAFVDFtq7fEEYFw=",
  3412. "_parent": {
  3413. "$ref": "AAAAAAFVDFtq6/D8Vss="
  3414. },
  3415. "model": {
  3416. "$ref": "AAAAAAFVDFtKePDlB+o="
  3417. },
  3418. "visible": false,
  3419. "fillColor": "#cccccc",
  3420. "font": "Arial;13;0",
  3421. "left": -341,
  3422. "top": -7,
  3423. "width": 10,
  3424. "height": 10
  3425. },
  3426. {
  3427. "_type": "UMLTemplateParameterCompartmentView",
  3428. "_id": "AAAAAAFVDFtq7fEFKVM=",
  3429. "_parent": {
  3430. "$ref": "AAAAAAFVDFtq6/D8Vss="
  3431. },
  3432. "model": {
  3433. "$ref": "AAAAAAFVDFtKePDlB+o="
  3434. },
  3435. "visible": false,
  3436. "fillColor": "#cccccc",
  3437. "font": "Arial;13;0",
  3438. "left": -341,
  3439. "top": -7,
  3440. "width": 10,
  3441. "height": 10
  3442. }
  3443. ],
  3444. "fillColor": "#cccccc",
  3445. "font": "Arial;13;0",
  3446. "containerChangeable": true,
  3447. "left": 776,
  3448. "top": 608,
  3449. "width": 222.93212890625,
  3450. "height": 60,
  3451. "showNamespace": true,
  3452. "nameCompartment": {
  3453. "$ref": "AAAAAAFVDFtq6/D9R7g="
  3454. },
  3455. "attributeCompartment": {
  3456. "$ref": "AAAAAAFVDFtq7PEC+/U="
  3457. },
  3458. "operationCompartment": {
  3459. "$ref": "AAAAAAFVDFtq7PEDe5w="
  3460. },
  3461. "receptionCompartment": {
  3462. "$ref": "AAAAAAFVDFtq7fEEYFw="
  3463. },
  3464. "templateParameterCompartment": {
  3465. "$ref": "AAAAAAFVDFtq7fEFKVM="
  3466. }
  3467. },
  3468. {
  3469. "_type": "UMLInterfaceRealizationView",
  3470. "_id": "AAAAAAFVDFvnTvHBrZM=",
  3471. "_parent": {
  3472. "$ref": "AAAAAAFF+qBtyKM79qY="
  3473. },
  3474. "model": {
  3475. "$ref": "AAAAAAFVDFvnTvHA3Fc="
  3476. },
  3477. "subViews": [
  3478. {
  3479. "_type": "EdgeLabelView",
  3480. "_id": "AAAAAAFVDFvnT/HCxyI=",
  3481. "_parent": {
  3482. "$ref": "AAAAAAFVDFvnTvHBrZM="
  3483. },
  3484. "model": {
  3485. "$ref": "AAAAAAFVDFvnTvHA3Fc="
  3486. },
  3487. "visible": false,
  3488. "font": "Arial;13;0",
  3489. "left": 889,
  3490. "top": 530,
  3491. "height": 13,
  3492. "alpha": 1.5707963267948966,
  3493. "distance": 15,
  3494. "hostEdge": {
  3495. "$ref": "AAAAAAFVDFvnTvHBrZM="
  3496. },
  3497. "edgePosition": 1
  3498. },
  3499. {
  3500. "_type": "EdgeLabelView",
  3501. "_id": "AAAAAAFVDFvnT/HDEkc=",
  3502. "_parent": {
  3503. "$ref": "AAAAAAFVDFvnTvHBrZM="
  3504. },
  3505. "model": {
  3506. "$ref": "AAAAAAFVDFvnTvHA3Fc="
  3507. },
  3508. "visible": null,
  3509. "font": "Arial;13;0",
  3510. "left": 874,
  3511. "top": 530,
  3512. "height": 13,
  3513. "alpha": 1.5707963267948966,
  3514. "distance": 30,
  3515. "hostEdge": {
  3516. "$ref": "AAAAAAFVDFvnTvHBrZM="
  3517. },
  3518. "edgePosition": 1
  3519. },
  3520. {
  3521. "_type": "EdgeLabelView",
  3522. "_id": "AAAAAAFVDFvnT/HE1W0=",
  3523. "_parent": {
  3524. "$ref": "AAAAAAFVDFvnTvHBrZM="
  3525. },
  3526. "model": {
  3527. "$ref": "AAAAAAFVDFvnTvHA3Fc="
  3528. },
  3529. "visible": false,
  3530. "font": "Arial;13;0",
  3531. "left": 918,
  3532. "top": 531,
  3533. "height": 13,
  3534. "alpha": -1.5707963267948966,
  3535. "distance": 15,
  3536. "hostEdge": {
  3537. "$ref": "AAAAAAFVDFvnTvHBrZM="
  3538. },
  3539. "edgePosition": 1
  3540. }
  3541. ],
  3542. "font": "Arial;13;0",
  3543. "head": {
  3544. "$ref": "AAAAAAFTQc6+R7Gvjn8="
  3545. },
  3546. "tail": {
  3547. "$ref": "AAAAAAFVDFtq6/D8Vss="
  3548. },
  3549. "points": "904:608;904:467",
  3550. "showVisibility": true,
  3551. "nameLabel": {
  3552. "$ref": "AAAAAAFVDFvnT/HCxyI="
  3553. },
  3554. "stereotypeLabel": {
  3555. "$ref": "AAAAAAFVDFvnT/HDEkc="
  3556. },
  3557. "propertyLabel": {
  3558. "$ref": "AAAAAAFVDFvnT/HE1W0="
  3559. }
  3560. },
  3561. {
  3562. "_type": "UMLClassView",
  3563. "_id": "AAAAAAFVDFyZe/KZ/AQ=",
  3564. "_parent": {
  3565. "$ref": "AAAAAAFF+qBtyKM79qY="
  3566. },
  3567. "model": {
  3568. "$ref": "AAAAAAFVDFyKSPKCtKA="
  3569. },
  3570. "subViews": [
  3571. {
  3572. "_type": "UMLNameCompartmentView",
  3573. "_id": "AAAAAAFVDFyZe/Ka1nA=",
  3574. "_parent": {
  3575. "$ref": "AAAAAAFVDFyZe/KZ/AQ="
  3576. },
  3577. "model": {
  3578. "$ref": "AAAAAAFVDFyKSPKCtKA="
  3579. },
  3580. "subViews": [
  3581. {
  3582. "_type": "LabelView",
  3583. "_id": "AAAAAAFVDFyZe/KblrQ=",
  3584. "_parent": {
  3585. "$ref": "AAAAAAFVDFyZe/Ka1nA="
  3586. },
  3587. "visible": false,
  3588. "fillColor": "#cccccc",
  3589. "font": "Arial;13;0",
  3590. "left": -586,
  3591. "top": -38,
  3592. "height": 13
  3593. },
  3594. {
  3595. "_type": "LabelView",
  3596. "_id": "AAAAAAFVDFyZe/KcQf4=",
  3597. "_parent": {
  3598. "$ref": "AAAAAAFVDFyZe/Ka1nA="
  3599. },
  3600. "fillColor": "#cccccc",
  3601. "font": "Arial;13;1",
  3602. "left": 1013,
  3603. "top": 615,
  3604. "width": 150.73489379882812,
  3605. "height": 13,
  3606. "text": "DDMultiFormatter"
  3607. },
  3608. {
  3609. "_type": "LabelView",
  3610. "_id": "AAAAAAFVDFyZfPKdnUM=",
  3611. "_parent": {
  3612. "$ref": "AAAAAAFVDFyZe/Ka1nA="
  3613. },
  3614. "fillColor": "#cccccc",
  3615. "font": "Arial;13;0",
  3616. "left": 1013,
  3617. "top": 630,
  3618. "width": 150.73489379882812,
  3619. "height": 13,
  3620. "text": "(from CocoaLumberjack)"
  3621. },
  3622. {
  3623. "_type": "LabelView",
  3624. "_id": "AAAAAAFVDFyZfPKePck=",
  3625. "_parent": {
  3626. "$ref": "AAAAAAFVDFyZe/Ka1nA="
  3627. },
  3628. "visible": false,
  3629. "fillColor": "#cccccc",
  3630. "font": "Arial;13;0",
  3631. "left": -586,
  3632. "top": -38,
  3633. "height": 13,
  3634. "horizontalAlignment": 1
  3635. }
  3636. ],
  3637. "fillColor": "#cccccc",
  3638. "font": "Arial;13;0",
  3639. "left": 1008,
  3640. "top": 608,
  3641. "width": 160.73489379882812,
  3642. "height": 40,
  3643. "stereotypeLabel": {
  3644. "$ref": "AAAAAAFVDFyZe/KblrQ="
  3645. },
  3646. "nameLabel": {
  3647. "$ref": "AAAAAAFVDFyZe/KcQf4="
  3648. },
  3649. "namespaceLabel": {
  3650. "$ref": "AAAAAAFVDFyZfPKdnUM="
  3651. },
  3652. "propertyLabel": {
  3653. "$ref": "AAAAAAFVDFyZfPKePck="
  3654. }
  3655. },
  3656. {
  3657. "_type": "UMLAttributeCompartmentView",
  3658. "_id": "AAAAAAFVDFyZfPKfVAI=",
  3659. "_parent": {
  3660. "$ref": "AAAAAAFVDFyZe/KZ/AQ="
  3661. },
  3662. "model": {
  3663. "$ref": "AAAAAAFVDFyKSPKCtKA="
  3664. },
  3665. "fillColor": "#cccccc",
  3666. "font": "Arial;13;0",
  3667. "left": 1008,
  3668. "top": 648,
  3669. "width": 160.73489379882812,
  3670. "height": 10
  3671. },
  3672. {
  3673. "_type": "UMLOperationCompartmentView",
  3674. "_id": "AAAAAAFVDFyZfPKgc/w=",
  3675. "_parent": {
  3676. "$ref": "AAAAAAFVDFyZe/KZ/AQ="
  3677. },
  3678. "model": {
  3679. "$ref": "AAAAAAFVDFyKSPKCtKA="
  3680. },
  3681. "fillColor": "#cccccc",
  3682. "font": "Arial;13;0",
  3683. "left": 1008,
  3684. "top": 658,
  3685. "width": 160.73489379882812,
  3686. "height": 10
  3687. },
  3688. {
  3689. "_type": "UMLReceptionCompartmentView",
  3690. "_id": "AAAAAAFVDFyZfPKh7eg=",
  3691. "_parent": {
  3692. "$ref": "AAAAAAFVDFyZe/KZ/AQ="
  3693. },
  3694. "model": {
  3695. "$ref": "AAAAAAFVDFyKSPKCtKA="
  3696. },
  3697. "visible": false,
  3698. "fillColor": "#cccccc",
  3699. "font": "Arial;13;0",
  3700. "left": -565,
  3701. "top": -91,
  3702. "width": 10,
  3703. "height": 10
  3704. },
  3705. {
  3706. "_type": "UMLTemplateParameterCompartmentView",
  3707. "_id": "AAAAAAFVDFyZffKinT4=",
  3708. "_parent": {
  3709. "$ref": "AAAAAAFVDFyZe/KZ/AQ="
  3710. },
  3711. "model": {
  3712. "$ref": "AAAAAAFVDFyKSPKCtKA="
  3713. },
  3714. "visible": false,
  3715. "fillColor": "#cccccc",
  3716. "font": "Arial;13;0",
  3717. "left": -565,
  3718. "top": -91,
  3719. "width": 10,
  3720. "height": 10
  3721. }
  3722. ],
  3723. "fillColor": "#cccccc",
  3724. "font": "Arial;13;0",
  3725. "containerChangeable": true,
  3726. "left": 1008,
  3727. "top": 608,
  3728. "width": 160.73489379882812,
  3729. "height": 60,
  3730. "showNamespace": true,
  3731. "nameCompartment": {
  3732. "$ref": "AAAAAAFVDFyZe/Ka1nA="
  3733. },
  3734. "attributeCompartment": {
  3735. "$ref": "AAAAAAFVDFyZfPKfVAI="
  3736. },
  3737. "operationCompartment": {
  3738. "$ref": "AAAAAAFVDFyZfPKgc/w="
  3739. },
  3740. "receptionCompartment": {
  3741. "$ref": "AAAAAAFVDFyZfPKh7eg="
  3742. },
  3743. "templateParameterCompartment": {
  3744. "$ref": "AAAAAAFVDFyZffKinT4="
  3745. }
  3746. },
  3747. {
  3748. "_type": "UMLInterfaceRealizationView",
  3749. "_id": "AAAAAAFVDFypRABBJB0=",
  3750. "_parent": {
  3751. "$ref": "AAAAAAFF+qBtyKM79qY="
  3752. },
  3753. "model": {
  3754. "$ref": "AAAAAAFVDFvnTvHA3Fc="
  3755. },
  3756. "subViews": [
  3757. {
  3758. "_type": "EdgeLabelView",
  3759. "_id": "AAAAAAFVDFypRgBC6Qw=",
  3760. "_parent": {
  3761. "$ref": "AAAAAAFVDFypRABBJB0="
  3762. },
  3763. "model": {
  3764. "$ref": "AAAAAAFVDFvnTvHA3Fc="
  3765. },
  3766. "visible": false,
  3767. "font": "Arial;13;0",
  3768. "left": 1065,
  3769. "top": 530,
  3770. "height": 13,
  3771. "alpha": 1.5707963267948966,
  3772. "distance": 15,
  3773. "hostEdge": {
  3774. "$ref": "AAAAAAFVDFypRABBJB0="
  3775. },
  3776. "edgePosition": 1
  3777. },
  3778. {
  3779. "_type": "EdgeLabelView",
  3780. "_id": "AAAAAAFVDFypRgBDq50=",
  3781. "_parent": {
  3782. "$ref": "AAAAAAFVDFypRABBJB0="
  3783. },
  3784. "model": {
  3785. "$ref": "AAAAAAFVDFvnTvHA3Fc="
  3786. },
  3787. "visible": null,
  3788. "font": "Arial;13;0",
  3789. "left": 1050,
  3790. "top": 530,
  3791. "height": 13,
  3792. "alpha": 1.5707963267948966,
  3793. "distance": 30,
  3794. "hostEdge": {
  3795. "$ref": "AAAAAAFVDFypRABBJB0="
  3796. },
  3797. "edgePosition": 1
  3798. },
  3799. {
  3800. "_type": "EdgeLabelView",
  3801. "_id": "AAAAAAFVDFypRgBE0nc=",
  3802. "_parent": {
  3803. "$ref": "AAAAAAFVDFypRABBJB0="
  3804. },
  3805. "model": {
  3806. "$ref": "AAAAAAFVDFvnTvHA3Fc="
  3807. },
  3808. "visible": false,
  3809. "font": "Arial;13;0",
  3810. "left": 1094,
  3811. "top": 531,
  3812. "height": 13,
  3813. "alpha": -1.5707963267948966,
  3814. "distance": 15,
  3815. "hostEdge": {
  3816. "$ref": "AAAAAAFVDFypRABBJB0="
  3817. },
  3818. "edgePosition": 1
  3819. }
  3820. ],
  3821. "font": "Arial;13;0",
  3822. "head": {
  3823. "$ref": "AAAAAAFTQc6+R7Gvjn8="
  3824. },
  3825. "tail": {
  3826. "$ref": "AAAAAAFVDFyZe/KZ/AQ="
  3827. },
  3828. "points": "1080:608;1080:467",
  3829. "showVisibility": true,
  3830. "nameLabel": {
  3831. "$ref": "AAAAAAFVDFypRgBC6Qw="
  3832. },
  3833. "stereotypeLabel": {
  3834. "$ref": "AAAAAAFVDFypRgBDq50="
  3835. },
  3836. "propertyLabel": {
  3837. "$ref": "AAAAAAFVDFypRgBE0nc="
  3838. }
  3839. },
  3840. {
  3841. "_type": "UMLClassView",
  3842. "_id": "AAAAAAFVDF1eJfPqhHE=",
  3843. "_parent": {
  3844. "$ref": "AAAAAAFF+qBtyKM79qY="
  3845. },
  3846. "model": {
  3847. "$ref": "AAAAAAFVDF0b6POxqos="
  3848. },
  3849. "subViews": [
  3850. {
  3851. "_type": "UMLNameCompartmentView",
  3852. "_id": "AAAAAAFVDF1eJvPrjTw=",
  3853. "_parent": {
  3854. "$ref": "AAAAAAFVDF1eJfPqhHE="
  3855. },
  3856. "model": {
  3857. "$ref": "AAAAAAFVDF0b6POxqos="
  3858. },
  3859. "subViews": [
  3860. {
  3861. "_type": "LabelView",
  3862. "_id": "AAAAAAFVDF1eJvPsTKk=",
  3863. "_parent": {
  3864. "$ref": "AAAAAAFVDF1eJvPrjTw="
  3865. },
  3866. "visible": false,
  3867. "fillColor": "#cccccc",
  3868. "font": "Arial;13;0",
  3869. "left": 110,
  3870. "top": -240,
  3871. "height": 13
  3872. },
  3873. {
  3874. "_type": "LabelView",
  3875. "_id": "AAAAAAFVDF1eJvPtEmo=",
  3876. "_parent": {
  3877. "$ref": "AAAAAAFVDF1eJvPrjTw="
  3878. },
  3879. "fillColor": "#cccccc",
  3880. "font": "Arial;13;1",
  3881. "left": 1213,
  3882. "top": 615,
  3883. "width": 256.17236328125,
  3884. "height": 13,
  3885. "text": "DDContextAllowlistFilterLogFormatter"
  3886. },
  3887. {
  3888. "_type": "LabelView",
  3889. "_id": "AAAAAAFVDF1eJvPudYo=",
  3890. "_parent": {
  3891. "$ref": "AAAAAAFVDF1eJvPrjTw="
  3892. },
  3893. "fillColor": "#cccccc",
  3894. "font": "Arial;13;0",
  3895. "left": 1213,
  3896. "top": 630,
  3897. "width": 256.17236328125,
  3898. "height": 13,
  3899. "text": "(from CocoaLumberjack)"
  3900. },
  3901. {
  3902. "_type": "LabelView",
  3903. "_id": "AAAAAAFVDF1eJvPv1Gw=",
  3904. "_parent": {
  3905. "$ref": "AAAAAAFVDF1eJvPrjTw="
  3906. },
  3907. "visible": false,
  3908. "fillColor": "#cccccc",
  3909. "font": "Arial;13;0",
  3910. "left": 110,
  3911. "top": -240,
  3912. "height": 13,
  3913. "horizontalAlignment": 1
  3914. }
  3915. ],
  3916. "fillColor": "#cccccc",
  3917. "font": "Arial;13;0",
  3918. "left": 1208,
  3919. "top": 608,
  3920. "width": 266.17236328125,
  3921. "height": 40,
  3922. "stereotypeLabel": {
  3923. "$ref": "AAAAAAFVDF1eJvPsTKk="
  3924. },
  3925. "nameLabel": {
  3926. "$ref": "AAAAAAFVDF1eJvPtEmo="
  3927. },
  3928. "namespaceLabel": {
  3929. "$ref": "AAAAAAFVDF1eJvPudYo="
  3930. },
  3931. "propertyLabel": {
  3932. "$ref": "AAAAAAFVDF1eJvPv1Gw="
  3933. }
  3934. },
  3935. {
  3936. "_type": "UMLAttributeCompartmentView",
  3937. "_id": "AAAAAAFVDF1eJvPwkbE=",
  3938. "_parent": {
  3939. "$ref": "AAAAAAFVDF1eJfPqhHE="
  3940. },
  3941. "model": {
  3942. "$ref": "AAAAAAFVDF0b6POxqos="
  3943. },
  3944. "fillColor": "#cccccc",
  3945. "font": "Arial;13;0",
  3946. "left": 1208,
  3947. "top": 648,
  3948. "width": 266.17236328125,
  3949. "height": 10
  3950. },
  3951. {
  3952. "_type": "UMLOperationCompartmentView",
  3953. "_id": "AAAAAAFVDF1eJ/Pxhks=",
  3954. "_parent": {
  3955. "$ref": "AAAAAAFVDF1eJfPqhHE="
  3956. },
  3957. "model": {
  3958. "$ref": "AAAAAAFVDF0b6POxqos="
  3959. },
  3960. "fillColor": "#cccccc",
  3961. "font": "Arial;13;0",
  3962. "left": 1208,
  3963. "top": 658,
  3964. "width": 266.17236328125,
  3965. "height": 10
  3966. },
  3967. {
  3968. "_type": "UMLReceptionCompartmentView",
  3969. "_id": "AAAAAAFVDF1eJ/Py2Ao=",
  3970. "_parent": {
  3971. "$ref": "AAAAAAFVDF1eJfPqhHE="
  3972. },
  3973. "model": {
  3974. "$ref": "AAAAAAFVDF0b6POxqos="
  3975. },
  3976. "visible": false,
  3977. "fillColor": "#cccccc",
  3978. "font": "Arial;13;0",
  3979. "left": 39,
  3980. "top": -120,
  3981. "width": 10,
  3982. "height": 10
  3983. },
  3984. {
  3985. "_type": "UMLTemplateParameterCompartmentView",
  3986. "_id": "AAAAAAFVDF1eJ/Pzxzs=",
  3987. "_parent": {
  3988. "$ref": "AAAAAAFVDF1eJfPqhHE="
  3989. },
  3990. "model": {
  3991. "$ref": "AAAAAAFVDF0b6POxqos="
  3992. },
  3993. "visible": false,
  3994. "fillColor": "#cccccc",
  3995. "font": "Arial;13;0",
  3996. "left": 39,
  3997. "top": -120,
  3998. "width": 10,
  3999. "height": 10
  4000. }
  4001. ],
  4002. "fillColor": "#cccccc",
  4003. "font": "Arial;13;0",
  4004. "containerChangeable": true,
  4005. "left": 1208,
  4006. "top": 608,
  4007. "width": 266.17236328125,
  4008. "height": 60,
  4009. "showNamespace": true,
  4010. "nameCompartment": {
  4011. "$ref": "AAAAAAFVDF1eJvPrjTw="
  4012. },
  4013. "attributeCompartment": {
  4014. "$ref": "AAAAAAFVDF1eJvPwkbE="
  4015. },
  4016. "operationCompartment": {
  4017. "$ref": "AAAAAAFVDF1eJ/Pxhks="
  4018. },
  4019. "receptionCompartment": {
  4020. "$ref": "AAAAAAFVDF1eJ/Py2Ao="
  4021. },
  4022. "templateParameterCompartment": {
  4023. "$ref": "AAAAAAFVDF1eJ/Pzxzs="
  4024. }
  4025. },
  4026. {
  4027. "_type": "UMLClassView",
  4028. "_id": "AAAAAAFVDF1nXPQvT80=",
  4029. "_parent": {
  4030. "$ref": "AAAAAAFF+qBtyKM79qY="
  4031. },
  4032. "model": {
  4033. "$ref": "AAAAAAFVDF1LgPPNuhU="
  4034. },
  4035. "subViews": [
  4036. {
  4037. "_type": "UMLNameCompartmentView",
  4038. "_id": "AAAAAAFVDF1nXPQwO0s=",
  4039. "_parent": {
  4040. "$ref": "AAAAAAFVDF1nXPQvT80="
  4041. },
  4042. "model": {
  4043. "$ref": "AAAAAAFVDF1LgPPNuhU="
  4044. },
  4045. "subViews": [
  4046. {
  4047. "_type": "LabelView",
  4048. "_id": "AAAAAAFVDF1nXPQxWqs=",
  4049. "_parent": {
  4050. "$ref": "AAAAAAFVDF1nXPQwO0s="
  4051. },
  4052. "visible": false,
  4053. "fillColor": "#cccccc",
  4054. "font": "Arial;13;0",
  4055. "left": -612,
  4056. "top": -128,
  4057. "height": 13
  4058. },
  4059. {
  4060. "_type": "LabelView",
  4061. "_id": "AAAAAAFVDF1nXPQy2FM=",
  4062. "_parent": {
  4063. "$ref": "AAAAAAFVDF1nXPQwO0s="
  4064. },
  4065. "fillColor": "#cccccc",
  4066. "font": "Arial;13;1",
  4067. "left": 1181,
  4068. "top": 695,
  4069. "width": 253.97607421875,
  4070. "height": 13,
  4071. "text": "DDContextDenylistFilterLogFormatter"
  4072. },
  4073. {
  4074. "_type": "LabelView",
  4075. "_id": "AAAAAAFVDF1nXPQzFbo=",
  4076. "_parent": {
  4077. "$ref": "AAAAAAFVDF1nXPQwO0s="
  4078. },
  4079. "fillColor": "#cccccc",
  4080. "font": "Arial;13;0",
  4081. "left": 1181,
  4082. "top": 710,
  4083. "width": 253.97607421875,
  4084. "height": 13,
  4085. "text": "(from CocoaLumberjack)"
  4086. },
  4087. {
  4088. "_type": "LabelView",
  4089. "_id": "AAAAAAFVDF1nXPQ0Dcs=",
  4090. "_parent": {
  4091. "$ref": "AAAAAAFVDF1nXPQwO0s="
  4092. },
  4093. "visible": false,
  4094. "fillColor": "#cccccc",
  4095. "font": "Arial;13;0",
  4096. "left": -612,
  4097. "top": -128,
  4098. "height": 13,
  4099. "horizontalAlignment": 1
  4100. }
  4101. ],
  4102. "fillColor": "#cccccc",
  4103. "font": "Arial;13;0",
  4104. "left": 1176,
  4105. "top": 688,
  4106. "width": 263.97607421875,
  4107. "height": 40,
  4108. "stereotypeLabel": {
  4109. "$ref": "AAAAAAFVDF1nXPQxWqs="
  4110. },
  4111. "nameLabel": {
  4112. "$ref": "AAAAAAFVDF1nXPQy2FM="
  4113. },
  4114. "namespaceLabel": {
  4115. "$ref": "AAAAAAFVDF1nXPQzFbo="
  4116. },
  4117. "propertyLabel": {
  4118. "$ref": "AAAAAAFVDF1nXPQ0Dcs="
  4119. }
  4120. },
  4121. {
  4122. "_type": "UMLAttributeCompartmentView",
  4123. "_id": "AAAAAAFVDF1nXPQ1jPo=",
  4124. "_parent": {
  4125. "$ref": "AAAAAAFVDF1nXPQvT80="
  4126. },
  4127. "model": {
  4128. "$ref": "AAAAAAFVDF1LgPPNuhU="
  4129. },
  4130. "fillColor": "#cccccc",
  4131. "font": "Arial;13;0",
  4132. "left": 1176,
  4133. "top": 728,
  4134. "width": 263.97607421875,
  4135. "height": 10
  4136. },
  4137. {
  4138. "_type": "UMLOperationCompartmentView",
  4139. "_id": "AAAAAAFVDF1nXPQ2xJI=",
  4140. "_parent": {
  4141. "$ref": "AAAAAAFVDF1nXPQvT80="
  4142. },
  4143. "model": {
  4144. "$ref": "AAAAAAFVDF1LgPPNuhU="
  4145. },
  4146. "fillColor": "#cccccc",
  4147. "font": "Arial;13;0",
  4148. "left": 1176,
  4149. "top": 738,
  4150. "width": 263.97607421875,
  4151. "height": 10
  4152. },
  4153. {
  4154. "_type": "UMLReceptionCompartmentView",
  4155. "_id": "AAAAAAFVDF1nXPQ3IKA=",
  4156. "_parent": {
  4157. "$ref": "AAAAAAFVDF1nXPQvT80="
  4158. },
  4159. "model": {
  4160. "$ref": "AAAAAAFVDF1LgPPNuhU="
  4161. },
  4162. "visible": false,
  4163. "fillColor": "#cccccc",
  4164. "font": "Arial;13;0",
  4165. "left": -306,
  4166. "top": -64,
  4167. "width": 10,
  4168. "height": 10
  4169. },
  4170. {
  4171. "_type": "UMLTemplateParameterCompartmentView",
  4172. "_id": "AAAAAAFVDF1nXPQ4828=",
  4173. "_parent": {
  4174. "$ref": "AAAAAAFVDF1nXPQvT80="
  4175. },
  4176. "model": {
  4177. "$ref": "AAAAAAFVDF1LgPPNuhU="
  4178. },
  4179. "visible": false,
  4180. "fillColor": "#cccccc",
  4181. "font": "Arial;13;0",
  4182. "left": -306,
  4183. "top": -64,
  4184. "width": 10,
  4185. "height": 10
  4186. }
  4187. ],
  4188. "fillColor": "#cccccc",
  4189. "font": "Arial;13;0",
  4190. "containerChangeable": true,
  4191. "left": 1176,
  4192. "top": 688,
  4193. "width": 263.97607421875,
  4194. "height": 60,
  4195. "showNamespace": true,
  4196. "nameCompartment": {
  4197. "$ref": "AAAAAAFVDF1nXPQwO0s="
  4198. },
  4199. "attributeCompartment": {
  4200. "$ref": "AAAAAAFVDF1nXPQ1jPo="
  4201. },
  4202. "operationCompartment": {
  4203. "$ref": "AAAAAAFVDF1nXPQ2xJI="
  4204. },
  4205. "receptionCompartment": {
  4206. "$ref": "AAAAAAFVDF1nXPQ3IKA="
  4207. },
  4208. "templateParameterCompartment": {
  4209. "$ref": "AAAAAAFVDF1nXPQ4828="
  4210. }
  4211. },
  4212. {
  4213. "_type": "UMLInterfaceRealizationView",
  4214. "_id": "AAAAAAFVDF4aawBFKtY=",
  4215. "_parent": {
  4216. "$ref": "AAAAAAFF+qBtyKM79qY="
  4217. },
  4218. "model": {
  4219. "$ref": "AAAAAAFVDFvnTvHA3Fc="
  4220. },
  4221. "subViews": [
  4222. {
  4223. "_type": "EdgeLabelView",
  4224. "_id": "AAAAAAFVDF4abABGsIM=",
  4225. "_parent": {
  4226. "$ref": "AAAAAAFVDF4aawBFKtY="
  4227. },
  4228. "model": {
  4229. "$ref": "AAAAAAFVDFvnTvHA3Fc="
  4230. },
  4231. "visible": false,
  4232. "font": "Arial;13;0",
  4233. "left": 1319,
  4234. "top": 393,
  4235. "height": 13,
  4236. "alpha": 1.5707963267948966,
  4237. "distance": 15,
  4238. "hostEdge": {
  4239. "$ref": "AAAAAAFVDF4aawBFKtY="
  4240. },
  4241. "edgePosition": 1
  4242. },
  4243. {
  4244. "_type": "EdgeLabelView",
  4245. "_id": "AAAAAAFVDF4abABHQpQ=",
  4246. "_parent": {
  4247. "$ref": "AAAAAAFVDF4aawBFKtY="
  4248. },
  4249. "model": {
  4250. "$ref": "AAAAAAFVDFvnTvHA3Fc="
  4251. },
  4252. "visible": null,
  4253. "font": "Arial;13;0",
  4254. "left": 1319,
  4255. "top": 408,
  4256. "height": 13,
  4257. "alpha": 1.5707963267948966,
  4258. "distance": 30,
  4259. "hostEdge": {
  4260. "$ref": "AAAAAAFVDF4aawBFKtY="
  4261. },
  4262. "edgePosition": 1
  4263. },
  4264. {
  4265. "_type": "EdgeLabelView",
  4266. "_id": "AAAAAAFVDF4abABId0s=",
  4267. "_parent": {
  4268. "$ref": "AAAAAAFVDF4aawBFKtY="
  4269. },
  4270. "model": {
  4271. "$ref": "AAAAAAFVDFvnTvHA3Fc="
  4272. },
  4273. "visible": false,
  4274. "font": "Arial;13;0",
  4275. "left": 1320,
  4276. "top": 363,
  4277. "height": 13,
  4278. "alpha": -1.5707963267948966,
  4279. "distance": 15,
  4280. "hostEdge": {
  4281. "$ref": "AAAAAAFVDF4aawBFKtY="
  4282. },
  4283. "edgePosition": 1
  4284. }
  4285. ],
  4286. "font": "Arial;13;0",
  4287. "head": {
  4288. "$ref": "AAAAAAFTQc6+R7Gvjn8="
  4289. },
  4290. "tail": {
  4291. "$ref": "AAAAAAFVDF1eJfPqhHE="
  4292. },
  4293. "points": "1320:608;1320:384;1234:384",
  4294. "showVisibility": true,
  4295. "nameLabel": {
  4296. "$ref": "AAAAAAFVDF4abABGsIM="
  4297. },
  4298. "stereotypeLabel": {
  4299. "$ref": "AAAAAAFVDF4abABHQpQ="
  4300. },
  4301. "propertyLabel": {
  4302. "$ref": "AAAAAAFVDF4abABId0s="
  4303. }
  4304. },
  4305. {
  4306. "_type": "UMLInterfaceRealizationView",
  4307. "_id": "AAAAAAFVDF5AcgBJG/A=",
  4308. "_parent": {
  4309. "$ref": "AAAAAAFF+qBtyKM79qY="
  4310. },
  4311. "model": {
  4312. "$ref": "AAAAAAFVDFvnTvHA3Fc="
  4313. },
  4314. "subViews": [
  4315. {
  4316. "_type": "EdgeLabelView",
  4317. "_id": "AAAAAAFVDF5AcwBKa30=",
  4318. "_parent": {
  4319. "$ref": "AAAAAAFVDF5AcgBJG/A="
  4320. },
  4321. "model": {
  4322. "$ref": "AAAAAAFVDFvnTvHA3Fc="
  4323. },
  4324. "visible": false,
  4325. "font": "Arial;13;0",
  4326. "left": 1177,
  4327. "top": 570,
  4328. "height": 13,
  4329. "alpha": 1.5707963267948966,
  4330. "distance": 15,
  4331. "hostEdge": {
  4332. "$ref": "AAAAAAFVDF5AcgBJG/A="
  4333. },
  4334. "edgePosition": 1
  4335. },
  4336. {
  4337. "_type": "EdgeLabelView",
  4338. "_id": "AAAAAAFVDF5AcwBLbSc=",
  4339. "_parent": {
  4340. "$ref": "AAAAAAFVDF5AcgBJG/A="
  4341. },
  4342. "model": {
  4343. "$ref": "AAAAAAFVDFvnTvHA3Fc="
  4344. },
  4345. "visible": null,
  4346. "font": "Arial;13;0",
  4347. "left": 1162,
  4348. "top": 570,
  4349. "height": 13,
  4350. "alpha": 1.5707963267948966,
  4351. "distance": 30,
  4352. "hostEdge": {
  4353. "$ref": "AAAAAAFVDF5AcgBJG/A="
  4354. },
  4355. "edgePosition": 1
  4356. },
  4357. {
  4358. "_type": "EdgeLabelView",
  4359. "_id": "AAAAAAFVDF5AcwBMSr8=",
  4360. "_parent": {
  4361. "$ref": "AAAAAAFVDF5AcgBJG/A="
  4362. },
  4363. "model": {
  4364. "$ref": "AAAAAAFVDFvnTvHA3Fc="
  4365. },
  4366. "visible": false,
  4367. "font": "Arial;13;0",
  4368. "left": 1207,
  4369. "top": 571,
  4370. "height": 13,
  4371. "alpha": -1.5707963267948966,
  4372. "distance": 15,
  4373. "hostEdge": {
  4374. "$ref": "AAAAAAFVDF5AcgBJG/A="
  4375. },
  4376. "edgePosition": 1
  4377. }
  4378. ],
  4379. "font": "Arial;13;0",
  4380. "head": {
  4381. "$ref": "AAAAAAFTQc6+R7Gvjn8="
  4382. },
  4383. "tail": {
  4384. "$ref": "AAAAAAFVDF1nXPQvT80="
  4385. },
  4386. "points": "1192:688;1192:467",
  4387. "showVisibility": true,
  4388. "nameLabel": {
  4389. "$ref": "AAAAAAFVDF5AcwBKa30="
  4390. },
  4391. "stereotypeLabel": {
  4392. "$ref": "AAAAAAFVDF5AcwBLbSc="
  4393. },
  4394. "propertyLabel": {
  4395. "$ref": "AAAAAAFVDF5AcwBMSr8="
  4396. }
  4397. },
  4398. {
  4399. "_type": "UMLEnumerationView",
  4400. "_id": "AAAAAAFVDGJyw4qc8Tg=",
  4401. "_parent": {
  4402. "$ref": "AAAAAAFF+qBtyKM79qY="
  4403. },
  4404. "model": {
  4405. "$ref": "AAAAAAFVDGCqvsvwtWs="
  4406. },
  4407. "subViews": [
  4408. {
  4409. "_type": "UMLNameCompartmentView",
  4410. "_id": "AAAAAAFVDGJyw4qdJVo=",
  4411. "_parent": {
  4412. "$ref": "AAAAAAFVDGJyw4qc8Tg="
  4413. },
  4414. "model": {
  4415. "$ref": "AAAAAAFVDGCqvsvwtWs="
  4416. },
  4417. "subViews": [
  4418. {
  4419. "_type": "LabelView",
  4420. "_id": "AAAAAAFVDGJyw4qeYFw=",
  4421. "_parent": {
  4422. "$ref": "AAAAAAFVDGJyw4qdJVo="
  4423. },
  4424. "fillColor": "#cccccc",
  4425. "font": "Arial;13;0",
  4426. "left": 117,
  4427. "top": 725,
  4428. "width": 150.73489379882812,
  4429. "height": 13,
  4430. "text": "«enumeration»"
  4431. },
  4432. {
  4433. "_type": "LabelView",
  4434. "_id": "AAAAAAFVDGJyxIqfEUY=",
  4435. "_parent": {
  4436. "$ref": "AAAAAAFVDGJyw4qdJVo="
  4437. },
  4438. "fillColor": "#cccccc",
  4439. "font": "Arial;13;1",
  4440. "left": 117,
  4441. "top": 740,
  4442. "width": 150.73489379882812,
  4443. "height": 13,
  4444. "text": "DDLogFlag"
  4445. },
  4446. {
  4447. "_type": "LabelView",
  4448. "_id": "AAAAAAFVDGJyxIqgEGQ=",
  4449. "_parent": {
  4450. "$ref": "AAAAAAFVDGJyw4qdJVo="
  4451. },
  4452. "fillColor": "#cccccc",
  4453. "font": "Arial;13;0",
  4454. "left": 117,
  4455. "top": 755,
  4456. "width": 150.73489379882812,
  4457. "height": 13,
  4458. "text": "(from CocoaLumberjack)"
  4459. },
  4460. {
  4461. "_type": "LabelView",
  4462. "_id": "AAAAAAFVDGJyxIqh9rU=",
  4463. "_parent": {
  4464. "$ref": "AAAAAAFVDGJyw4qdJVo="
  4465. },
  4466. "visible": false,
  4467. "fillColor": "#cccccc",
  4468. "font": "Arial;13;0",
  4469. "left": -2842,
  4470. "top": 674,
  4471. "height": 13,
  4472. "horizontalAlignment": 1
  4473. }
  4474. ],
  4475. "fillColor": "#cccccc",
  4476. "font": "Arial;13;0",
  4477. "left": 112,
  4478. "top": 720,
  4479. "width": 160.73489379882812,
  4480. "height": 53,
  4481. "stereotypeLabel": {
  4482. "$ref": "AAAAAAFVDGJyw4qeYFw="
  4483. },
  4484. "nameLabel": {
  4485. "$ref": "AAAAAAFVDGJyxIqfEUY="
  4486. },
  4487. "namespaceLabel": {
  4488. "$ref": "AAAAAAFVDGJyxIqgEGQ="
  4489. },
  4490. "propertyLabel": {
  4491. "$ref": "AAAAAAFVDGJyxIqh9rU="
  4492. }
  4493. },
  4494. {
  4495. "_type": "UMLAttributeCompartmentView",
  4496. "_id": "AAAAAAFVDGJyxIqisiY=",
  4497. "_parent": {
  4498. "$ref": "AAAAAAFVDGJyw4qc8Tg="
  4499. },
  4500. "model": {
  4501. "$ref": "AAAAAAFVDGCqvsvwtWs="
  4502. },
  4503. "visible": false,
  4504. "fillColor": "#cccccc",
  4505. "font": "Arial;13;0",
  4506. "left": -1445,
  4507. "top": 337,
  4508. "width": 10,
  4509. "height": 10
  4510. },
  4511. {
  4512. "_type": "UMLOperationCompartmentView",
  4513. "_id": "AAAAAAFVDGJyxIqjTy8=",
  4514. "_parent": {
  4515. "$ref": "AAAAAAFVDGJyw4qc8Tg="
  4516. },
  4517. "model": {
  4518. "$ref": "AAAAAAFVDGCqvsvwtWs="
  4519. },
  4520. "visible": false,
  4521. "fillColor": "#cccccc",
  4522. "font": "Arial;13;0",
  4523. "left": -1445,
  4524. "top": 337,
  4525. "width": 10,
  4526. "height": 10
  4527. },
  4528. {
  4529. "_type": "UMLReceptionCompartmentView",
  4530. "_id": "AAAAAAFVDGJyxYqkO3s=",
  4531. "_parent": {
  4532. "$ref": "AAAAAAFVDGJyw4qc8Tg="
  4533. },
  4534. "model": {
  4535. "$ref": "AAAAAAFVDGCqvsvwtWs="
  4536. },
  4537. "visible": false,
  4538. "fillColor": "#cccccc",
  4539. "font": "Arial;13;0",
  4540. "left": -1445,
  4541. "top": 337,
  4542. "width": 10,
  4543. "height": 10
  4544. },
  4545. {
  4546. "_type": "UMLTemplateParameterCompartmentView",
  4547. "_id": "AAAAAAFVDGJyxYqlvK8=",
  4548. "_parent": {
  4549. "$ref": "AAAAAAFVDGJyw4qc8Tg="
  4550. },
  4551. "model": {
  4552. "$ref": "AAAAAAFVDGCqvsvwtWs="
  4553. },
  4554. "visible": false,
  4555. "fillColor": "#cccccc",
  4556. "font": "Arial;13;0",
  4557. "left": -1445,
  4558. "top": 337,
  4559. "width": 10,
  4560. "height": 10
  4561. },
  4562. {
  4563. "_type": "UMLEnumerationLiteralCompartmentView",
  4564. "_id": "AAAAAAFVDGJyxYqmF+Q=",
  4565. "_parent": {
  4566. "$ref": "AAAAAAFVDGJyw4qc8Tg="
  4567. },
  4568. "model": {
  4569. "$ref": "AAAAAAFVDGCqvsvwtWs="
  4570. },
  4571. "subViews": [
  4572. {
  4573. "_type": "UMLEnumerationLiteralView",
  4574. "_id": "AAAAAAFVDGJy1YrMMT0=",
  4575. "_parent": {
  4576. "$ref": "AAAAAAFVDGJyxYqmF+Q="
  4577. },
  4578. "model": {
  4579. "$ref": "AAAAAAFVDGCqv8v9Fnc="
  4580. },
  4581. "fillColor": "#cccccc",
  4582. "font": "Arial;13;0",
  4583. "left": 117,
  4584. "top": 778,
  4585. "width": 150.73489379882812,
  4586. "height": 13,
  4587. "text": "Error",
  4588. "horizontalAlignment": 0
  4589. },
  4590. {
  4591. "_type": "UMLEnumerationLiteralView",
  4592. "_id": "AAAAAAFVDGJy1orPdbU=",
  4593. "_parent": {
  4594. "$ref": "AAAAAAFVDGJyxYqmF+Q="
  4595. },
  4596. "model": {
  4597. "$ref": "AAAAAAFVDGCqv8v+nk8="
  4598. },
  4599. "fillColor": "#cccccc",
  4600. "font": "Arial;13;0",
  4601. "left": 117,
  4602. "top": 793,
  4603. "width": 150.73489379882812,
  4604. "height": 13,
  4605. "text": "Warn",
  4606. "horizontalAlignment": 0
  4607. },
  4608. {
  4609. "_type": "UMLEnumerationLiteralView",
  4610. "_id": "AAAAAAFVDGJy14rSLWU=",
  4611. "_parent": {
  4612. "$ref": "AAAAAAFVDGJyxYqmF+Q="
  4613. },
  4614. "model": {
  4615. "$ref": "AAAAAAFVDGCqv8v/6zI="
  4616. },
  4617. "fillColor": "#cccccc",
  4618. "font": "Arial;13;0",
  4619. "left": 117,
  4620. "top": 808,
  4621. "width": 150.73489379882812,
  4622. "height": 13,
  4623. "text": "Info",
  4624. "horizontalAlignment": 0
  4625. },
  4626. {
  4627. "_type": "UMLEnumerationLiteralView",
  4628. "_id": "AAAAAAFVDGJy14rVWpo=",
  4629. "_parent": {
  4630. "$ref": "AAAAAAFVDGJyxYqmF+Q="
  4631. },
  4632. "model": {
  4633. "$ref": "AAAAAAFVDGCqv8wAKBU="
  4634. },
  4635. "fillColor": "#cccccc",
  4636. "font": "Arial;13;0",
  4637. "left": 117,
  4638. "top": 823,
  4639. "width": 150.73489379882812,
  4640. "height": 13,
  4641. "text": "Debug",
  4642. "horizontalAlignment": 0
  4643. },
  4644. {
  4645. "_type": "UMLEnumerationLiteralView",
  4646. "_id": "AAAAAAFVDGJy14rYzEY=",
  4647. "_parent": {
  4648. "$ref": "AAAAAAFVDGJyxYqmF+Q="
  4649. },
  4650. "model": {
  4651. "$ref": "AAAAAAFVDGCqv8wBRIk="
  4652. },
  4653. "fillColor": "#cccccc",
  4654. "font": "Arial;13;0",
  4655. "left": 117,
  4656. "top": 838,
  4657. "width": 150.73489379882812,
  4658. "height": 13,
  4659. "text": "Verbose",
  4660. "horizontalAlignment": 0
  4661. }
  4662. ],
  4663. "fillColor": "#cccccc",
  4664. "font": "Arial;13;0",
  4665. "left": 112,
  4666. "top": 773,
  4667. "width": 160.73489379882812,
  4668. "height": 83
  4669. }
  4670. ],
  4671. "fillColor": "#cccccc",
  4672. "font": "Arial;13;0",
  4673. "containerChangeable": true,
  4674. "left": 112,
  4675. "top": 720,
  4676. "width": 160.73489379882812,
  4677. "height": 136,
  4678. "showNamespace": true,
  4679. "nameCompartment": {
  4680. "$ref": "AAAAAAFVDGJyw4qdJVo="
  4681. },
  4682. "suppressAttributes": true,
  4683. "suppressOperations": true,
  4684. "attributeCompartment": {
  4685. "$ref": "AAAAAAFVDGJyxIqisiY="
  4686. },
  4687. "operationCompartment": {
  4688. "$ref": "AAAAAAFVDGJyxIqjTy8="
  4689. },
  4690. "receptionCompartment": {
  4691. "$ref": "AAAAAAFVDGJyxYqkO3s="
  4692. },
  4693. "templateParameterCompartment": {
  4694. "$ref": "AAAAAAFVDGJyxYqlvK8="
  4695. },
  4696. "enumerationLiteralCompartment": {
  4697. "$ref": "AAAAAAFVDGJyxYqmF+Q="
  4698. }
  4699. },
  4700. {
  4701. "_type": "UMLEnumerationView",
  4702. "_id": "AAAAAAFVDGKEOIr07EY=",
  4703. "_parent": {
  4704. "$ref": "AAAAAAFF+qBtyKM79qY="
  4705. },
  4706. "model": {
  4707. "$ref": "AAAAAAFVDGEwKswCgX8="
  4708. },
  4709. "subViews": [
  4710. {
  4711. "_type": "UMLNameCompartmentView",
  4712. "_id": "AAAAAAFVDGKEOIr1BPU=",
  4713. "_parent": {
  4714. "$ref": "AAAAAAFVDGKEOIr07EY="
  4715. },
  4716. "model": {
  4717. "$ref": "AAAAAAFVDGEwKswCgX8="
  4718. },
  4719. "subViews": [
  4720. {
  4721. "_type": "LabelView",
  4722. "_id": "AAAAAAFVDGKEOIr2FbY=",
  4723. "_parent": {
  4724. "$ref": "AAAAAAFVDGKEOIr1BPU="
  4725. },
  4726. "fillColor": "#cccccc",
  4727. "font": "Arial;13;0",
  4728. "left": 285,
  4729. "top": 725,
  4730. "width": 150.73489379882812,
  4731. "height": 13,
  4732. "text": "«enumeration»"
  4733. },
  4734. {
  4735. "_type": "LabelView",
  4736. "_id": "AAAAAAFVDGKEOIr3tVg=",
  4737. "_parent": {
  4738. "$ref": "AAAAAAFVDGKEOIr1BPU="
  4739. },
  4740. "fillColor": "#cccccc",
  4741. "font": "Arial;13;1",
  4742. "left": 285,
  4743. "top": 740,
  4744. "width": 150.73489379882812,
  4745. "height": 13,
  4746. "text": "DDLogLevel"
  4747. },
  4748. {
  4749. "_type": "LabelView",
  4750. "_id": "AAAAAAFVDGKEOIr4JGU=",
  4751. "_parent": {
  4752. "$ref": "AAAAAAFVDGKEOIr1BPU="
  4753. },
  4754. "fillColor": "#cccccc",
  4755. "font": "Arial;13;0",
  4756. "left": 285,
  4757. "top": 755,
  4758. "width": 150.73489379882812,
  4759. "height": 13,
  4760. "text": "(from CocoaLumberjack)"
  4761. },
  4762. {
  4763. "_type": "LabelView",
  4764. "_id": "AAAAAAFVDGKEOIr5/9U=",
  4765. "_parent": {
  4766. "$ref": "AAAAAAFVDGKEOIr1BPU="
  4767. },
  4768. "visible": false,
  4769. "fillColor": "#cccccc",
  4770. "font": "Arial;13;0",
  4771. "left": -2502,
  4772. "top": 136,
  4773. "height": 13,
  4774. "horizontalAlignment": 1
  4775. }
  4776. ],
  4777. "fillColor": "#cccccc",
  4778. "font": "Arial;13;0",
  4779. "left": 280,
  4780. "top": 720,
  4781. "width": 160.73489379882812,
  4782. "height": 53,
  4783. "stereotypeLabel": {
  4784. "$ref": "AAAAAAFVDGKEOIr2FbY="
  4785. },
  4786. "nameLabel": {
  4787. "$ref": "AAAAAAFVDGKEOIr3tVg="
  4788. },
  4789. "namespaceLabel": {
  4790. "$ref": "AAAAAAFVDGKEOIr4JGU="
  4791. },
  4792. "propertyLabel": {
  4793. "$ref": "AAAAAAFVDGKEOIr5/9U="
  4794. }
  4795. },
  4796. {
  4797. "_type": "UMLAttributeCompartmentView",
  4798. "_id": "AAAAAAFVDGKEOIr6DNo=",
  4799. "_parent": {
  4800. "$ref": "AAAAAAFVDGKEOIr07EY="
  4801. },
  4802. "model": {
  4803. "$ref": "AAAAAAFVDGEwKswCgX8="
  4804. },
  4805. "visible": false,
  4806. "fillColor": "#cccccc",
  4807. "font": "Arial;13;0",
  4808. "left": -1267,
  4809. "top": 68,
  4810. "width": 10,
  4811. "height": 10
  4812. },
  4813. {
  4814. "_type": "UMLOperationCompartmentView",
  4815. "_id": "AAAAAAFVDGKEOYr7m+8=",
  4816. "_parent": {
  4817. "$ref": "AAAAAAFVDGKEOIr07EY="
  4818. },
  4819. "model": {
  4820. "$ref": "AAAAAAFVDGEwKswCgX8="
  4821. },
  4822. "visible": false,
  4823. "fillColor": "#cccccc",
  4824. "font": "Arial;13;0",
  4825. "left": -1267,
  4826. "top": 68,
  4827. "width": 10,
  4828. "height": 10
  4829. },
  4830. {
  4831. "_type": "UMLReceptionCompartmentView",
  4832. "_id": "AAAAAAFVDGKEOYr8YiQ=",
  4833. "_parent": {
  4834. "$ref": "AAAAAAFVDGKEOIr07EY="
  4835. },
  4836. "model": {
  4837. "$ref": "AAAAAAFVDGEwKswCgX8="
  4838. },
  4839. "visible": false,
  4840. "fillColor": "#cccccc",
  4841. "font": "Arial;13;0",
  4842. "left": -1267,
  4843. "top": 68,
  4844. "width": 10,
  4845. "height": 10
  4846. },
  4847. {
  4848. "_type": "UMLTemplateParameterCompartmentView",
  4849. "_id": "AAAAAAFVDGKEOYr9Vx4=",
  4850. "_parent": {
  4851. "$ref": "AAAAAAFVDGKEOIr07EY="
  4852. },
  4853. "model": {
  4854. "$ref": "AAAAAAFVDGEwKswCgX8="
  4855. },
  4856. "visible": false,
  4857. "fillColor": "#cccccc",
  4858. "font": "Arial;13;0",
  4859. "left": -1267,
  4860. "top": 68,
  4861. "width": 10,
  4862. "height": 10
  4863. },
  4864. {
  4865. "_type": "UMLEnumerationLiteralCompartmentView",
  4866. "_id": "AAAAAAFVDGKEOYr+b7s=",
  4867. "_parent": {
  4868. "$ref": "AAAAAAFVDGKEOIr07EY="
  4869. },
  4870. "model": {
  4871. "$ref": "AAAAAAFVDGEwKswCgX8="
  4872. },
  4873. "subViews": [
  4874. {
  4875. "_type": "UMLEnumerationLiteralView",
  4876. "_id": "AAAAAAFVDGKER4skRrw=",
  4877. "_parent": {
  4878. "$ref": "AAAAAAFVDGKEOYr+b7s="
  4879. },
  4880. "model": {
  4881. "$ref": "AAAAAAFVDGEwKswFcIY="
  4882. },
  4883. "fillColor": "#cccccc",
  4884. "font": "Arial;13;0",
  4885. "left": 285,
  4886. "top": 778,
  4887. "width": 150.73489379882812,
  4888. "height": 13,
  4889. "text": "Off",
  4890. "horizontalAlignment": 0
  4891. },
  4892. {
  4893. "_type": "UMLEnumerationLiteralView",
  4894. "_id": "AAAAAAFVDGKESIsnzAU=",
  4895. "_parent": {
  4896. "$ref": "AAAAAAFVDGKEOYr+b7s="
  4897. },
  4898. "model": {
  4899. "$ref": "AAAAAAFVDGEwKswGC5Y="
  4900. },
  4901. "fillColor": "#cccccc",
  4902. "font": "Arial;13;0",
  4903. "left": 285,
  4904. "top": 793,
  4905. "width": 150.73489379882812,
  4906. "height": 13,
  4907. "text": "Error",
  4908. "horizontalAlignment": 0
  4909. },
  4910. {
  4911. "_type": "UMLEnumerationLiteralView",
  4912. "_id": "AAAAAAFVDGKESIsqQCk=",
  4913. "_parent": {
  4914. "$ref": "AAAAAAFVDGKEOYr+b7s="
  4915. },
  4916. "model": {
  4917. "$ref": "AAAAAAFVDGEwKswHHTY="
  4918. },
  4919. "fillColor": "#cccccc",
  4920. "font": "Arial;13;0",
  4921. "left": 285,
  4922. "top": 808,
  4923. "width": 150.73489379882812,
  4924. "height": 13,
  4925. "text": "Warn",
  4926. "horizontalAlignment": 0
  4927. },
  4928. {
  4929. "_type": "UMLEnumerationLiteralView",
  4930. "_id": "AAAAAAFVDGKESYst2Ug=",
  4931. "_parent": {
  4932. "$ref": "AAAAAAFVDGKEOYr+b7s="
  4933. },
  4934. "model": {
  4935. "$ref": "AAAAAAFVDGEwKswIDrE="
  4936. },
  4937. "fillColor": "#cccccc",
  4938. "font": "Arial;13;0",
  4939. "left": 285,
  4940. "top": 823,
  4941. "width": 150.73489379882812,
  4942. "height": 13,
  4943. "text": "Info",
  4944. "horizontalAlignment": 0
  4945. },
  4946. {
  4947. "_type": "UMLEnumerationLiteralView",
  4948. "_id": "AAAAAAFVDGKESYswHOg=",
  4949. "_parent": {
  4950. "$ref": "AAAAAAFVDGKEOYr+b7s="
  4951. },
  4952. "model": {
  4953. "$ref": "AAAAAAFVDGEwKswJsDY="
  4954. },
  4955. "fillColor": "#cccccc",
  4956. "font": "Arial;13;0",
  4957. "left": 285,
  4958. "top": 838,
  4959. "width": 150.73489379882812,
  4960. "height": 13,
  4961. "text": "Debug",
  4962. "horizontalAlignment": 0
  4963. },
  4964. {
  4965. "_type": "UMLEnumerationLiteralView",
  4966. "_id": "AAAAAAFVDGKESYszkno=",
  4967. "_parent": {
  4968. "$ref": "AAAAAAFVDGKEOYr+b7s="
  4969. },
  4970. "model": {
  4971. "$ref": "AAAAAAFVDGEwKswKwo4="
  4972. },
  4973. "fillColor": "#cccccc",
  4974. "font": "Arial;13;0",
  4975. "left": 285,
  4976. "top": 853,
  4977. "width": 150.73489379882812,
  4978. "height": 13,
  4979. "text": "Verbose",
  4980. "horizontalAlignment": 0
  4981. },
  4982. {
  4983. "_type": "UMLEnumerationLiteralView",
  4984. "_id": "AAAAAAFVDGKESos2tQs=",
  4985. "_parent": {
  4986. "$ref": "AAAAAAFVDGKEOYr+b7s="
  4987. },
  4988. "model": {
  4989. "$ref": "AAAAAAFVDGEwKswLSu8="
  4990. },
  4991. "fillColor": "#cccccc",
  4992. "font": "Arial;13;0",
  4993. "left": 285,
  4994. "top": 868,
  4995. "width": 150.73489379882812,
  4996. "height": 13,
  4997. "text": "All",
  4998. "horizontalAlignment": 0
  4999. }
  5000. ],
  5001. "fillColor": "#cccccc",
  5002. "font": "Arial;13;0",
  5003. "left": 280,
  5004. "top": 773,
  5005. "width": 160.73489379882812,
  5006. "height": 113
  5007. }
  5008. ],
  5009. "fillColor": "#cccccc",
  5010. "font": "Arial;13;0",
  5011. "containerChangeable": true,
  5012. "left": 280,
  5013. "top": 720,
  5014. "width": 160.73489379882812,
  5015. "height": 166,
  5016. "showNamespace": true,
  5017. "nameCompartment": {
  5018. "$ref": "AAAAAAFVDGKEOIr1BPU="
  5019. },
  5020. "suppressAttributes": true,
  5021. "suppressOperations": true,
  5022. "attributeCompartment": {
  5023. "$ref": "AAAAAAFVDGKEOIr6DNo="
  5024. },
  5025. "operationCompartment": {
  5026. "$ref": "AAAAAAFVDGKEOYr7m+8="
  5027. },
  5028. "receptionCompartment": {
  5029. "$ref": "AAAAAAFVDGKEOYr8YiQ="
  5030. },
  5031. "templateParameterCompartment": {
  5032. "$ref": "AAAAAAFVDGKEOYr9Vx4="
  5033. },
  5034. "enumerationLiteralCompartment": {
  5035. "$ref": "AAAAAAFVDGKEOYr+b7s="
  5036. }
  5037. },
  5038. {
  5039. "_type": "UMLClassView",
  5040. "_id": "AAAAAAF3YfGjY9MZcEE=",
  5041. "_parent": {
  5042. "$ref": "AAAAAAFF+qBtyKM79qY="
  5043. },
  5044. "model": {
  5045. "$ref": "AAAAAAF3YfGjYtMXekY="
  5046. },
  5047. "subViews": [
  5048. {
  5049. "_type": "UMLNameCompartmentView",
  5050. "_id": "AAAAAAF3YfGjY9MaeVY=",
  5051. "_parent": {
  5052. "$ref": "AAAAAAF3YfGjY9MZcEE="
  5053. },
  5054. "model": {
  5055. "$ref": "AAAAAAF3YfGjYtMXekY="
  5056. },
  5057. "subViews": [
  5058. {
  5059. "_type": "LabelView",
  5060. "_id": "AAAAAAF3YfGjY9MbC9c=",
  5061. "_parent": {
  5062. "$ref": "AAAAAAF3YfGjY9MaeVY="
  5063. },
  5064. "visible": false,
  5065. "fillColor": "#c6c6c6",
  5066. "font": "Arial;13;0",
  5067. "left": 624,
  5068. "top": 400,
  5069. "height": 13
  5070. },
  5071. {
  5072. "_type": "LabelView",
  5073. "_id": "AAAAAAF3YfGjY9MclOk=",
  5074. "_parent": {
  5075. "$ref": "AAAAAAF3YfGjY9MaeVY="
  5076. },
  5077. "fillColor": "#c6c6c6",
  5078. "font": "Arial;13;1",
  5079. "left": 797,
  5080. "top": 799,
  5081. "width": 150.73489379882812,
  5082. "height": 13,
  5083. "text": "DDOSLogger"
  5084. },
  5085. {
  5086. "_type": "LabelView",
  5087. "_id": "AAAAAAF3YfGjZNMdArM=",
  5088. "_parent": {
  5089. "$ref": "AAAAAAF3YfGjY9MaeVY="
  5090. },
  5091. "fillColor": "#c6c6c6",
  5092. "font": "Arial;13;0",
  5093. "left": 797,
  5094. "top": 814,
  5095. "width": 150.73489379882812,
  5096. "height": 13,
  5097. "text": "(from CocoaLumberjack)"
  5098. },
  5099. {
  5100. "_type": "LabelView",
  5101. "_id": "AAAAAAF3YfGjZNMePSA=",
  5102. "_parent": {
  5103. "$ref": "AAAAAAF3YfGjY9MaeVY="
  5104. },
  5105. "visible": false,
  5106. "fillColor": "#c6c6c6",
  5107. "font": "Arial;13;0",
  5108. "left": 624,
  5109. "top": 400,
  5110. "height": 13,
  5111. "horizontalAlignment": 1
  5112. }
  5113. ],
  5114. "fillColor": "#c6c6c6",
  5115. "font": "Arial;13;0",
  5116. "left": 792,
  5117. "top": 792,
  5118. "width": 160.73489379882812,
  5119. "height": 40,
  5120. "stereotypeLabel": {
  5121. "$ref": "AAAAAAF3YfGjY9MbC9c="
  5122. },
  5123. "nameLabel": {
  5124. "$ref": "AAAAAAF3YfGjY9MclOk="
  5125. },
  5126. "namespaceLabel": {
  5127. "$ref": "AAAAAAF3YfGjZNMdArM="
  5128. },
  5129. "propertyLabel": {
  5130. "$ref": "AAAAAAF3YfGjZNMePSA="
  5131. }
  5132. },
  5133. {
  5134. "_type": "UMLAttributeCompartmentView",
  5135. "_id": "AAAAAAF3YfGjZNMf20I=",
  5136. "_parent": {
  5137. "$ref": "AAAAAAF3YfGjY9MZcEE="
  5138. },
  5139. "model": {
  5140. "$ref": "AAAAAAF3YfGjYtMXekY="
  5141. },
  5142. "fillColor": "#c6c6c6",
  5143. "font": "Arial;13;0",
  5144. "left": 792,
  5145. "top": 832,
  5146. "width": 160.73489379882812,
  5147. "height": 10
  5148. },
  5149. {
  5150. "_type": "UMLOperationCompartmentView",
  5151. "_id": "AAAAAAF3YfGjZNMg2GM=",
  5152. "_parent": {
  5153. "$ref": "AAAAAAF3YfGjY9MZcEE="
  5154. },
  5155. "model": {
  5156. "$ref": "AAAAAAF3YfGjYtMXekY="
  5157. },
  5158. "fillColor": "#c6c6c6",
  5159. "font": "Arial;13;0",
  5160. "left": 792,
  5161. "top": 842,
  5162. "width": 160.73489379882812,
  5163. "height": 10
  5164. },
  5165. {
  5166. "_type": "UMLReceptionCompartmentView",
  5167. "_id": "AAAAAAF3YfGjZNMhZyU=",
  5168. "_parent": {
  5169. "$ref": "AAAAAAF3YfGjY9MZcEE="
  5170. },
  5171. "model": {
  5172. "$ref": "AAAAAAF3YfGjYtMXekY="
  5173. },
  5174. "visible": false,
  5175. "fillColor": "#c6c6c6",
  5176. "font": "Arial;13;0",
  5177. "left": 312,
  5178. "top": 200,
  5179. "width": 10,
  5180. "height": 10
  5181. },
  5182. {
  5183. "_type": "UMLTemplateParameterCompartmentView",
  5184. "_id": "AAAAAAF3YfGjZNMi+bQ=",
  5185. "_parent": {
  5186. "$ref": "AAAAAAF3YfGjY9MZcEE="
  5187. },
  5188. "model": {
  5189. "$ref": "AAAAAAF3YfGjYtMXekY="
  5190. },
  5191. "visible": false,
  5192. "fillColor": "#c6c6c6",
  5193. "font": "Arial;13;0",
  5194. "left": 312,
  5195. "top": 200,
  5196. "width": 10,
  5197. "height": 10
  5198. }
  5199. ],
  5200. "fillColor": "#c6c6c6",
  5201. "font": "Arial;13;0",
  5202. "containerChangeable": true,
  5203. "left": 792,
  5204. "top": 792,
  5205. "width": 160.73489379882812,
  5206. "height": 60,
  5207. "showNamespace": true,
  5208. "nameCompartment": {
  5209. "$ref": "AAAAAAF3YfGjY9MaeVY="
  5210. },
  5211. "attributeCompartment": {
  5212. "$ref": "AAAAAAF3YfGjZNMf20I="
  5213. },
  5214. "operationCompartment": {
  5215. "$ref": "AAAAAAF3YfGjZNMg2GM="
  5216. },
  5217. "receptionCompartment": {
  5218. "$ref": "AAAAAAF3YfGjZNMhZyU="
  5219. },
  5220. "templateParameterCompartment": {
  5221. "$ref": "AAAAAAF3YfGjZNMi+bQ="
  5222. }
  5223. },
  5224. {
  5225. "_type": "UMLGeneralizationView",
  5226. "_id": "AAAAAAF3YfXHDtbXoPQ=",
  5227. "_parent": {
  5228. "$ref": "AAAAAAFF+qBtyKM79qY="
  5229. },
  5230. "model": {
  5231. "$ref": "AAAAAAF3YfXHDdbVBC4="
  5232. },
  5233. "subViews": [
  5234. {
  5235. "_type": "EdgeLabelView",
  5236. "_id": "AAAAAAF3YfXHDtbYGMk=",
  5237. "_parent": {
  5238. "$ref": "AAAAAAF3YfXHDtbXoPQ="
  5239. },
  5240. "model": {
  5241. "$ref": "AAAAAAF3YfXHDdbVBC4="
  5242. },
  5243. "visible": false,
  5244. "font": "Arial;13;0",
  5245. "left": 771,
  5246. "top": 785,
  5247. "height": 13,
  5248. "alpha": 1.5707963267948966,
  5249. "distance": 15,
  5250. "hostEdge": {
  5251. "$ref": "AAAAAAF3YfXHDtbXoPQ="
  5252. },
  5253. "edgePosition": 1
  5254. },
  5255. {
  5256. "_type": "EdgeLabelView",
  5257. "_id": "AAAAAAF3YfXHDtbZ9uo=",
  5258. "_parent": {
  5259. "$ref": "AAAAAAF3YfXHDtbXoPQ="
  5260. },
  5261. "model": {
  5262. "$ref": "AAAAAAF3YfXHDdbVBC4="
  5263. },
  5264. "visible": null,
  5265. "font": "Arial;13;0",
  5266. "left": 771,
  5267. "top": 800,
  5268. "height": 13,
  5269. "alpha": 1.5707963267948966,
  5270. "distance": 30,
  5271. "hostEdge": {
  5272. "$ref": "AAAAAAF3YfXHDtbXoPQ="
  5273. },
  5274. "edgePosition": 1
  5275. },
  5276. {
  5277. "_type": "EdgeLabelView",
  5278. "_id": "AAAAAAF3YfXHDtbaFA0=",
  5279. "_parent": {
  5280. "$ref": "AAAAAAF3YfXHDtbXoPQ="
  5281. },
  5282. "model": {
  5283. "$ref": "AAAAAAF3YfXHDdbVBC4="
  5284. },
  5285. "visible": false,
  5286. "font": "Arial;13;0",
  5287. "left": 772,
  5288. "top": 755,
  5289. "height": 13,
  5290. "alpha": -1.5707963267948966,
  5291. "distance": 15,
  5292. "hostEdge": {
  5293. "$ref": "AAAAAAF3YfXHDtbXoPQ="
  5294. },
  5295. "edgePosition": 1
  5296. }
  5297. ],
  5298. "font": "Arial;13;0",
  5299. "head": {
  5300. "$ref": "AAAAAAFTQcfNOq4OFig="
  5301. },
  5302. "tail": {
  5303. "$ref": "AAAAAAF3YfGjY9MZcEE="
  5304. },
  5305. "points": "856:792;856:776;688:776;688:731",
  5306. "showVisibility": true,
  5307. "nameLabel": {
  5308. "$ref": "AAAAAAF3YfXHDtbYGMk="
  5309. },
  5310. "stereotypeLabel": {
  5311. "$ref": "AAAAAAF3YfXHDtbZ9uo="
  5312. },
  5313. "propertyLabel": {
  5314. "$ref": "AAAAAAF3YfXHDtbaFA0="
  5315. }
  5316. },
  5317. {
  5318. "_type": "UMLGeneralizationView",
  5319. "_id": "AAAAAAF3YfbKPthaBYg=",
  5320. "_parent": {
  5321. "$ref": "AAAAAAFF+qBtyKM79qY="
  5322. },
  5323. "model": {
  5324. "$ref": "AAAAAAF3YfbKPthYUPU="
  5325. },
  5326. "subViews": [
  5327. {
  5328. "_type": "EdgeLabelView",
  5329. "_id": "AAAAAAF3YfbKPthbYIA=",
  5330. "_parent": {
  5331. "$ref": "AAAAAAF3YfbKPthaBYg="
  5332. },
  5333. "model": {
  5334. "$ref": "AAAAAAF3YfbKPthYUPU="
  5335. },
  5336. "visible": false,
  5337. "font": "Arial;13;0",
  5338. "left": 1023,
  5339. "top": 721,
  5340. "height": 13,
  5341. "alpha": 1.5707963267948966,
  5342. "distance": 15,
  5343. "hostEdge": {
  5344. "$ref": "AAAAAAF3YfbKPthaBYg="
  5345. },
  5346. "edgePosition": 1
  5347. },
  5348. {
  5349. "_type": "EdgeLabelView",
  5350. "_id": "AAAAAAF3YfbKPthcm4M=",
  5351. "_parent": {
  5352. "$ref": "AAAAAAF3YfbKPthaBYg="
  5353. },
  5354. "model": {
  5355. "$ref": "AAAAAAF3YfbKPthYUPU="
  5356. },
  5357. "visible": null,
  5358. "font": "Arial;13;0",
  5359. "left": 1023,
  5360. "top": 736,
  5361. "height": 13,
  5362. "alpha": 1.5707963267948966,
  5363. "distance": 30,
  5364. "hostEdge": {
  5365. "$ref": "AAAAAAF3YfbKPthaBYg="
  5366. },
  5367. "edgePosition": 1
  5368. },
  5369. {
  5370. "_type": "EdgeLabelView",
  5371. "_id": "AAAAAAF3YfbKPthddYI=",
  5372. "_parent": {
  5373. "$ref": "AAAAAAF3YfbKPthaBYg="
  5374. },
  5375. "model": {
  5376. "$ref": "AAAAAAF3YfbKPthYUPU="
  5377. },
  5378. "visible": false,
  5379. "font": "Arial;13;0",
  5380. "left": 1024,
  5381. "top": 691,
  5382. "height": 13,
  5383. "alpha": -1.5707963267948966,
  5384. "distance": 15,
  5385. "hostEdge": {
  5386. "$ref": "AAAAAAF3YfbKPthaBYg="
  5387. },
  5388. "edgePosition": 1
  5389. }
  5390. ],
  5391. "font": "Arial;13;0",
  5392. "head": {
  5393. "$ref": "AAAAAAFTQcfNOq4OFig="
  5394. },
  5395. "tail": {
  5396. "$ref": "AAAAAAFTQd7njclu8cE="
  5397. },
  5398. "points": "1024:792;1024:712;720:712",
  5399. "showVisibility": true,
  5400. "nameLabel": {
  5401. "$ref": "AAAAAAF3YfbKPthbYIA="
  5402. },
  5403. "stereotypeLabel": {
  5404. "$ref": "AAAAAAF3YfbKPthcm4M="
  5405. },
  5406. "propertyLabel": {
  5407. "$ref": "AAAAAAF3YfbKPthddYI="
  5408. }
  5409. }
  5410. ]
  5411. },
  5412. {
  5413. "_type": "UMLPackage",
  5414. "_id": "AAAAAAFTQPLgP6rUTww=",
  5415. "_parent": {
  5416. "$ref": "AAAAAAFF+qBWK6M3Z8Y="
  5417. },
  5418. "name": "CocoaLumberjack",
  5419. "ownedElements": [
  5420. {
  5421. "_type": "UMLClass",
  5422. "_id": "AAAAAAFTQboi3atOLvk=",
  5423. "_parent": {
  5424. "$ref": "AAAAAAFTQPLgP6rUTww="
  5425. },
  5426. "name": "DDLog",
  5427. "ownedElements": [
  5428. {
  5429. "_type": "UMLAssociation",
  5430. "_id": "AAAAAAFTQcqp8K6kDCM=",
  5431. "_parent": {
  5432. "$ref": "AAAAAAFTQboi3atOLvk="
  5433. },
  5434. "name": "loggers",
  5435. "end1": {
  5436. "_type": "UMLAssociationEnd",
  5437. "_id": "AAAAAAFTQcqp8K6lXOI=",
  5438. "_parent": {
  5439. "$ref": "AAAAAAFTQcqp8K6kDCM="
  5440. },
  5441. "reference": {
  5442. "$ref": "AAAAAAFTQb0M+auaawA="
  5443. },
  5444. "multiplicity": "*"
  5445. },
  5446. "end2": {
  5447. "_type": "UMLAssociationEnd",
  5448. "_id": "AAAAAAFTQcqp8K6m4wQ=",
  5449. "_parent": {
  5450. "$ref": "AAAAAAFTQcqp8K6kDCM="
  5451. },
  5452. "reference": {
  5453. "$ref": "AAAAAAFTQboi3atOLvk="
  5454. },
  5455. "aggregation": "shared",
  5456. "multiplicity": "1"
  5457. },
  5458. "visibility": "private"
  5459. }
  5460. ],
  5461. "attributes": [
  5462. {
  5463. "_type": "UMLAttribute",
  5464. "_id": "AAAAAAFTQcC0PavoeNk=",
  5465. "_parent": {
  5466. "$ref": "AAAAAAFTQboi3atOLvk="
  5467. },
  5468. "name": "loggingQueue",
  5469. "type": ""
  5470. },
  5471. {
  5472. "_type": "UMLAttribute",
  5473. "_id": "AAAAAAFTUWpzHUs5hn8=",
  5474. "_parent": {
  5475. "$ref": "AAAAAAFTQboi3atOLvk="
  5476. },
  5477. "name": "loggers",
  5478. "visibility": "private",
  5479. "type": "[DDLogger]"
  5480. }
  5481. ],
  5482. "operations": [
  5483. {
  5484. "_type": "UMLOperation",
  5485. "_id": "AAAAAAFTQbt/PKuBaDQ=",
  5486. "_parent": {
  5487. "$ref": "AAAAAAFTQboi3atOLvk="
  5488. },
  5489. "name": "log:"
  5490. },
  5491. {
  5492. "_type": "UMLOperation",
  5493. "_id": "AAAAAAFTQbw7AquIOPo=",
  5494. "_parent": {
  5495. "$ref": "AAAAAAFTQboi3atOLvk="
  5496. },
  5497. "name": "addLogger:",
  5498. "parameters": [
  5499. {
  5500. "_type": "UMLParameter",
  5501. "_id": "AAAAAAFTQb4NMKvHXYs=",
  5502. "_parent": {
  5503. "$ref": "AAAAAAFTQbw7AquIOPo="
  5504. },
  5505. "name": "logger",
  5506. "type": {
  5507. "$ref": "AAAAAAFTQb0M+auaawA="
  5508. }
  5509. }
  5510. ]
  5511. },
  5512. {
  5513. "_type": "UMLOperation",
  5514. "_id": "AAAAAAFTQbyeA6uTw6s=",
  5515. "_parent": {
  5516. "$ref": "AAAAAAFTQboi3atOLvk="
  5517. },
  5518. "name": "removeLogger:",
  5519. "parameters": [
  5520. {
  5521. "_type": "UMLParameter",
  5522. "_id": "AAAAAAFTQb5VH6vMJW4=",
  5523. "_parent": {
  5524. "$ref": "AAAAAAFTQbyeA6uTw6s="
  5525. },
  5526. "name": "logger",
  5527. "type": {
  5528. "$ref": "AAAAAAFTQb0M+auaawA="
  5529. }
  5530. }
  5531. ]
  5532. },
  5533. {
  5534. "_type": "UMLOperation",
  5535. "_id": "AAAAAAFTQcErxav2uJ8=",
  5536. "_parent": {
  5537. "$ref": "AAAAAAFTQboi3atOLvk="
  5538. },
  5539. "name": "allLoggers"
  5540. },
  5541. {
  5542. "_type": "UMLOperation",
  5543. "_id": "AAAAAAFTQcEAiKvvGFk=",
  5544. "_parent": {
  5545. "$ref": "AAAAAAFTQboi3atOLvk="
  5546. },
  5547. "name": "removeAllLoggers"
  5548. }
  5549. ]
  5550. },
  5551. {
  5552. "_type": "UMLInterface",
  5553. "_id": "AAAAAAFTQb0M+auaawA=",
  5554. "_parent": {
  5555. "$ref": "AAAAAAFTQPLgP6rUTww="
  5556. },
  5557. "name": "DDLogger",
  5558. "ownedElements": [
  5559. {
  5560. "_type": "UMLGeneralization",
  5561. "_id": "AAAAAAFTQchXhK5iUkk=",
  5562. "_parent": {
  5563. "$ref": "AAAAAAFTQb0M+auaawA="
  5564. },
  5565. "source": {
  5566. "$ref": "AAAAAAFTQcd7qa4I83s="
  5567. },
  5568. "target": {
  5569. "$ref": "AAAAAAFTQb0M+auaawA="
  5570. }
  5571. },
  5572. {
  5573. "_type": "UMLInterfaceRealization",
  5574. "_id": "AAAAAAFTQckQy66CFMc=",
  5575. "_parent": {
  5576. "$ref": "AAAAAAFTQb0M+auaawA="
  5577. },
  5578. "source": {
  5579. "$ref": "AAAAAAFTQcd7qa4I83s="
  5580. },
  5581. "target": {
  5582. "$ref": "AAAAAAFTQb0M+auaawA="
  5583. }
  5584. },
  5585. {
  5586. "_type": "UMLAssociation",
  5587. "_id": "AAAAAAFTQc8yl7ImwsE=",
  5588. "_parent": {
  5589. "$ref": "AAAAAAFTQb0M+auaawA="
  5590. },
  5591. "name": "logFormatter",
  5592. "end1": {
  5593. "_type": "UMLAssociationEnd",
  5594. "_id": "AAAAAAFTQc8yl7InemA=",
  5595. "_parent": {
  5596. "$ref": "AAAAAAFTQc8yl7ImwsE="
  5597. },
  5598. "reference": {
  5599. "$ref": "AAAAAAFTQcG+a6v+1oM="
  5600. },
  5601. "multiplicity": "0..1"
  5602. },
  5603. "end2": {
  5604. "_type": "UMLAssociationEnd",
  5605. "_id": "AAAAAAFTQc8yl7IoNK0=",
  5606. "_parent": {
  5607. "$ref": "AAAAAAFTQc8yl7ImwsE="
  5608. },
  5609. "reference": {
  5610. "$ref": "AAAAAAFTQb0M+auaawA="
  5611. },
  5612. "aggregation": "shared",
  5613. "multiplicity": "0..1"
  5614. }
  5615. },
  5616. {
  5617. "_type": "UMLAssociation",
  5618. "_id": "AAAAAAFTQdycNsFZyWM=",
  5619. "_parent": {
  5620. "$ref": "AAAAAAFTQb0M+auaawA="
  5621. },
  5622. "end1": {
  5623. "_type": "UMLAssociationEnd",
  5624. "_id": "AAAAAAFTQdycNsFa7a0=",
  5625. "_parent": {
  5626. "$ref": "AAAAAAFTQdycNsFZyWM="
  5627. },
  5628. "reference": {
  5629. "$ref": "AAAAAAFTQb0M+auaawA="
  5630. },
  5631. "navigable": false
  5632. },
  5633. "end2": {
  5634. "_type": "UMLAssociationEnd",
  5635. "_id": "AAAAAAFTQdycNsFbQbM=",
  5636. "_parent": {
  5637. "$ref": "AAAAAAFTQdycNsFZyWM="
  5638. },
  5639. "reference": {
  5640. "$ref": "AAAAAAFTQcVwIKyu1No="
  5641. }
  5642. }
  5643. },
  5644. {
  5645. "_type": "UMLDependency",
  5646. "_id": "AAAAAAFTUYaAHJxYZr8=",
  5647. "_parent": {
  5648. "$ref": "AAAAAAFTQb0M+auaawA="
  5649. },
  5650. "source": {
  5651. "$ref": "AAAAAAFTQb0M+auaawA="
  5652. },
  5653. "target": {
  5654. "$ref": "AAAAAAFTQcVwIKyu1No="
  5655. }
  5656. }
  5657. ],
  5658. "attributes": [
  5659. {
  5660. "_type": "UMLAttribute",
  5661. "_id": "AAAAAAFTQc22ELCUq+k=",
  5662. "_parent": {
  5663. "$ref": "AAAAAAFTQb0M+auaawA="
  5664. },
  5665. "name": "logFormatter",
  5666. "type": {
  5667. "$ref": "AAAAAAFTQcG+a6v+1oM="
  5668. }
  5669. },
  5670. {
  5671. "_type": "UMLAttribute",
  5672. "_id": "AAAAAAFTQdSfBLcDZnI=",
  5673. "_parent": {
  5674. "$ref": "AAAAAAFTQb0M+auaawA="
  5675. },
  5676. "name": "loggerQueue",
  5677. "type": ""
  5678. },
  5679. {
  5680. "_type": "UMLAttribute",
  5681. "_id": "AAAAAAFTQdTFVLdS0MM=",
  5682. "_parent": {
  5683. "$ref": "AAAAAAFTQb0M+auaawA="
  5684. },
  5685. "name": "loggerName",
  5686. "type": ""
  5687. }
  5688. ],
  5689. "operations": [
  5690. {
  5691. "_type": "UMLOperation",
  5692. "_id": "AAAAAAFTQcLQX6w4sEw=",
  5693. "_parent": {
  5694. "$ref": "AAAAAAFTQb0M+auaawA="
  5695. },
  5696. "name": "logMessage",
  5697. "parameters": [
  5698. {
  5699. "_type": "UMLParameter",
  5700. "_id": "AAAAAAFTQdMlbrV1tlg=",
  5701. "_parent": {
  5702. "$ref": "AAAAAAFTQcLQX6w4sEw="
  5703. },
  5704. "name": "message",
  5705. "type": {
  5706. "$ref": "AAAAAAFTQcVwIKyu1No="
  5707. }
  5708. }
  5709. ]
  5710. },
  5711. {
  5712. "_type": "UMLOperation",
  5713. "_id": "AAAAAAFTQdOEy7XgiKs=",
  5714. "_parent": {
  5715. "$ref": "AAAAAAFTQb0M+auaawA="
  5716. },
  5717. "name": "didAddLogger"
  5718. },
  5719. {
  5720. "_type": "UMLOperation",
  5721. "_id": "AAAAAAFTQdOyBLYv5cg=",
  5722. "_parent": {
  5723. "$ref": "AAAAAAFTQb0M+auaawA="
  5724. },
  5725. "name": "willRemoveLogger"
  5726. },
  5727. {
  5728. "_type": "UMLOperation",
  5729. "_id": "AAAAAAFTQdR7xbaWT4s=",
  5730. "_parent": {
  5731. "$ref": "AAAAAAFTQb0M+auaawA="
  5732. },
  5733. "name": "flush"
  5734. }
  5735. ]
  5736. },
  5737. {
  5738. "_type": "UMLInterface",
  5739. "_id": "AAAAAAFTQcG+a6v+1oM=",
  5740. "_parent": {
  5741. "$ref": "AAAAAAFTQPLgP6rUTww="
  5742. },
  5743. "name": "DDLogFormatter",
  5744. "ownedElements": [
  5745. {
  5746. "_type": "UMLInterfaceRealization",
  5747. "_id": "AAAAAAFVDFvnTvHA3Fc=",
  5748. "_parent": {
  5749. "$ref": "AAAAAAFTQcG+a6v+1oM="
  5750. },
  5751. "source": {
  5752. "$ref": "AAAAAAFVDF1LgPPNuhU="
  5753. },
  5754. "target": {
  5755. "$ref": "AAAAAAFTQcG+a6v+1oM="
  5756. }
  5757. }
  5758. ],
  5759. "operations": [
  5760. {
  5761. "_type": "UMLOperation",
  5762. "_id": "AAAAAAFTQcIlpawppWo=",
  5763. "_parent": {
  5764. "$ref": "AAAAAAFTQcG+a6v+1oM="
  5765. },
  5766. "name": "formatLogMessage",
  5767. "parameters": [
  5768. {
  5769. "_type": "UMLParameter",
  5770. "_id": "AAAAAAFTUX3Z1oeAdC0=",
  5771. "_parent": {
  5772. "$ref": "AAAAAAFTQcIlpawppWo="
  5773. },
  5774. "name": "logMessage",
  5775. "type": {
  5776. "$ref": "AAAAAAFTQcVwIKyu1No="
  5777. }
  5778. },
  5779. {
  5780. "_type": "UMLParameter",
  5781. "_id": "AAAAAAFTUYMKl4xK4MY=",
  5782. "_parent": {
  5783. "$ref": "AAAAAAFTQcIlpawppWo="
  5784. },
  5785. "type": "String",
  5786. "direction": "return"
  5787. }
  5788. ]
  5789. },
  5790. {
  5791. "_type": "UMLOperation",
  5792. "_id": "AAAAAAFTQdBG4rSb4DA=",
  5793. "_parent": {
  5794. "$ref": "AAAAAAFTQcG+a6v+1oM="
  5795. },
  5796. "name": "didAddToLogger"
  5797. },
  5798. {
  5799. "_type": "UMLOperation",
  5800. "_id": "AAAAAAFTQdBx5bTqGpU=",
  5801. "_parent": {
  5802. "$ref": "AAAAAAFTQcG+a6v+1oM="
  5803. },
  5804. "name": "willRemoveFromLogger"
  5805. }
  5806. ]
  5807. },
  5808. {
  5809. "_type": "UMLClass",
  5810. "_id": "AAAAAAFTQcVwIKyu1No=",
  5811. "_parent": {
  5812. "$ref": "AAAAAAFTQPLgP6rUTww="
  5813. },
  5814. "name": "DDLogMessage",
  5815. "ownedElements": [
  5816. {
  5817. "_type": "UMLAssociation",
  5818. "_id": "AAAAAAFVDGOL+43YGVo=",
  5819. "_parent": {
  5820. "$ref": "AAAAAAFTQcVwIKyu1No="
  5821. },
  5822. "end1": {
  5823. "_type": "UMLAssociationEnd",
  5824. "_id": "AAAAAAFVDGOL+43ZqbI=",
  5825. "_parent": {
  5826. "$ref": "AAAAAAFVDGOL+43YGVo="
  5827. },
  5828. "reference": {
  5829. "$ref": "AAAAAAFTQcVwIKyu1No="
  5830. }
  5831. },
  5832. "end2": {
  5833. "_type": "UMLAssociationEnd",
  5834. "_id": "AAAAAAFVDGOL+43asYM=",
  5835. "_parent": {
  5836. "$ref": "AAAAAAFVDGOL+43YGVo="
  5837. },
  5838. "reference": {
  5839. "$ref": "AAAAAAFTQcVwIKyu1No="
  5840. },
  5841. "aggregation": "shared"
  5842. }
  5843. }
  5844. ],
  5845. "attributes": [
  5846. {
  5847. "_type": "UMLAttribute",
  5848. "_id": "AAAAAAFTQdV9jbicNCQ=",
  5849. "_parent": {
  5850. "$ref": "AAAAAAFTQcVwIKyu1No="
  5851. },
  5852. "name": "message",
  5853. "type": "String"
  5854. },
  5855. {
  5856. "_type": "UMLAttribute",
  5857. "_id": "AAAAAAFTQdXC57kEgKE=",
  5858. "_parent": {
  5859. "$ref": "AAAAAAFTQcVwIKyu1No="
  5860. },
  5861. "name": "level",
  5862. "type": "DDLogLevel"
  5863. },
  5864. {
  5865. "_type": "UMLAttribute",
  5866. "_id": "AAAAAAFTQdYj8LlsCYQ=",
  5867. "_parent": {
  5868. "$ref": "AAAAAAFTQcVwIKyu1No="
  5869. },
  5870. "name": "flag",
  5871. "type": "DDLogFlag"
  5872. },
  5873. {
  5874. "_type": "UMLAttribute",
  5875. "_id": "AAAAAAFTQdZjWLnUYu4=",
  5876. "_parent": {
  5877. "$ref": "AAAAAAFTQcVwIKyu1No="
  5878. },
  5879. "name": "context",
  5880. "type": "Int"
  5881. },
  5882. {
  5883. "_type": "UMLAttribute",
  5884. "_id": "AAAAAAFTQdaKoro8pXc=",
  5885. "_parent": {
  5886. "$ref": "AAAAAAFTQcVwIKyu1No="
  5887. },
  5888. "name": "file",
  5889. "type": "String"
  5890. },
  5891. {
  5892. "_type": "UMLAttribute",
  5893. "_id": "AAAAAAF3YhDBdd0bD5Q=",
  5894. "_parent": {
  5895. "$ref": "AAAAAAFTQcVwIKyu1No="
  5896. },
  5897. "name": "fileName",
  5898. "type": "String"
  5899. },
  5900. {
  5901. "_type": "UMLAttribute",
  5902. "_id": "AAAAAAFTQda9vrqkaOQ=",
  5903. "_parent": {
  5904. "$ref": "AAAAAAFTQcVwIKyu1No="
  5905. },
  5906. "name": "function",
  5907. "type": "String"
  5908. },
  5909. {
  5910. "_type": "UMLAttribute",
  5911. "_id": "AAAAAAFTQdb1KbsMFu4=",
  5912. "_parent": {
  5913. "$ref": "AAAAAAFTQcVwIKyu1No="
  5914. },
  5915. "name": "line",
  5916. "type": "Int"
  5917. },
  5918. {
  5919. "_type": "UMLAttribute",
  5920. "_id": "AAAAAAFTQdc1Grt0EBk=",
  5921. "_parent": {
  5922. "$ref": "AAAAAAFTQcVwIKyu1No="
  5923. },
  5924. "name": "tag",
  5925. "type": ""
  5926. },
  5927. {
  5928. "_type": "UMLAttribute",
  5929. "_id": "AAAAAAFTQddQhrvV9wQ=",
  5930. "_parent": {
  5931. "$ref": "AAAAAAFTQcVwIKyu1No="
  5932. },
  5933. "name": "options",
  5934. "type": "DDLogMessageOptions"
  5935. },
  5936. {
  5937. "_type": "UMLAttribute",
  5938. "_id": "AAAAAAFTQdiDtrxJGDY=",
  5939. "_parent": {
  5940. "$ref": "AAAAAAFTQcVwIKyu1No="
  5941. },
  5942. "name": "timestamp",
  5943. "type": "Date"
  5944. },
  5945. {
  5946. "_type": "UMLAttribute",
  5947. "_id": "AAAAAAFTQdiveryxWHw=",
  5948. "_parent": {
  5949. "$ref": "AAAAAAFTQcVwIKyu1No="
  5950. },
  5951. "name": "threadID",
  5952. "type": "String"
  5953. },
  5954. {
  5955. "_type": "UMLAttribute",
  5956. "_id": "AAAAAAFTQdjkvL0ZfwQ=",
  5957. "_parent": {
  5958. "$ref": "AAAAAAFTQcVwIKyu1No="
  5959. },
  5960. "name": "threadName",
  5961. "type": "String"
  5962. },
  5963. {
  5964. "_type": "UMLAttribute",
  5965. "_id": "AAAAAAFTQdkKcL2BSyI=",
  5966. "_parent": {
  5967. "$ref": "AAAAAAFTQcVwIKyu1No="
  5968. },
  5969. "name": "queueLabel",
  5970. "type": "String"
  5971. }
  5972. ]
  5973. },
  5974. {
  5975. "_type": "UMLClass",
  5976. "_id": "AAAAAAFTQcd7qa4I83s=",
  5977. "_parent": {
  5978. "$ref": "AAAAAAFTQPLgP6rUTww="
  5979. },
  5980. "name": "DDAbstractLogger",
  5981. "isAbstract": true
  5982. },
  5983. {
  5984. "_type": "UMLClass",
  5985. "_id": "AAAAAAFTQdp91b7JZFg=",
  5986. "_parent": {
  5987. "$ref": "AAAAAAFTQPLgP6rUTww="
  5988. },
  5989. "name": "DDTTYLogger",
  5990. "ownedElements": [
  5991. {
  5992. "_type": "UMLGeneralization",
  5993. "_id": "AAAAAAFVDFcUVuxDXic=",
  5994. "_parent": {
  5995. "$ref": "AAAAAAFTQdp91b7JZFg="
  5996. },
  5997. "source": {
  5998. "$ref": "AAAAAAFTQdp91b7JZFg="
  5999. },
  6000. "target": {
  6001. "$ref": "AAAAAAFTQcd7qa4I83s="
  6002. }
  6003. }
  6004. ]
  6005. },
  6006. {
  6007. "_type": "UMLClass",
  6008. "_id": "AAAAAAFTQdsEb78Kg3c=",
  6009. "_parent": {
  6010. "$ref": "AAAAAAFTQPLgP6rUTww="
  6011. },
  6012. "name": "DDASLLogger",
  6013. "ownedElements": [
  6014. {
  6015. "_type": "UMLGeneralization",
  6016. "_id": "AAAAAAFVDFdQDezIIfU=",
  6017. "_parent": {
  6018. "$ref": "AAAAAAFTQdsEb78Kg3c="
  6019. },
  6020. "source": {
  6021. "$ref": "AAAAAAFTQdsEb78Kg3c="
  6022. },
  6023. "target": {
  6024. "$ref": "AAAAAAFTQcd7qa4I83s="
  6025. }
  6026. }
  6027. ]
  6028. },
  6029. {
  6030. "_type": "UMLClass",
  6031. "_id": "AAAAAAFTQdsvJr8+Ur8=",
  6032. "_parent": {
  6033. "$ref": "AAAAAAFTQPLgP6rUTww="
  6034. },
  6035. "name": "DDFileLogger",
  6036. "ownedElements": [
  6037. {
  6038. "_type": "UMLGeneralization",
  6039. "_id": "AAAAAAF3YfbKPthYUPU=",
  6040. "_parent": {
  6041. "$ref": "AAAAAAFTQdsvJr8+Ur8="
  6042. },
  6043. "source": {
  6044. "$ref": "AAAAAAFTQdsvJr8+Ur8="
  6045. },
  6046. "target": {
  6047. "$ref": "AAAAAAFTQcd7qa4I83s="
  6048. }
  6049. }
  6050. ]
  6051. },
  6052. {
  6053. "_type": "UMLClass",
  6054. "_id": "AAAAAAFVDFltuu6ycXs=",
  6055. "_parent": {
  6056. "$ref": "AAAAAAFTQPLgP6rUTww="
  6057. },
  6058. "name": "DDAbstractDatabaseLogger",
  6059. "ownedElements": [
  6060. {
  6061. "_type": "UMLGeneralization",
  6062. "_id": "AAAAAAFVDFp2Ju/3Y54=",
  6063. "_parent": {
  6064. "$ref": "AAAAAAFVDFltuu6ycXs="
  6065. },
  6066. "source": {
  6067. "$ref": "AAAAAAFVDFltuu6ycXs="
  6068. },
  6069. "target": {
  6070. "$ref": "AAAAAAFTQcd7qa4I83s="
  6071. }
  6072. }
  6073. ]
  6074. },
  6075. {
  6076. "_type": "UMLClass",
  6077. "_id": "AAAAAAFVDFtKePDlB+o=",
  6078. "_parent": {
  6079. "$ref": "AAAAAAFTQPLgP6rUTww="
  6080. },
  6081. "name": "DDDispatchQueueLogFormatter"
  6082. },
  6083. {
  6084. "_type": "UMLClass",
  6085. "_id": "AAAAAAFVDFyKSPKCtKA=",
  6086. "_parent": {
  6087. "$ref": "AAAAAAFTQPLgP6rUTww="
  6088. },
  6089. "name": "DDMultiFormatter"
  6090. },
  6091. {
  6092. "_type": "UMLClass",
  6093. "_id": "AAAAAAFVDF0b6POxqos=",
  6094. "_parent": {
  6095. "$ref": "AAAAAAFTQPLgP6rUTww="
  6096. },
  6097. "name": "DDContextAllowlistFilterLogFormatter"
  6098. },
  6099. {
  6100. "_type": "UMLClass",
  6101. "_id": "AAAAAAFVDF1LgPPNuhU=",
  6102. "_parent": {
  6103. "$ref": "AAAAAAFTQPLgP6rUTww="
  6104. },
  6105. "name": "DDContextDenylistFilterLogFormatter"
  6106. },
  6107. {
  6108. "_type": "UMLEnumeration",
  6109. "_id": "AAAAAAFVDGCqvsvwtWs=",
  6110. "_parent": {
  6111. "$ref": "AAAAAAFTQPLgP6rUTww="
  6112. },
  6113. "name": "DDLogFlag",
  6114. "literals": [
  6115. {
  6116. "_type": "UMLEnumerationLiteral",
  6117. "_id": "AAAAAAFVDGCqv8v9Fnc=",
  6118. "_parent": {
  6119. "$ref": "AAAAAAFVDGCqvsvwtWs="
  6120. },
  6121. "name": "Error"
  6122. },
  6123. {
  6124. "_type": "UMLEnumerationLiteral",
  6125. "_id": "AAAAAAFVDGCqv8v+nk8=",
  6126. "_parent": {
  6127. "$ref": "AAAAAAFVDGCqvsvwtWs="
  6128. },
  6129. "name": "Warn"
  6130. },
  6131. {
  6132. "_type": "UMLEnumerationLiteral",
  6133. "_id": "AAAAAAFVDGCqv8v/6zI=",
  6134. "_parent": {
  6135. "$ref": "AAAAAAFVDGCqvsvwtWs="
  6136. },
  6137. "name": "Info"
  6138. },
  6139. {
  6140. "_type": "UMLEnumerationLiteral",
  6141. "_id": "AAAAAAFVDGCqv8wAKBU=",
  6142. "_parent": {
  6143. "$ref": "AAAAAAFVDGCqvsvwtWs="
  6144. },
  6145. "name": "Debug"
  6146. },
  6147. {
  6148. "_type": "UMLEnumerationLiteral",
  6149. "_id": "AAAAAAFVDGCqv8wBRIk=",
  6150. "_parent": {
  6151. "$ref": "AAAAAAFVDGCqvsvwtWs="
  6152. },
  6153. "name": "Verbose"
  6154. }
  6155. ]
  6156. },
  6157. {
  6158. "_type": "UMLEnumeration",
  6159. "_id": "AAAAAAFVDGEwKswCgX8=",
  6160. "_parent": {
  6161. "$ref": "AAAAAAFTQPLgP6rUTww="
  6162. },
  6163. "name": "DDLogLevel",
  6164. "literals": [
  6165. {
  6166. "_type": "UMLEnumerationLiteral",
  6167. "_id": "AAAAAAFVDGEwKswFcIY=",
  6168. "_parent": {
  6169. "$ref": "AAAAAAFVDGEwKswCgX8="
  6170. },
  6171. "name": "Off"
  6172. },
  6173. {
  6174. "_type": "UMLEnumerationLiteral",
  6175. "_id": "AAAAAAFVDGEwKswGC5Y=",
  6176. "_parent": {
  6177. "$ref": "AAAAAAFVDGEwKswCgX8="
  6178. },
  6179. "name": "Error"
  6180. },
  6181. {
  6182. "_type": "UMLEnumerationLiteral",
  6183. "_id": "AAAAAAFVDGEwKswHHTY=",
  6184. "_parent": {
  6185. "$ref": "AAAAAAFVDGEwKswCgX8="
  6186. },
  6187. "name": "Warn"
  6188. },
  6189. {
  6190. "_type": "UMLEnumerationLiteral",
  6191. "_id": "AAAAAAFVDGEwKswIDrE=",
  6192. "_parent": {
  6193. "$ref": "AAAAAAFVDGEwKswCgX8="
  6194. },
  6195. "name": "Info"
  6196. },
  6197. {
  6198. "_type": "UMLEnumerationLiteral",
  6199. "_id": "AAAAAAFVDGEwKswJsDY=",
  6200. "_parent": {
  6201. "$ref": "AAAAAAFVDGEwKswCgX8="
  6202. },
  6203. "name": "Debug"
  6204. },
  6205. {
  6206. "_type": "UMLEnumerationLiteral",
  6207. "_id": "AAAAAAFVDGEwKswKwo4=",
  6208. "_parent": {
  6209. "$ref": "AAAAAAFVDGEwKswCgX8="
  6210. },
  6211. "name": "Verbose"
  6212. },
  6213. {
  6214. "_type": "UMLEnumerationLiteral",
  6215. "_id": "AAAAAAFVDGEwKswLSu8=",
  6216. "_parent": {
  6217. "$ref": "AAAAAAFVDGEwKswCgX8="
  6218. },
  6219. "name": "All"
  6220. }
  6221. ]
  6222. },
  6223. {
  6224. "_type": "UMLClass",
  6225. "_id": "AAAAAAF3YfGjYtMXekY=",
  6226. "_parent": {
  6227. "$ref": "AAAAAAFTQPLgP6rUTww="
  6228. },
  6229. "name": "DDOSLogger",
  6230. "ownedElements": [
  6231. {
  6232. "_type": "UMLGeneralization",
  6233. "_id": "AAAAAAF3YfXHDdbVBC4=",
  6234. "_parent": {
  6235. "$ref": "AAAAAAF3YfGjYtMXekY="
  6236. },
  6237. "source": {
  6238. "$ref": "AAAAAAF3YfGjYtMXekY="
  6239. },
  6240. "target": {
  6241. "$ref": "AAAAAAFTQcd7qa4I83s="
  6242. }
  6243. }
  6244. ]
  6245. }
  6246. ]
  6247. }
  6248. ]
  6249. }
  6250. ],
  6251. "author": "Bogdan Poplauschi",
  6252. "company": "Yardi"
  6253. }