S_Offene_Auftraege.mdl 438 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162
  1. Name "Neues Modell" ModelCodePage "ibm-5348_P100-1997" AutoAccess False
  2. UpdateCycle 9 ModelStamp 1218210240 Version "10.2.6111.504" ModelCategoryOrderDefault OrderUsePreference
  3. ModelOrderedByDefault False ModelNonRollupHierarchies False
  4. DataSource 27839 "current_date_Prognose~1" Separator ";" SourceType FlatFile_ColNames
  5. CharacterSet Ansi DecimalSep "," Thousandsep "." Columns True Timing PopYesCreateDefault
  6. Source "c:\globalcube\system\ari\export\current_date_prognose.csv" SetCurrent True
  7. ServerSource False Speed False Presummarized False StreamExtractSize 0
  8. OrgName 27841 "Bundeslaender Id" Origin Generated Offset 0 Column "Bundeslaender Id"
  9. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  10. OrgName 27843 "Datum" Origin Generated Offset 1 Column "Invoice Date" Storage Default
  11. Scale 0 Size 1 Decimals 0 Class Date InputScale 0 TimeArray Off ColSrcType None
  12. OrgName 27845 "Wochentage Id" Origin Generated Offset 2 Column "Wochentage Id"
  13. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  14. OrgName 27847 "Arbeitstag Mofr" Origin Generated Offset 3 Column "Arbeitstag Mofr"
  15. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  16. OrgName 27849 "Zaehler Mofr" Origin Generated Offset 4 Column "Zaehler Mofr"
  17. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  18. OrgName 27851 "Summe Mofr" Origin Generated Offset 5 Column "Summe Mofr"
  19. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  20. OrgName 27853 "Arbeitstag Mosa" Origin Generated Offset 6 Column "Arbeitstag Mosa"
  21. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  22. OrgName 27855 "Zaehler Mosa" Origin Generated Offset 7 Column "Zaehler Mosa"
  23. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  24. OrgName 27857 "Summe Mosa" Origin Generated Offset 8 Column "Summe Mosa"
  25. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  26. OrgName 27859 "Feiertage Id" Origin Generated Offset 9 Column "Feiertage Id"
  27. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  28. OrgName 27861 "Jahr" Origin Generated Offset 10 Column "Jahr" Storage Default
  29. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  30. OrgName 27863 "Arbeitstag Nr Jahr" Origin Generated Offset 11 Column "Arbeitstag Nr Jahr"
  31. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  32. OrgName 27865 "Gesamt Arbeitstage" Origin Generated Offset 12 Column "Gesamt Arbeitstage"
  33. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  34. DataSource 27867 "Service_offene_Auftraege_neu_mitMont_Anzeige" Separator ";"
  35. SourceType FlatFile_ColNames CharacterSet Ansi DecimalSep "," Thousandsep "."
  36. Columns True Timing PopYesCreateDefault Source "c:\globalcube\system\ari\export\service_offene_auftraege_neu_mitmont_anzeige.csv"
  37. SetCurrent False ServerSource False Speed False Presummarized False StreamExtractSize 0
  38. OrgName 27869 "Document Type" Origin Generated Offset 89 Column "Document Type"
  39. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  40. OrgName 27871 "No" Origin Generated Offset 60 Column "No" Storage Default
  41. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  42. OrgName 27873 "Sell-to Customer No" Origin Generated Offset 2 Column "Sell-to Customer No"
  43. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  44. OrgName 27875 "Bill-to Customer No" Origin Generated Offset 3 Column "Bill-to Customer No"
  45. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  46. OrgName 27877 "Bill-to Name" Origin Generated Offset 4 Column "Bill-to Name"
  47. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  48. OrgName 27879 "Order Date" Origin Generated Offset 151 Column "Order Date"
  49. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  50. OrgName 27881 "Posting Date" Origin Generated Offset 57 Column "Posting Date"
  51. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  52. OrgName 27883 "Posting Description" Origin Generated Offset 7 Column "Posting Description"
  53. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  54. OrgName 27885 "Due Date" Origin Generated Offset 8 Column "Due Date" Storage Default
  55. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  56. OrgName 27887 "Location Code" Origin Generated Offset 9 Column "Location Code"
  57. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  58. OrgName 27889 "Department Code" Origin Generated Offset 68 Column "Department Code"
  59. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  60. OrgName 27891 "Make Code" Origin Generated Offset 11 Column "Make Code"
  61. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  62. OrgName 27893 "Salesperson Code" Origin Generated Offset 12 Column "Salesperson Code"
  63. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  64. OrgName 27895 "On Hold" Origin Generated Offset 13 Column "On Hold" Storage Default
  65. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  66. OrgName 27897 "Transaction Type" Origin Generated Offset 14 Column "Transaction Type"
  67. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  68. OrgName 27899 "Transport Method" Origin Generated Offset 15 Column "Transport Method"
  69. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  70. OrgName 27901 "Correction" Origin Generated Offset 16 Column "Correction"
  71. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  72. OrgName 27903 "Document Date" Origin Generated Offset 17 Column "Document Date"
  73. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  74. OrgName 27905 "Area" Origin Generated Offset 18 Column "Area" Storage Default
  75. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  76. OrgName 27907 "Reserve" Origin Generated Offset 19 Column "Reserve" Storage Default
  77. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  78. OrgName 27909 "Option Code" Origin Generated Offset 20 Column "Option Code"
  79. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  80. OrgName 27911 "Service Posting Group" Origin Generated Offset 21 Column "Service Posting Group"
  81. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  82. OrgName 27913 "Vin" Origin Generated Offset 22 Column "Vin" Storage Default
  83. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  84. OrgName 27915 "Model Code" Origin Generated Offset 23 Column "Model Code"
  85. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  86. OrgName 27917 "Model No" Origin Generated Offset 24 Column "Model No" Storage Default
  87. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  88. OrgName 27919 "Model" Origin Generated Offset 25 Column "Model" Storage Default
  89. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  90. OrgName 27921 "Type" Origin Generated Offset 59 Column "Type" Storage Default
  91. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  92. OrgName 27923 "Initial Registration" Origin Generated Offset 27 Column "Initial Registration"
  93. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  94. OrgName 27925 "Order Limit" Origin Generated Offset 28 Column "Order Limit"
  95. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  96. OrgName 27927 "Time Of Order" Origin Generated Offset 29 Column "Time Of Order"
  97. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  98. OrgName 27929 "Pickup Date" Origin Generated Offset 30 Column "Pickup Date"
  99. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  100. OrgName 27931 "Pickup Time" Origin Generated Offset 31 Column "Pickup Time"
  101. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  102. OrgName 27933 "Completion Date" Origin Generated Offset 32 Column "Completion Date"
  103. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  104. OrgName 27935 "Completion Time" Origin Generated Offset 33 Column "Completion Time"
  105. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  106. OrgName 27937 "Labor Type" Origin Generated Offset 34 Column "Labor Type"
  107. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  108. OrgName 27939 "Labor Charging Code" Origin Generated Offset 35 Column "Labor Charging Code"
  109. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  110. OrgName 27941 "Book No" Origin Generated Offset 36 Column "Book No" Storage Default
  111. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  112. OrgName 27943 "Branch Book No" Origin Generated Offset 37 Column "Branch Book No"
  113. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  114. OrgName 27945 "Sales Department Code" Origin Generated Offset 38 Column "Sales Department Code"
  115. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  116. OrgName 27947 "Fixed Date" Origin Generated Offset 39 Column "Fixed Date"
  117. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  118. OrgName 27949 "Fixed Instruction" Origin Generated Offset 40 Column "Fixed Instruction"
  119. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  120. OrgName 27951 "Current Instruction Type" Origin Generated Offset 41 Column "Current Instruction Type"
  121. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  122. OrgName 27953 "Work Completed" Origin Generated Offset 42 Column "Work Completed"
  123. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  124. OrgName 27955 "Status Code" Origin Generated Offset 43 Column "Status Code"
  125. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  126. OrgName 27957 "Service Advisor No" Origin Generated Offset 44 Column "Service Advisor No"
  127. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  128. OrgName 27959 "Hauptbetrieb" Origin Generated Offset 45 Column "Hauptbetrieb"
  129. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  130. OrgName 27961 "Standort_Department" Origin Generated Offset 46 Column "Standort_Department"
  131. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  132. OrgName 27963 "Standort" Origin Generated Offset 47 Column "Standort" Storage Default
  133. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  134. OrgName 27965 "No_Employee" Origin Generated Offset 48 Column "No_Employee"
  135. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  136. OrgName 27967 "First Name_Employee" Origin Generated Offset 49 Column "First Name_Employee"
  137. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  138. OrgName 27969 "Last Name_Employee" Origin Generated Offset 50 Column "Last Name_Employee"
  139. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  140. OrgName 27971 "Serviceberater" Origin Generated Offset 51 Column "Serviceberater"
  141. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  142. OrgName 27973 "Umsatzart" Origin Generated Offset 52 Column "Umsatzart"
  143. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  144. OrgName 27975 "Kunde" Origin Generated Offset 53 Column "Kunde" Storage Default
  145. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  146. OrgName 27977 "Order Number_mit Monteur" Origin Generated Offset 54 Column "Order Number_mit Monteur"
  147. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  148. OrgName 27979 "Entry No" Origin Generated Offset 55 Column "Entry No" Storage Default
  149. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  150. OrgName 27981 "Order No" Origin Generated Offset 56 Column "Order No" Storage Default
  151. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  152. OrgName 27985 "Document No" Origin Generated Offset 58 Column "Document No"
  153. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  154. OrgName 27991 "Description" Origin Generated Offset 61 Column "Description"
  155. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  156. OrgName 27993 "Quantity" Origin Generated Offset 62 Column "Quantity" Storage Default
  157. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  158. OrgName 27995 "Direct Unit Cost" Origin Generated Offset 63 Column "Direct Unit Cost"
  159. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  160. OrgName 27997 "Unit Cost" Origin Generated Offset 64 Column "Unit Cost"
  161. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  162. OrgName 27999 "Total Cost" Origin Generated Offset 65 Column "Total Cost"
  163. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  164. OrgName 28001 "Unit Price" Origin Generated Offset 66 Column "Unit Price"
  165. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  166. OrgName 28003 "Total Price" Origin Generated Offset 67 Column "Total Price"
  167. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  168. OrgName 28007 "Work Type Code" Origin Generated Offset 69 Column "Work Type Code"
  169. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  170. OrgName 28009 "User Id" Origin Generated Offset 70 Column "User Id" Storage Default
  171. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  172. OrgName 28011 "Amt To Post To G L" Origin Generated Offset 71 Column "Amt To Post To G L"
  173. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  174. OrgName 28013 "Amt Posted To G L" Origin Generated Offset 72 Column "Amt Posted To G L"
  175. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  176. OrgName 28015 "Amt To Recognize" Origin Generated Offset 73 Column "Amt To Recognize"
  177. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  178. OrgName 28017 "Amt Recognized" Origin Generated Offset 74 Column "Amt Recognized"
  179. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  180. OrgName 28019 "Entry Type" Origin Generated Offset 75 Column "Entry Type"
  181. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  182. OrgName 28021 "Positive" Origin Generated Offset 76 Column "Positive" Storage Default
  183. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  184. OrgName 28023 "Qty Evaluated" Origin Generated Offset 77 Column "Qty Evaluated"
  185. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  186. OrgName 28025 "Corrected" Origin Generated Offset 78 Column "Corrected"
  187. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  188. OrgName 28027 "Variant Code" Origin Generated Offset 79 Column "Variant Code"
  189. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  190. OrgName 28029 "Qty Per Unit Of Measure" Origin Generated Offset 80 Column "Qty Per Unit Of Measure"
  191. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  192. OrgName 28031 "Quantity (base)" Origin Generated Offset 81 Column "Quantity (base)"
  193. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  194. OrgName 28033 "Time Type" Origin Generated Offset 82 Column "Time Type"
  195. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  196. OrgName 28035 "Service Job No" Origin Generated Offset 83 Column "Service Job No"
  197. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  198. OrgName 28037 "Assoc Entry" Origin Generated Offset 84 Column "Assoc Entry"
  199. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  200. OrgName 28039 "Closed" Origin Generated Offset 85 Column "Closed" Storage Default
  201. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  202. OrgName 28041 "Qty Per Hour" Origin Generated Offset 86 Column "Qty Per Hour"
  203. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  204. OrgName 28043 "Qty (hour)" Origin Generated Offset 87 Column "Qty (hour)"
  205. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  206. OrgName 28045 "Item Group Code" Origin Generated Offset 88 Column "Item Group Code"
  207. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  208. OrgName 28049 "Customer Group Code" Origin Generated Offset 90 Column "Customer Group Code"
  209. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  210. OrgName 28051 "Charging Group No" Origin Generated Offset 91 Column "Charging Group No"
  211. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  212. OrgName 28053 "Standard Time" Origin Generated Offset 92 Column "Standard Time"
  213. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  214. OrgName 28055 "Standard Time Type" Origin Generated Offset 93 Column "Standard Time Type"
  215. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  216. OrgName 28057 "Source Type" Origin Generated Offset 94 Column "Source Type"
  217. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  218. OrgName 28059 "Main Customer" Origin Generated Offset 95 Column "Main Customer"
  219. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  220. OrgName 28061 "Order Line No" Origin Generated Offset 96 Column "Order Line No"
  221. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  222. OrgName 28063 "Time From" Origin Generated Offset 97 Column "Time From"
  223. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  224. OrgName 28065 "Time Until" Origin Generated Offset 98 Column "Time Until"
  225. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  226. OrgName 28067 "Internal Charged" Origin Generated Offset 99 Column "Internal Charged"
  227. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  228. OrgName 28069 "Order Completed" Origin Generated Offset 100 Column "Order Completed"
  229. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  230. OrgName 28071 "Open" Origin Generated Offset 101 Column "Open" Storage Default
  231. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  232. OrgName 28073 "Closed By Entry No" Origin Generated Offset 102 Column "Closed By Entry No"
  233. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  234. OrgName 28075 "Closed At Date" Origin Generated Offset 103 Column "Closed At Date"
  235. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  236. OrgName 28077 "Closed By Quantity" Origin Generated Offset 104 Column "Closed By Quantity"
  237. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  238. OrgName 28079 "Open Quantity" Origin Generated Offset 105 Column "Open Quantity"
  239. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  240. OrgName 28081 "Labor Standard Time Type" Origin Generated Offset 106 Column "Labor Standard Time Type"
  241. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  242. OrgName 28083 "Menge" Origin Generated Offset 107 Column "Menge" Storage Default
  243. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  244. OrgName 28085 "Einstandsbetrag" Origin Generated Offset 108 Column "Einstandsbetrag"
  245. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  246. OrgName 28087 "Verkaufsbetrag" Origin Generated Offset 109 Column "Verkaufsbetrag"
  247. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  248. OrgName 28089 "Umsatz Lohn" Origin Generated Offset 110 Column "Umsatz Lohn"
  249. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  250. OrgName 28091 "Umsatz Teile Service" Origin Generated Offset 111 Column "Umsatz Teile Service"
  251. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  252. OrgName 28093 "Umsatz Sonstiges" Origin Generated Offset 112 Column "Umsatz Sonstiges"
  253. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  254. OrgName 28095 "Einsatz Teile Service" Origin Generated Offset 113 Column "Einsatz Teile Service"
  255. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  256. OrgName 28097 "Einsatz Sonstiges" Origin Generated Offset 114 Column "Einsatz Sonstiges"
  257. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  258. OrgName 28099 "Menge pro Stunde" Origin Generated Offset 115 Column "Menge pro Stunde"
  259. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  260. OrgName 28101 "verk.Stunden" Origin Generated Offset 116 Column "verk.Stunden"
  261. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  262. OrgName 28103 "verk. AW" Origin Generated Offset 117 Column "verk. AW"
  263. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  264. OrgName 28105 "benutzte Zeit" Origin Generated Offset 118 Column "benutzte Zeit"
  265. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  266. OrgName 28107 "benutzte AW" Origin Generated Offset 119 Column "benutzte AW"
  267. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  268. OrgName 28109 "Name_Employee" Origin Generated Offset 120 Column "Name_Employee"
  269. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  270. OrgName 28111 "Function Code" Origin Generated Offset 121 Column "Function Code"
  271. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  272. OrgName 28113 "Monteur" Origin Generated Offset 122 Column "Monteur" Storage Default
  273. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  274. OrgName 28115 "Funktion Monteur" Origin Generated Offset 123 Column "Funktion Monteur"
  275. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  276. OrgName 28117 "ben. AW ohne AZUBI" Origin Generated Offset 124 Column "ben. AW ohne AZUBI"
  277. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  278. OrgName 28119 "Auftragsdatum" Origin Generated Offset 125 Column "Auftragsdatum"
  279. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  280. OrgName 28121 "DG_1" Origin Generated Offset 126 Column "DG_1" Storage Default
  281. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  282. OrgName 28123 "DG_2" Origin Generated Offset 127 Column "DG_2" Storage Default
  283. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  284. OrgName 28125 "Durchgänge" Origin Generated Offset 128 Column "Durchgänge"
  285. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  286. OrgName 28127 "Anzahl_Tage" Origin Generated Offset 129 Column "Anzahl_Tage"
  287. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  288. OrgName 28129 "Tage offen" Origin Generated Offset 130 Column "Tage offen"
  289. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  290. OrgName 28131 "gebuchte Teile" Origin Generated Offset 131 Column "gebuchte Teile"
  291. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  292. OrgName 28133 "Monteur_Anzeige" Origin Generated Offset 132 Column "Monteur_Anzeige"
  293. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  294. OrgName 28135 "Serviceberater_Monteur" Origin Generated Offset 133 Column "Serviceberater_Monteur"
  295. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  296. OrgName 28137 "Order Number" Origin Generated Offset 147 Column "Order Number"
  297. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  298. OrgName 28139 "Invoice Date" Origin Generated Offset 135 Column "Invoice Date"
  299. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  300. OrgName 28141 "Minimum Letzte Stempelung" Origin Generated Offset 136 Column "Minimum Letzte Stempelung"
  301. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  302. OrgName 28143 "Tage letzte Stemp. bereinigt" Origin Generated Offset 137
  303. Column "Tage letzte Stemp. bereinigt" Storage Default Scale 0 Size 1 Decimals 0
  304. InputScale 0 TimeArray Off ColSrcType None
  305. OrgName 28145 "Anz. Tage letzte Stemp." Origin Generated Offset 138 Column "Anz. Tage letzte Stemp."
  306. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  307. OrgName 28147 "Order Number_intern" Origin Generated Offset 139 Column "Order Number_intern"
  308. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  309. OrgName 28149 "Anzahl Tage über Abholtermin" Origin Generated Offset 140
  310. Column "Anzahl Tage über Abholtermin" Storage Default Scale 0 Size 1 Decimals 0
  311. InputScale 0 TimeArray Off ColSrcType None
  312. OrgName 28151 "Intern/Extern" Origin Generated Offset 141 Column "Intern/Extern"
  313. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  314. OrgName 28153 "Tage über Abholtermin" Origin Generated Offset 142 Column "Tage über Abholtermin"
  315. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  316. OrgName 28155 "Kundenname_verkauft_an" Origin Generated Offset 143 Column "Kundenname_verkauft_an"
  317. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  318. OrgName 28157 "Bill-to Contact" Origin Generated Offset 144 Column "Bill-to Contact"
  319. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  320. OrgName 28159 "Sell-to Customer Name" Origin Generated Offset 145 Column "Sell-to Customer Name"
  321. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  322. OrgName 28161 "Order Number_intern_neu" Origin Generated Offset 146 Column "Order Number_intern_neu"
  323. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  324. OrgName 28165 "Anzahl Tage_ori" Origin Generated Offset 148 Column "Anzahl Tage_ori"
  325. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  326. OrgName 28167 "Durchgänge (Auftrag)" Origin Generated Offset 149 Column "Durchgänge (Auftrag)"
  327. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  328. OrgName 28169 "Anzahl Tage" Origin Generated Offset 150 Column "Anzahl Tage"
  329. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  330. OrgName 28173 "Kostenstelle" Origin Generated Offset 152 Column "Kostenstelle"
  331. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  332. OrgName 28175 "Fahrzeug" Origin Generated Offset 153 Column "Fahrzeug"
  333. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  334. OrgName 28177 "Teile" Origin Generated Offset 154 Column "Teile" Storage Default
  335. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  336. OrgName 28179 "Arbeitswerte" Origin Generated Offset 155 Column "Arbeitswerte"
  337. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  338. OrgName 28221 "Gen Prod Posting Group" Origin Generated Offset 156 Column "Gen Prod Posting Group"
  339. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  340. OrgName 28223 "Fremdl." Origin Generated Offset 157 Column "Fremdl." Storage Default
  341. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  342. OrgName 28229 "Summe Amount_Order_Line_VK" Origin Generated Offset 158
  343. Column "Summe Amount_Order_Line_VK" Storage Default Scale 0 Size 1 Decimals 0
  344. InputScale 0 TimeArray Off ColSrcType None
  345. OrgName 28231 "Umsatz Auftrag" Origin Generated Offset 159 Column "Umsatz Auftrag"
  346. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  347. Dimension 1463 "Zeit" DimType Date EarliestDate 19010101 LatestDate 21001231
  348. ManualPeriods False DaysInWeek 127 NewCatsLock False ExcludeAutoPartitioning False
  349. DimDefaultCategory 0
  350. Categories
  351. Root 1467 "Zeit" Inclusion Generate Lastuse 20210108 Date 0 Filtered False
  352. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  353. Blanks False
  354. Drill 1469 "Nach Zeit" Label "Nach Zeit" Inclusion Suppress Filtered False
  355. Suppressed True PrimaryDrill True HideValue False YearBegins 20080101 PartialWeek Split
  356. ExtraWeek None WeekBegins Sunday
  357. Levels 1475 "Jahr" Blanks "( Leerstelle )" Inclusion Generate DateFunction Year
  358. Generate Need RefreshLabel False RefreshDescription False RefreshShortName False
  359. NewCatsLock False CatLabFormat "YYYY" Timerank 10 UniqueCategories True
  360. UniqueMove False Associations 1477 "Invoice Date" AssociationType Type_Query
  361. AssociationRole Role_Source AssociationReferenced "Invoice Date"
  362. Associations 1479 "Invoice Date" AssociationContext 1469 AssociationType Type_Query
  363. AssociationRole Role_OrderBy AssociationReferenced "Invoice Date" SortOrder Text
  364. SortAs Ascending
  365. Levels 1481 "Quartal" Blanks "( Leerstelle )" Inclusion Generate DateFunction Quarter
  366. Generate None RefreshLabel False RefreshDescription False RefreshShortName False
  367. NewCatsLock False CatLabFormat "Q"". Q."" YYYY" Timerank 20 UniqueCategories True
  368. UniqueMove False Associations 1483 "Invoice Date" AssociationType Type_Query
  369. AssociationRole Role_Source AssociationReferenced "Invoice Date"
  370. Associations 1485 "Invoice Date" AssociationContext 1469 AssociationType Type_Query
  371. AssociationRole Role_OrderBy AssociationReferenced "Invoice Date" SortOrder Text
  372. SortAs Ascending
  373. Levels 1487 "Monat" Blanks "( Leerstelle )" Inclusion Generate DateFunction Month
  374. Generate None RefreshLabel False RefreshDescription False RefreshShortName False
  375. NewCatsLock False CatLabFormat "MMM/YYYY" Timerank 30 UniqueCategories True
  376. UniqueMove False Associations 1489 "Invoice Date" AssociationType Type_Query
  377. AssociationRole Role_Source AssociationReferenced "Invoice Date"
  378. Associations 1491 "Invoice Date" AssociationContext 1469 AssociationType Type_Query
  379. AssociationRole Role_OrderBy AssociationReferenced "Invoice Date" SortOrder Text
  380. SortAs Ascending
  381. Levels 1493 "Tag" Blanks "( Leerstelle )" Inclusion Generate DateFunction Day
  382. Generate All RefreshLabel False RefreshDescription False RefreshShortName False
  383. NewCatsLock False CatLabFormat "DD/MM/YYYY" Timerank 50 UniqueCategories True
  384. UniqueMove False Associations 1495 "Invoice Date" AssociationType Type_Query
  385. AssociationRole Role_Source AssociationReferenced "Invoice Date"
  386. Associations 1497 "Invoice Date" AssociationContext 1469 AssociationType Type_Query
  387. AssociationRole Role_OrderBy AssociationReferenced "Invoice Date" SortOrder Text
  388. SortAs Ascending
  389. Category 10555 "20170101-20171231" Parent 1469 Levels 1475 OrderBy Drill 1469
  390. Value "2017" Label "2017" Lastuse 20180820 SourceValue "2017" Date 20170101
  391. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  392. IsTruncated False Blanks False
  393. Category 10557 "20170101-20170331" Parent 10555 Levels 1481 OrderBy Drill 1469
  394. Value "20170101" Label "1. Q. 2017" Lastuse 20180711 SourceValue "20170101"
  395. Date 20170101 Filtered False Suppressed False Sign False HideValue False
  396. IsKeyOrphanage False IsTruncated False Blanks False
  397. Category 10559 "20170101-20170131" Parent 10557 Levels 1487 OrderBy Drill 1469
  398. Value "201701" Label "Jan./2017" Lastuse 20180711 SourceValue "201701"
  399. Date 20170101 Filtered False Suppressed False Sign False HideValue False
  400. IsKeyOrphanage False IsTruncated False Blanks False
  401. Category 10561 "20170101" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170101"
  402. Label "01/01/2017" Lastuse 20180711 SourceValue "20170101" Date 20170101
  403. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  404. IsTruncated False Blanks False
  405. Category 10563 "20170102" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170102"
  406. Label "02/01/2017" Lastuse 20180711 SourceValue "20170102" Date 20170102
  407. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  408. IsTruncated False Blanks False
  409. Category 10565 "20170103" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170103"
  410. Label "03/01/2017" Lastuse 20180711 SourceValue "20170103" Date 20170103
  411. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  412. IsTruncated False Blanks False
  413. Category 10567 "20170104" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170104"
  414. Label "04/01/2017" Lastuse 20180711 SourceValue "20170104" Date 20170104
  415. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  416. IsTruncated False Blanks False
  417. Category 10569 "20170105" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170105"
  418. Label "05/01/2017" Lastuse 20180711 SourceValue "20170105" Date 20170105
  419. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  420. IsTruncated False Blanks False
  421. Category 10571 "20170106" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170106"
  422. Label "06/01/2017" Lastuse 20180711 SourceValue "20170106" Date 20170106
  423. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  424. IsTruncated False Blanks False
  425. Category 10573 "20170107" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170107"
  426. Label "07/01/2017" Lastuse 20180711 SourceValue "20170107" Date 20170107
  427. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  428. IsTruncated False Blanks False
  429. Category 10575 "20170108" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170108"
  430. Label "08/01/2017" Lastuse 20180711 SourceValue "20170108" Date 20170108
  431. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  432. IsTruncated False Blanks False
  433. Category 10577 "20170109" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170109"
  434. Label "09/01/2017" Lastuse 20180711 SourceValue "20170109" Date 20170109
  435. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  436. IsTruncated False Blanks False
  437. Category 10579 "20170110" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170110"
  438. Label "10/01/2017" Lastuse 20180711 SourceValue "20170110" Date 20170110
  439. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  440. IsTruncated False Blanks False
  441. Category 10581 "20170111" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170111"
  442. Label "11/01/2017" Lastuse 20180711 SourceValue "20170111" Date 20170111
  443. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  444. IsTruncated False Blanks False
  445. Category 10583 "20170112" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170112"
  446. Label "12/01/2017" Lastuse 20180711 SourceValue "20170112" Date 20170112
  447. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  448. IsTruncated False Blanks False
  449. Category 10585 "20170113" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170113"
  450. Label "13/01/2017" Lastuse 20180711 SourceValue "20170113" Date 20170113
  451. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  452. IsTruncated False Blanks False
  453. Category 10587 "20170114" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170114"
  454. Label "14/01/2017" Lastuse 20180711 SourceValue "20170114" Date 20170114
  455. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  456. IsTruncated False Blanks False
  457. Category 10589 "20170115" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170115"
  458. Label "15/01/2017" Lastuse 20180711 SourceValue "20170115" Date 20170115
  459. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  460. IsTruncated False Blanks False
  461. Category 10591 "20170116" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170116"
  462. Label "16/01/2017" Lastuse 20180711 SourceValue "20170116" Date 20170116
  463. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  464. IsTruncated False Blanks False
  465. Category 10593 "20170117" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170117"
  466. Label "17/01/2017" Lastuse 20180711 SourceValue "20170117" Date 20170117
  467. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  468. IsTruncated False Blanks False
  469. Category 10595 "20170118" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170118"
  470. Label "18/01/2017" Lastuse 20180711 SourceValue "20170118" Date 20170118
  471. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  472. IsTruncated False Blanks False
  473. Category 10597 "20170119" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170119"
  474. Label "19/01/2017" Lastuse 20180711 SourceValue "20170119" Date 20170119
  475. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  476. IsTruncated False Blanks False
  477. Category 10599 "20170120" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170120"
  478. Label "20/01/2017" Lastuse 20180711 SourceValue "20170120" Date 20170120
  479. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  480. IsTruncated False Blanks False
  481. Category 10601 "20170121" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170121"
  482. Label "21/01/2017" Lastuse 20180711 SourceValue "20170121" Date 20170121
  483. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  484. IsTruncated False Blanks False
  485. Category 10603 "20170122" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170122"
  486. Label "22/01/2017" Lastuse 20180711 SourceValue "20170122" Date 20170122
  487. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  488. IsTruncated False Blanks False
  489. Category 10605 "20170123" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170123"
  490. Label "23/01/2017" Lastuse 20180711 SourceValue "20170123" Date 20170123
  491. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  492. IsTruncated False Blanks False
  493. Category 10607 "20170124" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170124"
  494. Label "24/01/2017" Lastuse 20180711 SourceValue "20170124" Date 20170124
  495. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  496. IsTruncated False Blanks False
  497. Category 10609 "20170125" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170125"
  498. Label "25/01/2017" Lastuse 20180711 SourceValue "20170125" Date 20170125
  499. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  500. IsTruncated False Blanks False
  501. Category 10611 "20170126" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170126"
  502. Label "26/01/2017" Lastuse 20180711 SourceValue "20170126" Date 20170126
  503. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  504. IsTruncated False Blanks False
  505. Category 10613 "20170127" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170127"
  506. Label "27/01/2017" Lastuse 20180711 SourceValue "20170127" Date 20170127
  507. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  508. IsTruncated False Blanks False
  509. Category 10615 "20170128" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170128"
  510. Label "28/01/2017" Lastuse 20180711 SourceValue "20170128" Date 20170128
  511. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  512. IsTruncated False Blanks False
  513. Category 10617 "20170129" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170129"
  514. Label "29/01/2017" Lastuse 20180711 SourceValue "20170129" Date 20170129
  515. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  516. IsTruncated False Blanks False
  517. Category 10619 "20170130" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170130"
  518. Label "30/01/2017" Lastuse 20180711 SourceValue "20170130" Date 20170130
  519. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  520. IsTruncated False Blanks False
  521. Category 10621 "20170131" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170131"
  522. Label "31/01/2017" Lastuse 20180711 SourceValue "20170131" Date 20170131
  523. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  524. IsTruncated False Blanks False
  525. Category 10623 "20170201-20170228" Parent 10557 Levels 1487 OrderBy Drill 1469
  526. Value "201702" Label "Feb./2017" Lastuse 20180711 SourceValue "201702"
  527. Date 20170201 Filtered False Suppressed False Sign False HideValue False
  528. IsKeyOrphanage False IsTruncated False Blanks False
  529. Category 10625 "20170201" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170201"
  530. Label "01/02/2017" Lastuse 20180711 SourceValue "20170201" Date 20170201
  531. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  532. IsTruncated False Blanks False
  533. Category 10627 "20170202" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170202"
  534. Label "02/02/2017" Lastuse 20180711 SourceValue "20170202" Date 20170202
  535. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  536. IsTruncated False Blanks False
  537. Category 10629 "20170203" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170203"
  538. Label "03/02/2017" Lastuse 20180711 SourceValue "20170203" Date 20170203
  539. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  540. IsTruncated False Blanks False
  541. Category 10631 "20170204" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170204"
  542. Label "04/02/2017" Lastuse 20180711 SourceValue "20170204" Date 20170204
  543. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  544. IsTruncated False Blanks False
  545. Category 10633 "20170205" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170205"
  546. Label "05/02/2017" Lastuse 20180711 SourceValue "20170205" Date 20170205
  547. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  548. IsTruncated False Blanks False
  549. Category 10635 "20170206" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170206"
  550. Label "06/02/2017" Lastuse 20180711 SourceValue "20170206" Date 20170206
  551. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  552. IsTruncated False Blanks False
  553. Category 10637 "20170207" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170207"
  554. Label "07/02/2017" Lastuse 20180711 SourceValue "20170207" Date 20170207
  555. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  556. IsTruncated False Blanks False
  557. Category 10639 "20170208" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170208"
  558. Label "08/02/2017" Lastuse 20180711 SourceValue "20170208" Date 20170208
  559. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  560. IsTruncated False Blanks False
  561. Category 10641 "20170209" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170209"
  562. Label "09/02/2017" Lastuse 20180711 SourceValue "20170209" Date 20170209
  563. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  564. IsTruncated False Blanks False
  565. Category 10643 "20170210" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170210"
  566. Label "10/02/2017" Lastuse 20180711 SourceValue "20170210" Date 20170210
  567. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  568. IsTruncated False Blanks False
  569. Category 10645 "20170211" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170211"
  570. Label "11/02/2017" Lastuse 20180711 SourceValue "20170211" Date 20170211
  571. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  572. IsTruncated False Blanks False
  573. Category 10647 "20170212" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170212"
  574. Label "12/02/2017" Lastuse 20180711 SourceValue "20170212" Date 20170212
  575. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  576. IsTruncated False Blanks False
  577. Category 10649 "20170213" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170213"
  578. Label "13/02/2017" Lastuse 20180711 SourceValue "20170213" Date 20170213
  579. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  580. IsTruncated False Blanks False
  581. Category 10651 "20170214" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170214"
  582. Label "14/02/2017" Lastuse 20180711 SourceValue "20170214" Date 20170214
  583. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  584. IsTruncated False Blanks False
  585. Category 10653 "20170215" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170215"
  586. Label "15/02/2017" Lastuse 20180711 SourceValue "20170215" Date 20170215
  587. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  588. IsTruncated False Blanks False
  589. Category 10655 "20170216" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170216"
  590. Label "16/02/2017" Lastuse 20180711 SourceValue "20170216" Date 20170216
  591. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  592. IsTruncated False Blanks False
  593. Category 10657 "20170217" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170217"
  594. Label "17/02/2017" Lastuse 20180711 SourceValue "20170217" Date 20170217
  595. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  596. IsTruncated False Blanks False
  597. Category 10659 "20170218" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170218"
  598. Label "18/02/2017" Lastuse 20180711 SourceValue "20170218" Date 20170218
  599. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  600. IsTruncated False Blanks False
  601. Category 10661 "20170219" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170219"
  602. Label "19/02/2017" Lastuse 20180711 SourceValue "20170219" Date 20170219
  603. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  604. IsTruncated False Blanks False
  605. Category 10663 "20170220" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170220"
  606. Label "20/02/2017" Lastuse 20180711 SourceValue "20170220" Date 20170220
  607. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  608. IsTruncated False Blanks False
  609. Category 10665 "20170221" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170221"
  610. Label "21/02/2017" Lastuse 20180711 SourceValue "20170221" Date 20170221
  611. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  612. IsTruncated False Blanks False
  613. Category 10667 "20170222" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170222"
  614. Label "22/02/2017" Lastuse 20180711 SourceValue "20170222" Date 20170222
  615. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  616. IsTruncated False Blanks False
  617. Category 10669 "20170223" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170223"
  618. Label "23/02/2017" Lastuse 20180711 SourceValue "20170223" Date 20170223
  619. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  620. IsTruncated False Blanks False
  621. Category 10671 "20170224" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170224"
  622. Label "24/02/2017" Lastuse 20180711 SourceValue "20170224" Date 20170224
  623. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  624. IsTruncated False Blanks False
  625. Category 10673 "20170225" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170225"
  626. Label "25/02/2017" Lastuse 20180711 SourceValue "20170225" Date 20170225
  627. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  628. IsTruncated False Blanks False
  629. Category 10675 "20170226" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170226"
  630. Label "26/02/2017" Lastuse 20180711 SourceValue "20170226" Date 20170226
  631. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  632. IsTruncated False Blanks False
  633. Category 10677 "20170227" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170227"
  634. Label "27/02/2017" Lastuse 20180711 SourceValue "20170227" Date 20170227
  635. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  636. IsTruncated False Blanks False
  637. Category 10679 "20170228" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170228"
  638. Label "28/02/2017" Lastuse 20180711 SourceValue "20170228" Date 20170228
  639. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  640. IsTruncated False Blanks False
  641. Category 10681 "20170301-20170331" Parent 10557 Levels 1487 OrderBy Drill 1469
  642. Value "201703" Label "März/2017" Lastuse 20180711 SourceValue "201703"
  643. Date 20170301 Filtered False Suppressed False Sign False HideValue False
  644. IsKeyOrphanage False IsTruncated False Blanks False
  645. Category 10683 "20170301" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170301"
  646. Label "01/03/2017" Lastuse 20180711 SourceValue "20170301" Date 20170301
  647. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  648. IsTruncated False Blanks False
  649. Category 10685 "20170302" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170302"
  650. Label "02/03/2017" Lastuse 20180711 SourceValue "20170302" Date 20170302
  651. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  652. IsTruncated False Blanks False
  653. Category 10687 "20170303" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170303"
  654. Label "03/03/2017" Lastuse 20180711 SourceValue "20170303" Date 20170303
  655. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  656. IsTruncated False Blanks False
  657. Category 10689 "20170304" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170304"
  658. Label "04/03/2017" Lastuse 20180711 SourceValue "20170304" Date 20170304
  659. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  660. IsTruncated False Blanks False
  661. Category 10691 "20170305" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170305"
  662. Label "05/03/2017" Lastuse 20180711 SourceValue "20170305" Date 20170305
  663. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  664. IsTruncated False Blanks False
  665. Category 10693 "20170306" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170306"
  666. Label "06/03/2017" Lastuse 20180711 SourceValue "20170306" Date 20170306
  667. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  668. IsTruncated False Blanks False
  669. Category 10695 "20170307" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170307"
  670. Label "07/03/2017" Lastuse 20180711 SourceValue "20170307" Date 20170307
  671. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  672. IsTruncated False Blanks False
  673. Category 10697 "20170308" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170308"
  674. Label "08/03/2017" Lastuse 20180711 SourceValue "20170308" Date 20170308
  675. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  676. IsTruncated False Blanks False
  677. Category 10699 "20170309" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170309"
  678. Label "09/03/2017" Lastuse 20180711 SourceValue "20170309" Date 20170309
  679. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  680. IsTruncated False Blanks False
  681. Category 10701 "20170310" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170310"
  682. Label "10/03/2017" Lastuse 20180711 SourceValue "20170310" Date 20170310
  683. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  684. IsTruncated False Blanks False
  685. Category 10703 "20170311" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170311"
  686. Label "11/03/2017" Lastuse 20180711 SourceValue "20170311" Date 20170311
  687. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  688. IsTruncated False Blanks False
  689. Category 10705 "20170312" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170312"
  690. Label "12/03/2017" Lastuse 20180711 SourceValue "20170312" Date 20170312
  691. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  692. IsTruncated False Blanks False
  693. Category 10707 "20170313" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170313"
  694. Label "13/03/2017" Lastuse 20180711 SourceValue "20170313" Date 20170313
  695. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  696. IsTruncated False Blanks False
  697. Category 10709 "20170314" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170314"
  698. Label "14/03/2017" Lastuse 20180711 SourceValue "20170314" Date 20170314
  699. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  700. IsTruncated False Blanks False
  701. Category 10711 "20170315" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170315"
  702. Label "15/03/2017" Lastuse 20180711 SourceValue "20170315" Date 20170315
  703. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  704. IsTruncated False Blanks False
  705. Category 10713 "20170316" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170316"
  706. Label "16/03/2017" Lastuse 20180711 SourceValue "20170316" Date 20170316
  707. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  708. IsTruncated False Blanks False
  709. Category 10715 "20170317" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170317"
  710. Label "17/03/2017" Lastuse 20180711 SourceValue "20170317" Date 20170317
  711. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  712. IsTruncated False Blanks False
  713. Category 10717 "20170318" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170318"
  714. Label "18/03/2017" Lastuse 20180711 SourceValue "20170318" Date 20170318
  715. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  716. IsTruncated False Blanks False
  717. Category 10719 "20170319" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170319"
  718. Label "19/03/2017" Lastuse 20180711 SourceValue "20170319" Date 20170319
  719. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  720. IsTruncated False Blanks False
  721. Category 10721 "20170320" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170320"
  722. Label "20/03/2017" Lastuse 20180711 SourceValue "20170320" Date 20170320
  723. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  724. IsTruncated False Blanks False
  725. Category 10723 "20170321" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170321"
  726. Label "21/03/2017" Lastuse 20180711 SourceValue "20170321" Date 20170321
  727. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  728. IsTruncated False Blanks False
  729. Category 10725 "20170322" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170322"
  730. Label "22/03/2017" Lastuse 20180711 SourceValue "20170322" Date 20170322
  731. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  732. IsTruncated False Blanks False
  733. Category 10727 "20170323" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170323"
  734. Label "23/03/2017" Lastuse 20180711 SourceValue "20170323" Date 20170323
  735. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  736. IsTruncated False Blanks False
  737. Category 10729 "20170324" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170324"
  738. Label "24/03/2017" Lastuse 20180711 SourceValue "20170324" Date 20170324
  739. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  740. IsTruncated False Blanks False
  741. Category 10731 "20170325" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170325"
  742. Label "25/03/2017" Lastuse 20180711 SourceValue "20170325" Date 20170325
  743. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  744. IsTruncated False Blanks False
  745. Category 10733 "20170326" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170326"
  746. Label "26/03/2017" Lastuse 20180711 SourceValue "20170326" Date 20170326
  747. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  748. IsTruncated False Blanks False
  749. Category 10735 "20170327" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170327"
  750. Label "27/03/2017" Lastuse 20180711 SourceValue "20170327" Date 20170327
  751. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  752. IsTruncated False Blanks False
  753. Category 10737 "20170328" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170328"
  754. Label "28/03/2017" Lastuse 20180711 SourceValue "20170328" Date 20170328
  755. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  756. IsTruncated False Blanks False
  757. Category 10739 "20170329" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170329"
  758. Label "29/03/2017" Lastuse 20180711 SourceValue "20170329" Date 20170329
  759. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  760. IsTruncated False Blanks False
  761. Category 10741 "20170330" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170330"
  762. Label "30/03/2017" Lastuse 20180711 SourceValue "20170330" Date 20170330
  763. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  764. IsTruncated False Blanks False
  765. Category 10743 "20170331" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170331"
  766. Label "31/03/2017" Lastuse 20180711 SourceValue "20170331" Date 20170331
  767. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  768. IsTruncated False Blanks False
  769. Category 10745 "20170401-20170630" Parent 10555 Levels 1481 OrderBy Drill 1469
  770. Value "20170401" Label "2. Q. 2017" Lastuse 20180711 SourceValue "20170401"
  771. Date 20170401 Filtered False Suppressed False Sign False HideValue False
  772. IsKeyOrphanage False IsTruncated False Blanks False
  773. Category 10747 "20170401-20170430" Parent 10745 Levels 1487 OrderBy Drill 1469
  774. Value "201704" Label "Apr./2017" Lastuse 20180711 SourceValue "201704"
  775. Date 20170401 Filtered False Suppressed False Sign False HideValue False
  776. IsKeyOrphanage False IsTruncated False Blanks False
  777. Category 10749 "20170401" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170401"
  778. Label "01/04/2017" Lastuse 20180711 SourceValue "20170401" Date 20170401
  779. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  780. IsTruncated False Blanks False
  781. Category 10751 "20170402" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170402"
  782. Label "02/04/2017" Lastuse 20180711 SourceValue "20170402" Date 20170402
  783. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  784. IsTruncated False Blanks False
  785. Category 10753 "20170403" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170403"
  786. Label "03/04/2017" Lastuse 20180711 SourceValue "20170403" Date 20170403
  787. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  788. IsTruncated False Blanks False
  789. Category 10755 "20170404" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170404"
  790. Label "04/04/2017" Lastuse 20180711 SourceValue "20170404" Date 20170404
  791. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  792. IsTruncated False Blanks False
  793. Category 10757 "20170405" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170405"
  794. Label "05/04/2017" Lastuse 20180711 SourceValue "20170405" Date 20170405
  795. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  796. IsTruncated False Blanks False
  797. Category 10759 "20170406" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170406"
  798. Label "06/04/2017" Lastuse 20180711 SourceValue "20170406" Date 20170406
  799. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  800. IsTruncated False Blanks False
  801. Category 10761 "20170407" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170407"
  802. Label "07/04/2017" Lastuse 20180711 SourceValue "20170407" Date 20170407
  803. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  804. IsTruncated False Blanks False
  805. Category 10763 "20170408" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170408"
  806. Label "08/04/2017" Lastuse 20180711 SourceValue "20170408" Date 20170408
  807. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  808. IsTruncated False Blanks False
  809. Category 10765 "20170409" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170409"
  810. Label "09/04/2017" Lastuse 20180711 SourceValue "20170409" Date 20170409
  811. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  812. IsTruncated False Blanks False
  813. Category 10767 "20170410" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170410"
  814. Label "10/04/2017" Lastuse 20180711 SourceValue "20170410" Date 20170410
  815. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  816. IsTruncated False Blanks False
  817. Category 10769 "20170411" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170411"
  818. Label "11/04/2017" Lastuse 20180711 SourceValue "20170411" Date 20170411
  819. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  820. IsTruncated False Blanks False
  821. Category 10771 "20170412" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170412"
  822. Label "12/04/2017" Lastuse 20180711 SourceValue "20170412" Date 20170412
  823. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  824. IsTruncated False Blanks False
  825. Category 10773 "20170413" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170413"
  826. Label "13/04/2017" Lastuse 20180711 SourceValue "20170413" Date 20170413
  827. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  828. IsTruncated False Blanks False
  829. Category 10775 "20170414" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170414"
  830. Label "14/04/2017" Lastuse 20180711 SourceValue "20170414" Date 20170414
  831. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  832. IsTruncated False Blanks False
  833. Category 10777 "20170415" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170415"
  834. Label "15/04/2017" Lastuse 20180711 SourceValue "20170415" Date 20170415
  835. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  836. IsTruncated False Blanks False
  837. Category 10779 "20170416" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170416"
  838. Label "16/04/2017" Lastuse 20180711 SourceValue "20170416" Date 20170416
  839. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  840. IsTruncated False Blanks False
  841. Category 10781 "20170417" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170417"
  842. Label "17/04/2017" Lastuse 20180711 SourceValue "20170417" Date 20170417
  843. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  844. IsTruncated False Blanks False
  845. Category 10783 "20170418" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170418"
  846. Label "18/04/2017" Lastuse 20180711 SourceValue "20170418" Date 20170418
  847. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  848. IsTruncated False Blanks False
  849. Category 10785 "20170419" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170419"
  850. Label "19/04/2017" Lastuse 20180711 SourceValue "20170419" Date 20170419
  851. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  852. IsTruncated False Blanks False
  853. Category 10787 "20170420" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170420"
  854. Label "20/04/2017" Lastuse 20180711 SourceValue "20170420" Date 20170420
  855. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  856. IsTruncated False Blanks False
  857. Category 10789 "20170421" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170421"
  858. Label "21/04/2017" Lastuse 20180711 SourceValue "20170421" Date 20170421
  859. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  860. IsTruncated False Blanks False
  861. Category 10791 "20170422" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170422"
  862. Label "22/04/2017" Lastuse 20180711 SourceValue "20170422" Date 20170422
  863. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  864. IsTruncated False Blanks False
  865. Category 10793 "20170423" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170423"
  866. Label "23/04/2017" Lastuse 20180711 SourceValue "20170423" Date 20170423
  867. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  868. IsTruncated False Blanks False
  869. Category 10795 "20170424" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170424"
  870. Label "24/04/2017" Lastuse 20180711 SourceValue "20170424" Date 20170424
  871. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  872. IsTruncated False Blanks False
  873. Category 10797 "20170425" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170425"
  874. Label "25/04/2017" Lastuse 20180711 SourceValue "20170425" Date 20170425
  875. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  876. IsTruncated False Blanks False
  877. Category 10799 "20170426" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170426"
  878. Label "26/04/2017" Lastuse 20180711 SourceValue "20170426" Date 20170426
  879. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  880. IsTruncated False Blanks False
  881. Category 10801 "20170427" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170427"
  882. Label "27/04/2017" Lastuse 20180711 SourceValue "20170427" Date 20170427
  883. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  884. IsTruncated False Blanks False
  885. Category 10803 "20170428" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170428"
  886. Label "28/04/2017" Lastuse 20180711 SourceValue "20170428" Date 20170428
  887. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  888. IsTruncated False Blanks False
  889. Category 10805 "20170429" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170429"
  890. Label "29/04/2017" Lastuse 20180711 SourceValue "20170429" Date 20170429
  891. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  892. IsTruncated False Blanks False
  893. Category 10807 "20170430" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170430"
  894. Label "30/04/2017" Lastuse 20180711 SourceValue "20170430" Date 20170430
  895. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  896. IsTruncated False Blanks False
  897. Category 10809 "20170501-20170531" Parent 10745 Levels 1487 OrderBy Drill 1469
  898. Value "201705" Label "Mai/2017" Lastuse 20180711 SourceValue "201705" Date 20170501
  899. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  900. IsTruncated False Blanks False
  901. Category 10811 "20170501" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170501"
  902. Label "01/05/2017" Lastuse 20180711 SourceValue "20170501" Date 20170501
  903. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  904. IsTruncated False Blanks False
  905. Category 10813 "20170502" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170502"
  906. Label "02/05/2017" Lastuse 20180711 SourceValue "20170502" Date 20170502
  907. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  908. IsTruncated False Blanks False
  909. Category 10815 "20170503" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170503"
  910. Label "03/05/2017" Lastuse 20180711 SourceValue "20170503" Date 20170503
  911. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  912. IsTruncated False Blanks False
  913. Category 10817 "20170504" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170504"
  914. Label "04/05/2017" Lastuse 20180711 SourceValue "20170504" Date 20170504
  915. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  916. IsTruncated False Blanks False
  917. Category 10819 "20170505" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170505"
  918. Label "05/05/2017" Lastuse 20180711 SourceValue "20170505" Date 20170505
  919. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  920. IsTruncated False Blanks False
  921. Category 10821 "20170506" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170506"
  922. Label "06/05/2017" Lastuse 20180711 SourceValue "20170506" Date 20170506
  923. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  924. IsTruncated False Blanks False
  925. Category 10823 "20170507" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170507"
  926. Label "07/05/2017" Lastuse 20180711 SourceValue "20170507" Date 20170507
  927. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  928. IsTruncated False Blanks False
  929. Category 10825 "20170508" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170508"
  930. Label "08/05/2017" Lastuse 20180711 SourceValue "20170508" Date 20170508
  931. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  932. IsTruncated False Blanks False
  933. Category 10827 "20170509" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170509"
  934. Label "09/05/2017" Lastuse 20180711 SourceValue "20170509" Date 20170509
  935. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  936. IsTruncated False Blanks False
  937. Category 10829 "20170510" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170510"
  938. Label "10/05/2017" Lastuse 20180711 SourceValue "20170510" Date 20170510
  939. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  940. IsTruncated False Blanks False
  941. Category 10831 "20170511" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170511"
  942. Label "11/05/2017" Lastuse 20180711 SourceValue "20170511" Date 20170511
  943. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  944. IsTruncated False Blanks False
  945. Category 10833 "20170512" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170512"
  946. Label "12/05/2017" Lastuse 20180711 SourceValue "20170512" Date 20170512
  947. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  948. IsTruncated False Blanks False
  949. Category 10835 "20170513" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170513"
  950. Label "13/05/2017" Lastuse 20180711 SourceValue "20170513" Date 20170513
  951. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  952. IsTruncated False Blanks False
  953. Category 10837 "20170514" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170514"
  954. Label "14/05/2017" Lastuse 20180711 SourceValue "20170514" Date 20170514
  955. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  956. IsTruncated False Blanks False
  957. Category 10839 "20170515" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170515"
  958. Label "15/05/2017" Lastuse 20180711 SourceValue "20170515" Date 20170515
  959. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  960. IsTruncated False Blanks False
  961. Category 10841 "20170516" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170516"
  962. Label "16/05/2017" Lastuse 20180711 SourceValue "20170516" Date 20170516
  963. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  964. IsTruncated False Blanks False
  965. Category 10843 "20170517" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170517"
  966. Label "17/05/2017" Lastuse 20180711 SourceValue "20170517" Date 20170517
  967. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  968. IsTruncated False Blanks False
  969. Category 10845 "20170518" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170518"
  970. Label "18/05/2017" Lastuse 20180711 SourceValue "20170518" Date 20170518
  971. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  972. IsTruncated False Blanks False
  973. Category 10847 "20170519" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170519"
  974. Label "19/05/2017" Lastuse 20180711 SourceValue "20170519" Date 20170519
  975. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  976. IsTruncated False Blanks False
  977. Category 10849 "20170520" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170520"
  978. Label "20/05/2017" Lastuse 20180711 SourceValue "20170520" Date 20170520
  979. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  980. IsTruncated False Blanks False
  981. Category 10851 "20170521" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170521"
  982. Label "21/05/2017" Lastuse 20180711 SourceValue "20170521" Date 20170521
  983. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  984. IsTruncated False Blanks False
  985. Category 10853 "20170522" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170522"
  986. Label "22/05/2017" Lastuse 20180711 SourceValue "20170522" Date 20170522
  987. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  988. IsTruncated False Blanks False
  989. Category 10855 "20170523" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170523"
  990. Label "23/05/2017" Lastuse 20180711 SourceValue "20170523" Date 20170523
  991. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  992. IsTruncated False Blanks False
  993. Category 10857 "20170524" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170524"
  994. Label "24/05/2017" Lastuse 20180711 SourceValue "20170524" Date 20170524
  995. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  996. IsTruncated False Blanks False
  997. Category 10859 "20170525" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170525"
  998. Label "25/05/2017" Lastuse 20180711 SourceValue "20170525" Date 20170525
  999. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1000. IsTruncated False Blanks False
  1001. Category 10861 "20170526" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170526"
  1002. Label "26/05/2017" Lastuse 20180711 SourceValue "20170526" Date 20170526
  1003. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1004. IsTruncated False Blanks False
  1005. Category 10863 "20170527" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170527"
  1006. Label "27/05/2017" Lastuse 20180711 SourceValue "20170527" Date 20170527
  1007. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1008. IsTruncated False Blanks False
  1009. Category 10865 "20170528" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170528"
  1010. Label "28/05/2017" Lastuse 20180711 SourceValue "20170528" Date 20170528
  1011. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1012. IsTruncated False Blanks False
  1013. Category 10867 "20170529" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170529"
  1014. Label "29/05/2017" Lastuse 20180711 SourceValue "20170529" Date 20170529
  1015. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1016. IsTruncated False Blanks False
  1017. Category 10869 "20170530" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170530"
  1018. Label "30/05/2017" Lastuse 20180711 SourceValue "20170530" Date 20170530
  1019. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1020. IsTruncated False Blanks False
  1021. Category 10871 "20170531" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170531"
  1022. Label "31/05/2017" Lastuse 20180711 SourceValue "20170531" Date 20170531
  1023. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1024. IsTruncated False Blanks False
  1025. Category 10873 "20170601-20170630" Parent 10745 Levels 1487 OrderBy Drill 1469
  1026. Value "201706" Label "Juni/2017" Lastuse 20180711 SourceValue "201706"
  1027. Date 20170601 Filtered False Suppressed False Sign False HideValue False
  1028. IsKeyOrphanage False IsTruncated False Blanks False
  1029. Category 10875 "20170601" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170601"
  1030. Label "01/06/2017" Lastuse 20180711 SourceValue "20170601" Date 20170601
  1031. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1032. IsTruncated False Blanks False
  1033. Category 10877 "20170602" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170602"
  1034. Label "02/06/2017" Lastuse 20180711 SourceValue "20170602" Date 20170602
  1035. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1036. IsTruncated False Blanks False
  1037. Category 10879 "20170603" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170603"
  1038. Label "03/06/2017" Lastuse 20180711 SourceValue "20170603" Date 20170603
  1039. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1040. IsTruncated False Blanks False
  1041. Category 10881 "20170604" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170604"
  1042. Label "04/06/2017" Lastuse 20180711 SourceValue "20170604" Date 20170604
  1043. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1044. IsTruncated False Blanks False
  1045. Category 10883 "20170605" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170605"
  1046. Label "05/06/2017" Lastuse 20180711 SourceValue "20170605" Date 20170605
  1047. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1048. IsTruncated False Blanks False
  1049. Category 10885 "20170606" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170606"
  1050. Label "06/06/2017" Lastuse 20180711 SourceValue "20170606" Date 20170606
  1051. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1052. IsTruncated False Blanks False
  1053. Category 10887 "20170607" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170607"
  1054. Label "07/06/2017" Lastuse 20180711 SourceValue "20170607" Date 20170607
  1055. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1056. IsTruncated False Blanks False
  1057. Category 10889 "20170608" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170608"
  1058. Label "08/06/2017" Lastuse 20180711 SourceValue "20170608" Date 20170608
  1059. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1060. IsTruncated False Blanks False
  1061. Category 10891 "20170609" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170609"
  1062. Label "09/06/2017" Lastuse 20180711 SourceValue "20170609" Date 20170609
  1063. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1064. IsTruncated False Blanks False
  1065. Category 10893 "20170610" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170610"
  1066. Label "10/06/2017" Lastuse 20180711 SourceValue "20170610" Date 20170610
  1067. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1068. IsTruncated False Blanks False
  1069. Category 10895 "20170611" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170611"
  1070. Label "11/06/2017" Lastuse 20180711 SourceValue "20170611" Date 20170611
  1071. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1072. IsTruncated False Blanks False
  1073. Category 10897 "20170612" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170612"
  1074. Label "12/06/2017" Lastuse 20180711 SourceValue "20170612" Date 20170612
  1075. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1076. IsTruncated False Blanks False
  1077. Category 10899 "20170613" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170613"
  1078. Label "13/06/2017" Lastuse 20180711 SourceValue "20170613" Date 20170613
  1079. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1080. IsTruncated False Blanks False
  1081. Category 10901 "20170614" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170614"
  1082. Label "14/06/2017" Lastuse 20180711 SourceValue "20170614" Date 20170614
  1083. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1084. IsTruncated False Blanks False
  1085. Category 10903 "20170615" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170615"
  1086. Label "15/06/2017" Lastuse 20180711 SourceValue "20170615" Date 20170615
  1087. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1088. IsTruncated False Blanks False
  1089. Category 10905 "20170616" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170616"
  1090. Label "16/06/2017" Lastuse 20180711 SourceValue "20170616" Date 20170616
  1091. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1092. IsTruncated False Blanks False
  1093. Category 10907 "20170617" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170617"
  1094. Label "17/06/2017" Lastuse 20180711 SourceValue "20170617" Date 20170617
  1095. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1096. IsTruncated False Blanks False
  1097. Category 10909 "20170618" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170618"
  1098. Label "18/06/2017" Lastuse 20180711 SourceValue "20170618" Date 20170618
  1099. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1100. IsTruncated False Blanks False
  1101. Category 10911 "20170619" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170619"
  1102. Label "19/06/2017" Lastuse 20180711 SourceValue "20170619" Date 20170619
  1103. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1104. IsTruncated False Blanks False
  1105. Category 10913 "20170620" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170620"
  1106. Label "20/06/2017" Lastuse 20180711 SourceValue "20170620" Date 20170620
  1107. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1108. IsTruncated False Blanks False
  1109. Category 10915 "20170621" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170621"
  1110. Label "21/06/2017" Lastuse 20180711 SourceValue "20170621" Date 20170621
  1111. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1112. IsTruncated False Blanks False
  1113. Category 10917 "20170622" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170622"
  1114. Label "22/06/2017" Lastuse 20180711 SourceValue "20170622" Date 20170622
  1115. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1116. IsTruncated False Blanks False
  1117. Category 10919 "20170623" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170623"
  1118. Label "23/06/2017" Lastuse 20180711 SourceValue "20170623" Date 20170623
  1119. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1120. IsTruncated False Blanks False
  1121. Category 10921 "20170624" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170624"
  1122. Label "24/06/2017" Lastuse 20180711 SourceValue "20170624" Date 20170624
  1123. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1124. IsTruncated False Blanks False
  1125. Category 10923 "20170625" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170625"
  1126. Label "25/06/2017" Lastuse 20180711 SourceValue "20170625" Date 20170625
  1127. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1128. IsTruncated False Blanks False
  1129. Category 10925 "20170626" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170626"
  1130. Label "26/06/2017" Lastuse 20180711 SourceValue "20170626" Date 20170626
  1131. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1132. IsTruncated False Blanks False
  1133. Category 10927 "20170627" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170627"
  1134. Label "27/06/2017" Lastuse 20180711 SourceValue "20170627" Date 20170627
  1135. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1136. IsTruncated False Blanks False
  1137. Category 10929 "20170628" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170628"
  1138. Label "28/06/2017" Lastuse 20180711 SourceValue "20170628" Date 20170628
  1139. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1140. IsTruncated False Blanks False
  1141. Category 10931 "20170629" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170629"
  1142. Label "29/06/2017" Lastuse 20180711 SourceValue "20170629" Date 20170629
  1143. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1144. IsTruncated False Blanks False
  1145. Category 10933 "20170630" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170630"
  1146. Label "30/06/2017" Lastuse 20180711 SourceValue "20170630" Date 20170630
  1147. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1148. IsTruncated False Blanks False
  1149. Category 10935 "20170701-20170930" Parent 10555 Levels 1481 OrderBy Drill 1469
  1150. Value "20170701" Label "3. Q. 2017" Lastuse 20180711 SourceValue "20170701"
  1151. Date 20170701 Filtered False Suppressed False Sign False HideValue False
  1152. IsKeyOrphanage False IsTruncated False Blanks False
  1153. Category 10937 "20170701-20170731" Parent 10935 Levels 1487 OrderBy Drill 1469
  1154. Value "201707" Label "Juli/2017" Lastuse 20180711 SourceValue "201707"
  1155. Date 20170701 Filtered False Suppressed False Sign False HideValue False
  1156. IsKeyOrphanage False IsTruncated False Blanks False
  1157. Category 10939 "20170701" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170701"
  1158. Label "01/07/2017" Lastuse 20180711 SourceValue "20170701" Date 20170701
  1159. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1160. IsTruncated False Blanks False
  1161. Category 10941 "20170702" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170702"
  1162. Label "02/07/2017" Lastuse 20180711 SourceValue "20170702" Date 20170702
  1163. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1164. IsTruncated False Blanks False
  1165. Category 10943 "20170703" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170703"
  1166. Label "03/07/2017" Lastuse 20180711 SourceValue "20170703" Date 20170703
  1167. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1168. IsTruncated False Blanks False
  1169. Category 10945 "20170704" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170704"
  1170. Label "04/07/2017" Lastuse 20180711 SourceValue "20170704" Date 20170704
  1171. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1172. IsTruncated False Blanks False
  1173. Category 10947 "20170705" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170705"
  1174. Label "05/07/2017" Lastuse 20180711 SourceValue "20170705" Date 20170705
  1175. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1176. IsTruncated False Blanks False
  1177. Category 10949 "20170706" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170706"
  1178. Label "06/07/2017" Lastuse 20180711 SourceValue "20170706" Date 20170706
  1179. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1180. IsTruncated False Blanks False
  1181. Category 10951 "20170707" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170707"
  1182. Label "07/07/2017" Lastuse 20180711 SourceValue "20170707" Date 20170707
  1183. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1184. IsTruncated False Blanks False
  1185. Category 10953 "20170708" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170708"
  1186. Label "08/07/2017" Lastuse 20180711 SourceValue "20170708" Date 20170708
  1187. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1188. IsTruncated False Blanks False
  1189. Category 10955 "20170709" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170709"
  1190. Label "09/07/2017" Lastuse 20180711 SourceValue "20170709" Date 20170709
  1191. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1192. IsTruncated False Blanks False
  1193. Category 10957 "20170710" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170710"
  1194. Label "10/07/2017" Lastuse 20180711 SourceValue "20170710" Date 20170710
  1195. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1196. IsTruncated False Blanks False
  1197. Category 10959 "20170711" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170711"
  1198. Label "11/07/2017" Lastuse 20180711 SourceValue "20170711" Date 20170711
  1199. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1200. IsTruncated False Blanks False
  1201. Category 10961 "20170712" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170712"
  1202. Label "12/07/2017" Lastuse 20180711 SourceValue "20170712" Date 20170712
  1203. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1204. IsTruncated False Blanks False
  1205. Category 10963 "20170713" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170713"
  1206. Label "13/07/2017" Lastuse 20180711 SourceValue "20170713" Date 20170713
  1207. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1208. IsTruncated False Blanks False
  1209. Category 10965 "20170714" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170714"
  1210. Label "14/07/2017" Lastuse 20180711 SourceValue "20170714" Date 20170714
  1211. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1212. IsTruncated False Blanks False
  1213. Category 10967 "20170715" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170715"
  1214. Label "15/07/2017" Lastuse 20180711 SourceValue "20170715" Date 20170715
  1215. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1216. IsTruncated False Blanks False
  1217. Category 10969 "20170716" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170716"
  1218. Label "16/07/2017" Lastuse 20180711 SourceValue "20170716" Date 20170716
  1219. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1220. IsTruncated False Blanks False
  1221. Category 10971 "20170717" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170717"
  1222. Label "17/07/2017" Lastuse 20180711 SourceValue "20170717" Date 20170717
  1223. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1224. IsTruncated False Blanks False
  1225. Category 10973 "20170718" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170718"
  1226. Label "18/07/2017" Lastuse 20180711 SourceValue "20170718" Date 20170718
  1227. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1228. IsTruncated False Blanks False
  1229. Category 10975 "20170719" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170719"
  1230. Label "19/07/2017" Lastuse 20180711 SourceValue "20170719" Date 20170719
  1231. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1232. IsTruncated False Blanks False
  1233. Category 10977 "20170720" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170720"
  1234. Label "20/07/2017" Lastuse 20180711 SourceValue "20170720" Date 20170720
  1235. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1236. IsTruncated False Blanks False
  1237. Category 10979 "20170721" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170721"
  1238. Label "21/07/2017" Lastuse 20180711 SourceValue "20170721" Date 20170721
  1239. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1240. IsTruncated False Blanks False
  1241. Category 10981 "20170722" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170722"
  1242. Label "22/07/2017" Lastuse 20180711 SourceValue "20170722" Date 20170722
  1243. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1244. IsTruncated False Blanks False
  1245. Category 10983 "20170723" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170723"
  1246. Label "23/07/2017" Lastuse 20180711 SourceValue "20170723" Date 20170723
  1247. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1248. IsTruncated False Blanks False
  1249. Category 10985 "20170724" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170724"
  1250. Label "24/07/2017" Lastuse 20180711 SourceValue "20170724" Date 20170724
  1251. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1252. IsTruncated False Blanks False
  1253. Category 10987 "20170725" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170725"
  1254. Label "25/07/2017" Lastuse 20180711 SourceValue "20170725" Date 20170725
  1255. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1256. IsTruncated False Blanks False
  1257. Category 10989 "20170726" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170726"
  1258. Label "26/07/2017" Lastuse 20180711 SourceValue "20170726" Date 20170726
  1259. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1260. IsTruncated False Blanks False
  1261. Category 10991 "20170727" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170727"
  1262. Label "27/07/2017" Lastuse 20180711 SourceValue "20170727" Date 20170727
  1263. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1264. IsTruncated False Blanks False
  1265. Category 10993 "20170728" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170728"
  1266. Label "28/07/2017" Lastuse 20180711 SourceValue "20170728" Date 20170728
  1267. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1268. IsTruncated False Blanks False
  1269. Category 10995 "20170729" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170729"
  1270. Label "29/07/2017" Lastuse 20180711 SourceValue "20170729" Date 20170729
  1271. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1272. IsTruncated False Blanks False
  1273. Category 10997 "20170730" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170730"
  1274. Label "30/07/2017" Lastuse 20180711 SourceValue "20170730" Date 20170730
  1275. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1276. IsTruncated False Blanks False
  1277. Category 10999 "20170731" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170731"
  1278. Label "31/07/2017" Lastuse 20180711 SourceValue "20170731" Date 20170731
  1279. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1280. IsTruncated False Blanks False
  1281. Category 11001 "20170801-20170831" Parent 10935 Levels 1487 OrderBy Drill 1469
  1282. Value "201708" Label "Aug./2017" Lastuse 20180711 SourceValue "201708"
  1283. Date 20170801 Filtered False Suppressed False Sign False HideValue False
  1284. IsKeyOrphanage False IsTruncated False Blanks False
  1285. Category 11003 "20170801" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170801"
  1286. Label "01/08/2017" Lastuse 20180711 SourceValue "20170801" Date 20170801
  1287. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1288. IsTruncated False Blanks False
  1289. Category 11005 "20170802" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170802"
  1290. Label "02/08/2017" Lastuse 20180711 SourceValue "20170802" Date 20170802
  1291. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1292. IsTruncated False Blanks False
  1293. Category 11007 "20170803" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170803"
  1294. Label "03/08/2017" Lastuse 20180711 SourceValue "20170803" Date 20170803
  1295. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1296. IsTruncated False Blanks False
  1297. Category 11009 "20170804" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170804"
  1298. Label "04/08/2017" Lastuse 20180711 SourceValue "20170804" Date 20170804
  1299. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1300. IsTruncated False Blanks False
  1301. Category 11011 "20170805" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170805"
  1302. Label "05/08/2017" Lastuse 20180711 SourceValue "20170805" Date 20170805
  1303. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1304. IsTruncated False Blanks False
  1305. Category 11013 "20170806" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170806"
  1306. Label "06/08/2017" Lastuse 20180711 SourceValue "20170806" Date 20170806
  1307. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1308. IsTruncated False Blanks False
  1309. Category 11015 "20170807" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170807"
  1310. Label "07/08/2017" Lastuse 20180711 SourceValue "20170807" Date 20170807
  1311. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1312. IsTruncated False Blanks False
  1313. Category 11017 "20170808" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170808"
  1314. Label "08/08/2017" Lastuse 20180711 SourceValue "20170808" Date 20170808
  1315. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1316. IsTruncated False Blanks False
  1317. Category 11019 "20170809" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170809"
  1318. Label "09/08/2017" Lastuse 20180711 SourceValue "20170809" Date 20170809
  1319. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1320. IsTruncated False Blanks False
  1321. Category 11021 "20170810" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170810"
  1322. Label "10/08/2017" Lastuse 20180711 SourceValue "20170810" Date 20170810
  1323. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1324. IsTruncated False Blanks False
  1325. Category 11023 "20170811" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170811"
  1326. Label "11/08/2017" Lastuse 20180711 SourceValue "20170811" Date 20170811
  1327. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1328. IsTruncated False Blanks False
  1329. Category 11025 "20170812" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170812"
  1330. Label "12/08/2017" Lastuse 20180711 SourceValue "20170812" Date 20170812
  1331. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1332. IsTruncated False Blanks False
  1333. Category 11027 "20170813" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170813"
  1334. Label "13/08/2017" Lastuse 20180711 SourceValue "20170813" Date 20170813
  1335. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1336. IsTruncated False Blanks False
  1337. Category 11029 "20170814" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170814"
  1338. Label "14/08/2017" Lastuse 20180711 SourceValue "20170814" Date 20170814
  1339. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1340. IsTruncated False Blanks False
  1341. Category 11031 "20170815" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170815"
  1342. Label "15/08/2017" Lastuse 20180711 SourceValue "20170815" Date 20170815
  1343. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1344. IsTruncated False Blanks False
  1345. Category 11033 "20170816" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170816"
  1346. Label "16/08/2017" Lastuse 20180711 SourceValue "20170816" Date 20170816
  1347. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1348. IsTruncated False Blanks False
  1349. Category 11035 "20170817" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170817"
  1350. Label "17/08/2017" Lastuse 20180711 SourceValue "20170817" Date 20170817
  1351. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1352. IsTruncated False Blanks False
  1353. Category 11037 "20170818" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170818"
  1354. Label "18/08/2017" Lastuse 20180711 SourceValue "20170818" Date 20170818
  1355. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1356. IsTruncated False Blanks False
  1357. Category 11039 "20170819" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170819"
  1358. Label "19/08/2017" Lastuse 20180711 SourceValue "20170819" Date 20170819
  1359. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1360. IsTruncated False Blanks False
  1361. Category 11041 "20170820" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170820"
  1362. Label "20/08/2017" Lastuse 20180711 SourceValue "20170820" Date 20170820
  1363. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1364. IsTruncated False Blanks False
  1365. Category 11043 "20170821" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170821"
  1366. Label "21/08/2017" Lastuse 20180711 SourceValue "20170821" Date 20170821
  1367. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1368. IsTruncated False Blanks False
  1369. Category 11045 "20170822" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170822"
  1370. Label "22/08/2017" Lastuse 20180711 SourceValue "20170822" Date 20170822
  1371. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1372. IsTruncated False Blanks False
  1373. Category 11047 "20170823" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170823"
  1374. Label "23/08/2017" Lastuse 20180711 SourceValue "20170823" Date 20170823
  1375. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1376. IsTruncated False Blanks False
  1377. Category 11049 "20170824" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170824"
  1378. Label "24/08/2017" Lastuse 20180711 SourceValue "20170824" Date 20170824
  1379. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1380. IsTruncated False Blanks False
  1381. Category 11051 "20170825" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170825"
  1382. Label "25/08/2017" Lastuse 20180711 SourceValue "20170825" Date 20170825
  1383. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1384. IsTruncated False Blanks False
  1385. Category 11053 "20170826" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170826"
  1386. Label "26/08/2017" Lastuse 20180711 SourceValue "20170826" Date 20170826
  1387. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1388. IsTruncated False Blanks False
  1389. Category 11055 "20170827" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170827"
  1390. Label "27/08/2017" Lastuse 20180711 SourceValue "20170827" Date 20170827
  1391. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1392. IsTruncated False Blanks False
  1393. Category 11057 "20170828" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170828"
  1394. Label "28/08/2017" Lastuse 20180711 SourceValue "20170828" Date 20170828
  1395. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1396. IsTruncated False Blanks False
  1397. Category 11059 "20170829" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170829"
  1398. Label "29/08/2017" Lastuse 20180711 SourceValue "20170829" Date 20170829
  1399. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1400. IsTruncated False Blanks False
  1401. Category 11061 "20170830" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170830"
  1402. Label "30/08/2017" Lastuse 20180711 SourceValue "20170830" Date 20170830
  1403. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1404. IsTruncated False Blanks False
  1405. Category 11063 "20170831" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170831"
  1406. Label "31/08/2017" Lastuse 20180711 SourceValue "20170831" Date 20170831
  1407. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1408. IsTruncated False Blanks False
  1409. Category 11065 "20170901-20170930" Parent 10935 Levels 1487 OrderBy Drill 1469
  1410. Value "201709" Label "Sept./2017" Lastuse 20180711 SourceValue "201709"
  1411. Date 20170901 Filtered False Suppressed False Sign False HideValue False
  1412. IsKeyOrphanage False IsTruncated False Blanks False
  1413. Category 11067 "20170901" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170901"
  1414. Label "01/09/2017" Lastuse 20180711 SourceValue "20170901" Date 20170901
  1415. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1416. IsTruncated False Blanks False
  1417. Category 11069 "20170902" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170902"
  1418. Label "02/09/2017" Lastuse 20180711 SourceValue "20170902" Date 20170902
  1419. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1420. IsTruncated False Blanks False
  1421. Category 11071 "20170903" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170903"
  1422. Label "03/09/2017" Lastuse 20180711 SourceValue "20170903" Date 20170903
  1423. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1424. IsTruncated False Blanks False
  1425. Category 11073 "20170904" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170904"
  1426. Label "04/09/2017" Lastuse 20180711 SourceValue "20170904" Date 20170904
  1427. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1428. IsTruncated False Blanks False
  1429. Category 11075 "20170905" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170905"
  1430. Label "05/09/2017" Lastuse 20180711 SourceValue "20170905" Date 20170905
  1431. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1432. IsTruncated False Blanks False
  1433. Category 11077 "20170906" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170906"
  1434. Label "06/09/2017" Lastuse 20180711 SourceValue "20170906" Date 20170906
  1435. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1436. IsTruncated False Blanks False
  1437. Category 11079 "20170907" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170907"
  1438. Label "07/09/2017" Lastuse 20180711 SourceValue "20170907" Date 20170907
  1439. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1440. IsTruncated False Blanks False
  1441. Category 11081 "20170908" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170908"
  1442. Label "08/09/2017" Lastuse 20180711 SourceValue "20170908" Date 20170908
  1443. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1444. IsTruncated False Blanks False
  1445. Category 11083 "20170909" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170909"
  1446. Label "09/09/2017" Lastuse 20180711 SourceValue "20170909" Date 20170909
  1447. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1448. IsTruncated False Blanks False
  1449. Category 11085 "20170910" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170910"
  1450. Label "10/09/2017" Lastuse 20180711 SourceValue "20170910" Date 20170910
  1451. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1452. IsTruncated False Blanks False
  1453. Category 11087 "20170911" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170911"
  1454. Label "11/09/2017" Lastuse 20180711 SourceValue "20170911" Date 20170911
  1455. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1456. IsTruncated False Blanks False
  1457. Category 11089 "20170912" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170912"
  1458. Label "12/09/2017" Lastuse 20180711 SourceValue "20170912" Date 20170912
  1459. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1460. IsTruncated False Blanks False
  1461. Category 11091 "20170913" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170913"
  1462. Label "13/09/2017" Lastuse 20180711 SourceValue "20170913" Date 20170913
  1463. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1464. IsTruncated False Blanks False
  1465. Category 11093 "20170914" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170914"
  1466. Label "14/09/2017" Lastuse 20180711 SourceValue "20170914" Date 20170914
  1467. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1468. IsTruncated False Blanks False
  1469. Category 11095 "20170915" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170915"
  1470. Label "15/09/2017" Lastuse 20180711 SourceValue "20170915" Date 20170915
  1471. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1472. IsTruncated False Blanks False
  1473. Category 11097 "20170916" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170916"
  1474. Label "16/09/2017" Lastuse 20180711 SourceValue "20170916" Date 20170916
  1475. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1476. IsTruncated False Blanks False
  1477. Category 11099 "20170917" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170917"
  1478. Label "17/09/2017" Lastuse 20180711 SourceValue "20170917" Date 20170917
  1479. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1480. IsTruncated False Blanks False
  1481. Category 11101 "20170918" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170918"
  1482. Label "18/09/2017" Lastuse 20180711 SourceValue "20170918" Date 20170918
  1483. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1484. IsTruncated False Blanks False
  1485. Category 11103 "20170919" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170919"
  1486. Label "19/09/2017" Lastuse 20180711 SourceValue "20170919" Date 20170919
  1487. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1488. IsTruncated False Blanks False
  1489. Category 11105 "20170920" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170920"
  1490. Label "20/09/2017" Lastuse 20180711 SourceValue "20170920" Date 20170920
  1491. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1492. IsTruncated False Blanks False
  1493. Category 11107 "20170921" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170921"
  1494. Label "21/09/2017" Lastuse 20180711 SourceValue "20170921" Date 20170921
  1495. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1496. IsTruncated False Blanks False
  1497. Category 11109 "20170922" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170922"
  1498. Label "22/09/2017" Lastuse 20180711 SourceValue "20170922" Date 20170922
  1499. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1500. IsTruncated False Blanks False
  1501. Category 11111 "20170923" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170923"
  1502. Label "23/09/2017" Lastuse 20180711 SourceValue "20170923" Date 20170923
  1503. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1504. IsTruncated False Blanks False
  1505. Category 11113 "20170924" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170924"
  1506. Label "24/09/2017" Lastuse 20180711 SourceValue "20170924" Date 20170924
  1507. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1508. IsTruncated False Blanks False
  1509. Category 11115 "20170925" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170925"
  1510. Label "25/09/2017" Lastuse 20180711 SourceValue "20170925" Date 20170925
  1511. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1512. IsTruncated False Blanks False
  1513. Category 11117 "20170926" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170926"
  1514. Label "26/09/2017" Lastuse 20180711 SourceValue "20170926" Date 20170926
  1515. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1516. IsTruncated False Blanks False
  1517. Category 11119 "20170927" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170927"
  1518. Label "27/09/2017" Lastuse 20180711 SourceValue "20170927" Date 20170927
  1519. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1520. IsTruncated False Blanks False
  1521. Category 11121 "20170928" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170928"
  1522. Label "28/09/2017" Lastuse 20180711 SourceValue "20170928" Date 20170928
  1523. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1524. IsTruncated False Blanks False
  1525. Category 11123 "20170929" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170929"
  1526. Label "29/09/2017" Lastuse 20180711 SourceValue "20170929" Date 20170929
  1527. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1528. IsTruncated False Blanks False
  1529. Category 11125 "20170930" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170930"
  1530. Label "30/09/2017" Lastuse 20180711 SourceValue "20170930" Date 20170930
  1531. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1532. IsTruncated False Blanks False
  1533. Category 11127 "20171001-20171231" Parent 10555 Levels 1481 OrderBy Drill 1469
  1534. Value "20171001" Label "4. Q. 2017" Lastuse 20180820 SourceValue "20171001"
  1535. Date 20171001 Filtered False Suppressed False Sign False HideValue False
  1536. IsKeyOrphanage False IsTruncated False Blanks False
  1537. Category 11129 "20171001-20171031" Parent 11127 Levels 1487 OrderBy Drill 1469
  1538. Value "201710" Label "Okt./2017" Lastuse 20180711 SourceValue "201710"
  1539. Date 20171001 Filtered False Suppressed False Sign False HideValue False
  1540. IsKeyOrphanage False IsTruncated False Blanks False
  1541. Category 11131 "20171001" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171001"
  1542. Label "01/10/2017" Lastuse 20180711 SourceValue "20171001" Date 20171001
  1543. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1544. IsTruncated False Blanks False
  1545. Category 11133 "20171002" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171002"
  1546. Label "02/10/2017" Lastuse 20180711 SourceValue "20171002" Date 20171002
  1547. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1548. IsTruncated False Blanks False
  1549. Category 11135 "20171003" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171003"
  1550. Label "03/10/2017" Lastuse 20180711 SourceValue "20171003" Date 20171003
  1551. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1552. IsTruncated False Blanks False
  1553. Category 11137 "20171004" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171004"
  1554. Label "04/10/2017" Lastuse 20180711 SourceValue "20171004" Date 20171004
  1555. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1556. IsTruncated False Blanks False
  1557. Category 11139 "20171005" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171005"
  1558. Label "05/10/2017" Lastuse 20180711 SourceValue "20171005" Date 20171005
  1559. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1560. IsTruncated False Blanks False
  1561. Category 11141 "20171006" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171006"
  1562. Label "06/10/2017" Lastuse 20180711 SourceValue "20171006" Date 20171006
  1563. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1564. IsTruncated False Blanks False
  1565. Category 11143 "20171007" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171007"
  1566. Label "07/10/2017" Lastuse 20180711 SourceValue "20171007" Date 20171007
  1567. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1568. IsTruncated False Blanks False
  1569. Category 11145 "20171008" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171008"
  1570. Label "08/10/2017" Lastuse 20180711 SourceValue "20171008" Date 20171008
  1571. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1572. IsTruncated False Blanks False
  1573. Category 11147 "20171009" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171009"
  1574. Label "09/10/2017" Lastuse 20180711 SourceValue "20171009" Date 20171009
  1575. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1576. IsTruncated False Blanks False
  1577. Category 11149 "20171010" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171010"
  1578. Label "10/10/2017" Lastuse 20180711 SourceValue "20171010" Date 20171010
  1579. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1580. IsTruncated False Blanks False
  1581. Category 11151 "20171011" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171011"
  1582. Label "11/10/2017" Lastuse 20180711 SourceValue "20171011" Date 20171011
  1583. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1584. IsTruncated False Blanks False
  1585. Category 11153 "20171012" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171012"
  1586. Label "12/10/2017" Lastuse 20180711 SourceValue "20171012" Date 20171012
  1587. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1588. IsTruncated False Blanks False
  1589. Category 11155 "20171013" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171013"
  1590. Label "13/10/2017" Lastuse 20180711 SourceValue "20171013" Date 20171013
  1591. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1592. IsTruncated False Blanks False
  1593. Category 11157 "20171014" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171014"
  1594. Label "14/10/2017" Lastuse 20180711 SourceValue "20171014" Date 20171014
  1595. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1596. IsTruncated False Blanks False
  1597. Category 11159 "20171015" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171015"
  1598. Label "15/10/2017" Lastuse 20180711 SourceValue "20171015" Date 20171015
  1599. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1600. IsTruncated False Blanks False
  1601. Category 11161 "20171016" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171016"
  1602. Label "16/10/2017" Lastuse 20180711 SourceValue "20171016" Date 20171016
  1603. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1604. IsTruncated False Blanks False
  1605. Category 11163 "20171017" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171017"
  1606. Label "17/10/2017" Lastuse 20180711 SourceValue "20171017" Date 20171017
  1607. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1608. IsTruncated False Blanks False
  1609. Category 11165 "20171018" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171018"
  1610. Label "18/10/2017" Lastuse 20180711 SourceValue "20171018" Date 20171018
  1611. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1612. IsTruncated False Blanks False
  1613. Category 11167 "20171019" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171019"
  1614. Label "19/10/2017" Lastuse 20180711 SourceValue "20171019" Date 20171019
  1615. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1616. IsTruncated False Blanks False
  1617. Category 11169 "20171020" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171020"
  1618. Label "20/10/2017" Lastuse 20180711 SourceValue "20171020" Date 20171020
  1619. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1620. IsTruncated False Blanks False
  1621. Category 11171 "20171021" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171021"
  1622. Label "21/10/2017" Lastuse 20180711 SourceValue "20171021" Date 20171021
  1623. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1624. IsTruncated False Blanks False
  1625. Category 11173 "20171022" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171022"
  1626. Label "22/10/2017" Lastuse 20180711 SourceValue "20171022" Date 20171022
  1627. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1628. IsTruncated False Blanks False
  1629. Category 11175 "20171023" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171023"
  1630. Label "23/10/2017" Lastuse 20180711 SourceValue "20171023" Date 20171023
  1631. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1632. IsTruncated False Blanks False
  1633. Category 11177 "20171024" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171024"
  1634. Label "24/10/2017" Lastuse 20180711 SourceValue "20171024" Date 20171024
  1635. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1636. IsTruncated False Blanks False
  1637. Category 11179 "20171025" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171025"
  1638. Label "25/10/2017" Lastuse 20180711 SourceValue "20171025" Date 20171025
  1639. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1640. IsTruncated False Blanks False
  1641. Category 11181 "20171026" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171026"
  1642. Label "26/10/2017" Lastuse 20180711 SourceValue "20171026" Date 20171026
  1643. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1644. IsTruncated False Blanks False
  1645. Category 11183 "20171027" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171027"
  1646. Label "27/10/2017" Lastuse 20180711 SourceValue "20171027" Date 20171027
  1647. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1648. IsTruncated False Blanks False
  1649. Category 11185 "20171028" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171028"
  1650. Label "28/10/2017" Lastuse 20180711 SourceValue "20171028" Date 20171028
  1651. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1652. IsTruncated False Blanks False
  1653. Category 11187 "20171029" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171029"
  1654. Label "29/10/2017" Lastuse 20180711 SourceValue "20171029" Date 20171029
  1655. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1656. IsTruncated False Blanks False
  1657. Category 11189 "20171030" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171030"
  1658. Label "30/10/2017" Lastuse 20180711 SourceValue "20171030" Date 20171030
  1659. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1660. IsTruncated False Blanks False
  1661. Category 11191 "20171031" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171031"
  1662. Label "31/10/2017" Lastuse 20180711 SourceValue "20171031" Date 20171031
  1663. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1664. IsTruncated False Blanks False
  1665. Category 11193 "20171101-20171130" Parent 11127 Levels 1487 OrderBy Drill 1469
  1666. Value "201711" Label "Nov./2017" Lastuse 20180820 SourceValue "201711"
  1667. Date 20171101 Filtered False Suppressed False Sign False HideValue False
  1668. IsKeyOrphanage False IsTruncated False Blanks False
  1669. Category 11195 "20171101" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171101"
  1670. Label "01/11/2017" Lastuse 20180711 SourceValue "20171101" Date 20171101
  1671. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1672. IsTruncated False Blanks False
  1673. Category 11197 "20171102" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171102"
  1674. Label "02/11/2017" Lastuse 20180711 SourceValue "20171102" Date 20171102
  1675. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1676. IsTruncated False Blanks False
  1677. Category 11199 "20171103" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171103"
  1678. Label "03/11/2017" Lastuse 20180711 SourceValue "20171103" Date 20171103
  1679. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1680. IsTruncated False Blanks False
  1681. Category 11201 "20171104" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171104"
  1682. Label "04/11/2017" Lastuse 20180711 SourceValue "20171104" Date 20171104
  1683. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1684. IsTruncated False Blanks False
  1685. Category 11203 "20171105" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171105"
  1686. Label "05/11/2017" Lastuse 20180711 SourceValue "20171105" Date 20171105
  1687. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1688. IsTruncated False Blanks False
  1689. Category 11205 "20171106" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171106"
  1690. Label "06/11/2017" Lastuse 20180711 SourceValue "20171106" Date 20171106
  1691. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1692. IsTruncated False Blanks False
  1693. Category 11207 "20171107" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171107"
  1694. Label "07/11/2017" Lastuse 20180711 SourceValue "20171107" Date 20171107
  1695. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1696. IsTruncated False Blanks False
  1697. Category 11209 "20171108" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171108"
  1698. Label "08/11/2017" Lastuse 20180711 SourceValue "20171108" Date 20171108
  1699. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1700. IsTruncated False Blanks False
  1701. Category 11211 "20171109" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171109"
  1702. Label "09/11/2017" Lastuse 20180711 SourceValue "20171109" Date 20171109
  1703. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1704. IsTruncated False Blanks False
  1705. Category 11213 "20171110" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171110"
  1706. Label "10/11/2017" Lastuse 20180711 SourceValue "20171110" Date 20171110
  1707. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1708. IsTruncated False Blanks False
  1709. Category 11215 "20171111" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171111"
  1710. Label "11/11/2017" Lastuse 20180711 SourceValue "20171111" Date 20171111
  1711. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1712. IsTruncated False Blanks False
  1713. Category 11217 "20171112" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171112"
  1714. Label "12/11/2017" Lastuse 20180711 SourceValue "20171112" Date 20171112
  1715. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1716. IsTruncated False Blanks False
  1717. Category 11219 "20171113" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171113"
  1718. Label "13/11/2017" Lastuse 20180711 SourceValue "20171113" Date 20171113
  1719. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1720. IsTruncated False Blanks False
  1721. Category 11221 "20171114" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171114"
  1722. Label "14/11/2017" Lastuse 20180711 SourceValue "20171114" Date 20171114
  1723. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1724. IsTruncated False Blanks False
  1725. Category 11223 "20171115" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171115"
  1726. Label "15/11/2017" Lastuse 20180711 SourceValue "20171115" Date 20171115
  1727. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1728. IsTruncated False Blanks False
  1729. Category 11225 "20171116" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171116"
  1730. Label "16/11/2017" Lastuse 20180711 SourceValue "20171116" Date 20171116
  1731. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1732. IsTruncated False Blanks False
  1733. Category 11227 "20171117" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171117"
  1734. Label "17/11/2017" Lastuse 20180711 SourceValue "20171117" Date 20171117
  1735. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1736. IsTruncated False Blanks False
  1737. Category 11229 "20171118" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171118"
  1738. Label "18/11/2017" Lastuse 20180711 SourceValue "20171118" Date 20171118
  1739. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1740. IsTruncated False Blanks False
  1741. Category 11231 "20171119" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171119"
  1742. Label "19/11/2017" Lastuse 20180711 SourceValue "20171119" Date 20171119
  1743. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1744. IsTruncated False Blanks False
  1745. Category 11233 "20171120" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171120"
  1746. Label "20/11/2017" Lastuse 20180820 SourceValue "20171120" Date 20171120
  1747. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1748. IsTruncated False Blanks False
  1749. Category 11235 "20171121" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171121"
  1750. Label "21/11/2017" Lastuse 20180711 SourceValue "20171121" Date 20171121
  1751. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1752. IsTruncated False Blanks False
  1753. Category 11237 "20171122" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171122"
  1754. Label "22/11/2017" Lastuse 20180711 SourceValue "20171122" Date 20171122
  1755. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1756. IsTruncated False Blanks False
  1757. Category 11239 "20171123" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171123"
  1758. Label "23/11/2017" Lastuse 20180711 SourceValue "20171123" Date 20171123
  1759. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1760. IsTruncated False Blanks False
  1761. Category 11241 "20171124" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171124"
  1762. Label "24/11/2017" Lastuse 20180711 SourceValue "20171124" Date 20171124
  1763. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1764. IsTruncated False Blanks False
  1765. Category 11243 "20171125" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171125"
  1766. Label "25/11/2017" Lastuse 20180711 SourceValue "20171125" Date 20171125
  1767. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1768. IsTruncated False Blanks False
  1769. Category 11245 "20171126" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171126"
  1770. Label "26/11/2017" Lastuse 20180711 SourceValue "20171126" Date 20171126
  1771. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1772. IsTruncated False Blanks False
  1773. Category 11247 "20171127" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171127"
  1774. Label "27/11/2017" Lastuse 20180711 SourceValue "20171127" Date 20171127
  1775. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1776. IsTruncated False Blanks False
  1777. Category 11249 "20171128" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171128"
  1778. Label "28/11/2017" Lastuse 20180711 SourceValue "20171128" Date 20171128
  1779. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1780. IsTruncated False Blanks False
  1781. Category 11251 "20171129" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171129"
  1782. Label "29/11/2017" Lastuse 20180711 SourceValue "20171129" Date 20171129
  1783. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1784. IsTruncated False Blanks False
  1785. Category 11253 "20171130" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171130"
  1786. Label "30/11/2017" Lastuse 20180711 SourceValue "20171130" Date 20171130
  1787. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1788. IsTruncated False Blanks False
  1789. Category 11255 "20171201-20171231" Parent 11127 Levels 1487 OrderBy Drill 1469
  1790. Value "201712" Label "Dez./2017" Lastuse 20180711 SourceValue "201712"
  1791. Date 20171201 Filtered False Suppressed False Sign False HideValue False
  1792. IsKeyOrphanage False IsTruncated False Blanks False
  1793. Category 11257 "20171201" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171201"
  1794. Label "01/12/2017" Lastuse 20180711 SourceValue "20171201" Date 20171201
  1795. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1796. IsTruncated False Blanks False
  1797. Category 11259 "20171202" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171202"
  1798. Label "02/12/2017" Lastuse 20180711 SourceValue "20171202" Date 20171202
  1799. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1800. IsTruncated False Blanks False
  1801. Category 11261 "20171203" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171203"
  1802. Label "03/12/2017" Lastuse 20180711 SourceValue "20171203" Date 20171203
  1803. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1804. IsTruncated False Blanks False
  1805. Category 11263 "20171204" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171204"
  1806. Label "04/12/2017" Lastuse 20180711 SourceValue "20171204" Date 20171204
  1807. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1808. IsTruncated False Blanks False
  1809. Category 11265 "20171205" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171205"
  1810. Label "05/12/2017" Lastuse 20180711 SourceValue "20171205" Date 20171205
  1811. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1812. IsTruncated False Blanks False
  1813. Category 11267 "20171206" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171206"
  1814. Label "06/12/2017" Lastuse 20180711 SourceValue "20171206" Date 20171206
  1815. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1816. IsTruncated False Blanks False
  1817. Category 11269 "20171207" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171207"
  1818. Label "07/12/2017" Lastuse 20180711 SourceValue "20171207" Date 20171207
  1819. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1820. IsTruncated False Blanks False
  1821. Category 11271 "20171208" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171208"
  1822. Label "08/12/2017" Lastuse 20180711 SourceValue "20171208" Date 20171208
  1823. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1824. IsTruncated False Blanks False
  1825. Category 11273 "20171209" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171209"
  1826. Label "09/12/2017" Lastuse 20180711 SourceValue "20171209" Date 20171209
  1827. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1828. IsTruncated False Blanks False
  1829. Category 11275 "20171210" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171210"
  1830. Label "10/12/2017" Lastuse 20180711 SourceValue "20171210" Date 20171210
  1831. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1832. IsTruncated False Blanks False
  1833. Category 11277 "20171211" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171211"
  1834. Label "11/12/2017" Lastuse 20180711 SourceValue "20171211" Date 20171211
  1835. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1836. IsTruncated False Blanks False
  1837. Category 11279 "20171212" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171212"
  1838. Label "12/12/2017" Lastuse 20180711 SourceValue "20171212" Date 20171212
  1839. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1840. IsTruncated False Blanks False
  1841. Category 11281 "20171213" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171213"
  1842. Label "13/12/2017" Lastuse 20180711 SourceValue "20171213" Date 20171213
  1843. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1844. IsTruncated False Blanks False
  1845. Category 11283 "20171214" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171214"
  1846. Label "14/12/2017" Lastuse 20180711 SourceValue "20171214" Date 20171214
  1847. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1848. IsTruncated False Blanks False
  1849. Category 11285 "20171215" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171215"
  1850. Label "15/12/2017" Lastuse 20180711 SourceValue "20171215" Date 20171215
  1851. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1852. IsTruncated False Blanks False
  1853. Category 11287 "20171216" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171216"
  1854. Label "16/12/2017" Lastuse 20180711 SourceValue "20171216" Date 20171216
  1855. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1856. IsTruncated False Blanks False
  1857. Category 11289 "20171217" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171217"
  1858. Label "17/12/2017" Lastuse 20180711 SourceValue "20171217" Date 20171217
  1859. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1860. IsTruncated False Blanks False
  1861. Category 11291 "20171218" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171218"
  1862. Label "18/12/2017" Lastuse 20180711 SourceValue "20171218" Date 20171218
  1863. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1864. IsTruncated False Blanks False
  1865. Category 11293 "20171219" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171219"
  1866. Label "19/12/2017" Lastuse 20180711 SourceValue "20171219" Date 20171219
  1867. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1868. IsTruncated False Blanks False
  1869. Category 11295 "20171220" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171220"
  1870. Label "20/12/2017" Lastuse 20180711 SourceValue "20171220" Date 20171220
  1871. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1872. IsTruncated False Blanks False
  1873. Category 11297 "20171221" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171221"
  1874. Label "21/12/2017" Lastuse 20180711 SourceValue "20171221" Date 20171221
  1875. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1876. IsTruncated False Blanks False
  1877. Category 11299 "20171222" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171222"
  1878. Label "22/12/2017" Lastuse 20180711 SourceValue "20171222" Date 20171222
  1879. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1880. IsTruncated False Blanks False
  1881. Category 11301 "20171223" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171223"
  1882. Label "23/12/2017" Lastuse 20180711 SourceValue "20171223" Date 20171223
  1883. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1884. IsTruncated False Blanks False
  1885. Category 11303 "20171224" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171224"
  1886. Label "24/12/2017" Lastuse 20180711 SourceValue "20171224" Date 20171224
  1887. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1888. IsTruncated False Blanks False
  1889. Category 11305 "20171225" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171225"
  1890. Label "25/12/2017" Lastuse 20180711 SourceValue "20171225" Date 20171225
  1891. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1892. IsTruncated False Blanks False
  1893. Category 11307 "20171226" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171226"
  1894. Label "26/12/2017" Lastuse 20180711 SourceValue "20171226" Date 20171226
  1895. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1896. IsTruncated False Blanks False
  1897. Category 11309 "20171227" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171227"
  1898. Label "27/12/2017" Lastuse 20180711 SourceValue "20171227" Date 20171227
  1899. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1900. IsTruncated False Blanks False
  1901. Category 11311 "20171228" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171228"
  1902. Label "28/12/2017" Lastuse 20180711 SourceValue "20171228" Date 20171228
  1903. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1904. IsTruncated False Blanks False
  1905. Category 11313 "20171229" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171229"
  1906. Label "29/12/2017" Lastuse 20180711 SourceValue "20171229" Date 20171229
  1907. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1908. IsTruncated False Blanks False
  1909. Category 11315 "20171230" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171230"
  1910. Label "30/12/2017" Lastuse 20180711 SourceValue "20171230" Date 20171230
  1911. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1912. IsTruncated False Blanks False
  1913. Category 11317 "20171231" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171231"
  1914. Label "31/12/2017" Lastuse 20180711 SourceValue "20171231" Date 20171231
  1915. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1916. IsTruncated False Blanks False
  1917. Category 11353 "20180101-20181231" Parent 1469 Levels 1475 OrderBy Drill 1469
  1918. Value "2018" Label "2018" Lastuse 20180820 SourceValue "2018" Date 20180101
  1919. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1920. IsTruncated False Blanks False
  1921. Category 11355 "20180101-20180331" Parent 11353 Levels 1481 OrderBy Drill 1469
  1922. Value "20180101" Label "1. Q. 2018" Lastuse 20180820 SourceValue "20180101"
  1923. Date 20180101 Filtered False Suppressed False Sign False HideValue False
  1924. IsKeyOrphanage False IsTruncated False Blanks False
  1925. Category 11357 "20180101-20180131" Parent 11355 Levels 1487 OrderBy Drill 1469
  1926. Value "201801" Label "Jan./2018" Lastuse 20180711 SourceValue "201801"
  1927. Date 20180101 Filtered False Suppressed False Sign False HideValue False
  1928. IsKeyOrphanage False IsTruncated False Blanks False
  1929. Category 11359 "20180101" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180101"
  1930. Label "01/01/2018" Lastuse 20180711 SourceValue "20180101" Date 20180101
  1931. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1932. IsTruncated False Blanks False
  1933. Category 11361 "20180102" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180102"
  1934. Label "02/01/2018" Lastuse 20180711 SourceValue "20180102" Date 20180102
  1935. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1936. IsTruncated False Blanks False
  1937. Category 11363 "20180103" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180103"
  1938. Label "03/01/2018" Lastuse 20180711 SourceValue "20180103" Date 20180103
  1939. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1940. IsTruncated False Blanks False
  1941. Category 11365 "20180104" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180104"
  1942. Label "04/01/2018" Lastuse 20180711 SourceValue "20180104" Date 20180104
  1943. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1944. IsTruncated False Blanks False
  1945. Category 11367 "20180105" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180105"
  1946. Label "05/01/2018" Lastuse 20180711 SourceValue "20180105" Date 20180105
  1947. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1948. IsTruncated False Blanks False
  1949. Category 11369 "20180106" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180106"
  1950. Label "06/01/2018" Lastuse 20180711 SourceValue "20180106" Date 20180106
  1951. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1952. IsTruncated False Blanks False
  1953. Category 11371 "20180107" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180107"
  1954. Label "07/01/2018" Lastuse 20180711 SourceValue "20180107" Date 20180107
  1955. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1956. IsTruncated False Blanks False
  1957. Category 11373 "20180108" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180108"
  1958. Label "08/01/2018" Lastuse 20180711 SourceValue "20180108" Date 20180108
  1959. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1960. IsTruncated False Blanks False
  1961. Category 11375 "20180109" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180109"
  1962. Label "09/01/2018" Lastuse 20180711 SourceValue "20180109" Date 20180109
  1963. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1964. IsTruncated False Blanks False
  1965. Category 11377 "20180110" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180110"
  1966. Label "10/01/2018" Lastuse 20180711 SourceValue "20180110" Date 20180110
  1967. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1968. IsTruncated False Blanks False
  1969. Category 11379 "20180111" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180111"
  1970. Label "11/01/2018" Lastuse 20180711 SourceValue "20180111" Date 20180111
  1971. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1972. IsTruncated False Blanks False
  1973. Category 11381 "20180112" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180112"
  1974. Label "12/01/2018" Lastuse 20180711 SourceValue "20180112" Date 20180112
  1975. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1976. IsTruncated False Blanks False
  1977. Category 11383 "20180113" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180113"
  1978. Label "13/01/2018" Lastuse 20180711 SourceValue "20180113" Date 20180113
  1979. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1980. IsTruncated False Blanks False
  1981. Category 11385 "20180114" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180114"
  1982. Label "14/01/2018" Lastuse 20180711 SourceValue "20180114" Date 20180114
  1983. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1984. IsTruncated False Blanks False
  1985. Category 11387 "20180115" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180115"
  1986. Label "15/01/2018" Lastuse 20180711 SourceValue "20180115" Date 20180115
  1987. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1988. IsTruncated False Blanks False
  1989. Category 11389 "20180116" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180116"
  1990. Label "16/01/2018" Lastuse 20180711 SourceValue "20180116" Date 20180116
  1991. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1992. IsTruncated False Blanks False
  1993. Category 11391 "20180117" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180117"
  1994. Label "17/01/2018" Lastuse 20180711 SourceValue "20180117" Date 20180117
  1995. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1996. IsTruncated False Blanks False
  1997. Category 11393 "20180118" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180118"
  1998. Label "18/01/2018" Lastuse 20180711 SourceValue "20180118" Date 20180118
  1999. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2000. IsTruncated False Blanks False
  2001. Category 11395 "20180119" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180119"
  2002. Label "19/01/2018" Lastuse 20180711 SourceValue "20180119" Date 20180119
  2003. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2004. IsTruncated False Blanks False
  2005. Category 11397 "20180120" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180120"
  2006. Label "20/01/2018" Lastuse 20180711 SourceValue "20180120" Date 20180120
  2007. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2008. IsTruncated False Blanks False
  2009. Category 11399 "20180121" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180121"
  2010. Label "21/01/2018" Lastuse 20180711 SourceValue "20180121" Date 20180121
  2011. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2012. IsTruncated False Blanks False
  2013. Category 11401 "20180122" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180122"
  2014. Label "22/01/2018" Lastuse 20180711 SourceValue "20180122" Date 20180122
  2015. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2016. IsTruncated False Blanks False
  2017. Category 11403 "20180123" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180123"
  2018. Label "23/01/2018" Lastuse 20180711 SourceValue "20180123" Date 20180123
  2019. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2020. IsTruncated False Blanks False
  2021. Category 11405 "20180124" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180124"
  2022. Label "24/01/2018" Lastuse 20180711 SourceValue "20180124" Date 20180124
  2023. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2024. IsTruncated False Blanks False
  2025. Category 11407 "20180125" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180125"
  2026. Label "25/01/2018" Lastuse 20180711 SourceValue "20180125" Date 20180125
  2027. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2028. IsTruncated False Blanks False
  2029. Category 11409 "20180126" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180126"
  2030. Label "26/01/2018" Lastuse 20180711 SourceValue "20180126" Date 20180126
  2031. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2032. IsTruncated False Blanks False
  2033. Category 11411 "20180127" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180127"
  2034. Label "27/01/2018" Lastuse 20180711 SourceValue "20180127" Date 20180127
  2035. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2036. IsTruncated False Blanks False
  2037. Category 11413 "20180128" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180128"
  2038. Label "28/01/2018" Lastuse 20180711 SourceValue "20180128" Date 20180128
  2039. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2040. IsTruncated False Blanks False
  2041. Category 11415 "20180129" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180129"
  2042. Label "29/01/2018" Lastuse 20180711 SourceValue "20180129" Date 20180129
  2043. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2044. IsTruncated False Blanks False
  2045. Category 11417 "20180130" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180130"
  2046. Label "30/01/2018" Lastuse 20180711 SourceValue "20180130" Date 20180130
  2047. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2048. IsTruncated False Blanks False
  2049. Category 11419 "20180131" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180131"
  2050. Label "31/01/2018" Lastuse 20180711 SourceValue "20180131" Date 20180131
  2051. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2052. IsTruncated False Blanks False
  2053. Category 11421 "20180201-20180228" Parent 11355 Levels 1487 OrderBy Drill 1469
  2054. Value "201802" Label "Feb./2018" Lastuse 20180820 SourceValue "201802"
  2055. Date 20180201 Filtered False Suppressed False Sign False HideValue False
  2056. IsKeyOrphanage False IsTruncated False Blanks False
  2057. Category 11423 "20180201" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180201"
  2058. Label "01/02/2018" Lastuse 20180711 SourceValue "20180201" Date 20180201
  2059. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2060. IsTruncated False Blanks False
  2061. Category 11425 "20180202" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180202"
  2062. Label "02/02/2018" Lastuse 20180711 SourceValue "20180202" Date 20180202
  2063. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2064. IsTruncated False Blanks False
  2065. Category 11427 "20180203" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180203"
  2066. Label "03/02/2018" Lastuse 20180711 SourceValue "20180203" Date 20180203
  2067. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2068. IsTruncated False Blanks False
  2069. Category 11429 "20180204" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180204"
  2070. Label "04/02/2018" Lastuse 20180711 SourceValue "20180204" Date 20180204
  2071. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2072. IsTruncated False Blanks False
  2073. Category 11431 "20180205" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180205"
  2074. Label "05/02/2018" Lastuse 20180711 SourceValue "20180205" Date 20180205
  2075. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2076. IsTruncated False Blanks False
  2077. Category 11433 "20180206" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180206"
  2078. Label "06/02/2018" Lastuse 20180711 SourceValue "20180206" Date 20180206
  2079. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2080. IsTruncated False Blanks False
  2081. Category 11435 "20180207" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180207"
  2082. Label "07/02/2018" Lastuse 20180711 SourceValue "20180207" Date 20180207
  2083. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2084. IsTruncated False Blanks False
  2085. Category 11437 "20180208" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180208"
  2086. Label "08/02/2018" Lastuse 20180711 SourceValue "20180208" Date 20180208
  2087. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2088. IsTruncated False Blanks False
  2089. Category 11439 "20180209" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180209"
  2090. Label "09/02/2018" Lastuse 20180711 SourceValue "20180209" Date 20180209
  2091. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2092. IsTruncated False Blanks False
  2093. Category 11441 "20180210" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180210"
  2094. Label "10/02/2018" Lastuse 20180711 SourceValue "20180210" Date 20180210
  2095. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2096. IsTruncated False Blanks False
  2097. Category 11443 "20180211" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180211"
  2098. Label "11/02/2018" Lastuse 20180711 SourceValue "20180211" Date 20180211
  2099. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2100. IsTruncated False Blanks False
  2101. Category 11445 "20180212" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180212"
  2102. Label "12/02/2018" Lastuse 20180711 SourceValue "20180212" Date 20180212
  2103. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2104. IsTruncated False Blanks False
  2105. Category 11447 "20180213" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180213"
  2106. Label "13/02/2018" Lastuse 20180711 SourceValue "20180213" Date 20180213
  2107. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2108. IsTruncated False Blanks False
  2109. Category 11449 "20180214" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180214"
  2110. Label "14/02/2018" Lastuse 20180711 SourceValue "20180214" Date 20180214
  2111. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2112. IsTruncated False Blanks False
  2113. Category 11451 "20180215" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180215"
  2114. Label "15/02/2018" Lastuse 20180711 SourceValue "20180215" Date 20180215
  2115. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2116. IsTruncated False Blanks False
  2117. Category 11453 "20180216" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180216"
  2118. Label "16/02/2018" Lastuse 20180711 SourceValue "20180216" Date 20180216
  2119. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2120. IsTruncated False Blanks False
  2121. Category 11455 "20180217" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180217"
  2122. Label "17/02/2018" Lastuse 20180711 SourceValue "20180217" Date 20180217
  2123. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2124. IsTruncated False Blanks False
  2125. Category 11457 "20180218" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180218"
  2126. Label "18/02/2018" Lastuse 20180711 SourceValue "20180218" Date 20180218
  2127. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2128. IsTruncated False Blanks False
  2129. Category 11459 "20180219" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180219"
  2130. Label "19/02/2018" Lastuse 20180711 SourceValue "20180219" Date 20180219
  2131. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2132. IsTruncated False Blanks False
  2133. Category 11461 "20180220" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180220"
  2134. Label "20/02/2018" Lastuse 20180711 SourceValue "20180220" Date 20180220
  2135. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2136. IsTruncated False Blanks False
  2137. Category 11463 "20180221" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180221"
  2138. Label "21/02/2018" Lastuse 20180820 SourceValue "20180221" Date 20180221
  2139. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2140. IsTruncated False Blanks False
  2141. Category 11465 "20180222" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180222"
  2142. Label "22/02/2018" Lastuse 20180711 SourceValue "20180222" Date 20180222
  2143. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2144. IsTruncated False Blanks False
  2145. Category 11467 "20180223" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180223"
  2146. Label "23/02/2018" Lastuse 20180711 SourceValue "20180223" Date 20180223
  2147. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2148. IsTruncated False Blanks False
  2149. Category 11469 "20180224" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180224"
  2150. Label "24/02/2018" Lastuse 20180711 SourceValue "20180224" Date 20180224
  2151. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2152. IsTruncated False Blanks False
  2153. Category 11471 "20180225" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180225"
  2154. Label "25/02/2018" Lastuse 20180711 SourceValue "20180225" Date 20180225
  2155. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2156. IsTruncated False Blanks False
  2157. Category 11473 "20180226" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180226"
  2158. Label "26/02/2018" Lastuse 20180711 SourceValue "20180226" Date 20180226
  2159. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2160. IsTruncated False Blanks False
  2161. Category 11475 "20180227" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180227"
  2162. Label "27/02/2018" Lastuse 20180711 SourceValue "20180227" Date 20180227
  2163. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2164. IsTruncated False Blanks False
  2165. Category 11477 "20180228" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180228"
  2166. Label "28/02/2018" Lastuse 20180711 SourceValue "20180228" Date 20180228
  2167. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2168. IsTruncated False Blanks False
  2169. Category 11479 "20180301-20180331" Parent 11355 Levels 1487 OrderBy Drill 1469
  2170. Value "201803" Label "März/2018" Lastuse 20180820 SourceValue "201803"
  2171. Date 20180301 Filtered False Suppressed False Sign False HideValue False
  2172. IsKeyOrphanage False IsTruncated False Blanks False
  2173. Category 11481 "20180301" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180301"
  2174. Label "01/03/2018" Lastuse 20180711 SourceValue "20180301" Date 20180301
  2175. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2176. IsTruncated False Blanks False
  2177. Category 11483 "20180302" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180302"
  2178. Label "02/03/2018" Lastuse 20180711 SourceValue "20180302" Date 20180302
  2179. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2180. IsTruncated False Blanks False
  2181. Category 11485 "20180303" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180303"
  2182. Label "03/03/2018" Lastuse 20180711 SourceValue "20180303" Date 20180303
  2183. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2184. IsTruncated False Blanks False
  2185. Category 11487 "20180304" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180304"
  2186. Label "04/03/2018" Lastuse 20180711 SourceValue "20180304" Date 20180304
  2187. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2188. IsTruncated False Blanks False
  2189. Category 11489 "20180305" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180305"
  2190. Label "05/03/2018" Lastuse 20180711 SourceValue "20180305" Date 20180305
  2191. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2192. IsTruncated False Blanks False
  2193. Category 11491 "20180306" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180306"
  2194. Label "06/03/2018" Lastuse 20180711 SourceValue "20180306" Date 20180306
  2195. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2196. IsTruncated False Blanks False
  2197. Category 11493 "20180307" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180307"
  2198. Label "07/03/2018" Lastuse 20180711 SourceValue "20180307" Date 20180307
  2199. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2200. IsTruncated False Blanks False
  2201. Category 11495 "20180308" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180308"
  2202. Label "08/03/2018" Lastuse 20180820 SourceValue "20180308" Date 20180308
  2203. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2204. IsTruncated False Blanks False
  2205. Category 11497 "20180309" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180309"
  2206. Label "09/03/2018" Lastuse 20180711 SourceValue "20180309" Date 20180309
  2207. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2208. IsTruncated False Blanks False
  2209. Category 11499 "20180310" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180310"
  2210. Label "10/03/2018" Lastuse 20180711 SourceValue "20180310" Date 20180310
  2211. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2212. IsTruncated False Blanks False
  2213. Category 11501 "20180311" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180311"
  2214. Label "11/03/2018" Lastuse 20180711 SourceValue "20180311" Date 20180311
  2215. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2216. IsTruncated False Blanks False
  2217. Category 11503 "20180312" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180312"
  2218. Label "12/03/2018" Lastuse 20180711 SourceValue "20180312" Date 20180312
  2219. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2220. IsTruncated False Blanks False
  2221. Category 11505 "20180313" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180313"
  2222. Label "13/03/2018" Lastuse 20180711 SourceValue "20180313" Date 20180313
  2223. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2224. IsTruncated False Blanks False
  2225. Category 11507 "20180314" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180314"
  2226. Label "14/03/2018" Lastuse 20180711 SourceValue "20180314" Date 20180314
  2227. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2228. IsTruncated False Blanks False
  2229. Category 11509 "20180315" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180315"
  2230. Label "15/03/2018" Lastuse 20180711 SourceValue "20180315" Date 20180315
  2231. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2232. IsTruncated False Blanks False
  2233. Category 11511 "20180316" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180316"
  2234. Label "16/03/2018" Lastuse 20180711 SourceValue "20180316" Date 20180316
  2235. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2236. IsTruncated False Blanks False
  2237. Category 11513 "20180317" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180317"
  2238. Label "17/03/2018" Lastuse 20180711 SourceValue "20180317" Date 20180317
  2239. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2240. IsTruncated False Blanks False
  2241. Category 11515 "20180318" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180318"
  2242. Label "18/03/2018" Lastuse 20180711 SourceValue "20180318" Date 20180318
  2243. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2244. IsTruncated False Blanks False
  2245. Category 11517 "20180319" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180319"
  2246. Label "19/03/2018" Lastuse 20180711 SourceValue "20180319" Date 20180319
  2247. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2248. IsTruncated False Blanks False
  2249. Category 11519 "20180320" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180320"
  2250. Label "20/03/2018" Lastuse 20180711 SourceValue "20180320" Date 20180320
  2251. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2252. IsTruncated False Blanks False
  2253. Category 11521 "20180321" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180321"
  2254. Label "21/03/2018" Lastuse 20180711 SourceValue "20180321" Date 20180321
  2255. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2256. IsTruncated False Blanks False
  2257. Category 11523 "20180322" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180322"
  2258. Label "22/03/2018" Lastuse 20180711 SourceValue "20180322" Date 20180322
  2259. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2260. IsTruncated False Blanks False
  2261. Category 11525 "20180323" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180323"
  2262. Label "23/03/2018" Lastuse 20180711 SourceValue "20180323" Date 20180323
  2263. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2264. IsTruncated False Blanks False
  2265. Category 11527 "20180324" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180324"
  2266. Label "24/03/2018" Lastuse 20180711 SourceValue "20180324" Date 20180324
  2267. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2268. IsTruncated False Blanks False
  2269. Category 11529 "20180325" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180325"
  2270. Label "25/03/2018" Lastuse 20180711 SourceValue "20180325" Date 20180325
  2271. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2272. IsTruncated False Blanks False
  2273. Category 11531 "20180326" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180326"
  2274. Label "26/03/2018" Lastuse 20180711 SourceValue "20180326" Date 20180326
  2275. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2276. IsTruncated False Blanks False
  2277. Category 11533 "20180327" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180327"
  2278. Label "27/03/2018" Lastuse 20180711 SourceValue "20180327" Date 20180327
  2279. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2280. IsTruncated False Blanks False
  2281. Category 11535 "20180328" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180328"
  2282. Label "28/03/2018" Lastuse 20180711 SourceValue "20180328" Date 20180328
  2283. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2284. IsTruncated False Blanks False
  2285. Category 11537 "20180329" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180329"
  2286. Label "29/03/2018" Lastuse 20180711 SourceValue "20180329" Date 20180329
  2287. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2288. IsTruncated False Blanks False
  2289. Category 11539 "20180330" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180330"
  2290. Label "30/03/2018" Lastuse 20180711 SourceValue "20180330" Date 20180330
  2291. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2292. IsTruncated False Blanks False
  2293. Category 11541 "20180331" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180331"
  2294. Label "31/03/2018" Lastuse 20180711 SourceValue "20180331" Date 20180331
  2295. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2296. IsTruncated False Blanks False
  2297. Category 11543 "20180401-20180630" Parent 11353 Levels 1481 OrderBy Drill 1469
  2298. Value "20180401" Label "2. Q. 2018" Lastuse 20180820 SourceValue "20180401"
  2299. Date 20180401 Filtered False Suppressed False Sign False HideValue False
  2300. IsKeyOrphanage False IsTruncated False Blanks False
  2301. Category 11545 "20180401-20180430" Parent 11543 Levels 1487 OrderBy Drill 1469
  2302. Value "201804" Label "Apr./2018" Lastuse 20180820 SourceValue "201804"
  2303. Date 20180401 Filtered False Suppressed False Sign False HideValue False
  2304. IsKeyOrphanage False IsTruncated False Blanks False
  2305. Category 11547 "20180401" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180401"
  2306. Label "01/04/2018" Lastuse 20180711 SourceValue "20180401" Date 20180401
  2307. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2308. IsTruncated False Blanks False
  2309. Category 11549 "20180402" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180402"
  2310. Label "02/04/2018" Lastuse 20180711 SourceValue "20180402" Date 20180402
  2311. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2312. IsTruncated False Blanks False
  2313. Category 11551 "20180403" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180403"
  2314. Label "03/04/2018" Lastuse 20180820 SourceValue "20180403" Date 20180403
  2315. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2316. IsTruncated False Blanks False
  2317. Category 11553 "20180404" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180404"
  2318. Label "04/04/2018" Lastuse 20180711 SourceValue "20180404" Date 20180404
  2319. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2320. IsTruncated False Blanks False
  2321. Category 11555 "20180405" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180405"
  2322. Label "05/04/2018" Lastuse 20180711 SourceValue "20180405" Date 20180405
  2323. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2324. IsTruncated False Blanks False
  2325. Category 11557 "20180406" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180406"
  2326. Label "06/04/2018" Lastuse 20180711 SourceValue "20180406" Date 20180406
  2327. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2328. IsTruncated False Blanks False
  2329. Category 11559 "20180407" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180407"
  2330. Label "07/04/2018" Lastuse 20180711 SourceValue "20180407" Date 20180407
  2331. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2332. IsTruncated False Blanks False
  2333. Category 11561 "20180408" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180408"
  2334. Label "08/04/2018" Lastuse 20180711 SourceValue "20180408" Date 20180408
  2335. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2336. IsTruncated False Blanks False
  2337. Category 11563 "20180409" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180409"
  2338. Label "09/04/2018" Lastuse 20180820 SourceValue "20180409" Date 20180409
  2339. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2340. IsTruncated False Blanks False
  2341. Category 11565 "20180410" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180410"
  2342. Label "10/04/2018" Lastuse 20180711 SourceValue "20180410" Date 20180410
  2343. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2344. IsTruncated False Blanks False
  2345. Category 11567 "20180411" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180411"
  2346. Label "11/04/2018" Lastuse 20180711 SourceValue "20180411" Date 20180411
  2347. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2348. IsTruncated False Blanks False
  2349. Category 11569 "20180412" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180412"
  2350. Label "12/04/2018" Lastuse 20180711 SourceValue "20180412" Date 20180412
  2351. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2352. IsTruncated False Blanks False
  2353. Category 11571 "20180413" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180413"
  2354. Label "13/04/2018" Lastuse 20180711 SourceValue "20180413" Date 20180413
  2355. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2356. IsTruncated False Blanks False
  2357. Category 11573 "20180414" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180414"
  2358. Label "14/04/2018" Lastuse 20180820 SourceValue "20180414" Date 20180414
  2359. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2360. IsTruncated False Blanks False
  2361. Category 11575 "20180415" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180415"
  2362. Label "15/04/2018" Lastuse 20180711 SourceValue "20180415" Date 20180415
  2363. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2364. IsTruncated False Blanks False
  2365. Category 11577 "20180416" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180416"
  2366. Label "16/04/2018" Lastuse 20180820 SourceValue "20180416" Date 20180416
  2367. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2368. IsTruncated False Blanks False
  2369. Category 11579 "20180417" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180417"
  2370. Label "17/04/2018" Lastuse 20180711 SourceValue "20180417" Date 20180417
  2371. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2372. IsTruncated False Blanks False
  2373. Category 11581 "20180418" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180418"
  2374. Label "18/04/2018" Lastuse 20180711 SourceValue "20180418" Date 20180418
  2375. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2376. IsTruncated False Blanks False
  2377. Category 11583 "20180419" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180419"
  2378. Label "19/04/2018" Lastuse 20180711 SourceValue "20180419" Date 20180419
  2379. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2380. IsTruncated False Blanks False
  2381. Category 11585 "20180420" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180420"
  2382. Label "20/04/2018" Lastuse 20180820 SourceValue "20180420" Date 20180420
  2383. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2384. IsTruncated False Blanks False
  2385. Category 11587 "20180421" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180421"
  2386. Label "21/04/2018" Lastuse 20180711 SourceValue "20180421" Date 20180421
  2387. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2388. IsTruncated False Blanks False
  2389. Category 11589 "20180422" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180422"
  2390. Label "22/04/2018" Lastuse 20180711 SourceValue "20180422" Date 20180422
  2391. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2392. IsTruncated False Blanks False
  2393. Category 11591 "20180423" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180423"
  2394. Label "23/04/2018" Lastuse 20180711 SourceValue "20180423" Date 20180423
  2395. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2396. IsTruncated False Blanks False
  2397. Category 11593 "20180424" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180424"
  2398. Label "24/04/2018" Lastuse 20180820 SourceValue "20180424" Date 20180424
  2399. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2400. IsTruncated False Blanks False
  2401. Category 11595 "20180425" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180425"
  2402. Label "25/04/2018" Lastuse 20180711 SourceValue "20180425" Date 20180425
  2403. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2404. IsTruncated False Blanks False
  2405. Category 11597 "20180426" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180426"
  2406. Label "26/04/2018" Lastuse 20180711 SourceValue "20180426" Date 20180426
  2407. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2408. IsTruncated False Blanks False
  2409. Category 11599 "20180427" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180427"
  2410. Label "27/04/2018" Lastuse 20180711 SourceValue "20180427" Date 20180427
  2411. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2412. IsTruncated False Blanks False
  2413. Category 11601 "20180428" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180428"
  2414. Label "28/04/2018" Lastuse 20180711 SourceValue "20180428" Date 20180428
  2415. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2416. IsTruncated False Blanks False
  2417. Category 11603 "20180429" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180429"
  2418. Label "29/04/2018" Lastuse 20180711 SourceValue "20180429" Date 20180429
  2419. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2420. IsTruncated False Blanks False
  2421. Category 11605 "20180430" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180430"
  2422. Label "30/04/2018" Lastuse 20180711 SourceValue "20180430" Date 20180430
  2423. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2424. IsTruncated False Blanks False
  2425. Category 11607 "20180501-20180531" Parent 11543 Levels 1487 OrderBy Drill 1469
  2426. Value "201805" Label "Mai/2018" Lastuse 20180820 SourceValue "201805" Date 20180501
  2427. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2428. IsTruncated False Blanks False
  2429. Category 11609 "20180501" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180501"
  2430. Label "01/05/2018" Lastuse 20180711 SourceValue "20180501" Date 20180501
  2431. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2432. IsTruncated False Blanks False
  2433. Category 11611 "20180502" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180502"
  2434. Label "02/05/2018" Lastuse 20180711 SourceValue "20180502" Date 20180502
  2435. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2436. IsTruncated False Blanks False
  2437. Category 11613 "20180503" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180503"
  2438. Label "03/05/2018" Lastuse 20180820 SourceValue "20180503" Date 20180503
  2439. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2440. IsTruncated False Blanks False
  2441. Category 11615 "20180504" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180504"
  2442. Label "04/05/2018" Lastuse 20180820 SourceValue "20180504" Date 20180504
  2443. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2444. IsTruncated False Blanks False
  2445. Category 11617 "20180505" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180505"
  2446. Label "05/05/2018" Lastuse 20180711 SourceValue "20180505" Date 20180505
  2447. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2448. IsTruncated False Blanks False
  2449. Category 11619 "20180506" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180506"
  2450. Label "06/05/2018" Lastuse 20180711 SourceValue "20180506" Date 20180506
  2451. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2452. IsTruncated False Blanks False
  2453. Category 11621 "20180507" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180507"
  2454. Label "07/05/2018" Lastuse 20180711 SourceValue "20180507" Date 20180507
  2455. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2456. IsTruncated False Blanks False
  2457. Category 11623 "20180508" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180508"
  2458. Label "08/05/2018" Lastuse 20180820 SourceValue "20180508" Date 20180508
  2459. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2460. IsTruncated False Blanks False
  2461. Category 11625 "20180509" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180509"
  2462. Label "09/05/2018" Lastuse 20180711 SourceValue "20180509" Date 20180509
  2463. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2464. IsTruncated False Blanks False
  2465. Category 11627 "20180510" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180510"
  2466. Label "10/05/2018" Lastuse 20180711 SourceValue "20180510" Date 20180510
  2467. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2468. IsTruncated False Blanks False
  2469. Category 11629 "20180511" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180511"
  2470. Label "11/05/2018" Lastuse 20180820 SourceValue "20180511" Date 20180511
  2471. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2472. IsTruncated False Blanks False
  2473. Category 11631 "20180512" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180512"
  2474. Label "12/05/2018" Lastuse 20180711 SourceValue "20180512" Date 20180512
  2475. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2476. IsTruncated False Blanks False
  2477. Category 11633 "20180513" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180513"
  2478. Label "13/05/2018" Lastuse 20180711 SourceValue "20180513" Date 20180513
  2479. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2480. IsTruncated False Blanks False
  2481. Category 11635 "20180514" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180514"
  2482. Label "14/05/2018" Lastuse 20180820 SourceValue "20180514" Date 20180514
  2483. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2484. IsTruncated False Blanks False
  2485. Category 11637 "20180515" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180515"
  2486. Label "15/05/2018" Lastuse 20180711 SourceValue "20180515" Date 20180515
  2487. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2488. IsTruncated False Blanks False
  2489. Category 11639 "20180516" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180516"
  2490. Label "16/05/2018" Lastuse 20180711 SourceValue "20180516" Date 20180516
  2491. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2492. IsTruncated False Blanks False
  2493. Category 11641 "20180517" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180517"
  2494. Label "17/05/2018" Lastuse 20180820 SourceValue "20180517" Date 20180517
  2495. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2496. IsTruncated False Blanks False
  2497. Category 11643 "20180518" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180518"
  2498. Label "18/05/2018" Lastuse 20180820 SourceValue "20180518" Date 20180518
  2499. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2500. IsTruncated False Blanks False
  2501. Category 11645 "20180519" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180519"
  2502. Label "19/05/2018" Lastuse 20180820 SourceValue "20180519" Date 20180519
  2503. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2504. IsTruncated False Blanks False
  2505. Category 11647 "20180520" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180520"
  2506. Label "20/05/2018" Lastuse 20180711 SourceValue "20180520" Date 20180520
  2507. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2508. IsTruncated False Blanks False
  2509. Category 11649 "20180521" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180521"
  2510. Label "21/05/2018" Lastuse 20180711 SourceValue "20180521" Date 20180521
  2511. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2512. IsTruncated False Blanks False
  2513. Category 11651 "20180522" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180522"
  2514. Label "22/05/2018" Lastuse 20180711 SourceValue "20180522" Date 20180522
  2515. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2516. IsTruncated False Blanks False
  2517. Category 11653 "20180523" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180523"
  2518. Label "23/05/2018" Lastuse 20180820 SourceValue "20180523" Date 20180523
  2519. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2520. IsTruncated False Blanks False
  2521. Category 11655 "20180524" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180524"
  2522. Label "24/05/2018" Lastuse 20180711 SourceValue "20180524" Date 20180524
  2523. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2524. IsTruncated False Blanks False
  2525. Category 11657 "20180525" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180525"
  2526. Label "25/05/2018" Lastuse 20180820 SourceValue "20180525" Date 20180525
  2527. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2528. IsTruncated False Blanks False
  2529. Category 11659 "20180526" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180526"
  2530. Label "26/05/2018" Lastuse 20180711 SourceValue "20180526" Date 20180526
  2531. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2532. IsTruncated False Blanks False
  2533. Category 11661 "20180527" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180527"
  2534. Label "27/05/2018" Lastuse 20180711 SourceValue "20180527" Date 20180527
  2535. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2536. IsTruncated False Blanks False
  2537. Category 11663 "20180528" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180528"
  2538. Label "28/05/2018" Lastuse 20180820 SourceValue "20180528" Date 20180528
  2539. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2540. IsTruncated False Blanks False
  2541. Category 11665 "20180529" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180529"
  2542. Label "29/05/2018" Lastuse 20180820 SourceValue "20180529" Date 20180529
  2543. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2544. IsTruncated False Blanks False
  2545. Category 11667 "20180530" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180530"
  2546. Label "30/05/2018" Lastuse 20180711 SourceValue "20180530" Date 20180530
  2547. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2548. IsTruncated False Blanks False
  2549. Category 11669 "20180531" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180531"
  2550. Label "31/05/2018" Lastuse 20180711 SourceValue "20180531" Date 20180531
  2551. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2552. IsTruncated False Blanks False
  2553. Category 11671 "20180601-20180630" Parent 11543 Levels 1487 OrderBy Drill 1469
  2554. Value "201806" Label "Juni/2018" Lastuse 20180820 SourceValue "201806"
  2555. Date 20180601 Filtered False Suppressed False Sign False HideValue False
  2556. IsKeyOrphanage False IsTruncated False Blanks False
  2557. Category 11673 "20180601" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180601"
  2558. Label "01/06/2018" Lastuse 20180820 SourceValue "20180601" Date 20180601
  2559. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2560. IsTruncated False Blanks False
  2561. Category 11675 "20180602" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180602"
  2562. Label "02/06/2018" Lastuse 20180711 SourceValue "20180602" Date 20180602
  2563. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2564. IsTruncated False Blanks False
  2565. Category 11677 "20180603" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180603"
  2566. Label "03/06/2018" Lastuse 20180711 SourceValue "20180603" Date 20180603
  2567. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2568. IsTruncated False Blanks False
  2569. Category 11679 "20180604" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180604"
  2570. Label "04/06/2018" Lastuse 20180820 SourceValue "20180604" Date 20180604
  2571. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2572. IsTruncated False Blanks False
  2573. Category 11681 "20180605" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180605"
  2574. Label "05/06/2018" Lastuse 20180820 SourceValue "20180605" Date 20180605
  2575. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2576. IsTruncated False Blanks False
  2577. Category 11683 "20180606" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180606"
  2578. Label "06/06/2018" Lastuse 20180820 SourceValue "20180606" Date 20180606
  2579. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2580. IsTruncated False Blanks False
  2581. Category 11685 "20180607" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180607"
  2582. Label "07/06/2018" Lastuse 20180820 SourceValue "20180607" Date 20180607
  2583. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2584. IsTruncated False Blanks False
  2585. Category 11687 "20180608" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180608"
  2586. Label "08/06/2018" Lastuse 20180820 SourceValue "20180608" Date 20180608
  2587. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2588. IsTruncated False Blanks False
  2589. Category 11689 "20180609" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180609"
  2590. Label "09/06/2018" Lastuse 20180820 SourceValue "20180609" Date 20180609
  2591. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2592. IsTruncated False Blanks False
  2593. Category 11691 "20180610" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180610"
  2594. Label "10/06/2018" Lastuse 20180711 SourceValue "20180610" Date 20180610
  2595. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2596. IsTruncated False Blanks False
  2597. Category 11693 "20180611" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180611"
  2598. Label "11/06/2018" Lastuse 20180820 SourceValue "20180611" Date 20180611
  2599. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2600. IsTruncated False Blanks False
  2601. Category 11695 "20180612" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180612"
  2602. Label "12/06/2018" Lastuse 20180711 SourceValue "20180612" Date 20180612
  2603. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2604. IsTruncated False Blanks False
  2605. Category 11697 "20180613" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180613"
  2606. Label "13/06/2018" Lastuse 20180820 SourceValue "20180613" Date 20180613
  2607. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2608. IsTruncated False Blanks False
  2609. Category 11699 "20180614" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180614"
  2610. Label "14/06/2018" Lastuse 20180820 SourceValue "20180614" Date 20180614
  2611. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2612. IsTruncated False Blanks False
  2613. Category 11701 "20180615" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180615"
  2614. Label "15/06/2018" Lastuse 20180820 SourceValue "20180615" Date 20180615
  2615. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2616. IsTruncated False Blanks False
  2617. Category 11703 "20180616" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180616"
  2618. Label "16/06/2018" Lastuse 20180711 SourceValue "20180616" Date 20180616
  2619. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2620. IsTruncated False Blanks False
  2621. Category 11705 "20180617" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180617"
  2622. Label "17/06/2018" Lastuse 20180711 SourceValue "20180617" Date 20180617
  2623. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2624. IsTruncated False Blanks False
  2625. Category 11707 "20180618" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180618"
  2626. Label "18/06/2018" Lastuse 20180820 SourceValue "20180618" Date 20180618
  2627. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2628. IsTruncated False Blanks False
  2629. Category 11709 "20180619" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180619"
  2630. Label "19/06/2018" Lastuse 20180820 SourceValue "20180619" Date 20180619
  2631. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2632. IsTruncated False Blanks False
  2633. Category 11711 "20180620" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180620"
  2634. Label "20/06/2018" Lastuse 20180820 SourceValue "20180620" Date 20180620
  2635. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2636. IsTruncated False Blanks False
  2637. Category 11713 "20180621" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180621"
  2638. Label "21/06/2018" Lastuse 20180820 SourceValue "20180621" Date 20180621
  2639. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2640. IsTruncated False Blanks False
  2641. Category 11715 "20180622" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180622"
  2642. Label "22/06/2018" Lastuse 20180820 SourceValue "20180622" Date 20180622
  2643. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2644. IsTruncated False Blanks False
  2645. Category 11717 "20180623" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180623"
  2646. Label "23/06/2018" Lastuse 20180711 SourceValue "20180623" Date 20180623
  2647. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2648. IsTruncated False Blanks False
  2649. Category 11719 "20180624" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180624"
  2650. Label "24/06/2018" Lastuse 20180711 SourceValue "20180624" Date 20180624
  2651. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2652. IsTruncated False Blanks False
  2653. Category 11721 "20180625" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180625"
  2654. Label "25/06/2018" Lastuse 20180820 SourceValue "20180625" Date 20180625
  2655. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2656. IsTruncated False Blanks False
  2657. Category 11723 "20180626" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180626"
  2658. Label "26/06/2018" Lastuse 20180820 SourceValue "20180626" Date 20180626
  2659. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2660. IsTruncated False Blanks False
  2661. Category 11725 "20180627" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180627"
  2662. Label "27/06/2018" Lastuse 20180820 SourceValue "20180627" Date 20180627
  2663. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2664. IsTruncated False Blanks False
  2665. Category 11727 "20180628" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180628"
  2666. Label "28/06/2018" Lastuse 20180820 SourceValue "20180628" Date 20180628
  2667. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2668. IsTruncated False Blanks False
  2669. Category 11729 "20180629" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180629"
  2670. Label "29/06/2018" Lastuse 20180820 SourceValue "20180629" Date 20180629
  2671. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2672. IsTruncated False Blanks False
  2673. Category 11731 "20180630" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180630"
  2674. Label "30/06/2018" Lastuse 20180820 SourceValue "20180630" Date 20180630
  2675. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2676. IsTruncated False Blanks False
  2677. Category 11733 "20180701-20180930" Parent 11353 Levels 1481 OrderBy Drill 1469
  2678. Value "20180701" Label "3. Q. 2018" Lastuse 20180820 SourceValue "20180701"
  2679. Date 20180701 Filtered False Suppressed False Sign False HideValue False
  2680. IsKeyOrphanage False IsTruncated False Blanks False
  2681. Category 11735 "20180701-20180731" Parent 11733 Levels 1487 OrderBy Drill 1469
  2682. Value "201807" Label "Juli/2018" Lastuse 20180820 SourceValue "201807"
  2683. Date 20180701 Filtered False Suppressed False Sign False HideValue False
  2684. IsKeyOrphanage False IsTruncated False Blanks False
  2685. Category 11737 "20180701" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180701"
  2686. Label "01/07/2018" Lastuse 20180711 SourceValue "20180701" Date 20180701
  2687. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2688. IsTruncated False Blanks False
  2689. Category 11739 "20180702" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180702"
  2690. Label "02/07/2018" Lastuse 20180820 SourceValue "20180702" Date 20180702
  2691. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2692. IsTruncated False Blanks False
  2693. Category 11741 "20180703" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180703"
  2694. Label "03/07/2018" Lastuse 20180820 SourceValue "20180703" Date 20180703
  2695. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2696. IsTruncated False Blanks False
  2697. Category 11743 "20180704" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180704"
  2698. Label "04/07/2018" Lastuse 20180820 SourceValue "20180704" Date 20180704
  2699. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2700. IsTruncated False Blanks False
  2701. Category 11745 "20180705" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180705"
  2702. Label "05/07/2018" Lastuse 20180820 SourceValue "20180705" Date 20180705
  2703. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2704. IsTruncated False Blanks False
  2705. Category 11747 "20180706" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180706"
  2706. Label "06/07/2018" Lastuse 20180820 SourceValue "20180706" Date 20180706
  2707. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2708. IsTruncated False Blanks False
  2709. Category 11749 "20180707" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180707"
  2710. Label "07/07/2018" Lastuse 20180820 SourceValue "20180707" Date 20180707
  2711. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2712. IsTruncated False Blanks False
  2713. Category 11751 "20180708" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180708"
  2714. Label "08/07/2018" Lastuse 20180711 SourceValue "20180708" Date 20180708
  2715. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2716. IsTruncated False Blanks False
  2717. Category 11753 "20180709" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180709"
  2718. Label "09/07/2018" Lastuse 20180820 SourceValue "20180709" Date 20180709
  2719. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2720. IsTruncated False Blanks False
  2721. Category 11755 "20180710" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180710"
  2722. Label "10/07/2018" Lastuse 20180711 SourceValue "20180710" Date 20180710
  2723. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2724. IsTruncated False Blanks False
  2725. Category 11757 "20180711" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180711"
  2726. Label "11/07/2018" Lastuse 20180711 SourceValue "20180711" Date 20180711
  2727. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2728. IsTruncated False Blanks False
  2729. Category 11759 "20180712" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180712"
  2730. Label "12/07/2018" Lastuse 20180711 SourceValue "20180712" Date 20180712
  2731. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2732. IsTruncated False Blanks False
  2733. Category 11761 "20180713" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180713"
  2734. Label "13/07/2018" Lastuse 20180711 SourceValue "20180713" Date 20180713
  2735. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2736. IsTruncated False Blanks False
  2737. Category 11763 "20180714" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180714"
  2738. Label "14/07/2018" Lastuse 20180711 SourceValue "20180714" Date 20180714
  2739. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2740. IsTruncated False Blanks False
  2741. Category 11765 "20180715" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180715"
  2742. Label "15/07/2018" Lastuse 20180711 SourceValue "20180715" Date 20180715
  2743. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2744. IsTruncated False Blanks False
  2745. Category 11767 "20180716" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180716"
  2746. Label "16/07/2018" Lastuse 20180711 SourceValue "20180716" Date 20180716
  2747. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2748. IsTruncated False Blanks False
  2749. Category 11769 "20180717" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180717"
  2750. Label "17/07/2018" Lastuse 20180711 SourceValue "20180717" Date 20180717
  2751. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2752. IsTruncated False Blanks False
  2753. Category 11771 "20180718" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180718"
  2754. Label "18/07/2018" Lastuse 20180711 SourceValue "20180718" Date 20180718
  2755. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2756. IsTruncated False Blanks False
  2757. Category 11773 "20180719" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180719"
  2758. Label "19/07/2018" Lastuse 20180711 SourceValue "20180719" Date 20180719
  2759. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2760. IsTruncated False Blanks False
  2761. Category 11775 "20180720" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180720"
  2762. Label "20/07/2018" Lastuse 20180711 SourceValue "20180720" Date 20180720
  2763. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2764. IsTruncated False Blanks False
  2765. Category 11777 "20180721" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180721"
  2766. Label "21/07/2018" Lastuse 20180711 SourceValue "20180721" Date 20180721
  2767. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2768. IsTruncated False Blanks False
  2769. Category 11779 "20180722" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180722"
  2770. Label "22/07/2018" Lastuse 20180711 SourceValue "20180722" Date 20180722
  2771. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2772. IsTruncated False Blanks False
  2773. Category 11781 "20180723" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180723"
  2774. Label "23/07/2018" Lastuse 20180711 SourceValue "20180723" Date 20180723
  2775. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2776. IsTruncated False Blanks False
  2777. Category 11783 "20180724" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180724"
  2778. Label "24/07/2018" Lastuse 20180711 SourceValue "20180724" Date 20180724
  2779. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2780. IsTruncated False Blanks False
  2781. Category 11785 "20180725" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180725"
  2782. Label "25/07/2018" Lastuse 20180711 SourceValue "20180725" Date 20180725
  2783. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2784. IsTruncated False Blanks False
  2785. Category 11787 "20180726" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180726"
  2786. Label "26/07/2018" Lastuse 20180711 SourceValue "20180726" Date 20180726
  2787. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2788. IsTruncated False Blanks False
  2789. Category 11789 "20180727" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180727"
  2790. Label "27/07/2018" Lastuse 20180711 SourceValue "20180727" Date 20180727
  2791. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2792. IsTruncated False Blanks False
  2793. Category 11791 "20180728" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180728"
  2794. Label "28/07/2018" Lastuse 20180711 SourceValue "20180728" Date 20180728
  2795. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2796. IsTruncated False Blanks False
  2797. Category 11793 "20180729" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180729"
  2798. Label "29/07/2018" Lastuse 20180711 SourceValue "20180729" Date 20180729
  2799. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2800. IsTruncated False Blanks False
  2801. Category 11795 "20180730" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180730"
  2802. Label "30/07/2018" Lastuse 20180711 SourceValue "20180730" Date 20180730
  2803. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2804. IsTruncated False Blanks False
  2805. Category 11797 "20180731" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180731"
  2806. Label "31/07/2018" Lastuse 20180711 SourceValue "20180731" Date 20180731
  2807. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2808. IsTruncated False Blanks False
  2809. Category 11799 "20180801-20180831" Parent 11733 Levels 1487 OrderBy Drill 1469
  2810. Value "201808" Label "Aug./2018" Lastuse 20180711 SourceValue "201808"
  2811. Date 20180801 Filtered False Suppressed False Sign False HideValue False
  2812. IsKeyOrphanage False IsTruncated False Blanks False
  2813. Category 11801 "20180801" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180801"
  2814. Label "01/08/2018" Lastuse 20180711 SourceValue "20180801" Date 20180801
  2815. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2816. IsTruncated False Blanks False
  2817. Category 11803 "20180802" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180802"
  2818. Label "02/08/2018" Lastuse 20180711 SourceValue "20180802" Date 20180802
  2819. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2820. IsTruncated False Blanks False
  2821. Category 11805 "20180803" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180803"
  2822. Label "03/08/2018" Lastuse 20180711 SourceValue "20180803" Date 20180803
  2823. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2824. IsTruncated False Blanks False
  2825. Category 11807 "20180804" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180804"
  2826. Label "04/08/2018" Lastuse 20180711 SourceValue "20180804" Date 20180804
  2827. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2828. IsTruncated False Blanks False
  2829. Category 11809 "20180805" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180805"
  2830. Label "05/08/2018" Lastuse 20180711 SourceValue "20180805" Date 20180805
  2831. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2832. IsTruncated False Blanks False
  2833. Category 11811 "20180806" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180806"
  2834. Label "06/08/2018" Lastuse 20180711 SourceValue "20180806" Date 20180806
  2835. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2836. IsTruncated False Blanks False
  2837. Category 11813 "20180807" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180807"
  2838. Label "07/08/2018" Lastuse 20180711 SourceValue "20180807" Date 20180807
  2839. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2840. IsTruncated False Blanks False
  2841. Category 11815 "20180808" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180808"
  2842. Label "08/08/2018" Lastuse 20180711 SourceValue "20180808" Date 20180808
  2843. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2844. IsTruncated False Blanks False
  2845. Category 11817 "20180809" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180809"
  2846. Label "09/08/2018" Lastuse 20180711 SourceValue "20180809" Date 20180809
  2847. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2848. IsTruncated False Blanks False
  2849. Category 11819 "20180810" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180810"
  2850. Label "10/08/2018" Lastuse 20180711 SourceValue "20180810" Date 20180810
  2851. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2852. IsTruncated False Blanks False
  2853. Category 11821 "20180811" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180811"
  2854. Label "11/08/2018" Lastuse 20180711 SourceValue "20180811" Date 20180811
  2855. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2856. IsTruncated False Blanks False
  2857. Category 11823 "20180812" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180812"
  2858. Label "12/08/2018" Lastuse 20180711 SourceValue "20180812" Date 20180812
  2859. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2860. IsTruncated False Blanks False
  2861. Category 11825 "20180813" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180813"
  2862. Label "13/08/2018" Lastuse 20180711 SourceValue "20180813" Date 20180813
  2863. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2864. IsTruncated False Blanks False
  2865. Category 11827 "20180814" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180814"
  2866. Label "14/08/2018" Lastuse 20180711 SourceValue "20180814" Date 20180814
  2867. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2868. IsTruncated False Blanks False
  2869. Category 11829 "20180815" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180815"
  2870. Label "15/08/2018" Lastuse 20180711 SourceValue "20180815" Date 20180815
  2871. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2872. IsTruncated False Blanks False
  2873. Category 11831 "20180816" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180816"
  2874. Label "16/08/2018" Lastuse 20180711 SourceValue "20180816" Date 20180816
  2875. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2876. IsTruncated False Blanks False
  2877. Category 11833 "20180817" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180817"
  2878. Label "17/08/2018" Lastuse 20180711 SourceValue "20180817" Date 20180817
  2879. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2880. IsTruncated False Blanks False
  2881. Category 11835 "20180818" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180818"
  2882. Label "18/08/2018" Lastuse 20180711 SourceValue "20180818" Date 20180818
  2883. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2884. IsTruncated False Blanks False
  2885. Category 11837 "20180819" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180819"
  2886. Label "19/08/2018" Lastuse 20180711 SourceValue "20180819" Date 20180819
  2887. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2888. IsTruncated False Blanks False
  2889. Category 11839 "20180820" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180820"
  2890. Label "20/08/2018" Lastuse 20180711 SourceValue "20180820" Date 20180820
  2891. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2892. IsTruncated False Blanks False
  2893. Category 11841 "20180821" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180821"
  2894. Label "21/08/2018" Lastuse 20180711 SourceValue "20180821" Date 20180821
  2895. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2896. IsTruncated False Blanks False
  2897. Category 11843 "20180822" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180822"
  2898. Label "22/08/2018" Lastuse 20180711 SourceValue "20180822" Date 20180822
  2899. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2900. IsTruncated False Blanks False
  2901. Category 11845 "20180823" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180823"
  2902. Label "23/08/2018" Lastuse 20180711 SourceValue "20180823" Date 20180823
  2903. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2904. IsTruncated False Blanks False
  2905. Category 11847 "20180824" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180824"
  2906. Label "24/08/2018" Lastuse 20180711 SourceValue "20180824" Date 20180824
  2907. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2908. IsTruncated False Blanks False
  2909. Category 11849 "20180825" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180825"
  2910. Label "25/08/2018" Lastuse 20180711 SourceValue "20180825" Date 20180825
  2911. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2912. IsTruncated False Blanks False
  2913. Category 11851 "20180826" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180826"
  2914. Label "26/08/2018" Lastuse 20180711 SourceValue "20180826" Date 20180826
  2915. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2916. IsTruncated False Blanks False
  2917. Category 11853 "20180827" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180827"
  2918. Label "27/08/2018" Lastuse 20180711 SourceValue "20180827" Date 20180827
  2919. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2920. IsTruncated False Blanks False
  2921. Category 11855 "20180828" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180828"
  2922. Label "28/08/2018" Lastuse 20180711 SourceValue "20180828" Date 20180828
  2923. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2924. IsTruncated False Blanks False
  2925. Category 11857 "20180829" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180829"
  2926. Label "29/08/2018" Lastuse 20180711 SourceValue "20180829" Date 20180829
  2927. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2928. IsTruncated False Blanks False
  2929. Category 11859 "20180830" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180830"
  2930. Label "30/08/2018" Lastuse 20180711 SourceValue "20180830" Date 20180830
  2931. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2932. IsTruncated False Blanks False
  2933. Category 11861 "20180831" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180831"
  2934. Label "31/08/2018" Lastuse 20180711 SourceValue "20180831" Date 20180831
  2935. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2936. IsTruncated False Blanks False
  2937. Category 11863 "20180901-20180930" Parent 11733 Levels 1487 OrderBy Drill 1469
  2938. Value "201809" Label "Sept./2018" Lastuse 20180711 SourceValue "201809"
  2939. Date 20180901 Filtered False Suppressed False Sign False HideValue False
  2940. IsKeyOrphanage False IsTruncated False Blanks False
  2941. Category 11865 "20180901" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180901"
  2942. Label "01/09/2018" Lastuse 20180711 SourceValue "20180901" Date 20180901
  2943. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2944. IsTruncated False Blanks False
  2945. Category 11867 "20180902" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180902"
  2946. Label "02/09/2018" Lastuse 20180711 SourceValue "20180902" Date 20180902
  2947. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2948. IsTruncated False Blanks False
  2949. Category 11869 "20180903" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180903"
  2950. Label "03/09/2018" Lastuse 20180711 SourceValue "20180903" Date 20180903
  2951. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2952. IsTruncated False Blanks False
  2953. Category 11871 "20180904" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180904"
  2954. Label "04/09/2018" Lastuse 20180711 SourceValue "20180904" Date 20180904
  2955. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2956. IsTruncated False Blanks False
  2957. Category 11873 "20180905" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180905"
  2958. Label "05/09/2018" Lastuse 20180711 SourceValue "20180905" Date 20180905
  2959. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2960. IsTruncated False Blanks False
  2961. Category 11875 "20180906" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180906"
  2962. Label "06/09/2018" Lastuse 20180711 SourceValue "20180906" Date 20180906
  2963. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2964. IsTruncated False Blanks False
  2965. Category 11877 "20180907" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180907"
  2966. Label "07/09/2018" Lastuse 20180711 SourceValue "20180907" Date 20180907
  2967. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2968. IsTruncated False Blanks False
  2969. Category 11879 "20180908" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180908"
  2970. Label "08/09/2018" Lastuse 20180711 SourceValue "20180908" Date 20180908
  2971. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2972. IsTruncated False Blanks False
  2973. Category 11881 "20180909" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180909"
  2974. Label "09/09/2018" Lastuse 20180711 SourceValue "20180909" Date 20180909
  2975. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2976. IsTruncated False Blanks False
  2977. Category 11883 "20180910" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180910"
  2978. Label "10/09/2018" Lastuse 20180711 SourceValue "20180910" Date 20180910
  2979. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2980. IsTruncated False Blanks False
  2981. Category 11885 "20180911" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180911"
  2982. Label "11/09/2018" Lastuse 20180711 SourceValue "20180911" Date 20180911
  2983. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2984. IsTruncated False Blanks False
  2985. Category 11887 "20180912" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180912"
  2986. Label "12/09/2018" Lastuse 20180711 SourceValue "20180912" Date 20180912
  2987. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2988. IsTruncated False Blanks False
  2989. Category 11889 "20180913" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180913"
  2990. Label "13/09/2018" Lastuse 20180711 SourceValue "20180913" Date 20180913
  2991. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2992. IsTruncated False Blanks False
  2993. Category 11891 "20180914" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180914"
  2994. Label "14/09/2018" Lastuse 20180711 SourceValue "20180914" Date 20180914
  2995. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2996. IsTruncated False Blanks False
  2997. Category 11893 "20180915" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180915"
  2998. Label "15/09/2018" Lastuse 20180711 SourceValue "20180915" Date 20180915
  2999. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3000. IsTruncated False Blanks False
  3001. Category 11895 "20180916" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180916"
  3002. Label "16/09/2018" Lastuse 20180711 SourceValue "20180916" Date 20180916
  3003. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3004. IsTruncated False Blanks False
  3005. Category 11897 "20180917" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180917"
  3006. Label "17/09/2018" Lastuse 20180711 SourceValue "20180917" Date 20180917
  3007. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3008. IsTruncated False Blanks False
  3009. Category 11899 "20180918" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180918"
  3010. Label "18/09/2018" Lastuse 20180711 SourceValue "20180918" Date 20180918
  3011. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3012. IsTruncated False Blanks False
  3013. Category 11901 "20180919" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180919"
  3014. Label "19/09/2018" Lastuse 20180711 SourceValue "20180919" Date 20180919
  3015. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3016. IsTruncated False Blanks False
  3017. Category 11903 "20180920" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180920"
  3018. Label "20/09/2018" Lastuse 20180711 SourceValue "20180920" Date 20180920
  3019. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3020. IsTruncated False Blanks False
  3021. Category 11905 "20180921" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180921"
  3022. Label "21/09/2018" Lastuse 20180711 SourceValue "20180921" Date 20180921
  3023. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3024. IsTruncated False Blanks False
  3025. Category 11907 "20180922" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180922"
  3026. Label "22/09/2018" Lastuse 20180711 SourceValue "20180922" Date 20180922
  3027. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3028. IsTruncated False Blanks False
  3029. Category 11909 "20180923" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180923"
  3030. Label "23/09/2018" Lastuse 20180711 SourceValue "20180923" Date 20180923
  3031. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3032. IsTruncated False Blanks False
  3033. Category 11911 "20180924" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180924"
  3034. Label "24/09/2018" Lastuse 20180711 SourceValue "20180924" Date 20180924
  3035. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3036. IsTruncated False Blanks False
  3037. Category 11913 "20180925" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180925"
  3038. Label "25/09/2018" Lastuse 20180711 SourceValue "20180925" Date 20180925
  3039. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3040. IsTruncated False Blanks False
  3041. Category 11915 "20180926" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180926"
  3042. Label "26/09/2018" Lastuse 20180711 SourceValue "20180926" Date 20180926
  3043. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3044. IsTruncated False Blanks False
  3045. Category 11917 "20180927" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180927"
  3046. Label "27/09/2018" Lastuse 20180711 SourceValue "20180927" Date 20180927
  3047. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3048. IsTruncated False Blanks False
  3049. Category 11919 "20180928" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180928"
  3050. Label "28/09/2018" Lastuse 20180711 SourceValue "20180928" Date 20180928
  3051. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3052. IsTruncated False Blanks False
  3053. Category 11921 "20180929" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180929"
  3054. Label "29/09/2018" Lastuse 20180711 SourceValue "20180929" Date 20180929
  3055. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3056. IsTruncated False Blanks False
  3057. Category 11923 "20180930" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180930"
  3058. Label "30/09/2018" Lastuse 20180711 SourceValue "20180930" Date 20180930
  3059. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3060. IsTruncated False Blanks False
  3061. Category 11925 "20181001-20181231" Parent 11353 Levels 1481 OrderBy Drill 1469
  3062. Value "20181001" Label "4. Q. 2018" Lastuse 20180711 SourceValue "20181001"
  3063. Date 20181001 Filtered False Suppressed False Sign False HideValue False
  3064. IsKeyOrphanage False IsTruncated False Blanks False
  3065. Category 11927 "20181001-20181031" Parent 11925 Levels 1487 OrderBy Drill 1469
  3066. Value "201810" Label "Okt./2018" Lastuse 20180711 SourceValue "201810"
  3067. Date 20181001 Filtered False Suppressed False Sign False HideValue False
  3068. IsKeyOrphanage False IsTruncated False Blanks False
  3069. Category 11929 "20181001" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181001"
  3070. Label "01/10/2018" Lastuse 20180711 SourceValue "20181001" Date 20181001
  3071. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3072. IsTruncated False Blanks False
  3073. Category 11931 "20181002" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181002"
  3074. Label "02/10/2018" Lastuse 20180711 SourceValue "20181002" Date 20181002
  3075. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3076. IsTruncated False Blanks False
  3077. Category 11933 "20181003" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181003"
  3078. Label "03/10/2018" Lastuse 20180711 SourceValue "20181003" Date 20181003
  3079. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3080. IsTruncated False Blanks False
  3081. Category 11935 "20181004" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181004"
  3082. Label "04/10/2018" Lastuse 20180711 SourceValue "20181004" Date 20181004
  3083. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3084. IsTruncated False Blanks False
  3085. Category 11937 "20181005" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181005"
  3086. Label "05/10/2018" Lastuse 20180711 SourceValue "20181005" Date 20181005
  3087. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3088. IsTruncated False Blanks False
  3089. Category 11939 "20181006" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181006"
  3090. Label "06/10/2018" Lastuse 20180711 SourceValue "20181006" Date 20181006
  3091. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3092. IsTruncated False Blanks False
  3093. Category 11941 "20181007" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181007"
  3094. Label "07/10/2018" Lastuse 20180711 SourceValue "20181007" Date 20181007
  3095. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3096. IsTruncated False Blanks False
  3097. Category 11943 "20181008" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181008"
  3098. Label "08/10/2018" Lastuse 20180711 SourceValue "20181008" Date 20181008
  3099. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3100. IsTruncated False Blanks False
  3101. Category 11945 "20181009" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181009"
  3102. Label "09/10/2018" Lastuse 20180711 SourceValue "20181009" Date 20181009
  3103. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3104. IsTruncated False Blanks False
  3105. Category 11947 "20181010" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181010"
  3106. Label "10/10/2018" Lastuse 20180711 SourceValue "20181010" Date 20181010
  3107. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3108. IsTruncated False Blanks False
  3109. Category 11949 "20181011" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181011"
  3110. Label "11/10/2018" Lastuse 20180711 SourceValue "20181011" Date 20181011
  3111. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3112. IsTruncated False Blanks False
  3113. Category 11951 "20181012" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181012"
  3114. Label "12/10/2018" Lastuse 20180711 SourceValue "20181012" Date 20181012
  3115. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3116. IsTruncated False Blanks False
  3117. Category 11953 "20181013" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181013"
  3118. Label "13/10/2018" Lastuse 20180711 SourceValue "20181013" Date 20181013
  3119. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3120. IsTruncated False Blanks False
  3121. Category 11955 "20181014" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181014"
  3122. Label "14/10/2018" Lastuse 20180711 SourceValue "20181014" Date 20181014
  3123. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3124. IsTruncated False Blanks False
  3125. Category 11957 "20181015" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181015"
  3126. Label "15/10/2018" Lastuse 20180711 SourceValue "20181015" Date 20181015
  3127. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3128. IsTruncated False Blanks False
  3129. Category 11959 "20181016" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181016"
  3130. Label "16/10/2018" Lastuse 20180711 SourceValue "20181016" Date 20181016
  3131. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3132. IsTruncated False Blanks False
  3133. Category 11961 "20181017" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181017"
  3134. Label "17/10/2018" Lastuse 20180711 SourceValue "20181017" Date 20181017
  3135. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3136. IsTruncated False Blanks False
  3137. Category 11963 "20181018" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181018"
  3138. Label "18/10/2018" Lastuse 20180711 SourceValue "20181018" Date 20181018
  3139. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3140. IsTruncated False Blanks False
  3141. Category 11965 "20181019" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181019"
  3142. Label "19/10/2018" Lastuse 20180711 SourceValue "20181019" Date 20181019
  3143. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3144. IsTruncated False Blanks False
  3145. Category 11967 "20181020" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181020"
  3146. Label "20/10/2018" Lastuse 20180711 SourceValue "20181020" Date 20181020
  3147. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3148. IsTruncated False Blanks False
  3149. Category 11969 "20181021" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181021"
  3150. Label "21/10/2018" Lastuse 20180711 SourceValue "20181021" Date 20181021
  3151. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3152. IsTruncated False Blanks False
  3153. Category 11971 "20181022" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181022"
  3154. Label "22/10/2018" Lastuse 20180711 SourceValue "20181022" Date 20181022
  3155. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3156. IsTruncated False Blanks False
  3157. Category 11973 "20181023" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181023"
  3158. Label "23/10/2018" Lastuse 20180711 SourceValue "20181023" Date 20181023
  3159. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3160. IsTruncated False Blanks False
  3161. Category 11975 "20181024" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181024"
  3162. Label "24/10/2018" Lastuse 20180711 SourceValue "20181024" Date 20181024
  3163. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3164. IsTruncated False Blanks False
  3165. Category 11977 "20181025" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181025"
  3166. Label "25/10/2018" Lastuse 20180711 SourceValue "20181025" Date 20181025
  3167. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3168. IsTruncated False Blanks False
  3169. Category 11979 "20181026" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181026"
  3170. Label "26/10/2018" Lastuse 20180711 SourceValue "20181026" Date 20181026
  3171. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3172. IsTruncated False Blanks False
  3173. Category 11981 "20181027" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181027"
  3174. Label "27/10/2018" Lastuse 20180711 SourceValue "20181027" Date 20181027
  3175. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3176. IsTruncated False Blanks False
  3177. Category 11983 "20181028" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181028"
  3178. Label "28/10/2018" Lastuse 20180711 SourceValue "20181028" Date 20181028
  3179. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3180. IsTruncated False Blanks False
  3181. Category 11985 "20181029" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181029"
  3182. Label "29/10/2018" Lastuse 20180711 SourceValue "20181029" Date 20181029
  3183. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3184. IsTruncated False Blanks False
  3185. Category 11987 "20181030" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181030"
  3186. Label "30/10/2018" Lastuse 20180711 SourceValue "20181030" Date 20181030
  3187. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3188. IsTruncated False Blanks False
  3189. Category 11989 "20181031" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181031"
  3190. Label "31/10/2018" Lastuse 20180711 SourceValue "20181031" Date 20181031
  3191. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3192. IsTruncated False Blanks False
  3193. Category 11991 "20181101-20181130" Parent 11925 Levels 1487 OrderBy Drill 1469
  3194. Value "201811" Label "Nov./2018" Lastuse 20180711 SourceValue "201811"
  3195. Date 20181101 Filtered False Suppressed False Sign False HideValue False
  3196. IsKeyOrphanage False IsTruncated False Blanks False
  3197. Category 11993 "20181101" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181101"
  3198. Label "01/11/2018" Lastuse 20180711 SourceValue "20181101" Date 20181101
  3199. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3200. IsTruncated False Blanks False
  3201. Category 11995 "20181102" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181102"
  3202. Label "02/11/2018" Lastuse 20180711 SourceValue "20181102" Date 20181102
  3203. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3204. IsTruncated False Blanks False
  3205. Category 11997 "20181103" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181103"
  3206. Label "03/11/2018" Lastuse 20180711 SourceValue "20181103" Date 20181103
  3207. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3208. IsTruncated False Blanks False
  3209. Category 11999 "20181104" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181104"
  3210. Label "04/11/2018" Lastuse 20180711 SourceValue "20181104" Date 20181104
  3211. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3212. IsTruncated False Blanks False
  3213. Category 12001 "20181105" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181105"
  3214. Label "05/11/2018" Lastuse 20180711 SourceValue "20181105" Date 20181105
  3215. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3216. IsTruncated False Blanks False
  3217. Category 12003 "20181106" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181106"
  3218. Label "06/11/2018" Lastuse 20180711 SourceValue "20181106" Date 20181106
  3219. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3220. IsTruncated False Blanks False
  3221. Category 12005 "20181107" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181107"
  3222. Label "07/11/2018" Lastuse 20180711 SourceValue "20181107" Date 20181107
  3223. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3224. IsTruncated False Blanks False
  3225. Category 12007 "20181108" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181108"
  3226. Label "08/11/2018" Lastuse 20180711 SourceValue "20181108" Date 20181108
  3227. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3228. IsTruncated False Blanks False
  3229. Category 12009 "20181109" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181109"
  3230. Label "09/11/2018" Lastuse 20180711 SourceValue "20181109" Date 20181109
  3231. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3232. IsTruncated False Blanks False
  3233. Category 12011 "20181110" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181110"
  3234. Label "10/11/2018" Lastuse 20180711 SourceValue "20181110" Date 20181110
  3235. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3236. IsTruncated False Blanks False
  3237. Category 12013 "20181111" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181111"
  3238. Label "11/11/2018" Lastuse 20180711 SourceValue "20181111" Date 20181111
  3239. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3240. IsTruncated False Blanks False
  3241. Category 12015 "20181112" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181112"
  3242. Label "12/11/2018" Lastuse 20180711 SourceValue "20181112" Date 20181112
  3243. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3244. IsTruncated False Blanks False
  3245. Category 12017 "20181113" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181113"
  3246. Label "13/11/2018" Lastuse 20180711 SourceValue "20181113" Date 20181113
  3247. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3248. IsTruncated False Blanks False
  3249. Category 12019 "20181114" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181114"
  3250. Label "14/11/2018" Lastuse 20180711 SourceValue "20181114" Date 20181114
  3251. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3252. IsTruncated False Blanks False
  3253. Category 12021 "20181115" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181115"
  3254. Label "15/11/2018" Lastuse 20180711 SourceValue "20181115" Date 20181115
  3255. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3256. IsTruncated False Blanks False
  3257. Category 12023 "20181116" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181116"
  3258. Label "16/11/2018" Lastuse 20180711 SourceValue "20181116" Date 20181116
  3259. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3260. IsTruncated False Blanks False
  3261. Category 12025 "20181117" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181117"
  3262. Label "17/11/2018" Lastuse 20180711 SourceValue "20181117" Date 20181117
  3263. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3264. IsTruncated False Blanks False
  3265. Category 12027 "20181118" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181118"
  3266. Label "18/11/2018" Lastuse 20180711 SourceValue "20181118" Date 20181118
  3267. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3268. IsTruncated False Blanks False
  3269. Category 12029 "20181119" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181119"
  3270. Label "19/11/2018" Lastuse 20180711 SourceValue "20181119" Date 20181119
  3271. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3272. IsTruncated False Blanks False
  3273. Category 12031 "20181120" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181120"
  3274. Label "20/11/2018" Lastuse 20180711 SourceValue "20181120" Date 20181120
  3275. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3276. IsTruncated False Blanks False
  3277. Category 12033 "20181121" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181121"
  3278. Label "21/11/2018" Lastuse 20180711 SourceValue "20181121" Date 20181121
  3279. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3280. IsTruncated False Blanks False
  3281. Category 12035 "20181122" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181122"
  3282. Label "22/11/2018" Lastuse 20180711 SourceValue "20181122" Date 20181122
  3283. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3284. IsTruncated False Blanks False
  3285. Category 12037 "20181123" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181123"
  3286. Label "23/11/2018" Lastuse 20180711 SourceValue "20181123" Date 20181123
  3287. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3288. IsTruncated False Blanks False
  3289. Category 12039 "20181124" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181124"
  3290. Label "24/11/2018" Lastuse 20180711 SourceValue "20181124" Date 20181124
  3291. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3292. IsTruncated False Blanks False
  3293. Category 12041 "20181125" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181125"
  3294. Label "25/11/2018" Lastuse 20180711 SourceValue "20181125" Date 20181125
  3295. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3296. IsTruncated False Blanks False
  3297. Category 12043 "20181126" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181126"
  3298. Label "26/11/2018" Lastuse 20180711 SourceValue "20181126" Date 20181126
  3299. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3300. IsTruncated False Blanks False
  3301. Category 12045 "20181127" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181127"
  3302. Label "27/11/2018" Lastuse 20180711 SourceValue "20181127" Date 20181127
  3303. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3304. IsTruncated False Blanks False
  3305. Category 12047 "20181128" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181128"
  3306. Label "28/11/2018" Lastuse 20180711 SourceValue "20181128" Date 20181128
  3307. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3308. IsTruncated False Blanks False
  3309. Category 12049 "20181129" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181129"
  3310. Label "29/11/2018" Lastuse 20180711 SourceValue "20181129" Date 20181129
  3311. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3312. IsTruncated False Blanks False
  3313. Category 12051 "20181130" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181130"
  3314. Label "30/11/2018" Lastuse 20180711 SourceValue "20181130" Date 20181130
  3315. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3316. IsTruncated False Blanks False
  3317. Category 12053 "20181201-20181231" Parent 11925 Levels 1487 OrderBy Drill 1469
  3318. Value "201812" Label "Dez./2018" Lastuse 20180711 SourceValue "201812"
  3319. Date 20181201 Filtered False Suppressed False Sign False HideValue False
  3320. IsKeyOrphanage False IsTruncated False Blanks False
  3321. Category 12055 "20181201" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181201"
  3322. Label "01/12/2018" Lastuse 20180711 SourceValue "20181201" Date 20181201
  3323. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3324. IsTruncated False Blanks False
  3325. Category 12057 "20181202" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181202"
  3326. Label "02/12/2018" Lastuse 20180711 SourceValue "20181202" Date 20181202
  3327. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3328. IsTruncated False Blanks False
  3329. Category 12059 "20181203" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181203"
  3330. Label "03/12/2018" Lastuse 20180711 SourceValue "20181203" Date 20181203
  3331. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3332. IsTruncated False Blanks False
  3333. Category 12061 "20181204" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181204"
  3334. Label "04/12/2018" Lastuse 20180711 SourceValue "20181204" Date 20181204
  3335. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3336. IsTruncated False Blanks False
  3337. Category 12063 "20181205" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181205"
  3338. Label "05/12/2018" Lastuse 20180711 SourceValue "20181205" Date 20181205
  3339. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3340. IsTruncated False Blanks False
  3341. Category 12065 "20181206" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181206"
  3342. Label "06/12/2018" Lastuse 20180711 SourceValue "20181206" Date 20181206
  3343. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3344. IsTruncated False Blanks False
  3345. Category 12067 "20181207" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181207"
  3346. Label "07/12/2018" Lastuse 20180711 SourceValue "20181207" Date 20181207
  3347. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3348. IsTruncated False Blanks False
  3349. Category 12069 "20181208" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181208"
  3350. Label "08/12/2018" Lastuse 20180711 SourceValue "20181208" Date 20181208
  3351. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3352. IsTruncated False Blanks False
  3353. Category 12071 "20181209" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181209"
  3354. Label "09/12/2018" Lastuse 20180711 SourceValue "20181209" Date 20181209
  3355. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3356. IsTruncated False Blanks False
  3357. Category 12073 "20181210" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181210"
  3358. Label "10/12/2018" Lastuse 20180711 SourceValue "20181210" Date 20181210
  3359. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3360. IsTruncated False Blanks False
  3361. Category 12075 "20181211" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181211"
  3362. Label "11/12/2018" Lastuse 20180711 SourceValue "20181211" Date 20181211
  3363. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3364. IsTruncated False Blanks False
  3365. Category 12077 "20181212" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181212"
  3366. Label "12/12/2018" Lastuse 20180711 SourceValue "20181212" Date 20181212
  3367. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3368. IsTruncated False Blanks False
  3369. Category 12079 "20181213" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181213"
  3370. Label "13/12/2018" Lastuse 20180711 SourceValue "20181213" Date 20181213
  3371. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3372. IsTruncated False Blanks False
  3373. Category 12081 "20181214" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181214"
  3374. Label "14/12/2018" Lastuse 20180711 SourceValue "20181214" Date 20181214
  3375. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3376. IsTruncated False Blanks False
  3377. Category 12083 "20181215" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181215"
  3378. Label "15/12/2018" Lastuse 20180711 SourceValue "20181215" Date 20181215
  3379. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3380. IsTruncated False Blanks False
  3381. Category 12085 "20181216" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181216"
  3382. Label "16/12/2018" Lastuse 20180711 SourceValue "20181216" Date 20181216
  3383. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3384. IsTruncated False Blanks False
  3385. Category 12087 "20181217" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181217"
  3386. Label "17/12/2018" Lastuse 20180711 SourceValue "20181217" Date 20181217
  3387. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3388. IsTruncated False Blanks False
  3389. Category 12089 "20181218" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181218"
  3390. Label "18/12/2018" Lastuse 20180711 SourceValue "20181218" Date 20181218
  3391. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3392. IsTruncated False Blanks False
  3393. Category 12091 "20181219" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181219"
  3394. Label "19/12/2018" Lastuse 20180711 SourceValue "20181219" Date 20181219
  3395. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3396. IsTruncated False Blanks False
  3397. Category 12093 "20181220" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181220"
  3398. Label "20/12/2018" Lastuse 20180711 SourceValue "20181220" Date 20181220
  3399. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3400. IsTruncated False Blanks False
  3401. Category 12095 "20181221" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181221"
  3402. Label "21/12/2018" Lastuse 20180711 SourceValue "20181221" Date 20181221
  3403. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3404. IsTruncated False Blanks False
  3405. Category 12097 "20181222" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181222"
  3406. Label "22/12/2018" Lastuse 20180711 SourceValue "20181222" Date 20181222
  3407. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3408. IsTruncated False Blanks False
  3409. Category 12099 "20181223" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181223"
  3410. Label "23/12/2018" Lastuse 20180711 SourceValue "20181223" Date 20181223
  3411. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3412. IsTruncated False Blanks False
  3413. Category 12101 "20181224" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181224"
  3414. Label "24/12/2018" Lastuse 20180711 SourceValue "20181224" Date 20181224
  3415. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3416. IsTruncated False Blanks False
  3417. Category 12103 "20181225" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181225"
  3418. Label "25/12/2018" Lastuse 20180711 SourceValue "20181225" Date 20181225
  3419. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3420. IsTruncated False Blanks False
  3421. Category 12105 "20181226" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181226"
  3422. Label "26/12/2018" Lastuse 20180711 SourceValue "20181226" Date 20181226
  3423. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3424. IsTruncated False Blanks False
  3425. Category 12107 "20181227" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181227"
  3426. Label "27/12/2018" Lastuse 20180711 SourceValue "20181227" Date 20181227
  3427. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3428. IsTruncated False Blanks False
  3429. Category 12109 "20181228" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181228"
  3430. Label "28/12/2018" Lastuse 20180711 SourceValue "20181228" Date 20181228
  3431. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3432. IsTruncated False Blanks False
  3433. Category 12111 "20181229" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181229"
  3434. Label "29/12/2018" Lastuse 20180711 SourceValue "20181229" Date 20181229
  3435. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3436. IsTruncated False Blanks False
  3437. Category 12113 "20181230" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181230"
  3438. Label "30/12/2018" Lastuse 20180711 SourceValue "20181230" Date 20181230
  3439. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3440. IsTruncated False Blanks False
  3441. Category 12115 "20181231" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181231"
  3442. Label "31/12/2018" Lastuse 20180711 SourceValue "20181231" Date 20181231
  3443. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3444. IsTruncated False Blanks False
  3445. Category 21157 "20190101-20191231" Parent 1469 Levels 1475 OrderBy Drill 1469
  3446. Value "2019" Label "2019" Lastuse 20210108 SourceValue "2019" Date 20190101
  3447. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3448. IsTruncated False Blanks False
  3449. Category 21159 "20190101-20190331" Parent 21157 Levels 1481 OrderBy Drill 1469
  3450. Value "20190101" Label "1. Q. 2019" Lastuse 20210108 SourceValue "20190101"
  3451. Date 20190101 Filtered False Suppressed False Sign False HideValue False
  3452. IsKeyOrphanage False IsTruncated False Blanks False
  3453. Category 21161 "20190301-20190331" Parent 21159 Levels 1487 OrderBy Drill 1469
  3454. Value "201903" Label "März/2019" Lastuse 20210108 SourceValue "201903"
  3455. Date 20190301 Filtered False Suppressed False Sign False HideValue False
  3456. IsKeyOrphanage False IsTruncated False Blanks False
  3457. Category 21163 "20190301" Parent 21161 Levels 1493 OrderBy Drill 1469 Value "20190301"
  3458. Label "01/03/2019" Lastuse 20201216 SourceValue "20190301" Date 20190301
  3459. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3460. IsTruncated False Blanks False
  3461. Category 21165 "20190302" Parent 21161 Levels 1493 OrderBy Drill 1469 Value "20190302"
  3462. Label "02/03/2019" Lastuse 20201216 SourceValue "20190302" Date 20190302
  3463. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3464. IsTruncated False Blanks False
  3465. Category 21167 "20190303" Parent 21161 Levels 1493 OrderBy Drill 1469 Value "20190303"
  3466. Label "03/03/2019" Lastuse 20201216 SourceValue "20190303" Date 20190303
  3467. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3468. IsTruncated False Blanks False
  3469. Category 21169 "20190304" Parent 21161 Levels 1493 OrderBy Drill 1469 Value "20190304"
  3470. Label "04/03/2019" Lastuse 20201216 SourceValue "20190304" Date 20190304
  3471. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3472. IsTruncated False Blanks False
  3473. Category 21171 "20190305" Parent 21161 Levels 1493 OrderBy Drill 1469 Value "20190305"
  3474. Label "05/03/2019" Lastuse 20201216 SourceValue "20190305" Date 20190305
  3475. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3476. IsTruncated False Blanks False
  3477. Category 21173 "20190306" Parent 21161 Levels 1493 OrderBy Drill 1469 Value "20190306"
  3478. Label "06/03/2019" Lastuse 20201216 SourceValue "20190306" Date 20190306
  3479. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3480. IsTruncated False Blanks False
  3481. Category 21175 "20190307" Parent 21161 Levels 1493 OrderBy Drill 1469 Value "20190307"
  3482. Label "07/03/2019" Lastuse 20201216 SourceValue "20190307" Date 20190307
  3483. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3484. IsTruncated False Blanks False
  3485. Category 21177 "20190308" Parent 21161 Levels 1493 OrderBy Drill 1469 Value "20190308"
  3486. Label "08/03/2019" Lastuse 20201216 SourceValue "20190308" Date 20190308
  3487. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3488. IsTruncated False Blanks False
  3489. Category 21179 "20190309" Parent 21161 Levels 1493 OrderBy Drill 1469 Value "20190309"
  3490. Label "09/03/2019" Lastuse 20201216 SourceValue "20190309" Date 20190309
  3491. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3492. IsTruncated False Blanks False
  3493. Category 21181 "20190310" Parent 21161 Levels 1493 OrderBy Drill 1469 Value "20190310"
  3494. Label "10/03/2019" Lastuse 20201216 SourceValue "20190310" Date 20190310
  3495. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3496. IsTruncated False Blanks False
  3497. Category 21183 "20190311" Parent 21161 Levels 1493 OrderBy Drill 1469 Value "20190311"
  3498. Label "11/03/2019" Lastuse 20201216 SourceValue "20190311" Date 20190311
  3499. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3500. IsTruncated False Blanks False
  3501. Category 21185 "20190312" Parent 21161 Levels 1493 OrderBy Drill 1469 Value "20190312"
  3502. Label "12/03/2019" Lastuse 20201216 SourceValue "20190312" Date 20190312
  3503. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3504. IsTruncated False Blanks False
  3505. Category 21187 "20190313" Parent 21161 Levels 1493 OrderBy Drill 1469 Value "20190313"
  3506. Label "13/03/2019" Lastuse 20201216 SourceValue "20190313" Date 20190313
  3507. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3508. IsTruncated False Blanks False
  3509. Category 21189 "20190314" Parent 21161 Levels 1493 OrderBy Drill 1469 Value "20190314"
  3510. Label "14/03/2019" Lastuse 20210108 SourceValue "20190314" Date 20190314
  3511. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3512. IsTruncated False Blanks False
  3513. Category 21191 "20190315" Parent 21161 Levels 1493 OrderBy Drill 1469 Value "20190315"
  3514. Label "15/03/2019" Lastuse 20201216 SourceValue "20190315" Date 20190315
  3515. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3516. IsTruncated False Blanks False
  3517. Category 21193 "20190316" Parent 21161 Levels 1493 OrderBy Drill 1469 Value "20190316"
  3518. Label "16/03/2019" Lastuse 20201216 SourceValue "20190316" Date 20190316
  3519. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3520. IsTruncated False Blanks False
  3521. Category 21195 "20190317" Parent 21161 Levels 1493 OrderBy Drill 1469 Value "20190317"
  3522. Label "17/03/2019" Lastuse 20201216 SourceValue "20190317" Date 20190317
  3523. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3524. IsTruncated False Blanks False
  3525. Category 21197 "20190318" Parent 21161 Levels 1493 OrderBy Drill 1469 Value "20190318"
  3526. Label "18/03/2019" Lastuse 20201216 SourceValue "20190318" Date 20190318
  3527. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3528. IsTruncated False Blanks False
  3529. Category 21199 "20190319" Parent 21161 Levels 1493 OrderBy Drill 1469 Value "20190319"
  3530. Label "19/03/2019" Lastuse 20201216 SourceValue "20190319" Date 20190319
  3531. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3532. IsTruncated False Blanks False
  3533. Category 21201 "20190320" Parent 21161 Levels 1493 OrderBy Drill 1469 Value "20190320"
  3534. Label "20/03/2019" Lastuse 20201216 SourceValue "20190320" Date 20190320
  3535. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3536. IsTruncated False Blanks False
  3537. Category 21203 "20190321" Parent 21161 Levels 1493 OrderBy Drill 1469 Value "20190321"
  3538. Label "21/03/2019" Lastuse 20201216 SourceValue "20190321" Date 20190321
  3539. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3540. IsTruncated False Blanks False
  3541. Category 21205 "20190322" Parent 21161 Levels 1493 OrderBy Drill 1469 Value "20190322"
  3542. Label "22/03/2019" Lastuse 20201216 SourceValue "20190322" Date 20190322
  3543. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3544. IsTruncated False Blanks False
  3545. Category 21207 "20190323" Parent 21161 Levels 1493 OrderBy Drill 1469 Value "20190323"
  3546. Label "23/03/2019" Lastuse 20201216 SourceValue "20190323" Date 20190323
  3547. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3548. IsTruncated False Blanks False
  3549. Category 21209 "20190324" Parent 21161 Levels 1493 OrderBy Drill 1469 Value "20190324"
  3550. Label "24/03/2019" Lastuse 20201216 SourceValue "20190324" Date 20190324
  3551. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3552. IsTruncated False Blanks False
  3553. Category 21211 "20190325" Parent 21161 Levels 1493 OrderBy Drill 1469 Value "20190325"
  3554. Label "25/03/2019" Lastuse 20201216 SourceValue "20190325" Date 20190325
  3555. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3556. IsTruncated False Blanks False
  3557. Category 21213 "20190326" Parent 21161 Levels 1493 OrderBy Drill 1469 Value "20190326"
  3558. Label "26/03/2019" Lastuse 20201216 SourceValue "20190326" Date 20190326
  3559. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3560. IsTruncated False Blanks False
  3561. Category 21215 "20190327" Parent 21161 Levels 1493 OrderBy Drill 1469 Value "20190327"
  3562. Label "27/03/2019" Lastuse 20201216 SourceValue "20190327" Date 20190327
  3563. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3564. IsTruncated False Blanks False
  3565. Category 21217 "20190328" Parent 21161 Levels 1493 OrderBy Drill 1469 Value "20190328"
  3566. Label "28/03/2019" Lastuse 20201216 SourceValue "20190328" Date 20190328
  3567. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3568. IsTruncated False Blanks False
  3569. Category 21219 "20190329" Parent 21161 Levels 1493 OrderBy Drill 1469 Value "20190329"
  3570. Label "29/03/2019" Lastuse 20201216 SourceValue "20190329" Date 20190329
  3571. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3572. IsTruncated False Blanks False
  3573. Category 21221 "20190330" Parent 21161 Levels 1493 OrderBy Drill 1469 Value "20190330"
  3574. Label "30/03/2019" Lastuse 20201216 SourceValue "20190330" Date 20190330
  3575. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3576. IsTruncated False Blanks False
  3577. Category 21223 "20190331" Parent 21161 Levels 1493 OrderBy Drill 1469 Value "20190331"
  3578. Label "31/03/2019" Lastuse 20201216 SourceValue "20190331" Date 20190331
  3579. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3580. IsTruncated False Blanks False
  3581. Category 15783 "20200101-20201231" Parent 1469 Levels 1475 OrderBy Drill 1469
  3582. Value "2020" Label "2020" Lastuse 20210108 SourceValue "2020" Date 20200101
  3583. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3584. IsTruncated False Blanks False
  3585. Category 15785 "20200101-20200331" Parent 15783 Levels 1481 OrderBy Drill 1469
  3586. Value "20200101" Label "1. Q. 2020" Lastuse 20210108 SourceValue "20200101"
  3587. Date 20200101 Filtered False Suppressed False Sign False HideValue False
  3588. IsKeyOrphanage False IsTruncated False Blanks False
  3589. Category 15787 "20200101-20200131" Parent 15785 Levels 1487 OrderBy Drill 1469
  3590. Value "202001" Label "Jan./2020" Lastuse 20210108 SourceValue "202001"
  3591. Date 20200101 Filtered False Suppressed False Sign False HideValue False
  3592. IsKeyOrphanage False IsTruncated False Blanks False
  3593. Category 15789 "20200101" Parent 15787 Levels 1493 OrderBy Drill 1469 Value "20200101"
  3594. Label "01/01/2020" Lastuse 20201216 SourceValue "20200101" Date 20200101
  3595. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3596. IsTruncated False Blanks False
  3597. Category 15791 "20200102" Parent 15787 Levels 1493 OrderBy Drill 1469 Value "20200102"
  3598. Label "02/01/2020" Lastuse 20201216 SourceValue "20200102" Date 20200102
  3599. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3600. IsTruncated False Blanks False
  3601. Category 15793 "20200103" Parent 15787 Levels 1493 OrderBy Drill 1469 Value "20200103"
  3602. Label "03/01/2020" Lastuse 20201216 SourceValue "20200103" Date 20200103
  3603. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3604. IsTruncated False Blanks False
  3605. Category 15795 "20200104" Parent 15787 Levels 1493 OrderBy Drill 1469 Value "20200104"
  3606. Label "04/01/2020" Lastuse 20201216 SourceValue "20200104" Date 20200104
  3607. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3608. IsTruncated False Blanks False
  3609. Category 15797 "20200105" Parent 15787 Levels 1493 OrderBy Drill 1469 Value "20200105"
  3610. Label "05/01/2020" Lastuse 20201216 SourceValue "20200105" Date 20200105
  3611. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3612. IsTruncated False Blanks False
  3613. Category 15799 "20200106" Parent 15787 Levels 1493 OrderBy Drill 1469 Value "20200106"
  3614. Label "06/01/2020" Lastuse 20201216 SourceValue "20200106" Date 20200106
  3615. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3616. IsTruncated False Blanks False
  3617. Category 15801 "20200107" Parent 15787 Levels 1493 OrderBy Drill 1469 Value "20200107"
  3618. Label "07/01/2020" Lastuse 20201216 SourceValue "20200107" Date 20200107
  3619. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3620. IsTruncated False Blanks False
  3621. Category 15803 "20200108" Parent 15787 Levels 1493 OrderBy Drill 1469 Value "20200108"
  3622. Label "08/01/2020" Lastuse 20201216 SourceValue "20200108" Date 20200108
  3623. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3624. IsTruncated False Blanks False
  3625. Category 15805 "20200109" Parent 15787 Levels 1493 OrderBy Drill 1469 Value "20200109"
  3626. Label "09/01/2020" Lastuse 20201216 SourceValue "20200109" Date 20200109
  3627. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3628. IsTruncated False Blanks False
  3629. Category 15807 "20200110" Parent 15787 Levels 1493 OrderBy Drill 1469 Value "20200110"
  3630. Label "10/01/2020" Lastuse 20201216 SourceValue "20200110" Date 20200110
  3631. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3632. IsTruncated False Blanks False
  3633. Category 15809 "20200111" Parent 15787 Levels 1493 OrderBy Drill 1469 Value "20200111"
  3634. Label "11/01/2020" Lastuse 20201216 SourceValue "20200111" Date 20200111
  3635. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3636. IsTruncated False Blanks False
  3637. Category 15811 "20200112" Parent 15787 Levels 1493 OrderBy Drill 1469 Value "20200112"
  3638. Label "12/01/2020" Lastuse 20201216 SourceValue "20200112" Date 20200112
  3639. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3640. IsTruncated False Blanks False
  3641. Category 15813 "20200113" Parent 15787 Levels 1493 OrderBy Drill 1469 Value "20200113"
  3642. Label "13/01/2020" Lastuse 20201216 SourceValue "20200113" Date 20200113
  3643. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3644. IsTruncated False Blanks False
  3645. Category 15815 "20200114" Parent 15787 Levels 1493 OrderBy Drill 1469 Value "20200114"
  3646. Label "14/01/2020" Lastuse 20201216 SourceValue "20200114" Date 20200114
  3647. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3648. IsTruncated False Blanks False
  3649. Category 15817 "20200115" Parent 15787 Levels 1493 OrderBy Drill 1469 Value "20200115"
  3650. Label "15/01/2020" Lastuse 20210108 SourceValue "20200115" Date 20200115
  3651. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3652. IsTruncated False Blanks False
  3653. Category 15819 "20200116" Parent 15787 Levels 1493 OrderBy Drill 1469 Value "20200116"
  3654. Label "16/01/2020" Lastuse 20201216 SourceValue "20200116" Date 20200116
  3655. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3656. IsTruncated False Blanks False
  3657. Category 15821 "20200117" Parent 15787 Levels 1493 OrderBy Drill 1469 Value "20200117"
  3658. Label "17/01/2020" Lastuse 20201216 SourceValue "20200117" Date 20200117
  3659. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3660. IsTruncated False Blanks False
  3661. Category 15823 "20200118" Parent 15787 Levels 1493 OrderBy Drill 1469 Value "20200118"
  3662. Label "18/01/2020" Lastuse 20201216 SourceValue "20200118" Date 20200118
  3663. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3664. IsTruncated False Blanks False
  3665. Category 15825 "20200119" Parent 15787 Levels 1493 OrderBy Drill 1469 Value "20200119"
  3666. Label "19/01/2020" Lastuse 20201216 SourceValue "20200119" Date 20200119
  3667. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3668. IsTruncated False Blanks False
  3669. Category 15827 "20200120" Parent 15787 Levels 1493 OrderBy Drill 1469 Value "20200120"
  3670. Label "20/01/2020" Lastuse 20210108 SourceValue "20200120" Date 20200120
  3671. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3672. IsTruncated False Blanks False
  3673. Category 15829 "20200121" Parent 15787 Levels 1493 OrderBy Drill 1469 Value "20200121"
  3674. Label "21/01/2020" Lastuse 20201216 SourceValue "20200121" Date 20200121
  3675. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3676. IsTruncated False Blanks False
  3677. Category 15831 "20200122" Parent 15787 Levels 1493 OrderBy Drill 1469 Value "20200122"
  3678. Label "22/01/2020" Lastuse 20201216 SourceValue "20200122" Date 20200122
  3679. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3680. IsTruncated False Blanks False
  3681. Category 15833 "20200123" Parent 15787 Levels 1493 OrderBy Drill 1469 Value "20200123"
  3682. Label "23/01/2020" Lastuse 20201216 SourceValue "20200123" Date 20200123
  3683. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3684. IsTruncated False Blanks False
  3685. Category 15835 "20200124" Parent 15787 Levels 1493 OrderBy Drill 1469 Value "20200124"
  3686. Label "24/01/2020" Lastuse 20201216 SourceValue "20200124" Date 20200124
  3687. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3688. IsTruncated False Blanks False
  3689. Category 15837 "20200125" Parent 15787 Levels 1493 OrderBy Drill 1469 Value "20200125"
  3690. Label "25/01/2020" Lastuse 20201216 SourceValue "20200125" Date 20200125
  3691. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3692. IsTruncated False Blanks False
  3693. Category 15839 "20200126" Parent 15787 Levels 1493 OrderBy Drill 1469 Value "20200126"
  3694. Label "26/01/2020" Lastuse 20201216 SourceValue "20200126" Date 20200126
  3695. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3696. IsTruncated False Blanks False
  3697. Category 15841 "20200127" Parent 15787 Levels 1493 OrderBy Drill 1469 Value "20200127"
  3698. Label "27/01/2020" Lastuse 20201216 SourceValue "20200127" Date 20200127
  3699. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3700. IsTruncated False Blanks False
  3701. Category 15843 "20200128" Parent 15787 Levels 1493 OrderBy Drill 1469 Value "20200128"
  3702. Label "28/01/2020" Lastuse 20201216 SourceValue "20200128" Date 20200128
  3703. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3704. IsTruncated False Blanks False
  3705. Category 15845 "20200129" Parent 15787 Levels 1493 OrderBy Drill 1469 Value "20200129"
  3706. Label "29/01/2020" Lastuse 20201216 SourceValue "20200129" Date 20200129
  3707. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3708. IsTruncated False Blanks False
  3709. Category 15847 "20200130" Parent 15787 Levels 1493 OrderBy Drill 1469 Value "20200130"
  3710. Label "30/01/2020" Lastuse 20201216 SourceValue "20200130" Date 20200130
  3711. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3712. IsTruncated False Blanks False
  3713. Category 15849 "20200131" Parent 15787 Levels 1493 OrderBy Drill 1469 Value "20200131"
  3714. Label "31/01/2020" Lastuse 20201216 SourceValue "20200131" Date 20200131
  3715. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3716. IsTruncated False Blanks False
  3717. Category 15851 "20200201-20200229" Parent 15785 Levels 1487 OrderBy Drill 1469
  3718. Value "202002" Label "Feb./2020" Lastuse 20201216 SourceValue "202002"
  3719. Date 20200201 Filtered False Suppressed False Sign False HideValue False
  3720. IsKeyOrphanage False IsTruncated False Blanks False
  3721. Category 15853 "20200201" Parent 15851 Levels 1493 OrderBy Drill 1469 Value "20200201"
  3722. Label "01/02/2020" Lastuse 20201216 SourceValue "20200201" Date 20200201
  3723. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3724. IsTruncated False Blanks False
  3725. Category 15855 "20200202" Parent 15851 Levels 1493 OrderBy Drill 1469 Value "20200202"
  3726. Label "02/02/2020" Lastuse 20201216 SourceValue "20200202" Date 20200202
  3727. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3728. IsTruncated False Blanks False
  3729. Category 15857 "20200203" Parent 15851 Levels 1493 OrderBy Drill 1469 Value "20200203"
  3730. Label "03/02/2020" Lastuse 20201216 SourceValue "20200203" Date 20200203
  3731. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3732. IsTruncated False Blanks False
  3733. Category 15859 "20200204" Parent 15851 Levels 1493 OrderBy Drill 1469 Value "20200204"
  3734. Label "04/02/2020" Lastuse 20201216 SourceValue "20200204" Date 20200204
  3735. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3736. IsTruncated False Blanks False
  3737. Category 15861 "20200205" Parent 15851 Levels 1493 OrderBy Drill 1469 Value "20200205"
  3738. Label "05/02/2020" Lastuse 20201216 SourceValue "20200205" Date 20200205
  3739. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3740. IsTruncated False Blanks False
  3741. Category 15863 "20200206" Parent 15851 Levels 1493 OrderBy Drill 1469 Value "20200206"
  3742. Label "06/02/2020" Lastuse 20201216 SourceValue "20200206" Date 20200206
  3743. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3744. IsTruncated False Blanks False
  3745. Category 15865 "20200207" Parent 15851 Levels 1493 OrderBy Drill 1469 Value "20200207"
  3746. Label "07/02/2020" Lastuse 20201216 SourceValue "20200207" Date 20200207
  3747. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3748. IsTruncated False Blanks False
  3749. Category 15867 "20200208" Parent 15851 Levels 1493 OrderBy Drill 1469 Value "20200208"
  3750. Label "08/02/2020" Lastuse 20201216 SourceValue "20200208" Date 20200208
  3751. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3752. IsTruncated False Blanks False
  3753. Category 15869 "20200209" Parent 15851 Levels 1493 OrderBy Drill 1469 Value "20200209"
  3754. Label "09/02/2020" Lastuse 20201216 SourceValue "20200209" Date 20200209
  3755. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3756. IsTruncated False Blanks False
  3757. Category 15871 "20200210" Parent 15851 Levels 1493 OrderBy Drill 1469 Value "20200210"
  3758. Label "10/02/2020" Lastuse 20201216 SourceValue "20200210" Date 20200210
  3759. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3760. IsTruncated False Blanks False
  3761. Category 15873 "20200211" Parent 15851 Levels 1493 OrderBy Drill 1469 Value "20200211"
  3762. Label "11/02/2020" Lastuse 20201216 SourceValue "20200211" Date 20200211
  3763. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3764. IsTruncated False Blanks False
  3765. Category 15875 "20200212" Parent 15851 Levels 1493 OrderBy Drill 1469 Value "20200212"
  3766. Label "12/02/2020" Lastuse 20201216 SourceValue "20200212" Date 20200212
  3767. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3768. IsTruncated False Blanks False
  3769. Category 15877 "20200213" Parent 15851 Levels 1493 OrderBy Drill 1469 Value "20200213"
  3770. Label "13/02/2020" Lastuse 20201216 SourceValue "20200213" Date 20200213
  3771. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3772. IsTruncated False Blanks False
  3773. Category 15879 "20200214" Parent 15851 Levels 1493 OrderBy Drill 1469 Value "20200214"
  3774. Label "14/02/2020" Lastuse 20201216 SourceValue "20200214" Date 20200214
  3775. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3776. IsTruncated False Blanks False
  3777. Category 15881 "20200215" Parent 15851 Levels 1493 OrderBy Drill 1469 Value "20200215"
  3778. Label "15/02/2020" Lastuse 20201216 SourceValue "20200215" Date 20200215
  3779. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3780. IsTruncated False Blanks False
  3781. Category 15883 "20200216" Parent 15851 Levels 1493 OrderBy Drill 1469 Value "20200216"
  3782. Label "16/02/2020" Lastuse 20201216 SourceValue "20200216" Date 20200216
  3783. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3784. IsTruncated False Blanks False
  3785. Category 15885 "20200217" Parent 15851 Levels 1493 OrderBy Drill 1469 Value "20200217"
  3786. Label "17/02/2020" Lastuse 20201216 SourceValue "20200217" Date 20200217
  3787. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3788. IsTruncated False Blanks False
  3789. Category 15887 "20200218" Parent 15851 Levels 1493 OrderBy Drill 1469 Value "20200218"
  3790. Label "18/02/2020" Lastuse 20201216 SourceValue "20200218" Date 20200218
  3791. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3792. IsTruncated False Blanks False
  3793. Category 15889 "20200219" Parent 15851 Levels 1493 OrderBy Drill 1469 Value "20200219"
  3794. Label "19/02/2020" Lastuse 20201216 SourceValue "20200219" Date 20200219
  3795. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3796. IsTruncated False Blanks False
  3797. Category 15891 "20200220" Parent 15851 Levels 1493 OrderBy Drill 1469 Value "20200220"
  3798. Label "20/02/2020" Lastuse 20201216 SourceValue "20200220" Date 20200220
  3799. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3800. IsTruncated False Blanks False
  3801. Category 15893 "20200221" Parent 15851 Levels 1493 OrderBy Drill 1469 Value "20200221"
  3802. Label "21/02/2020" Lastuse 20201216 SourceValue "20200221" Date 20200221
  3803. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3804. IsTruncated False Blanks False
  3805. Category 15895 "20200222" Parent 15851 Levels 1493 OrderBy Drill 1469 Value "20200222"
  3806. Label "22/02/2020" Lastuse 20201216 SourceValue "20200222" Date 20200222
  3807. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3808. IsTruncated False Blanks False
  3809. Category 15897 "20200223" Parent 15851 Levels 1493 OrderBy Drill 1469 Value "20200223"
  3810. Label "23/02/2020" Lastuse 20201216 SourceValue "20200223" Date 20200223
  3811. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3812. IsTruncated False Blanks False
  3813. Category 15899 "20200224" Parent 15851 Levels 1493 OrderBy Drill 1469 Value "20200224"
  3814. Label "24/02/2020" Lastuse 20201216 SourceValue "20200224" Date 20200224
  3815. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3816. IsTruncated False Blanks False
  3817. Category 15901 "20200225" Parent 15851 Levels 1493 OrderBy Drill 1469 Value "20200225"
  3818. Label "25/02/2020" Lastuse 20201216 SourceValue "20200225" Date 20200225
  3819. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3820. IsTruncated False Blanks False
  3821. Category 15903 "20200226" Parent 15851 Levels 1493 OrderBy Drill 1469 Value "20200226"
  3822. Label "26/02/2020" Lastuse 20201216 SourceValue "20200226" Date 20200226
  3823. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3824. IsTruncated False Blanks False
  3825. Category 15905 "20200227" Parent 15851 Levels 1493 OrderBy Drill 1469 Value "20200227"
  3826. Label "27/02/2020" Lastuse 20201216 SourceValue "20200227" Date 20200227
  3827. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3828. IsTruncated False Blanks False
  3829. Category 15907 "20200228" Parent 15851 Levels 1493 OrderBy Drill 1469 Value "20200228"
  3830. Label "28/02/2020" Lastuse 20201216 SourceValue "20200228" Date 20200228
  3831. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3832. IsTruncated False Blanks False
  3833. Category 15909 "20200229" Parent 15851 Levels 1493 OrderBy Drill 1469 Value "20200229"
  3834. Label "29/02/2020" Lastuse 20201216 SourceValue "20200229" Date 20200229
  3835. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3836. IsTruncated False Blanks False
  3837. Category 15911 "20200301-20200331" Parent 15785 Levels 1487 OrderBy Drill 1469
  3838. Value "202003" Label "März/2020" Lastuse 20201216 SourceValue "202003"
  3839. Date 20200301 Filtered False Suppressed False Sign False HideValue False
  3840. IsKeyOrphanage False IsTruncated False Blanks False
  3841. Category 15913 "20200301" Parent 15911 Levels 1493 OrderBy Drill 1469 Value "20200301"
  3842. Label "01/03/2020" Lastuse 20201216 SourceValue "20200301" Date 20200301
  3843. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3844. IsTruncated False Blanks False
  3845. Category 15915 "20200302" Parent 15911 Levels 1493 OrderBy Drill 1469 Value "20200302"
  3846. Label "02/03/2020" Lastuse 20201216 SourceValue "20200302" Date 20200302
  3847. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3848. IsTruncated False Blanks False
  3849. Category 15917 "20200303" Parent 15911 Levels 1493 OrderBy Drill 1469 Value "20200303"
  3850. Label "03/03/2020" Lastuse 20201216 SourceValue "20200303" Date 20200303
  3851. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3852. IsTruncated False Blanks False
  3853. Category 15919 "20200304" Parent 15911 Levels 1493 OrderBy Drill 1469 Value "20200304"
  3854. Label "04/03/2020" Lastuse 20201216 SourceValue "20200304" Date 20200304
  3855. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3856. IsTruncated False Blanks False
  3857. Category 15921 "20200305" Parent 15911 Levels 1493 OrderBy Drill 1469 Value "20200305"
  3858. Label "05/03/2020" Lastuse 20201216 SourceValue "20200305" Date 20200305
  3859. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3860. IsTruncated False Blanks False
  3861. Category 15923 "20200306" Parent 15911 Levels 1493 OrderBy Drill 1469 Value "20200306"
  3862. Label "06/03/2020" Lastuse 20201216 SourceValue "20200306" Date 20200306
  3863. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3864. IsTruncated False Blanks False
  3865. Category 15925 "20200307" Parent 15911 Levels 1493 OrderBy Drill 1469 Value "20200307"
  3866. Label "07/03/2020" Lastuse 20201216 SourceValue "20200307" Date 20200307
  3867. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3868. IsTruncated False Blanks False
  3869. Category 15927 "20200308" Parent 15911 Levels 1493 OrderBy Drill 1469 Value "20200308"
  3870. Label "08/03/2020" Lastuse 20201216 SourceValue "20200308" Date 20200308
  3871. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3872. IsTruncated False Blanks False
  3873. Category 15929 "20200309" Parent 15911 Levels 1493 OrderBy Drill 1469 Value "20200309"
  3874. Label "09/03/2020" Lastuse 20201216 SourceValue "20200309" Date 20200309
  3875. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3876. IsTruncated False Blanks False
  3877. Category 15931 "20200310" Parent 15911 Levels 1493 OrderBy Drill 1469 Value "20200310"
  3878. Label "10/03/2020" Lastuse 20201216 SourceValue "20200310" Date 20200310
  3879. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3880. IsTruncated False Blanks False
  3881. Category 15933 "20200311" Parent 15911 Levels 1493 OrderBy Drill 1469 Value "20200311"
  3882. Label "11/03/2020" Lastuse 20201216 SourceValue "20200311" Date 20200311
  3883. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3884. IsTruncated False Blanks False
  3885. Category 15935 "20200312" Parent 15911 Levels 1493 OrderBy Drill 1469 Value "20200312"
  3886. Label "12/03/2020" Lastuse 20201216 SourceValue "20200312" Date 20200312
  3887. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3888. IsTruncated False Blanks False
  3889. Category 15937 "20200313" Parent 15911 Levels 1493 OrderBy Drill 1469 Value "20200313"
  3890. Label "13/03/2020" Lastuse 20201216 SourceValue "20200313" Date 20200313
  3891. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3892. IsTruncated False Blanks False
  3893. Category 15939 "20200314" Parent 15911 Levels 1493 OrderBy Drill 1469 Value "20200314"
  3894. Label "14/03/2020" Lastuse 20201216 SourceValue "20200314" Date 20200314
  3895. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3896. IsTruncated False Blanks False
  3897. Category 15941 "20200315" Parent 15911 Levels 1493 OrderBy Drill 1469 Value "20200315"
  3898. Label "15/03/2020" Lastuse 20201216 SourceValue "20200315" Date 20200315
  3899. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3900. IsTruncated False Blanks False
  3901. Category 15943 "20200316" Parent 15911 Levels 1493 OrderBy Drill 1469 Value "20200316"
  3902. Label "16/03/2020" Lastuse 20201216 SourceValue "20200316" Date 20200316
  3903. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3904. IsTruncated False Blanks False
  3905. Category 15945 "20200317" Parent 15911 Levels 1493 OrderBy Drill 1469 Value "20200317"
  3906. Label "17/03/2020" Lastuse 20201216 SourceValue "20200317" Date 20200317
  3907. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3908. IsTruncated False Blanks False
  3909. Category 15947 "20200318" Parent 15911 Levels 1493 OrderBy Drill 1469 Value "20200318"
  3910. Label "18/03/2020" Lastuse 20201216 SourceValue "20200318" Date 20200318
  3911. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3912. IsTruncated False Blanks False
  3913. Category 15949 "20200319" Parent 15911 Levels 1493 OrderBy Drill 1469 Value "20200319"
  3914. Label "19/03/2020" Lastuse 20201216 SourceValue "20200319" Date 20200319
  3915. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3916. IsTruncated False Blanks False
  3917. Category 15951 "20200320" Parent 15911 Levels 1493 OrderBy Drill 1469 Value "20200320"
  3918. Label "20/03/2020" Lastuse 20201216 SourceValue "20200320" Date 20200320
  3919. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3920. IsTruncated False Blanks False
  3921. Category 15953 "20200321" Parent 15911 Levels 1493 OrderBy Drill 1469 Value "20200321"
  3922. Label "21/03/2020" Lastuse 20201216 SourceValue "20200321" Date 20200321
  3923. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3924. IsTruncated False Blanks False
  3925. Category 15955 "20200322" Parent 15911 Levels 1493 OrderBy Drill 1469 Value "20200322"
  3926. Label "22/03/2020" Lastuse 20201216 SourceValue "20200322" Date 20200322
  3927. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3928. IsTruncated False Blanks False
  3929. Category 15957 "20200323" Parent 15911 Levels 1493 OrderBy Drill 1469 Value "20200323"
  3930. Label "23/03/2020" Lastuse 20201216 SourceValue "20200323" Date 20200323
  3931. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3932. IsTruncated False Blanks False
  3933. Category 15959 "20200324" Parent 15911 Levels 1493 OrderBy Drill 1469 Value "20200324"
  3934. Label "24/03/2020" Lastuse 20201216 SourceValue "20200324" Date 20200324
  3935. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3936. IsTruncated False Blanks False
  3937. Category 15961 "20200325" Parent 15911 Levels 1493 OrderBy Drill 1469 Value "20200325"
  3938. Label "25/03/2020" Lastuse 20201216 SourceValue "20200325" Date 20200325
  3939. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3940. IsTruncated False Blanks False
  3941. Category 15963 "20200326" Parent 15911 Levels 1493 OrderBy Drill 1469 Value "20200326"
  3942. Label "26/03/2020" Lastuse 20201216 SourceValue "20200326" Date 20200326
  3943. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3944. IsTruncated False Blanks False
  3945. Category 15965 "20200327" Parent 15911 Levels 1493 OrderBy Drill 1469 Value "20200327"
  3946. Label "27/03/2020" Lastuse 20201216 SourceValue "20200327" Date 20200327
  3947. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3948. IsTruncated False Blanks False
  3949. Category 15967 "20200328" Parent 15911 Levels 1493 OrderBy Drill 1469 Value "20200328"
  3950. Label "28/03/2020" Lastuse 20201216 SourceValue "20200328" Date 20200328
  3951. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3952. IsTruncated False Blanks False
  3953. Category 15969 "20200329" Parent 15911 Levels 1493 OrderBy Drill 1469 Value "20200329"
  3954. Label "29/03/2020" Lastuse 20201216 SourceValue "20200329" Date 20200329
  3955. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3956. IsTruncated False Blanks False
  3957. Category 15971 "20200330" Parent 15911 Levels 1493 OrderBy Drill 1469 Value "20200330"
  3958. Label "30/03/2020" Lastuse 20201216 SourceValue "20200330" Date 20200330
  3959. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3960. IsTruncated False Blanks False
  3961. Category 15973 "20200331" Parent 15911 Levels 1493 OrderBy Drill 1469 Value "20200331"
  3962. Label "31/03/2020" Lastuse 20201216 SourceValue "20200331" Date 20200331
  3963. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3964. IsTruncated False Blanks False
  3965. Category 15975 "20200401-20200630" Parent 15783 Levels 1481 OrderBy Drill 1469
  3966. Value "20200401" Label "2. Q. 2020" Lastuse 20210108 SourceValue "20200401"
  3967. Date 20200401 Filtered False Suppressed False Sign False HideValue False
  3968. IsKeyOrphanage False IsTruncated False Blanks False
  3969. Category 15977 "20200401-20200430" Parent 15975 Levels 1487 OrderBy Drill 1469
  3970. Value "202004" Label "Apr./2020" Lastuse 20210108 SourceValue "202004"
  3971. Date 20200401 Filtered False Suppressed False Sign False HideValue False
  3972. IsKeyOrphanage False IsTruncated False Blanks False
  3973. Category 15979 "20200401" Parent 15977 Levels 1493 OrderBy Drill 1469 Value "20200401"
  3974. Label "01/04/2020" Lastuse 20201216 SourceValue "20200401" Date 20200401
  3975. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3976. IsTruncated False Blanks False
  3977. Category 15981 "20200402" Parent 15977 Levels 1493 OrderBy Drill 1469 Value "20200402"
  3978. Label "02/04/2020" Lastuse 20201216 SourceValue "20200402" Date 20200402
  3979. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3980. IsTruncated False Blanks False
  3981. Category 15983 "20200403" Parent 15977 Levels 1493 OrderBy Drill 1469 Value "20200403"
  3982. Label "03/04/2020" Lastuse 20201216 SourceValue "20200403" Date 20200403
  3983. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3984. IsTruncated False Blanks False
  3985. Category 15985 "20200404" Parent 15977 Levels 1493 OrderBy Drill 1469 Value "20200404"
  3986. Label "04/04/2020" Lastuse 20201216 SourceValue "20200404" Date 20200404
  3987. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3988. IsTruncated False Blanks False
  3989. Category 15987 "20200405" Parent 15977 Levels 1493 OrderBy Drill 1469 Value "20200405"
  3990. Label "05/04/2020" Lastuse 20201216 SourceValue "20200405" Date 20200405
  3991. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3992. IsTruncated False Blanks False
  3993. Category 15989 "20200406" Parent 15977 Levels 1493 OrderBy Drill 1469 Value "20200406"
  3994. Label "06/04/2020" Lastuse 20201216 SourceValue "20200406" Date 20200406
  3995. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3996. IsTruncated False Blanks False
  3997. Category 15991 "20200407" Parent 15977 Levels 1493 OrderBy Drill 1469 Value "20200407"
  3998. Label "07/04/2020" Lastuse 20201216 SourceValue "20200407" Date 20200407
  3999. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4000. IsTruncated False Blanks False
  4001. Category 15993 "20200408" Parent 15977 Levels 1493 OrderBy Drill 1469 Value "20200408"
  4002. Label "08/04/2020" Lastuse 20201216 SourceValue "20200408" Date 20200408
  4003. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4004. IsTruncated False Blanks False
  4005. Category 15995 "20200409" Parent 15977 Levels 1493 OrderBy Drill 1469 Value "20200409"
  4006. Label "09/04/2020" Lastuse 20201216 SourceValue "20200409" Date 20200409
  4007. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4008. IsTruncated False Blanks False
  4009. Category 15997 "20200410" Parent 15977 Levels 1493 OrderBy Drill 1469 Value "20200410"
  4010. Label "10/04/2020" Lastuse 20201216 SourceValue "20200410" Date 20200410
  4011. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4012. IsTruncated False Blanks False
  4013. Category 15999 "20200411" Parent 15977 Levels 1493 OrderBy Drill 1469 Value "20200411"
  4014. Label "11/04/2020" Lastuse 20201216 SourceValue "20200411" Date 20200411
  4015. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4016. IsTruncated False Blanks False
  4017. Category 16001 "20200412" Parent 15977 Levels 1493 OrderBy Drill 1469 Value "20200412"
  4018. Label "12/04/2020" Lastuse 20201216 SourceValue "20200412" Date 20200412
  4019. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4020. IsTruncated False Blanks False
  4021. Category 16003 "20200413" Parent 15977 Levels 1493 OrderBy Drill 1469 Value "20200413"
  4022. Label "13/04/2020" Lastuse 20201216 SourceValue "20200413" Date 20200413
  4023. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4024. IsTruncated False Blanks False
  4025. Category 16005 "20200414" Parent 15977 Levels 1493 OrderBy Drill 1469 Value "20200414"
  4026. Label "14/04/2020" Lastuse 20210108 SourceValue "20200414" Date 20200414
  4027. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4028. IsTruncated False Blanks False
  4029. Category 16007 "20200415" Parent 15977 Levels 1493 OrderBy Drill 1469 Value "20200415"
  4030. Label "15/04/2020" Lastuse 20201216 SourceValue "20200415" Date 20200415
  4031. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4032. IsTruncated False Blanks False
  4033. Category 16009 "20200416" Parent 15977 Levels 1493 OrderBy Drill 1469 Value "20200416"
  4034. Label "16/04/2020" Lastuse 20201216 SourceValue "20200416" Date 20200416
  4035. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4036. IsTruncated False Blanks False
  4037. Category 16011 "20200417" Parent 15977 Levels 1493 OrderBy Drill 1469 Value "20200417"
  4038. Label "17/04/2020" Lastuse 20201216 SourceValue "20200417" Date 20200417
  4039. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4040. IsTruncated False Blanks False
  4041. Category 16013 "20200418" Parent 15977 Levels 1493 OrderBy Drill 1469 Value "20200418"
  4042. Label "18/04/2020" Lastuse 20201216 SourceValue "20200418" Date 20200418
  4043. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4044. IsTruncated False Blanks False
  4045. Category 16015 "20200419" Parent 15977 Levels 1493 OrderBy Drill 1469 Value "20200419"
  4046. Label "19/04/2020" Lastuse 20201216 SourceValue "20200419" Date 20200419
  4047. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4048. IsTruncated False Blanks False
  4049. Category 16017 "20200420" Parent 15977 Levels 1493 OrderBy Drill 1469 Value "20200420"
  4050. Label "20/04/2020" Lastuse 20201216 SourceValue "20200420" Date 20200420
  4051. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4052. IsTruncated False Blanks False
  4053. Category 16019 "20200421" Parent 15977 Levels 1493 OrderBy Drill 1469 Value "20200421"
  4054. Label "21/04/2020" Lastuse 20201216 SourceValue "20200421" Date 20200421
  4055. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4056. IsTruncated False Blanks False
  4057. Category 16021 "20200422" Parent 15977 Levels 1493 OrderBy Drill 1469 Value "20200422"
  4058. Label "22/04/2020" Lastuse 20201216 SourceValue "20200422" Date 20200422
  4059. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4060. IsTruncated False Blanks False
  4061. Category 16023 "20200423" Parent 15977 Levels 1493 OrderBy Drill 1469 Value "20200423"
  4062. Label "23/04/2020" Lastuse 20201216 SourceValue "20200423" Date 20200423
  4063. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4064. IsTruncated False Blanks False
  4065. Category 16025 "20200424" Parent 15977 Levels 1493 OrderBy Drill 1469 Value "20200424"
  4066. Label "24/04/2020" Lastuse 20201216 SourceValue "20200424" Date 20200424
  4067. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4068. IsTruncated False Blanks False
  4069. Category 16027 "20200425" Parent 15977 Levels 1493 OrderBy Drill 1469 Value "20200425"
  4070. Label "25/04/2020" Lastuse 20201216 SourceValue "20200425" Date 20200425
  4071. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4072. IsTruncated False Blanks False
  4073. Category 16029 "20200426" Parent 15977 Levels 1493 OrderBy Drill 1469 Value "20200426"
  4074. Label "26/04/2020" Lastuse 20201216 SourceValue "20200426" Date 20200426
  4075. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4076. IsTruncated False Blanks False
  4077. Category 16031 "20200427" Parent 15977 Levels 1493 OrderBy Drill 1469 Value "20200427"
  4078. Label "27/04/2020" Lastuse 20201216 SourceValue "20200427" Date 20200427
  4079. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4080. IsTruncated False Blanks False
  4081. Category 16033 "20200428" Parent 15977 Levels 1493 OrderBy Drill 1469 Value "20200428"
  4082. Label "28/04/2020" Lastuse 20201216 SourceValue "20200428" Date 20200428
  4083. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4084. IsTruncated False Blanks False
  4085. Category 16035 "20200429" Parent 15977 Levels 1493 OrderBy Drill 1469 Value "20200429"
  4086. Label "29/04/2020" Lastuse 20201216 SourceValue "20200429" Date 20200429
  4087. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4088. IsTruncated False Blanks False
  4089. Category 16037 "20200430" Parent 15977 Levels 1493 OrderBy Drill 1469 Value "20200430"
  4090. Label "30/04/2020" Lastuse 20201216 SourceValue "20200430" Date 20200430
  4091. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4092. IsTruncated False Blanks False
  4093. Category 16039 "20200501-20200531" Parent 15975 Levels 1487 OrderBy Drill 1469
  4094. Value "202005" Label "Mai/2020" Lastuse 20201216 SourceValue "202005" Date 20200501
  4095. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4096. IsTruncated False Blanks False
  4097. Category 16041 "20200501" Parent 16039 Levels 1493 OrderBy Drill 1469 Value "20200501"
  4098. Label "01/05/2020" Lastuse 20201216 SourceValue "20200501" Date 20200501
  4099. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4100. IsTruncated False Blanks False
  4101. Category 16043 "20200502" Parent 16039 Levels 1493 OrderBy Drill 1469 Value "20200502"
  4102. Label "02/05/2020" Lastuse 20201216 SourceValue "20200502" Date 20200502
  4103. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4104. IsTruncated False Blanks False
  4105. Category 16045 "20200503" Parent 16039 Levels 1493 OrderBy Drill 1469 Value "20200503"
  4106. Label "03/05/2020" Lastuse 20201216 SourceValue "20200503" Date 20200503
  4107. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4108. IsTruncated False Blanks False
  4109. Category 16047 "20200504" Parent 16039 Levels 1493 OrderBy Drill 1469 Value "20200504"
  4110. Label "04/05/2020" Lastuse 20201216 SourceValue "20200504" Date 20200504
  4111. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4112. IsTruncated False Blanks False
  4113. Category 16049 "20200505" Parent 16039 Levels 1493 OrderBy Drill 1469 Value "20200505"
  4114. Label "05/05/2020" Lastuse 20201216 SourceValue "20200505" Date 20200505
  4115. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4116. IsTruncated False Blanks False
  4117. Category 16051 "20200506" Parent 16039 Levels 1493 OrderBy Drill 1469 Value "20200506"
  4118. Label "06/05/2020" Lastuse 20201216 SourceValue "20200506" Date 20200506
  4119. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4120. IsTruncated False Blanks False
  4121. Category 16053 "20200507" Parent 16039 Levels 1493 OrderBy Drill 1469 Value "20200507"
  4122. Label "07/05/2020" Lastuse 20201216 SourceValue "20200507" Date 20200507
  4123. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4124. IsTruncated False Blanks False
  4125. Category 16055 "20200508" Parent 16039 Levels 1493 OrderBy Drill 1469 Value "20200508"
  4126. Label "08/05/2020" Lastuse 20201216 SourceValue "20200508" Date 20200508
  4127. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4128. IsTruncated False Blanks False
  4129. Category 16057 "20200509" Parent 16039 Levels 1493 OrderBy Drill 1469 Value "20200509"
  4130. Label "09/05/2020" Lastuse 20201216 SourceValue "20200509" Date 20200509
  4131. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4132. IsTruncated False Blanks False
  4133. Category 16059 "20200510" Parent 16039 Levels 1493 OrderBy Drill 1469 Value "20200510"
  4134. Label "10/05/2020" Lastuse 20201216 SourceValue "20200510" Date 20200510
  4135. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4136. IsTruncated False Blanks False
  4137. Category 16061 "20200511" Parent 16039 Levels 1493 OrderBy Drill 1469 Value "20200511"
  4138. Label "11/05/2020" Lastuse 20201216 SourceValue "20200511" Date 20200511
  4139. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4140. IsTruncated False Blanks False
  4141. Category 16063 "20200512" Parent 16039 Levels 1493 OrderBy Drill 1469 Value "20200512"
  4142. Label "12/05/2020" Lastuse 20201216 SourceValue "20200512" Date 20200512
  4143. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4144. IsTruncated False Blanks False
  4145. Category 16065 "20200513" Parent 16039 Levels 1493 OrderBy Drill 1469 Value "20200513"
  4146. Label "13/05/2020" Lastuse 20201216 SourceValue "20200513" Date 20200513
  4147. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4148. IsTruncated False Blanks False
  4149. Category 16067 "20200514" Parent 16039 Levels 1493 OrderBy Drill 1469 Value "20200514"
  4150. Label "14/05/2020" Lastuse 20201216 SourceValue "20200514" Date 20200514
  4151. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4152. IsTruncated False Blanks False
  4153. Category 16069 "20200515" Parent 16039 Levels 1493 OrderBy Drill 1469 Value "20200515"
  4154. Label "15/05/2020" Lastuse 20201216 SourceValue "20200515" Date 20200515
  4155. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4156. IsTruncated False Blanks False
  4157. Category 16071 "20200516" Parent 16039 Levels 1493 OrderBy Drill 1469 Value "20200516"
  4158. Label "16/05/2020" Lastuse 20201216 SourceValue "20200516" Date 20200516
  4159. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4160. IsTruncated False Blanks False
  4161. Category 16073 "20200517" Parent 16039 Levels 1493 OrderBy Drill 1469 Value "20200517"
  4162. Label "17/05/2020" Lastuse 20201216 SourceValue "20200517" Date 20200517
  4163. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4164. IsTruncated False Blanks False
  4165. Category 16075 "20200518" Parent 16039 Levels 1493 OrderBy Drill 1469 Value "20200518"
  4166. Label "18/05/2020" Lastuse 20201216 SourceValue "20200518" Date 20200518
  4167. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4168. IsTruncated False Blanks False
  4169. Category 16077 "20200519" Parent 16039 Levels 1493 OrderBy Drill 1469 Value "20200519"
  4170. Label "19/05/2020" Lastuse 20201216 SourceValue "20200519" Date 20200519
  4171. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4172. IsTruncated False Blanks False
  4173. Category 16079 "20200520" Parent 16039 Levels 1493 OrderBy Drill 1469 Value "20200520"
  4174. Label "20/05/2020" Lastuse 20201216 SourceValue "20200520" Date 20200520
  4175. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4176. IsTruncated False Blanks False
  4177. Category 16081 "20200521" Parent 16039 Levels 1493 OrderBy Drill 1469 Value "20200521"
  4178. Label "21/05/2020" Lastuse 20201216 SourceValue "20200521" Date 20200521
  4179. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4180. IsTruncated False Blanks False
  4181. Category 16083 "20200522" Parent 16039 Levels 1493 OrderBy Drill 1469 Value "20200522"
  4182. Label "22/05/2020" Lastuse 20201216 SourceValue "20200522" Date 20200522
  4183. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4184. IsTruncated False Blanks False
  4185. Category 16085 "20200523" Parent 16039 Levels 1493 OrderBy Drill 1469 Value "20200523"
  4186. Label "23/05/2020" Lastuse 20201216 SourceValue "20200523" Date 20200523
  4187. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4188. IsTruncated False Blanks False
  4189. Category 16087 "20200524" Parent 16039 Levels 1493 OrderBy Drill 1469 Value "20200524"
  4190. Label "24/05/2020" Lastuse 20201216 SourceValue "20200524" Date 20200524
  4191. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4192. IsTruncated False Blanks False
  4193. Category 16089 "20200525" Parent 16039 Levels 1493 OrderBy Drill 1469 Value "20200525"
  4194. Label "25/05/2020" Lastuse 20201216 SourceValue "20200525" Date 20200525
  4195. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4196. IsTruncated False Blanks False
  4197. Category 16091 "20200526" Parent 16039 Levels 1493 OrderBy Drill 1469 Value "20200526"
  4198. Label "26/05/2020" Lastuse 20201216 SourceValue "20200526" Date 20200526
  4199. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4200. IsTruncated False Blanks False
  4201. Category 16093 "20200527" Parent 16039 Levels 1493 OrderBy Drill 1469 Value "20200527"
  4202. Label "27/05/2020" Lastuse 20201216 SourceValue "20200527" Date 20200527
  4203. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4204. IsTruncated False Blanks False
  4205. Category 16095 "20200528" Parent 16039 Levels 1493 OrderBy Drill 1469 Value "20200528"
  4206. Label "28/05/2020" Lastuse 20201216 SourceValue "20200528" Date 20200528
  4207. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4208. IsTruncated False Blanks False
  4209. Category 16097 "20200529" Parent 16039 Levels 1493 OrderBy Drill 1469 Value "20200529"
  4210. Label "29/05/2020" Lastuse 20201216 SourceValue "20200529" Date 20200529
  4211. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4212. IsTruncated False Blanks False
  4213. Category 16099 "20200530" Parent 16039 Levels 1493 OrderBy Drill 1469 Value "20200530"
  4214. Label "30/05/2020" Lastuse 20201216 SourceValue "20200530" Date 20200530
  4215. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4216. IsTruncated False Blanks False
  4217. Category 16101 "20200531" Parent 16039 Levels 1493 OrderBy Drill 1469 Value "20200531"
  4218. Label "31/05/2020" Lastuse 20201216 SourceValue "20200531" Date 20200531
  4219. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4220. IsTruncated False Blanks False
  4221. Category 16103 "20200601-20200630" Parent 15975 Levels 1487 OrderBy Drill 1469
  4222. Value "202006" Label "Juni/2020" Lastuse 20210108 SourceValue "202006"
  4223. Date 20200601 Filtered False Suppressed False Sign False HideValue False
  4224. IsKeyOrphanage False IsTruncated False Blanks False
  4225. Category 16105 "20200601" Parent 16103 Levels 1493 OrderBy Drill 1469 Value "20200601"
  4226. Label "01/06/2020" Lastuse 20201216 SourceValue "20200601" Date 20200601
  4227. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4228. IsTruncated False Blanks False
  4229. Category 16107 "20200602" Parent 16103 Levels 1493 OrderBy Drill 1469 Value "20200602"
  4230. Label "02/06/2020" Lastuse 20201216 SourceValue "20200602" Date 20200602
  4231. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4232. IsTruncated False Blanks False
  4233. Category 16109 "20200603" Parent 16103 Levels 1493 OrderBy Drill 1469 Value "20200603"
  4234. Label "03/06/2020" Lastuse 20201216 SourceValue "20200603" Date 20200603
  4235. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4236. IsTruncated False Blanks False
  4237. Category 16111 "20200604" Parent 16103 Levels 1493 OrderBy Drill 1469 Value "20200604"
  4238. Label "04/06/2020" Lastuse 20201216 SourceValue "20200604" Date 20200604
  4239. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4240. IsTruncated False Blanks False
  4241. Category 16113 "20200605" Parent 16103 Levels 1493 OrderBy Drill 1469 Value "20200605"
  4242. Label "05/06/2020" Lastuse 20201216 SourceValue "20200605" Date 20200605
  4243. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4244. IsTruncated False Blanks False
  4245. Category 16115 "20200606" Parent 16103 Levels 1493 OrderBy Drill 1469 Value "20200606"
  4246. Label "06/06/2020" Lastuse 20201216 SourceValue "20200606" Date 20200606
  4247. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4248. IsTruncated False Blanks False
  4249. Category 16117 "20200607" Parent 16103 Levels 1493 OrderBy Drill 1469 Value "20200607"
  4250. Label "07/06/2020" Lastuse 20201216 SourceValue "20200607" Date 20200607
  4251. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4252. IsTruncated False Blanks False
  4253. Category 16119 "20200608" Parent 16103 Levels 1493 OrderBy Drill 1469 Value "20200608"
  4254. Label "08/06/2020" Lastuse 20201216 SourceValue "20200608" Date 20200608
  4255. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4256. IsTruncated False Blanks False
  4257. Category 16121 "20200609" Parent 16103 Levels 1493 OrderBy Drill 1469 Value "20200609"
  4258. Label "09/06/2020" Lastuse 20201216 SourceValue "20200609" Date 20200609
  4259. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4260. IsTruncated False Blanks False
  4261. Category 16123 "20200610" Parent 16103 Levels 1493 OrderBy Drill 1469 Value "20200610"
  4262. Label "10/06/2020" Lastuse 20201216 SourceValue "20200610" Date 20200610
  4263. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4264. IsTruncated False Blanks False
  4265. Category 16125 "20200611" Parent 16103 Levels 1493 OrderBy Drill 1469 Value "20200611"
  4266. Label "11/06/2020" Lastuse 20201216 SourceValue "20200611" Date 20200611
  4267. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4268. IsTruncated False Blanks False
  4269. Category 16127 "20200612" Parent 16103 Levels 1493 OrderBy Drill 1469 Value "20200612"
  4270. Label "12/06/2020" Lastuse 20201216 SourceValue "20200612" Date 20200612
  4271. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4272. IsTruncated False Blanks False
  4273. Category 16129 "20200613" Parent 16103 Levels 1493 OrderBy Drill 1469 Value "20200613"
  4274. Label "13/06/2020" Lastuse 20201216 SourceValue "20200613" Date 20200613
  4275. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4276. IsTruncated False Blanks False
  4277. Category 16131 "20200614" Parent 16103 Levels 1493 OrderBy Drill 1469 Value "20200614"
  4278. Label "14/06/2020" Lastuse 20201216 SourceValue "20200614" Date 20200614
  4279. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4280. IsTruncated False Blanks False
  4281. Category 16133 "20200615" Parent 16103 Levels 1493 OrderBy Drill 1469 Value "20200615"
  4282. Label "15/06/2020" Lastuse 20201216 SourceValue "20200615" Date 20200615
  4283. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4284. IsTruncated False Blanks False
  4285. Category 16135 "20200616" Parent 16103 Levels 1493 OrderBy Drill 1469 Value "20200616"
  4286. Label "16/06/2020" Lastuse 20201216 SourceValue "20200616" Date 20200616
  4287. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4288. IsTruncated False Blanks False
  4289. Category 16137 "20200617" Parent 16103 Levels 1493 OrderBy Drill 1469 Value "20200617"
  4290. Label "17/06/2020" Lastuse 20210108 SourceValue "20200617" Date 20200617
  4291. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4292. IsTruncated False Blanks False
  4293. Category 16139 "20200618" Parent 16103 Levels 1493 OrderBy Drill 1469 Value "20200618"
  4294. Label "18/06/2020" Lastuse 20201216 SourceValue "20200618" Date 20200618
  4295. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4296. IsTruncated False Blanks False
  4297. Category 16141 "20200619" Parent 16103 Levels 1493 OrderBy Drill 1469 Value "20200619"
  4298. Label "19/06/2020" Lastuse 20201216 SourceValue "20200619" Date 20200619
  4299. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4300. IsTruncated False Blanks False
  4301. Category 16143 "20200620" Parent 16103 Levels 1493 OrderBy Drill 1469 Value "20200620"
  4302. Label "20/06/2020" Lastuse 20201216 SourceValue "20200620" Date 20200620
  4303. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4304. IsTruncated False Blanks False
  4305. Category 16145 "20200621" Parent 16103 Levels 1493 OrderBy Drill 1469 Value "20200621"
  4306. Label "21/06/2020" Lastuse 20201216 SourceValue "20200621" Date 20200621
  4307. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4308. IsTruncated False Blanks False
  4309. Category 16147 "20200622" Parent 16103 Levels 1493 OrderBy Drill 1469 Value "20200622"
  4310. Label "22/06/2020" Lastuse 20201216 SourceValue "20200622" Date 20200622
  4311. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4312. IsTruncated False Blanks False
  4313. Category 16149 "20200623" Parent 16103 Levels 1493 OrderBy Drill 1469 Value "20200623"
  4314. Label "23/06/2020" Lastuse 20201216 SourceValue "20200623" Date 20200623
  4315. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4316. IsTruncated False Blanks False
  4317. Category 16151 "20200624" Parent 16103 Levels 1493 OrderBy Drill 1469 Value "20200624"
  4318. Label "24/06/2020" Lastuse 20201216 SourceValue "20200624" Date 20200624
  4319. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4320. IsTruncated False Blanks False
  4321. Category 16153 "20200625" Parent 16103 Levels 1493 OrderBy Drill 1469 Value "20200625"
  4322. Label "25/06/2020" Lastuse 20201216 SourceValue "20200625" Date 20200625
  4323. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4324. IsTruncated False Blanks False
  4325. Category 16155 "20200626" Parent 16103 Levels 1493 OrderBy Drill 1469 Value "20200626"
  4326. Label "26/06/2020" Lastuse 20201216 SourceValue "20200626" Date 20200626
  4327. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4328. IsTruncated False Blanks False
  4329. Category 16157 "20200627" Parent 16103 Levels 1493 OrderBy Drill 1469 Value "20200627"
  4330. Label "27/06/2020" Lastuse 20201216 SourceValue "20200627" Date 20200627
  4331. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4332. IsTruncated False Blanks False
  4333. Category 16159 "20200628" Parent 16103 Levels 1493 OrderBy Drill 1469 Value "20200628"
  4334. Label "28/06/2020" Lastuse 20201216 SourceValue "20200628" Date 20200628
  4335. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4336. IsTruncated False Blanks False
  4337. Category 16161 "20200629" Parent 16103 Levels 1493 OrderBy Drill 1469 Value "20200629"
  4338. Label "29/06/2020" Lastuse 20201216 SourceValue "20200629" Date 20200629
  4339. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4340. IsTruncated False Blanks False
  4341. Category 16163 "20200630" Parent 16103 Levels 1493 OrderBy Drill 1469 Value "20200630"
  4342. Label "30/06/2020" Lastuse 20201216 SourceValue "20200630" Date 20200630
  4343. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4344. IsTruncated False Blanks False
  4345. Category 16165 "20200701-20200930" Parent 15783 Levels 1481 OrderBy Drill 1469
  4346. Value "20200701" Label "3. Q. 2020" Lastuse 20210108 SourceValue "20200701"
  4347. Date 20200701 Filtered False Suppressed False Sign False HideValue False
  4348. IsKeyOrphanage False IsTruncated False Blanks False
  4349. Category 16167 "20200701-20200731" Parent 16165 Levels 1487 OrderBy Drill 1469
  4350. Value "202007" Label "Juli/2020" Lastuse 20210108 SourceValue "202007"
  4351. Date 20200701 Filtered False Suppressed False Sign False HideValue False
  4352. IsKeyOrphanage False IsTruncated False Blanks False
  4353. Category 16169 "20200701" Parent 16167 Levels 1493 OrderBy Drill 1469 Value "20200701"
  4354. Label "01/07/2020" Lastuse 20201216 SourceValue "20200701" Date 20200701
  4355. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4356. IsTruncated False Blanks False
  4357. Category 16171 "20200702" Parent 16167 Levels 1493 OrderBy Drill 1469 Value "20200702"
  4358. Label "02/07/2020" Lastuse 20201216 SourceValue "20200702" Date 20200702
  4359. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4360. IsTruncated False Blanks False
  4361. Category 16173 "20200703" Parent 16167 Levels 1493 OrderBy Drill 1469 Value "20200703"
  4362. Label "03/07/2020" Lastuse 20210108 SourceValue "20200703" Date 20200703
  4363. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4364. IsTruncated False Blanks False
  4365. Category 16175 "20200704" Parent 16167 Levels 1493 OrderBy Drill 1469 Value "20200704"
  4366. Label "04/07/2020" Lastuse 20201216 SourceValue "20200704" Date 20200704
  4367. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4368. IsTruncated False Blanks False
  4369. Category 16177 "20200705" Parent 16167 Levels 1493 OrderBy Drill 1469 Value "20200705"
  4370. Label "05/07/2020" Lastuse 20201216 SourceValue "20200705" Date 20200705
  4371. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4372. IsTruncated False Blanks False
  4373. Category 16179 "20200706" Parent 16167 Levels 1493 OrderBy Drill 1469 Value "20200706"
  4374. Label "06/07/2020" Lastuse 20201216 SourceValue "20200706" Date 20200706
  4375. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4376. IsTruncated False Blanks False
  4377. Category 16181 "20200707" Parent 16167 Levels 1493 OrderBy Drill 1469 Value "20200707"
  4378. Label "07/07/2020" Lastuse 20210108 SourceValue "20200707" Date 20200707
  4379. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4380. IsTruncated False Blanks False
  4381. Category 16183 "20200708" Parent 16167 Levels 1493 OrderBy Drill 1469 Value "20200708"
  4382. Label "08/07/2020" Lastuse 20201216 SourceValue "20200708" Date 20200708
  4383. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4384. IsTruncated False Blanks False
  4385. Category 16185 "20200709" Parent 16167 Levels 1493 OrderBy Drill 1469 Value "20200709"
  4386. Label "09/07/2020" Lastuse 20201216 SourceValue "20200709" Date 20200709
  4387. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4388. IsTruncated False Blanks False
  4389. Category 16187 "20200710" Parent 16167 Levels 1493 OrderBy Drill 1469 Value "20200710"
  4390. Label "10/07/2020" Lastuse 20201216 SourceValue "20200710" Date 20200710
  4391. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4392. IsTruncated False Blanks False
  4393. Category 16189 "20200711" Parent 16167 Levels 1493 OrderBy Drill 1469 Value "20200711"
  4394. Label "11/07/2020" Lastuse 20201216 SourceValue "20200711" Date 20200711
  4395. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4396. IsTruncated False Blanks False
  4397. Category 16191 "20200712" Parent 16167 Levels 1493 OrderBy Drill 1469 Value "20200712"
  4398. Label "12/07/2020" Lastuse 20201216 SourceValue "20200712" Date 20200712
  4399. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4400. IsTruncated False Blanks False
  4401. Category 16193 "20200713" Parent 16167 Levels 1493 OrderBy Drill 1469 Value "20200713"
  4402. Label "13/07/2020" Lastuse 20201216 SourceValue "20200713" Date 20200713
  4403. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4404. IsTruncated False Blanks False
  4405. Category 16195 "20200714" Parent 16167 Levels 1493 OrderBy Drill 1469 Value "20200714"
  4406. Label "14/07/2020" Lastuse 20201216 SourceValue "20200714" Date 20200714
  4407. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4408. IsTruncated False Blanks False
  4409. Category 16197 "20200715" Parent 16167 Levels 1493 OrderBy Drill 1469 Value "20200715"
  4410. Label "15/07/2020" Lastuse 20210108 SourceValue "20200715" Date 20200715
  4411. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4412. IsTruncated False Blanks False
  4413. Category 16199 "20200716" Parent 16167 Levels 1493 OrderBy Drill 1469 Value "20200716"
  4414. Label "16/07/2020" Lastuse 20201216 SourceValue "20200716" Date 20200716
  4415. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4416. IsTruncated False Blanks False
  4417. Category 16201 "20200717" Parent 16167 Levels 1493 OrderBy Drill 1469 Value "20200717"
  4418. Label "17/07/2020" Lastuse 20201216 SourceValue "20200717" Date 20200717
  4419. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4420. IsTruncated False Blanks False
  4421. Category 16203 "20200718" Parent 16167 Levels 1493 OrderBy Drill 1469 Value "20200718"
  4422. Label "18/07/2020" Lastuse 20201216 SourceValue "20200718" Date 20200718
  4423. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4424. IsTruncated False Blanks False
  4425. Category 16205 "20200719" Parent 16167 Levels 1493 OrderBy Drill 1469 Value "20200719"
  4426. Label "19/07/2020" Lastuse 20201216 SourceValue "20200719" Date 20200719
  4427. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4428. IsTruncated False Blanks False
  4429. Category 16207 "20200720" Parent 16167 Levels 1493 OrderBy Drill 1469 Value "20200720"
  4430. Label "20/07/2020" Lastuse 20201216 SourceValue "20200720" Date 20200720
  4431. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4432. IsTruncated False Blanks False
  4433. Category 16209 "20200721" Parent 16167 Levels 1493 OrderBy Drill 1469 Value "20200721"
  4434. Label "21/07/2020" Lastuse 20201216 SourceValue "20200721" Date 20200721
  4435. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4436. IsTruncated False Blanks False
  4437. Category 16211 "20200722" Parent 16167 Levels 1493 OrderBy Drill 1469 Value "20200722"
  4438. Label "22/07/2020" Lastuse 20201216 SourceValue "20200722" Date 20200722
  4439. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4440. IsTruncated False Blanks False
  4441. Category 16213 "20200723" Parent 16167 Levels 1493 OrderBy Drill 1469 Value "20200723"
  4442. Label "23/07/2020" Lastuse 20201216 SourceValue "20200723" Date 20200723
  4443. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4444. IsTruncated False Blanks False
  4445. Category 16215 "20200724" Parent 16167 Levels 1493 OrderBy Drill 1469 Value "20200724"
  4446. Label "24/07/2020" Lastuse 20201216 SourceValue "20200724" Date 20200724
  4447. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4448. IsTruncated False Blanks False
  4449. Category 16217 "20200725" Parent 16167 Levels 1493 OrderBy Drill 1469 Value "20200725"
  4450. Label "25/07/2020" Lastuse 20201216 SourceValue "20200725" Date 20200725
  4451. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4452. IsTruncated False Blanks False
  4453. Category 16219 "20200726" Parent 16167 Levels 1493 OrderBy Drill 1469 Value "20200726"
  4454. Label "26/07/2020" Lastuse 20201216 SourceValue "20200726" Date 20200726
  4455. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4456. IsTruncated False Blanks False
  4457. Category 16221 "20200727" Parent 16167 Levels 1493 OrderBy Drill 1469 Value "20200727"
  4458. Label "27/07/2020" Lastuse 20201216 SourceValue "20200727" Date 20200727
  4459. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4460. IsTruncated False Blanks False
  4461. Category 16223 "20200728" Parent 16167 Levels 1493 OrderBy Drill 1469 Value "20200728"
  4462. Label "28/07/2020" Lastuse 20201216 SourceValue "20200728" Date 20200728
  4463. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4464. IsTruncated False Blanks False
  4465. Category 16225 "20200729" Parent 16167 Levels 1493 OrderBy Drill 1469 Value "20200729"
  4466. Label "29/07/2020" Lastuse 20201216 SourceValue "20200729" Date 20200729
  4467. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4468. IsTruncated False Blanks False
  4469. Category 16227 "20200730" Parent 16167 Levels 1493 OrderBy Drill 1469 Value "20200730"
  4470. Label "30/07/2020" Lastuse 20201216 SourceValue "20200730" Date 20200730
  4471. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4472. IsTruncated False Blanks False
  4473. Category 16229 "20200731" Parent 16167 Levels 1493 OrderBy Drill 1469 Value "20200731"
  4474. Label "31/07/2020" Lastuse 20201216 SourceValue "20200731" Date 20200731
  4475. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4476. IsTruncated False Blanks False
  4477. Category 16231 "20200801-20200831" Parent 16165 Levels 1487 OrderBy Drill 1469
  4478. Value "202008" Label "Aug./2020" Lastuse 20210108 SourceValue "202008"
  4479. Date 20200801 Filtered False Suppressed False Sign False HideValue False
  4480. IsKeyOrphanage False IsTruncated False Blanks False
  4481. Category 16233 "20200801" Parent 16231 Levels 1493 OrderBy Drill 1469 Value "20200801"
  4482. Label "01/08/2020" Lastuse 20201216 SourceValue "20200801" Date 20200801
  4483. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4484. IsTruncated False Blanks False
  4485. Category 16235 "20200802" Parent 16231 Levels 1493 OrderBy Drill 1469 Value "20200802"
  4486. Label "02/08/2020" Lastuse 20201216 SourceValue "20200802" Date 20200802
  4487. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4488. IsTruncated False Blanks False
  4489. Category 16237 "20200803" Parent 16231 Levels 1493 OrderBy Drill 1469 Value "20200803"
  4490. Label "03/08/2020" Lastuse 20201216 SourceValue "20200803" Date 20200803
  4491. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4492. IsTruncated False Blanks False
  4493. Category 16239 "20200804" Parent 16231 Levels 1493 OrderBy Drill 1469 Value "20200804"
  4494. Label "04/08/2020" Lastuse 20201216 SourceValue "20200804" Date 20200804
  4495. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4496. IsTruncated False Blanks False
  4497. Category 16241 "20200805" Parent 16231 Levels 1493 OrderBy Drill 1469 Value "20200805"
  4498. Label "05/08/2020" Lastuse 20210108 SourceValue "20200805" Date 20200805
  4499. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4500. IsTruncated False Blanks False
  4501. Category 16243 "20200806" Parent 16231 Levels 1493 OrderBy Drill 1469 Value "20200806"
  4502. Label "06/08/2020" Lastuse 20210108 SourceValue "20200806" Date 20200806
  4503. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4504. IsTruncated False Blanks False
  4505. Category 16245 "20200807" Parent 16231 Levels 1493 OrderBy Drill 1469 Value "20200807"
  4506. Label "07/08/2020" Lastuse 20201216 SourceValue "20200807" Date 20200807
  4507. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4508. IsTruncated False Blanks False
  4509. Category 16247 "20200808" Parent 16231 Levels 1493 OrderBy Drill 1469 Value "20200808"
  4510. Label "08/08/2020" Lastuse 20201216 SourceValue "20200808" Date 20200808
  4511. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4512. IsTruncated False Blanks False
  4513. Category 16249 "20200809" Parent 16231 Levels 1493 OrderBy Drill 1469 Value "20200809"
  4514. Label "09/08/2020" Lastuse 20201216 SourceValue "20200809" Date 20200809
  4515. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4516. IsTruncated False Blanks False
  4517. Category 16251 "20200810" Parent 16231 Levels 1493 OrderBy Drill 1469 Value "20200810"
  4518. Label "10/08/2020" Lastuse 20201216 SourceValue "20200810" Date 20200810
  4519. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4520. IsTruncated False Blanks False
  4521. Category 16253 "20200811" Parent 16231 Levels 1493 OrderBy Drill 1469 Value "20200811"
  4522. Label "11/08/2020" Lastuse 20201216 SourceValue "20200811" Date 20200811
  4523. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4524. IsTruncated False Blanks False
  4525. Category 16255 "20200812" Parent 16231 Levels 1493 OrderBy Drill 1469 Value "20200812"
  4526. Label "12/08/2020" Lastuse 20210108 SourceValue "20200812" Date 20200812
  4527. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4528. IsTruncated False Blanks False
  4529. Category 16257 "20200813" Parent 16231 Levels 1493 OrderBy Drill 1469 Value "20200813"
  4530. Label "13/08/2020" Lastuse 20201216 SourceValue "20200813" Date 20200813
  4531. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4532. IsTruncated False Blanks False
  4533. Category 16259 "20200814" Parent 16231 Levels 1493 OrderBy Drill 1469 Value "20200814"
  4534. Label "14/08/2020" Lastuse 20201216 SourceValue "20200814" Date 20200814
  4535. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4536. IsTruncated False Blanks False
  4537. Category 16261 "20200815" Parent 16231 Levels 1493 OrderBy Drill 1469 Value "20200815"
  4538. Label "15/08/2020" Lastuse 20201216 SourceValue "20200815" Date 20200815
  4539. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4540. IsTruncated False Blanks False
  4541. Category 16263 "20200816" Parent 16231 Levels 1493 OrderBy Drill 1469 Value "20200816"
  4542. Label "16/08/2020" Lastuse 20201216 SourceValue "20200816" Date 20200816
  4543. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4544. IsTruncated False Blanks False
  4545. Category 16265 "20200817" Parent 16231 Levels 1493 OrderBy Drill 1469 Value "20200817"
  4546. Label "17/08/2020" Lastuse 20201216 SourceValue "20200817" Date 20200817
  4547. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4548. IsTruncated False Blanks False
  4549. Category 16267 "20200818" Parent 16231 Levels 1493 OrderBy Drill 1469 Value "20200818"
  4550. Label "18/08/2020" Lastuse 20201216 SourceValue "20200818" Date 20200818
  4551. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4552. IsTruncated False Blanks False
  4553. Category 16269 "20200819" Parent 16231 Levels 1493 OrderBy Drill 1469 Value "20200819"
  4554. Label "19/08/2020" Lastuse 20201216 SourceValue "20200819" Date 20200819
  4555. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4556. IsTruncated False Blanks False
  4557. Category 16271 "20200820" Parent 16231 Levels 1493 OrderBy Drill 1469 Value "20200820"
  4558. Label "20/08/2020" Lastuse 20201216 SourceValue "20200820" Date 20200820
  4559. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4560. IsTruncated False Blanks False
  4561. Category 16273 "20200821" Parent 16231 Levels 1493 OrderBy Drill 1469 Value "20200821"
  4562. Label "21/08/2020" Lastuse 20201216 SourceValue "20200821" Date 20200821
  4563. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4564. IsTruncated False Blanks False
  4565. Category 16275 "20200822" Parent 16231 Levels 1493 OrderBy Drill 1469 Value "20200822"
  4566. Label "22/08/2020" Lastuse 20201216 SourceValue "20200822" Date 20200822
  4567. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4568. IsTruncated False Blanks False
  4569. Category 16277 "20200823" Parent 16231 Levels 1493 OrderBy Drill 1469 Value "20200823"
  4570. Label "23/08/2020" Lastuse 20201216 SourceValue "20200823" Date 20200823
  4571. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4572. IsTruncated False Blanks False
  4573. Category 16279 "20200824" Parent 16231 Levels 1493 OrderBy Drill 1469 Value "20200824"
  4574. Label "24/08/2020" Lastuse 20201216 SourceValue "20200824" Date 20200824
  4575. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4576. IsTruncated False Blanks False
  4577. Category 16281 "20200825" Parent 16231 Levels 1493 OrderBy Drill 1469 Value "20200825"
  4578. Label "25/08/2020" Lastuse 20201216 SourceValue "20200825" Date 20200825
  4579. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4580. IsTruncated False Blanks False
  4581. Category 16283 "20200826" Parent 16231 Levels 1493 OrderBy Drill 1469 Value "20200826"
  4582. Label "26/08/2020" Lastuse 20210108 SourceValue "20200826" Date 20200826
  4583. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4584. IsTruncated False Blanks False
  4585. Category 16285 "20200827" Parent 16231 Levels 1493 OrderBy Drill 1469 Value "20200827"
  4586. Label "27/08/2020" Lastuse 20201216 SourceValue "20200827" Date 20200827
  4587. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4588. IsTruncated False Blanks False
  4589. Category 16287 "20200828" Parent 16231 Levels 1493 OrderBy Drill 1469 Value "20200828"
  4590. Label "28/08/2020" Lastuse 20201216 SourceValue "20200828" Date 20200828
  4591. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4592. IsTruncated False Blanks False
  4593. Category 16289 "20200829" Parent 16231 Levels 1493 OrderBy Drill 1469 Value "20200829"
  4594. Label "29/08/2020" Lastuse 20201216 SourceValue "20200829" Date 20200829
  4595. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4596. IsTruncated False Blanks False
  4597. Category 16291 "20200830" Parent 16231 Levels 1493 OrderBy Drill 1469 Value "20200830"
  4598. Label "30/08/2020" Lastuse 20201216 SourceValue "20200830" Date 20200830
  4599. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4600. IsTruncated False Blanks False
  4601. Category 16293 "20200831" Parent 16231 Levels 1493 OrderBy Drill 1469 Value "20200831"
  4602. Label "31/08/2020" Lastuse 20210108 SourceValue "20200831" Date 20200831
  4603. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4604. IsTruncated False Blanks False
  4605. Category 16295 "20200901-20200930" Parent 16165 Levels 1487 OrderBy Drill 1469
  4606. Value "202009" Label "Sept./2020" Lastuse 20210108 SourceValue "202009"
  4607. Date 20200901 Filtered False Suppressed False Sign False HideValue False
  4608. IsKeyOrphanage False IsTruncated False Blanks False
  4609. Category 16297 "20200901" Parent 16295 Levels 1493 OrderBy Drill 1469 Value "20200901"
  4610. Label "01/09/2020" Lastuse 20201216 SourceValue "20200901" Date 20200901
  4611. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4612. IsTruncated False Blanks False
  4613. Category 16299 "20200902" Parent 16295 Levels 1493 OrderBy Drill 1469 Value "20200902"
  4614. Label "02/09/2020" Lastuse 20201216 SourceValue "20200902" Date 20200902
  4615. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4616. IsTruncated False Blanks False
  4617. Category 16301 "20200903" Parent 16295 Levels 1493 OrderBy Drill 1469 Value "20200903"
  4618. Label "03/09/2020" Lastuse 20201216 SourceValue "20200903" Date 20200903
  4619. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4620. IsTruncated False Blanks False
  4621. Category 16303 "20200904" Parent 16295 Levels 1493 OrderBy Drill 1469 Value "20200904"
  4622. Label "04/09/2020" Lastuse 20201216 SourceValue "20200904" Date 20200904
  4623. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4624. IsTruncated False Blanks False
  4625. Category 16305 "20200905" Parent 16295 Levels 1493 OrderBy Drill 1469 Value "20200905"
  4626. Label "05/09/2020" Lastuse 20201216 SourceValue "20200905" Date 20200905
  4627. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4628. IsTruncated False Blanks False
  4629. Category 16307 "20200906" Parent 16295 Levels 1493 OrderBy Drill 1469 Value "20200906"
  4630. Label "06/09/2020" Lastuse 20201216 SourceValue "20200906" Date 20200906
  4631. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4632. IsTruncated False Blanks False
  4633. Category 16309 "20200907" Parent 16295 Levels 1493 OrderBy Drill 1469 Value "20200907"
  4634. Label "07/09/2020" Lastuse 20201216 SourceValue "20200907" Date 20200907
  4635. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4636. IsTruncated False Blanks False
  4637. Category 16311 "20200908" Parent 16295 Levels 1493 OrderBy Drill 1469 Value "20200908"
  4638. Label "08/09/2020" Lastuse 20201216 SourceValue "20200908" Date 20200908
  4639. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4640. IsTruncated False Blanks False
  4641. Category 16313 "20200909" Parent 16295 Levels 1493 OrderBy Drill 1469 Value "20200909"
  4642. Label "09/09/2020" Lastuse 20201216 SourceValue "20200909" Date 20200909
  4643. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4644. IsTruncated False Blanks False
  4645. Category 16315 "20200910" Parent 16295 Levels 1493 OrderBy Drill 1469 Value "20200910"
  4646. Label "10/09/2020" Lastuse 20201216 SourceValue "20200910" Date 20200910
  4647. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4648. IsTruncated False Blanks False
  4649. Category 16317 "20200911" Parent 16295 Levels 1493 OrderBy Drill 1469 Value "20200911"
  4650. Label "11/09/2020" Lastuse 20201216 SourceValue "20200911" Date 20200911
  4651. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4652. IsTruncated False Blanks False
  4653. Category 16319 "20200912" Parent 16295 Levels 1493 OrderBy Drill 1469 Value "20200912"
  4654. Label "12/09/2020" Lastuse 20201216 SourceValue "20200912" Date 20200912
  4655. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4656. IsTruncated False Blanks False
  4657. Category 16321 "20200913" Parent 16295 Levels 1493 OrderBy Drill 1469 Value "20200913"
  4658. Label "13/09/2020" Lastuse 20201216 SourceValue "20200913" Date 20200913
  4659. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4660. IsTruncated False Blanks False
  4661. Category 16323 "20200914" Parent 16295 Levels 1493 OrderBy Drill 1469 Value "20200914"
  4662. Label "14/09/2020" Lastuse 20201216 SourceValue "20200914" Date 20200914
  4663. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4664. IsTruncated False Blanks False
  4665. Category 16325 "20200915" Parent 16295 Levels 1493 OrderBy Drill 1469 Value "20200915"
  4666. Label "15/09/2020" Lastuse 20210108 SourceValue "20200915" Date 20200915
  4667. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4668. IsTruncated False Blanks False
  4669. Category 16327 "20200916" Parent 16295 Levels 1493 OrderBy Drill 1469 Value "20200916"
  4670. Label "16/09/2020" Lastuse 20210108 SourceValue "20200916" Date 20200916
  4671. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4672. IsTruncated False Blanks False
  4673. Category 16329 "20200917" Parent 16295 Levels 1493 OrderBy Drill 1469 Value "20200917"
  4674. Label "17/09/2020" Lastuse 20210108 SourceValue "20200917" Date 20200917
  4675. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4676. IsTruncated False Blanks False
  4677. Category 16331 "20200918" Parent 16295 Levels 1493 OrderBy Drill 1469 Value "20200918"
  4678. Label "18/09/2020" Lastuse 20201216 SourceValue "20200918" Date 20200918
  4679. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4680. IsTruncated False Blanks False
  4681. Category 16333 "20200919" Parent 16295 Levels 1493 OrderBy Drill 1469 Value "20200919"
  4682. Label "19/09/2020" Lastuse 20210108 SourceValue "20200919" Date 20200919
  4683. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4684. IsTruncated False Blanks False
  4685. Category 16335 "20200920" Parent 16295 Levels 1493 OrderBy Drill 1469 Value "20200920"
  4686. Label "20/09/2020" Lastuse 20201216 SourceValue "20200920" Date 20200920
  4687. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4688. IsTruncated False Blanks False
  4689. Category 16337 "20200921" Parent 16295 Levels 1493 OrderBy Drill 1469 Value "20200921"
  4690. Label "21/09/2020" Lastuse 20201216 SourceValue "20200921" Date 20200921
  4691. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4692. IsTruncated False Blanks False
  4693. Category 16339 "20200922" Parent 16295 Levels 1493 OrderBy Drill 1469 Value "20200922"
  4694. Label "22/09/2020" Lastuse 20210108 SourceValue "20200922" Date 20200922
  4695. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4696. IsTruncated False Blanks False
  4697. Category 16341 "20200923" Parent 16295 Levels 1493 OrderBy Drill 1469 Value "20200923"
  4698. Label "23/09/2020" Lastuse 20201216 SourceValue "20200923" Date 20200923
  4699. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4700. IsTruncated False Blanks False
  4701. Category 16343 "20200924" Parent 16295 Levels 1493 OrderBy Drill 1469 Value "20200924"
  4702. Label "24/09/2020" Lastuse 20201216 SourceValue "20200924" Date 20200924
  4703. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4704. IsTruncated False Blanks False
  4705. Category 16345 "20200925" Parent 16295 Levels 1493 OrderBy Drill 1469 Value "20200925"
  4706. Label "25/09/2020" Lastuse 20201216 SourceValue "20200925" Date 20200925
  4707. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4708. IsTruncated False Blanks False
  4709. Category 16347 "20200926" Parent 16295 Levels 1493 OrderBy Drill 1469 Value "20200926"
  4710. Label "26/09/2020" Lastuse 20201216 SourceValue "20200926" Date 20200926
  4711. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4712. IsTruncated False Blanks False
  4713. Category 16349 "20200927" Parent 16295 Levels 1493 OrderBy Drill 1469 Value "20200927"
  4714. Label "27/09/2020" Lastuse 20201216 SourceValue "20200927" Date 20200927
  4715. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4716. IsTruncated False Blanks False
  4717. Category 16351 "20200928" Parent 16295 Levels 1493 OrderBy Drill 1469 Value "20200928"
  4718. Label "28/09/2020" Lastuse 20201216 SourceValue "20200928" Date 20200928
  4719. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4720. IsTruncated False Blanks False
  4721. Category 16353 "20200929" Parent 16295 Levels 1493 OrderBy Drill 1469 Value "20200929"
  4722. Label "29/09/2020" Lastuse 20210108 SourceValue "20200929" Date 20200929
  4723. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4724. IsTruncated False Blanks False
  4725. Category 16355 "20200930" Parent 16295 Levels 1493 OrderBy Drill 1469 Value "20200930"
  4726. Label "30/09/2020" Lastuse 20210108 SourceValue "20200930" Date 20200930
  4727. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4728. IsTruncated False Blanks False
  4729. Category 16357 "20201001-20201231" Parent 15783 Levels 1481 OrderBy Drill 1469
  4730. Value "20201001" Label "4. Q. 2020" Lastuse 20210108 SourceValue "20201001"
  4731. Date 20201001 Filtered False Suppressed False Sign False HideValue False
  4732. IsKeyOrphanage False IsTruncated False Blanks False
  4733. Category 16359 "20201001-20201031" Parent 16357 Levels 1487 OrderBy Drill 1469
  4734. Value "202010" Label "Okt./2020" Lastuse 20210108 SourceValue "202010"
  4735. Date 20201001 Filtered False Suppressed False Sign False HideValue False
  4736. IsKeyOrphanage False IsTruncated False Blanks False
  4737. Category 16361 "20201001" Parent 16359 Levels 1493 OrderBy Drill 1469 Value "20201001"
  4738. Label "01/10/2020" Lastuse 20201216 SourceValue "20201001" Date 20201001
  4739. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4740. IsTruncated False Blanks False
  4741. Category 16363 "20201002" Parent 16359 Levels 1493 OrderBy Drill 1469 Value "20201002"
  4742. Label "02/10/2020" Lastuse 20201216 SourceValue "20201002" Date 20201002
  4743. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4744. IsTruncated False Blanks False
  4745. Category 16365 "20201003" Parent 16359 Levels 1493 OrderBy Drill 1469 Value "20201003"
  4746. Label "03/10/2020" Lastuse 20201216 SourceValue "20201003" Date 20201003
  4747. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4748. IsTruncated False Blanks False
  4749. Category 16367 "20201004" Parent 16359 Levels 1493 OrderBy Drill 1469 Value "20201004"
  4750. Label "04/10/2020" Lastuse 20201216 SourceValue "20201004" Date 20201004
  4751. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4752. IsTruncated False Blanks False
  4753. Category 16369 "20201005" Parent 16359 Levels 1493 OrderBy Drill 1469 Value "20201005"
  4754. Label "05/10/2020" Lastuse 20201216 SourceValue "20201005" Date 20201005
  4755. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4756. IsTruncated False Blanks False
  4757. Category 16371 "20201006" Parent 16359 Levels 1493 OrderBy Drill 1469 Value "20201006"
  4758. Label "06/10/2020" Lastuse 20201216 SourceValue "20201006" Date 20201006
  4759. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4760. IsTruncated False Blanks False
  4761. Category 16373 "20201007" Parent 16359 Levels 1493 OrderBy Drill 1469 Value "20201007"
  4762. Label "07/10/2020" Lastuse 20201216 SourceValue "20201007" Date 20201007
  4763. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4764. IsTruncated False Blanks False
  4765. Category 16375 "20201008" Parent 16359 Levels 1493 OrderBy Drill 1469 Value "20201008"
  4766. Label "08/10/2020" Lastuse 20201216 SourceValue "20201008" Date 20201008
  4767. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4768. IsTruncated False Blanks False
  4769. Category 16377 "20201009" Parent 16359 Levels 1493 OrderBy Drill 1469 Value "20201009"
  4770. Label "09/10/2020" Lastuse 20201216 SourceValue "20201009" Date 20201009
  4771. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4772. IsTruncated False Blanks False
  4773. Category 16379 "20201010" Parent 16359 Levels 1493 OrderBy Drill 1469 Value "20201010"
  4774. Label "10/10/2020" Lastuse 20201216 SourceValue "20201010" Date 20201010
  4775. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4776. IsTruncated False Blanks False
  4777. Category 16381 "20201011" Parent 16359 Levels 1493 OrderBy Drill 1469 Value "20201011"
  4778. Label "11/10/2020" Lastuse 20201216 SourceValue "20201011" Date 20201011
  4779. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4780. IsTruncated False Blanks False
  4781. Category 16383 "20201012" Parent 16359 Levels 1493 OrderBy Drill 1469 Value "20201012"
  4782. Label "12/10/2020" Lastuse 20210108 SourceValue "20201012" Date 20201012
  4783. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4784. IsTruncated False Blanks False
  4785. Category 16385 "20201013" Parent 16359 Levels 1493 OrderBy Drill 1469 Value "20201013"
  4786. Label "13/10/2020" Lastuse 20201216 SourceValue "20201013" Date 20201013
  4787. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4788. IsTruncated False Blanks False
  4789. Category 16387 "20201014" Parent 16359 Levels 1493 OrderBy Drill 1469 Value "20201014"
  4790. Label "14/10/2020" Lastuse 20201216 SourceValue "20201014" Date 20201014
  4791. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4792. IsTruncated False Blanks False
  4793. Category 16389 "20201015" Parent 16359 Levels 1493 OrderBy Drill 1469 Value "20201015"
  4794. Label "15/10/2020" Lastuse 20201216 SourceValue "20201015" Date 20201015
  4795. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4796. IsTruncated False Blanks False
  4797. Category 16391 "20201016" Parent 16359 Levels 1493 OrderBy Drill 1469 Value "20201016"
  4798. Label "16/10/2020" Lastuse 20201216 SourceValue "20201016" Date 20201016
  4799. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4800. IsTruncated False Blanks False
  4801. Category 16393 "20201017" Parent 16359 Levels 1493 OrderBy Drill 1469 Value "20201017"
  4802. Label "17/10/2020" Lastuse 20201216 SourceValue "20201017" Date 20201017
  4803. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4804. IsTruncated False Blanks False
  4805. Category 16395 "20201018" Parent 16359 Levels 1493 OrderBy Drill 1469 Value "20201018"
  4806. Label "18/10/2020" Lastuse 20201216 SourceValue "20201018" Date 20201018
  4807. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4808. IsTruncated False Blanks False
  4809. Category 16397 "20201019" Parent 16359 Levels 1493 OrderBy Drill 1469 Value "20201019"
  4810. Label "19/10/2020" Lastuse 20201216 SourceValue "20201019" Date 20201019
  4811. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4812. IsTruncated False Blanks False
  4813. Category 16399 "20201020" Parent 16359 Levels 1493 OrderBy Drill 1469 Value "20201020"
  4814. Label "20/10/2020" Lastuse 20201216 SourceValue "20201020" Date 20201020
  4815. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4816. IsTruncated False Blanks False
  4817. Category 16401 "20201021" Parent 16359 Levels 1493 OrderBy Drill 1469 Value "20201021"
  4818. Label "21/10/2020" Lastuse 20201216 SourceValue "20201021" Date 20201021
  4819. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4820. IsTruncated False Blanks False
  4821. Category 16403 "20201022" Parent 16359 Levels 1493 OrderBy Drill 1469 Value "20201022"
  4822. Label "22/10/2020" Lastuse 20210108 SourceValue "20201022" Date 20201022
  4823. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4824. IsTruncated False Blanks False
  4825. Category 16405 "20201023" Parent 16359 Levels 1493 OrderBy Drill 1469 Value "20201023"
  4826. Label "23/10/2020" Lastuse 20210108 SourceValue "20201023" Date 20201023
  4827. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4828. IsTruncated False Blanks False
  4829. Category 16407 "20201024" Parent 16359 Levels 1493 OrderBy Drill 1469 Value "20201024"
  4830. Label "24/10/2020" Lastuse 20201216 SourceValue "20201024" Date 20201024
  4831. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4832. IsTruncated False Blanks False
  4833. Category 16409 "20201025" Parent 16359 Levels 1493 OrderBy Drill 1469 Value "20201025"
  4834. Label "25/10/2020" Lastuse 20201216 SourceValue "20201025" Date 20201025
  4835. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4836. IsTruncated False Blanks False
  4837. Category 16411 "20201026" Parent 16359 Levels 1493 OrderBy Drill 1469 Value "20201026"
  4838. Label "26/10/2020" Lastuse 20201216 SourceValue "20201026" Date 20201026
  4839. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4840. IsTruncated False Blanks False
  4841. Category 16413 "20201027" Parent 16359 Levels 1493 OrderBy Drill 1469 Value "20201027"
  4842. Label "27/10/2020" Lastuse 20210108 SourceValue "20201027" Date 20201027
  4843. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4844. IsTruncated False Blanks False
  4845. Category 16415 "20201028" Parent 16359 Levels 1493 OrderBy Drill 1469 Value "20201028"
  4846. Label "28/10/2020" Lastuse 20201216 SourceValue "20201028" Date 20201028
  4847. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4848. IsTruncated False Blanks False
  4849. Category 16417 "20201029" Parent 16359 Levels 1493 OrderBy Drill 1469 Value "20201029"
  4850. Label "29/10/2020" Lastuse 20201216 SourceValue "20201029" Date 20201029
  4851. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4852. IsTruncated False Blanks False
  4853. Category 16419 "20201030" Parent 16359 Levels 1493 OrderBy Drill 1469 Value "20201030"
  4854. Label "30/10/2020" Lastuse 20210108 SourceValue "20201030" Date 20201030
  4855. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4856. IsTruncated False Blanks False
  4857. Category 16421 "20201031" Parent 16359 Levels 1493 OrderBy Drill 1469 Value "20201031"
  4858. Label "31/10/2020" Lastuse 20201216 SourceValue "20201031" Date 20201031
  4859. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4860. IsTruncated False Blanks False
  4861. Category 16423 "20201101-20201130" Parent 16357 Levels 1487 OrderBy Drill 1469
  4862. Value "202011" Label "Nov./2020" Lastuse 20210108 SourceValue "202011"
  4863. Date 20201101 Filtered False Suppressed False Sign False HideValue False
  4864. IsKeyOrphanage False IsTruncated False Blanks False
  4865. Category 16425 "20201101" Parent 16423 Levels 1493 OrderBy Drill 1469 Value "20201101"
  4866. Label "01/11/2020" Lastuse 20201216 SourceValue "20201101" Date 20201101
  4867. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4868. IsTruncated False Blanks False
  4869. Category 16427 "20201102" Parent 16423 Levels 1493 OrderBy Drill 1469 Value "20201102"
  4870. Label "02/11/2020" Lastuse 20210108 SourceValue "20201102" Date 20201102
  4871. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4872. IsTruncated False Blanks False
  4873. Category 16429 "20201103" Parent 16423 Levels 1493 OrderBy Drill 1469 Value "20201103"
  4874. Label "03/11/2020" Lastuse 20210108 SourceValue "20201103" Date 20201103
  4875. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4876. IsTruncated False Blanks False
  4877. Category 16431 "20201104" Parent 16423 Levels 1493 OrderBy Drill 1469 Value "20201104"
  4878. Label "04/11/2020" Lastuse 20210108 SourceValue "20201104" Date 20201104
  4879. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4880. IsTruncated False Blanks False
  4881. Category 16433 "20201105" Parent 16423 Levels 1493 OrderBy Drill 1469 Value "20201105"
  4882. Label "05/11/2020" Lastuse 20210108 SourceValue "20201105" Date 20201105
  4883. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4884. IsTruncated False Blanks False
  4885. Category 16435 "20201106" Parent 16423 Levels 1493 OrderBy Drill 1469 Value "20201106"
  4886. Label "06/11/2020" Lastuse 20210108 SourceValue "20201106" Date 20201106
  4887. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4888. IsTruncated False Blanks False
  4889. Category 16437 "20201107" Parent 16423 Levels 1493 OrderBy Drill 1469 Value "20201107"
  4890. Label "07/11/2020" Lastuse 20210108 SourceValue "20201107" Date 20201107
  4891. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4892. IsTruncated False Blanks False
  4893. Category 16439 "20201108" Parent 16423 Levels 1493 OrderBy Drill 1469 Value "20201108"
  4894. Label "08/11/2020" Lastuse 20201216 SourceValue "20201108" Date 20201108
  4895. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4896. IsTruncated False Blanks False
  4897. Category 16441 "20201109" Parent 16423 Levels 1493 OrderBy Drill 1469 Value "20201109"
  4898. Label "09/11/2020" Lastuse 20210108 SourceValue "20201109" Date 20201109
  4899. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4900. IsTruncated False Blanks False
  4901. Category 16443 "20201110" Parent 16423 Levels 1493 OrderBy Drill 1469 Value "20201110"
  4902. Label "10/11/2020" Lastuse 20210108 SourceValue "20201110" Date 20201110
  4903. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4904. IsTruncated False Blanks False
  4905. Category 16445 "20201111" Parent 16423 Levels 1493 OrderBy Drill 1469 Value "20201111"
  4906. Label "11/11/2020" Lastuse 20210108 SourceValue "20201111" Date 20201111
  4907. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4908. IsTruncated False Blanks False
  4909. Category 16447 "20201112" Parent 16423 Levels 1493 OrderBy Drill 1469 Value "20201112"
  4910. Label "12/11/2020" Lastuse 20210108 SourceValue "20201112" Date 20201112
  4911. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4912. IsTruncated False Blanks False
  4913. Category 16449 "20201113" Parent 16423 Levels 1493 OrderBy Drill 1469 Value "20201113"
  4914. Label "13/11/2020" Lastuse 20210108 SourceValue "20201113" Date 20201113
  4915. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4916. IsTruncated False Blanks False
  4917. Category 16451 "20201114" Parent 16423 Levels 1493 OrderBy Drill 1469 Value "20201114"
  4918. Label "14/11/2020" Lastuse 20201216 SourceValue "20201114" Date 20201114
  4919. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4920. IsTruncated False Blanks False
  4921. Category 16453 "20201115" Parent 16423 Levels 1493 OrderBy Drill 1469 Value "20201115"
  4922. Label "15/11/2020" Lastuse 20201216 SourceValue "20201115" Date 20201115
  4923. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4924. IsTruncated False Blanks False
  4925. Category 16455 "20201116" Parent 16423 Levels 1493 OrderBy Drill 1469 Value "20201116"
  4926. Label "16/11/2020" Lastuse 20210108 SourceValue "20201116" Date 20201116
  4927. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4928. IsTruncated False Blanks False
  4929. Category 16457 "20201117" Parent 16423 Levels 1493 OrderBy Drill 1469 Value "20201117"
  4930. Label "17/11/2020" Lastuse 20210108 SourceValue "20201117" Date 20201117
  4931. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4932. IsTruncated False Blanks False
  4933. Category 16459 "20201118" Parent 16423 Levels 1493 OrderBy Drill 1469 Value "20201118"
  4934. Label "18/11/2020" Lastuse 20210108 SourceValue "20201118" Date 20201118
  4935. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4936. IsTruncated False Blanks False
  4937. Category 16461 "20201119" Parent 16423 Levels 1493 OrderBy Drill 1469 Value "20201119"
  4938. Label "19/11/2020" Lastuse 20210108 SourceValue "20201119" Date 20201119
  4939. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4940. IsTruncated False Blanks False
  4941. Category 16463 "20201120" Parent 16423 Levels 1493 OrderBy Drill 1469 Value "20201120"
  4942. Label "20/11/2020" Lastuse 20210108 SourceValue "20201120" Date 20201120
  4943. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4944. IsTruncated False Blanks False
  4945. Category 16465 "20201121" Parent 16423 Levels 1493 OrderBy Drill 1469 Value "20201121"
  4946. Label "21/11/2020" Lastuse 20210108 SourceValue "20201121" Date 20201121
  4947. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4948. IsTruncated False Blanks False
  4949. Category 16467 "20201122" Parent 16423 Levels 1493 OrderBy Drill 1469 Value "20201122"
  4950. Label "22/11/2020" Lastuse 20201216 SourceValue "20201122" Date 20201122
  4951. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4952. IsTruncated False Blanks False
  4953. Category 16469 "20201123" Parent 16423 Levels 1493 OrderBy Drill 1469 Value "20201123"
  4954. Label "23/11/2020" Lastuse 20210108 SourceValue "20201123" Date 20201123
  4955. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4956. IsTruncated False Blanks False
  4957. Category 16471 "20201124" Parent 16423 Levels 1493 OrderBy Drill 1469 Value "20201124"
  4958. Label "24/11/2020" Lastuse 20210108 SourceValue "20201124" Date 20201124
  4959. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4960. IsTruncated False Blanks False
  4961. Category 16473 "20201125" Parent 16423 Levels 1493 OrderBy Drill 1469 Value "20201125"
  4962. Label "25/11/2020" Lastuse 20210108 SourceValue "20201125" Date 20201125
  4963. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4964. IsTruncated False Blanks False
  4965. Category 16475 "20201126" Parent 16423 Levels 1493 OrderBy Drill 1469 Value "20201126"
  4966. Label "26/11/2020" Lastuse 20210108 SourceValue "20201126" Date 20201126
  4967. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4968. IsTruncated False Blanks False
  4969. Category 16477 "20201127" Parent 16423 Levels 1493 OrderBy Drill 1469 Value "20201127"
  4970. Label "27/11/2020" Lastuse 20210108 SourceValue "20201127" Date 20201127
  4971. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4972. IsTruncated False Blanks False
  4973. Category 16479 "20201128" Parent 16423 Levels 1493 OrderBy Drill 1469 Value "20201128"
  4974. Label "28/11/2020" Lastuse 20201216 SourceValue "20201128" Date 20201128
  4975. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4976. IsTruncated False Blanks False
  4977. Category 16481 "20201129" Parent 16423 Levels 1493 OrderBy Drill 1469 Value "20201129"
  4978. Label "29/11/2020" Lastuse 20201216 SourceValue "20201129" Date 20201129
  4979. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4980. IsTruncated False Blanks False
  4981. Category 16483 "20201130" Parent 16423 Levels 1493 OrderBy Drill 1469 Value "20201130"
  4982. Label "30/11/2020" Lastuse 20210108 SourceValue "20201130" Date 20201130
  4983. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4984. IsTruncated False Blanks False
  4985. Category 16485 "20201201-20201231" Parent 16357 Levels 1487 OrderBy Drill 1469
  4986. Value "202012" Label "Dez./2020" Lastuse 20210108 SourceValue "202012"
  4987. Date 20201201 Filtered False Suppressed False Sign False HideValue False
  4988. IsKeyOrphanage False IsTruncated False Blanks False
  4989. Category 16487 "20201201" Parent 16485 Levels 1493 OrderBy Drill 1469 Value "20201201"
  4990. Label "01/12/2020" Lastuse 20210108 SourceValue "20201201" Date 20201201
  4991. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4992. IsTruncated False Blanks False
  4993. Category 16489 "20201202" Parent 16485 Levels 1493 OrderBy Drill 1469 Value "20201202"
  4994. Label "02/12/2020" Lastuse 20210108 SourceValue "20201202" Date 20201202
  4995. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4996. IsTruncated False Blanks False
  4997. Category 16491 "20201203" Parent 16485 Levels 1493 OrderBy Drill 1469 Value "20201203"
  4998. Label "03/12/2020" Lastuse 20210108 SourceValue "20201203" Date 20201203
  4999. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5000. IsTruncated False Blanks False
  5001. Category 16493 "20201204" Parent 16485 Levels 1493 OrderBy Drill 1469 Value "20201204"
  5002. Label "04/12/2020" Lastuse 20210108 SourceValue "20201204" Date 20201204
  5003. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5004. IsTruncated False Blanks False
  5005. Category 16495 "20201205" Parent 16485 Levels 1493 OrderBy Drill 1469 Value "20201205"
  5006. Label "05/12/2020" Lastuse 20201216 SourceValue "20201205" Date 20201205
  5007. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5008. IsTruncated False Blanks False
  5009. Category 16497 "20201206" Parent 16485 Levels 1493 OrderBy Drill 1469 Value "20201206"
  5010. Label "06/12/2020" Lastuse 20201216 SourceValue "20201206" Date 20201206
  5011. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5012. IsTruncated False Blanks False
  5013. Category 16499 "20201207" Parent 16485 Levels 1493 OrderBy Drill 1469 Value "20201207"
  5014. Label "07/12/2020" Lastuse 20210108 SourceValue "20201207" Date 20201207
  5015. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5016. IsTruncated False Blanks False
  5017. Category 16501 "20201208" Parent 16485 Levels 1493 OrderBy Drill 1469 Value "20201208"
  5018. Label "08/12/2020" Lastuse 20210108 SourceValue "20201208" Date 20201208
  5019. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5020. IsTruncated False Blanks False
  5021. Category 16503 "20201209" Parent 16485 Levels 1493 OrderBy Drill 1469 Value "20201209"
  5022. Label "09/12/2020" Lastuse 20210108 SourceValue "20201209" Date 20201209
  5023. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5024. IsTruncated False Blanks False
  5025. Category 16505 "20201210" Parent 16485 Levels 1493 OrderBy Drill 1469 Value "20201210"
  5026. Label "10/12/2020" Lastuse 20210108 SourceValue "20201210" Date 20201210
  5027. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5028. IsTruncated False Blanks False
  5029. Category 16507 "20201211" Parent 16485 Levels 1493 OrderBy Drill 1469 Value "20201211"
  5030. Label "11/12/2020" Lastuse 20210108 SourceValue "20201211" Date 20201211
  5031. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5032. IsTruncated False Blanks False
  5033. Category 16509 "20201212" Parent 16485 Levels 1493 OrderBy Drill 1469 Value "20201212"
  5034. Label "12/12/2020" Lastuse 20201216 SourceValue "20201212" Date 20201212
  5035. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5036. IsTruncated False Blanks False
  5037. Category 16511 "20201213" Parent 16485 Levels 1493 OrderBy Drill 1469 Value "20201213"
  5038. Label "13/12/2020" Lastuse 20201216 SourceValue "20201213" Date 20201213
  5039. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5040. IsTruncated False Blanks False
  5041. Category 16513 "20201214" Parent 16485 Levels 1493 OrderBy Drill 1469 Value "20201214"
  5042. Label "14/12/2020" Lastuse 20210108 SourceValue "20201214" Date 20201214
  5043. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5044. IsTruncated False Blanks False
  5045. Category 16515 "20201215" Parent 16485 Levels 1493 OrderBy Drill 1469 Value "20201215"
  5046. Label "15/12/2020" Lastuse 20210108 SourceValue "20201215" Date 20201215
  5047. Current Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5048. IsTruncated False Blanks False
  5049. Category 16517 "20201216" Parent 16485 Levels 1493 OrderBy Drill 1469 Value "20201216"
  5050. Label "16/12/2020" Lastuse 20210108 SourceValue "20201216" Date 20201216
  5051. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5052. IsTruncated False Blanks False
  5053. Category 16519 "20201217" Parent 16485 Levels 1493 OrderBy Drill 1469 Value "20201217"
  5054. Label "17/12/2020" Lastuse 20210108 SourceValue "20201217" Date 20201217
  5055. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5056. IsTruncated False Blanks False
  5057. Category 16521 "20201218" Parent 16485 Levels 1493 OrderBy Drill 1469 Value "20201218"
  5058. Label "18/12/2020" Lastuse 20210108 SourceValue "20201218" Date 20201218
  5059. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5060. IsTruncated False Blanks False
  5061. Category 16523 "20201219" Parent 16485 Levels 1493 OrderBy Drill 1469 Value "20201219"
  5062. Label "19/12/2020" Lastuse 20201216 SourceValue "20201219" Date 20201219
  5063. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5064. IsTruncated False Blanks False
  5065. Category 16525 "20201220" Parent 16485 Levels 1493 OrderBy Drill 1469 Value "20201220"
  5066. Label "20/12/2020" Lastuse 20201216 SourceValue "20201220" Date 20201220
  5067. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5068. IsTruncated False Blanks False
  5069. Category 16527 "20201221" Parent 16485 Levels 1493 OrderBy Drill 1469 Value "20201221"
  5070. Label "21/12/2020" Lastuse 20210108 SourceValue "20201221" Date 20201221
  5071. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5072. IsTruncated False Blanks False
  5073. Category 16529 "20201222" Parent 16485 Levels 1493 OrderBy Drill 1469 Value "20201222"
  5074. Label "22/12/2020" Lastuse 20210108 SourceValue "20201222" Date 20201222
  5075. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5076. IsTruncated False Blanks False
  5077. Category 16531 "20201223" Parent 16485 Levels 1493 OrderBy Drill 1469 Value "20201223"
  5078. Label "23/12/2020" Lastuse 20210108 SourceValue "20201223" Date 20201223
  5079. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5080. IsTruncated False Blanks False
  5081. Category 16533 "20201224" Parent 16485 Levels 1493 OrderBy Drill 1469 Value "20201224"
  5082. Label "24/12/2020" Lastuse 20210108 SourceValue "20201224" Date 20201224
  5083. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5084. IsTruncated False Blanks False
  5085. Category 16535 "20201225" Parent 16485 Levels 1493 OrderBy Drill 1469 Value "20201225"
  5086. Label "25/12/2020" Lastuse 20201216 SourceValue "20201225" Date 20201225
  5087. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5088. IsTruncated False Blanks False
  5089. Category 16537 "20201226" Parent 16485 Levels 1493 OrderBy Drill 1469 Value "20201226"
  5090. Label "26/12/2020" Lastuse 20201216 SourceValue "20201226" Date 20201226
  5091. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5092. IsTruncated False Blanks False
  5093. Category 16539 "20201227" Parent 16485 Levels 1493 OrderBy Drill 1469 Value "20201227"
  5094. Label "27/12/2020" Lastuse 20201216 SourceValue "20201227" Date 20201227
  5095. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5096. IsTruncated False Blanks False
  5097. Category 16541 "20201228" Parent 16485 Levels 1493 OrderBy Drill 1469 Value "20201228"
  5098. Label "28/12/2020" Lastuse 20210108 SourceValue "20201228" Date 20201228
  5099. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5100. IsTruncated False Blanks False
  5101. Category 16543 "20201229" Parent 16485 Levels 1493 OrderBy Drill 1469 Value "20201229"
  5102. Label "29/12/2020" Lastuse 20210108 SourceValue "20201229" Date 20201229
  5103. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5104. IsTruncated False Blanks False
  5105. Category 16545 "20201230" Parent 16485 Levels 1493 OrderBy Drill 1469 Value "20201230"
  5106. Label "30/12/2020" Lastuse 20210108 SourceValue "20201230" Date 20201230
  5107. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5108. IsTruncated False Blanks False
  5109. Category 16547 "20201231" Parent 16485 Levels 1493 OrderBy Drill 1469 Value "20201231"
  5110. Label "31/12/2020" Lastuse 20210108 SourceValue "20201231" Date 20201231
  5111. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5112. IsTruncated False Blanks False
  5113. Category 25381 "20210101-20211231" Parent 1469 Levels 1475 OrderBy Drill 1469
  5114. Value "2021" Label "2021" Lastuse 20210108 SourceValue "2021" Date 20210101
  5115. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5116. IsTruncated False Blanks False
  5117. Category 25383 "20210101-20210331" Parent 25381 Levels 1481 OrderBy Drill 1469
  5118. Value "20210101" Label "1. Q. 2021" Lastuse 20210108 SourceValue "20210101"
  5119. Date 20210101 Filtered False Suppressed False Sign False HideValue False
  5120. IsKeyOrphanage False IsTruncated False Blanks False
  5121. Category 25385 "20210101-20210131" Parent 25383 Levels 1487 OrderBy Drill 1469
  5122. Value "202101" Label "Jan./2021" Lastuse 20210108 SourceValue "202101"
  5123. Date 20210101 Filtered False Suppressed False Sign False HideValue False
  5124. IsKeyOrphanage False IsTruncated False Blanks False
  5125. Category 25387 "20210101" Parent 25385 Levels 1493 OrderBy Drill 1469 Value "20210101"
  5126. Label "01/01/2021" Lastuse 20210108 SourceValue "20210101" Date 20210101
  5127. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5128. IsTruncated False Blanks False
  5129. Category 25389 "20210102" Parent 25385 Levels 1493 OrderBy Drill 1469 Value "20210102"
  5130. Label "02/01/2021" Lastuse 20210108 SourceValue "20210102" Date 20210102
  5131. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5132. IsTruncated False Blanks False
  5133. Category 25391 "20210103" Parent 25385 Levels 1493 OrderBy Drill 1469 Value "20210103"
  5134. Label "03/01/2021" Lastuse 20210108 SourceValue "20210103" Date 20210103
  5135. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5136. IsTruncated False Blanks False
  5137. Category 25393 "20210104" Parent 25385 Levels 1493 OrderBy Drill 1469 Value "20210104"
  5138. Label "04/01/2021" Lastuse 20210108 SourceValue "20210104" Date 20210104
  5139. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5140. IsTruncated False Blanks False
  5141. Category 25395 "20210105" Parent 25385 Levels 1493 OrderBy Drill 1469 Value "20210105"
  5142. Label "05/01/2021" Lastuse 20210108 SourceValue "20210105" Date 20210105
  5143. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5144. IsTruncated False Blanks False
  5145. Category 25397 "20210106" Parent 25385 Levels 1493 OrderBy Drill 1469 Value "20210106"
  5146. Label "06/01/2021" Lastuse 20210108 SourceValue "20210106" Date 20210106
  5147. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5148. IsTruncated False Blanks False
  5149. Category 25399 "20210107" Parent 25385 Levels 1493 OrderBy Drill 1469 Value "20210107"
  5150. Label "07/01/2021" Lastuse 20210108 SourceValue "20210107" Date 20210107
  5151. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5152. IsTruncated False Blanks False
  5153. Category 25401 "20210108" Parent 25385 Levels 1493 OrderBy Drill 1469 Value "20210108"
  5154. Label "08/01/2021" Lastuse 20210108 SourceValue "20210108" Date 20210108
  5155. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5156. IsTruncated False Blanks False
  5157. Category 25403 "20210109" Parent 25385 Levels 1493 OrderBy Drill 1469 Value "20210109"
  5158. Label "09/01/2021" Lastuse 20210108 SourceValue "20210109" Date 20210109
  5159. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5160. IsTruncated False Blanks False
  5161. Category 25405 "20210110" Parent 25385 Levels 1493 OrderBy Drill 1469 Value "20210110"
  5162. Label "10/01/2021" Lastuse 20210108 SourceValue "20210110" Date 20210110
  5163. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5164. IsTruncated False Blanks False
  5165. Category 25407 "20210111" Parent 25385 Levels 1493 OrderBy Drill 1469 Value "20210111"
  5166. Label "11/01/2021" Lastuse 20210108 SourceValue "20210111" Date 20210111
  5167. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5168. IsTruncated False Blanks False
  5169. Category 25409 "20210112" Parent 25385 Levels 1493 OrderBy Drill 1469 Value "20210112"
  5170. Label "12/01/2021" Lastuse 20210108 SourceValue "20210112" Date 20210112
  5171. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5172. IsTruncated False Blanks False
  5173. Category 25411 "20210113" Parent 25385 Levels 1493 OrderBy Drill 1469 Value "20210113"
  5174. Label "13/01/2021" Lastuse 20210108 SourceValue "20210113" Date 20210113
  5175. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5176. IsTruncated False Blanks False
  5177. Category 25413 "20210114" Parent 25385 Levels 1493 OrderBy Drill 1469 Value "20210114"
  5178. Label "14/01/2021" Lastuse 20210108 SourceValue "20210114" Date 20210114
  5179. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5180. IsTruncated False Blanks False
  5181. Category 25415 "20210115" Parent 25385 Levels 1493 OrderBy Drill 1469 Value "20210115"
  5182. Label "15/01/2021" Lastuse 20210108 SourceValue "20210115" Date 20210115
  5183. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5184. IsTruncated False Blanks False
  5185. Category 25417 "20210116" Parent 25385 Levels 1493 OrderBy Drill 1469 Value "20210116"
  5186. Label "16/01/2021" Lastuse 20210108 SourceValue "20210116" Date 20210116
  5187. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5188. IsTruncated False Blanks False
  5189. Category 25419 "20210117" Parent 25385 Levels 1493 OrderBy Drill 1469 Value "20210117"
  5190. Label "17/01/2021" Lastuse 20210108 SourceValue "20210117" Date 20210117
  5191. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5192. IsTruncated False Blanks False
  5193. Category 25421 "20210118" Parent 25385 Levels 1493 OrderBy Drill 1469 Value "20210118"
  5194. Label "18/01/2021" Lastuse 20210108 SourceValue "20210118" Date 20210118
  5195. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5196. IsTruncated False Blanks False
  5197. Category 25423 "20210119" Parent 25385 Levels 1493 OrderBy Drill 1469 Value "20210119"
  5198. Label "19/01/2021" Lastuse 20210108 SourceValue "20210119" Date 20210119
  5199. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5200. IsTruncated False Blanks False
  5201. Category 25425 "20210120" Parent 25385 Levels 1493 OrderBy Drill 1469 Value "20210120"
  5202. Label "20/01/2021" Lastuse 20210108 SourceValue "20210120" Date 20210120
  5203. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5204. IsTruncated False Blanks False
  5205. Category 25427 "20210121" Parent 25385 Levels 1493 OrderBy Drill 1469 Value "20210121"
  5206. Label "21/01/2021" Lastuse 20210108 SourceValue "20210121" Date 20210121
  5207. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5208. IsTruncated False Blanks False
  5209. Category 25429 "20210122" Parent 25385 Levels 1493 OrderBy Drill 1469 Value "20210122"
  5210. Label "22/01/2021" Lastuse 20210108 SourceValue "20210122" Date 20210122
  5211. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5212. IsTruncated False Blanks False
  5213. Category 25431 "20210123" Parent 25385 Levels 1493 OrderBy Drill 1469 Value "20210123"
  5214. Label "23/01/2021" Lastuse 20210108 SourceValue "20210123" Date 20210123
  5215. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5216. IsTruncated False Blanks False
  5217. Category 25433 "20210124" Parent 25385 Levels 1493 OrderBy Drill 1469 Value "20210124"
  5218. Label "24/01/2021" Lastuse 20210108 SourceValue "20210124" Date 20210124
  5219. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5220. IsTruncated False Blanks False
  5221. Category 25435 "20210125" Parent 25385 Levels 1493 OrderBy Drill 1469 Value "20210125"
  5222. Label "25/01/2021" Lastuse 20210108 SourceValue "20210125" Date 20210125
  5223. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5224. IsTruncated False Blanks False
  5225. Category 25437 "20210126" Parent 25385 Levels 1493 OrderBy Drill 1469 Value "20210126"
  5226. Label "26/01/2021" Lastuse 20210108 SourceValue "20210126" Date 20210126
  5227. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5228. IsTruncated False Blanks False
  5229. Category 25439 "20210127" Parent 25385 Levels 1493 OrderBy Drill 1469 Value "20210127"
  5230. Label "27/01/2021" Lastuse 20210108 SourceValue "20210127" Date 20210127
  5231. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5232. IsTruncated False Blanks False
  5233. Category 25441 "20210128" Parent 25385 Levels 1493 OrderBy Drill 1469 Value "20210128"
  5234. Label "28/01/2021" Lastuse 20210108 SourceValue "20210128" Date 20210128
  5235. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5236. IsTruncated False Blanks False
  5237. Category 25443 "20210129" Parent 25385 Levels 1493 OrderBy Drill 1469 Value "20210129"
  5238. Label "29/01/2021" Lastuse 20210108 SourceValue "20210129" Date 20210129
  5239. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5240. IsTruncated False Blanks False
  5241. Category 25445 "20210130" Parent 25385 Levels 1493 OrderBy Drill 1469 Value "20210130"
  5242. Label "30/01/2021" Lastuse 20210108 SourceValue "20210130" Date 20210130
  5243. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5244. IsTruncated False Blanks False
  5245. Category 25447 "20210131" Parent 25385 Levels 1493 OrderBy Drill 1469 Value "20210131"
  5246. Label "31/01/2021" Lastuse 20210108 SourceValue "20210131" Date 20210131
  5247. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5248. IsTruncated False Blanks False
  5249. SpecialCategory 1499 "Aktueller Tag" Parent 1467 Levels 0 Lastuse 20210108
  5250. Rollup True TimeAggregate Single RunningPeriods 0 TargetOffset 0 TargetLevel "Tag"
  5251. ContextOffset 0 DateDrill 1469 Primary 16515 Sign False
  5252. SpecialCategory 1501 "Gestern" Parent 1467 Levels 0 Lastuse 20210108 Rollup True
  5253. TimeAggregate Single RunningPeriods 0 TargetOffset -1 TargetLevel "Tag"
  5254. ContextOffset 0 DateDrill 1469 Primary 16513 Sign False
  5255. SpecialCategory 1503 "M bisher" Parent 1467 Levels 0 Lastuse 20210108 Rollup True
  5256. TimeAggregate ToDate RunningPeriods 0 ToDateLevel "Monat" TargetOffset 0
  5257. TargetLevel "Tag" ContextOffset 0 DateDrill 1469 Primary 16487 Primary 16489
  5258. Primary 16491 Primary 16493 Primary 16495 Primary 16497 Primary 16499 Primary 16501
  5259. Primary 16503 Primary 16505 Primary 16507 Primary 16509 Primary 16511 Primary 16513
  5260. Primary 16515 Sign False
  5261. SpecialCategory 1505 "Voriger M bisher" Parent 1467 Levels 0 Lastuse 20210108
  5262. Rollup True TimeAggregate ToDate RunningPeriods 0 ToDateLevel "Monat" TargetOffset 0
  5263. TargetLevel "Tag" ContextOffset -1 ContextLevel "Monat" DateDrill 1469
  5264. Primary 16425 Primary 16427 Primary 16429 Primary 16431 Primary 16433 Primary 16435
  5265. Primary 16437 Primary 16439 Primary 16441 Primary 16443 Primary 16445 Primary 16447
  5266. Primary 16449 Primary 16451 Primary 16453 Sign False
  5267. SpecialCategory 1507 "M bisher gruppiert" Parent 1467 Levels 0 Lastuse 20210108
  5268. Rollup True TimeAggregate ToDate_Grp RunningPeriods 0 ToDateLevel "Monat"
  5269. TargetOffset 0 TargetLevel "Tag" ContextOffset -1 ContextLevel "Monat"
  5270. DateDrill 1469 TransientLevelList 13831 For 1507 EndList Primary 13825
  5271. Primary 13823 Primary 13827 Primary 13829 Sign False
  5272. SpecialCategory 13825 "M bisher gruppiert~Voriger M bisher" Parent 1507
  5273. Levels 0 Label "Voriger M bisher" Lastuse 20210108 Rollup False TimeAggregate ToDate
  5274. RunningPeriods 0 ToDateLevel "Monat" TargetOffset 0 TargetLevel "Tag" ContextOffset -1
  5275. ContextLevel "Monat" DateDrill 1469 Primary 16425 Primary 16427 Primary 16429
  5276. Primary 16431 Primary 16433 Primary 16435 Primary 16437 Primary 16439 Primary 16441
  5277. Primary 16443 Primary 16445 Primary 16447 Primary 16449 Primary 16451 Primary 16453
  5278. Sign False
  5279. SpecialCategory 13823 "M bisher gruppiert~M bisher" Parent 1507 Levels 0
  5280. Label "M bisher" Lastuse 20210108 Rollup False TimeAggregate ToDate RunningPeriods 0
  5281. ToDateLevel "Monat" TargetOffset 0 TargetLevel "Tag" ContextOffset 0 DateDrill 1469
  5282. Primary 16487 Primary 16489 Primary 16491 Primary 16493 Primary 16495 Primary 16497
  5283. Primary 16499 Primary 16501 Primary 16503 Primary 16505 Primary 16507 Primary 16509
  5284. Primary 16511 Primary 16513 Primary 16515 Sign False
  5285. SpecialCategory 13827 "M bisher gruppiert~ÄNDERUNG ( ""Voriger M bisher"" , ""M bisher"" )"
  5286. Parent 1507 Levels 0 Label "M bisher Änderung" Lastuse 20210108 Rollup False
  5287. TimeAggregate None Calc change ( "M bisher gruppiert~Voriger M bisher@13825" , "M bisher gruppiert~M bisher@13823" ) Sign False
  5288. SpecialCategory 13829 "M bisher gruppiert~PROZENTZUWACHS ( ""Voriger M bisher"" , ""M bisher"" )"
  5289. Parent 1507 Levels 0 Label "M bisher Zuwachs" Lastuse 20210108 Rollup False
  5290. TimeAggregate None Calc percent-growth ( "M bisher gruppiert~Voriger M bisher@13825" , "M bisher gruppiert~M bisher@13823" ) Format "0%~2"
  5291. Sign False
  5292. SpecialCategory 1509 "Q bisher" Parent 1467 Levels 0 Lastuse 20210108 Rollup True
  5293. TimeAggregate ToDate RunningPeriods 0 ToDateLevel "Quartal" TargetOffset 0
  5294. TargetLevel "Tag" ContextOffset 0 DateDrill 1469 TransientLevelList 13835 For 1487
  5295. EndList Primary 13833 Primary 16549 Primary 16551 Sign False
  5296. SpecialCategory 13833 "Q bisher~Monat1" Parent 1509 Levels 0 Label "Okt./2020"
  5297. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 16361
  5298. Primary 16363 Primary 16365 Primary 16367 Primary 16369 Primary 16371 Primary 16373
  5299. Primary 16375 Primary 16377 Primary 16379 Primary 16381 Primary 16383 Primary 16385
  5300. Primary 16387 Primary 16389 Primary 16391 Primary 16393 Primary 16395 Primary 16397
  5301. Primary 16399 Primary 16401 Primary 16403 Primary 16405 Primary 16407 Primary 16409
  5302. Primary 16411 Primary 16413 Primary 16415 Primary 16417 Primary 16419 Primary 16421
  5303. Sign False
  5304. SpecialCategory 16549 "Q bisher~Monat2" Parent 1509 Levels 0 Label "Nov./2020"
  5305. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 16425
  5306. Primary 16427 Primary 16429 Primary 16431 Primary 16433 Primary 16435 Primary 16437
  5307. Primary 16439 Primary 16441 Primary 16443 Primary 16445 Primary 16447 Primary 16449
  5308. Primary 16451 Primary 16453 Primary 16455 Primary 16457 Primary 16459 Primary 16461
  5309. Primary 16463 Primary 16465 Primary 16467 Primary 16469 Primary 16471 Primary 16473
  5310. Primary 16475 Primary 16477 Primary 16479 Primary 16481 Primary 16483 Sign False
  5311. SpecialCategory 16551 "Q bisher~Monat3" Parent 1509 Levels 0 Label "Dez./2020"
  5312. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 16487
  5313. Primary 16489 Primary 16491 Primary 16493 Primary 16495 Primary 16497 Primary 16499
  5314. Primary 16501 Primary 16503 Primary 16505 Primary 16507 Primary 16509 Primary 16511
  5315. Primary 16513 Primary 16515 Sign False
  5316. SpecialCategory 1511 "Voriges Q bisher" Parent 1467 Levels 0 Lastuse 20210108
  5317. Rollup True TimeAggregate ToDate RunningPeriods 0 ToDateLevel "Quartal"
  5318. TargetOffset 0 TargetLevel "Tag" ContextOffset -1 ContextLevel "Quartal"
  5319. DateDrill 1469 TransientLevelList 13839 For 1487 EndList Primary 13837
  5320. Primary 16553 Primary 16555 Sign False
  5321. SpecialCategory 13837 "Voriges Q bisher~Monat1" Parent 1511 Levels 0 Label "Juli/2020"
  5322. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 16169
  5323. Primary 16171 Primary 16173 Primary 16175 Primary 16177 Primary 16179 Primary 16181
  5324. Primary 16183 Primary 16185 Primary 16187 Primary 16189 Primary 16191 Primary 16193
  5325. Primary 16195 Primary 16197 Primary 16199 Primary 16201 Primary 16203 Primary 16205
  5326. Primary 16207 Primary 16209 Primary 16211 Primary 16213 Primary 16215 Primary 16217
  5327. Primary 16219 Primary 16221 Primary 16223 Primary 16225 Primary 16227 Primary 16229
  5328. Sign False
  5329. SpecialCategory 16553 "Voriges Q bisher~Monat2" Parent 1511 Levels 0 Label "Aug./2020"
  5330. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 16233
  5331. Primary 16235 Primary 16237 Primary 16239 Primary 16241 Primary 16243 Primary 16245
  5332. Primary 16247 Primary 16249 Primary 16251 Primary 16253 Primary 16255 Primary 16257
  5333. Primary 16259 Primary 16261 Primary 16263 Primary 16265 Primary 16267 Primary 16269
  5334. Primary 16271 Primary 16273 Primary 16275 Primary 16277 Primary 16279 Primary 16281
  5335. Primary 16283 Primary 16285 Primary 16287 Primary 16289 Primary 16291 Primary 16293
  5336. Sign False
  5337. SpecialCategory 16555 "Voriges Q bisher~Monat3" Parent 1511 Levels 0 Label "Sept./2020"
  5338. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 16297
  5339. Primary 16299 Primary 16301 Primary 16303 Primary 16305 Primary 16307 Primary 16309
  5340. Primary 16311 Primary 16313 Primary 16315 Primary 16317 Primary 16319 Primary 16321
  5341. Primary 16323 Sign False
  5342. SpecialCategory 1513 "Q bisher gruppiert" Parent 1467 Levels 0 Lastuse 20210108
  5343. Rollup True TimeAggregate ToDate_Grp RunningPeriods 0 ToDateLevel "Quartal"
  5344. TargetOffset 0 TargetLevel "Tag" ContextOffset -1 ContextLevel "Quartal"
  5345. DateDrill 1469 TransientLevelList 13845 For 1487 13855 For 1513 EndList Primary 13847
  5346. Primary 13841 Primary 13851 Primary 13853 Sign False
  5347. SpecialCategory 13847 "Q bisher gruppiert~Voriges Q bisher" Parent 1513
  5348. Levels 0 Label "Voriges Q bisher" Lastuse 20210108 Rollup False TimeAggregate ToDate
  5349. RunningPeriods 0 ToDateLevel "Quartal" TargetOffset 0 TargetLevel "Tag"
  5350. ContextOffset -1 ContextLevel "Quartal" DateDrill 1469 Primary 13849 Primary 16557
  5351. Primary 16559 Sign False
  5352. SpecialCategory 13849 "Q bisher gruppiert~Voriges Q bisher~Monat1" Parent 13847
  5353. Levels 0 Label "Juli/2020" Inclusion Generate Lastuse 20210108 Rollup True
  5354. TimeAggregate None Primary 16169 Primary 16171 Primary 16173 Primary 16175
  5355. Primary 16177 Primary 16179 Primary 16181 Primary 16183 Primary 16185 Primary 16187
  5356. Primary 16189 Primary 16191 Primary 16193 Primary 16195 Primary 16197 Primary 16199
  5357. Primary 16201 Primary 16203 Primary 16205 Primary 16207 Primary 16209 Primary 16211
  5358. Primary 16213 Primary 16215 Primary 16217 Primary 16219 Primary 16221 Primary 16223
  5359. Primary 16225 Primary 16227 Primary 16229 Sign False
  5360. SpecialCategory 16557 "Q bisher gruppiert~Voriges Q bisher~Monat2" Parent 13847
  5361. Levels 0 Label "Aug./2020" Inclusion Generate Lastuse 20210108 Rollup True
  5362. TimeAggregate None Primary 16233 Primary 16235 Primary 16237 Primary 16239
  5363. Primary 16241 Primary 16243 Primary 16245 Primary 16247 Primary 16249 Primary 16251
  5364. Primary 16253 Primary 16255 Primary 16257 Primary 16259 Primary 16261 Primary 16263
  5365. Primary 16265 Primary 16267 Primary 16269 Primary 16271 Primary 16273 Primary 16275
  5366. Primary 16277 Primary 16279 Primary 16281 Primary 16283 Primary 16285 Primary 16287
  5367. Primary 16289 Primary 16291 Primary 16293 Sign False
  5368. SpecialCategory 16559 "Q bisher gruppiert~Voriges Q bisher~Monat3" Parent 13847
  5369. Levels 0 Label "Sept./2020" Inclusion Generate Lastuse 20210108 Rollup True
  5370. TimeAggregate None Primary 16297 Primary 16299 Primary 16301 Primary 16303
  5371. Primary 16305 Primary 16307 Primary 16309 Primary 16311 Primary 16313 Primary 16315
  5372. Primary 16317 Primary 16319 Primary 16321 Primary 16323 Sign False
  5373. SpecialCategory 13841 "Q bisher gruppiert~Q bisher" Parent 1513 Levels 0
  5374. Label "Q bisher" Lastuse 20210108 Rollup False TimeAggregate ToDate RunningPeriods 0
  5375. ToDateLevel "Quartal" TargetOffset 0 TargetLevel "Tag" ContextOffset 0
  5376. DateDrill 1469 Primary 13843 Primary 16561 Primary 16563 Sign False
  5377. SpecialCategory 13843 "Q bisher gruppiert~Q bisher~Monat1" Parent 13841
  5378. Levels 0 Label "Okt./2020" Inclusion Generate Lastuse 20210108 Rollup True
  5379. TimeAggregate None Primary 16361 Primary 16363 Primary 16365 Primary 16367
  5380. Primary 16369 Primary 16371 Primary 16373 Primary 16375 Primary 16377 Primary 16379
  5381. Primary 16381 Primary 16383 Primary 16385 Primary 16387 Primary 16389 Primary 16391
  5382. Primary 16393 Primary 16395 Primary 16397 Primary 16399 Primary 16401 Primary 16403
  5383. Primary 16405 Primary 16407 Primary 16409 Primary 16411 Primary 16413 Primary 16415
  5384. Primary 16417 Primary 16419 Primary 16421 Sign False
  5385. SpecialCategory 16561 "Q bisher gruppiert~Q bisher~Monat2" Parent 13841
  5386. Levels 0 Label "Nov./2020" Inclusion Generate Lastuse 20210108 Rollup True
  5387. TimeAggregate None Primary 16425 Primary 16427 Primary 16429 Primary 16431
  5388. Primary 16433 Primary 16435 Primary 16437 Primary 16439 Primary 16441 Primary 16443
  5389. Primary 16445 Primary 16447 Primary 16449 Primary 16451 Primary 16453 Primary 16455
  5390. Primary 16457 Primary 16459 Primary 16461 Primary 16463 Primary 16465 Primary 16467
  5391. Primary 16469 Primary 16471 Primary 16473 Primary 16475 Primary 16477 Primary 16479
  5392. Primary 16481 Primary 16483 Sign False
  5393. SpecialCategory 16563 "Q bisher gruppiert~Q bisher~Monat3" Parent 13841
  5394. Levels 0 Label "Dez./2020" Inclusion Generate Lastuse 20210108 Rollup True
  5395. TimeAggregate None Primary 16487 Primary 16489 Primary 16491 Primary 16493
  5396. Primary 16495 Primary 16497 Primary 16499 Primary 16501 Primary 16503 Primary 16505
  5397. Primary 16507 Primary 16509 Primary 16511 Primary 16513 Primary 16515 Sign False
  5398. SpecialCategory 13851 "Q bisher gruppiert~ÄNDERUNG ( ""Voriges Q bisher"" , ""Q bisher"" )"
  5399. Parent 1513 Levels 0 Label "Q bisher Änderung" Lastuse 20210108 Rollup False
  5400. TimeAggregate None Calc change ( "Q bisher gruppiert~Voriges Q bisher@13847" , "Q bisher gruppiert~Q bisher@13841" ) Sign False
  5401. SpecialCategory 13853 "Q bisher gruppiert~PROZENTZUWACHS ( ""Voriges Q bisher"" , ""Q bisher"" )"
  5402. Parent 1513 Levels 0 Label "Q bisher Zuwachs" Lastuse 20210108 Rollup False
  5403. TimeAggregate None Calc percent-growth ( "Q bisher gruppiert~Voriges Q bisher@13847" , "Q bisher gruppiert~Q bisher@13841" ) Format "0%~2"
  5404. Sign False
  5405. SpecialCategory 1515 "J bisher" Parent 1467 Levels 0 Lastuse 20210108 Rollup True
  5406. TimeAggregate ToDate RunningPeriods 0 ToDateLevel "Jahr" TargetOffset 0
  5407. TargetLevel "Tag" ContextOffset 0 DateDrill 1469 TransientLevelList 13859 For 1481
  5408. 13863 For 1487 EndList Primary 13857 Primary 13869 Primary 13877 Primary 16569
  5409. Sign False
  5410. SpecialCategory 13857 "J bisher~Quartal1" Parent 1515 Levels 0 Label "1. Q. 2020"
  5411. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 13861
  5412. Primary 13865 Primary 13867 Sign False
  5413. SpecialCategory 13861 "J bisher~Quartal1~Monat1" Parent 13857 Levels 0
  5414. Label "Jan./2020" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5415. Primary 15789 Primary 15791 Primary 15793 Primary 15795 Primary 15797 Primary 15799
  5416. Primary 15801 Primary 15803 Primary 15805 Primary 15807 Primary 15809 Primary 15811
  5417. Primary 15813 Primary 15815 Primary 15817 Primary 15819 Primary 15821 Primary 15823
  5418. Primary 15825 Primary 15827 Primary 15829 Primary 15831 Primary 15833 Primary 15835
  5419. Primary 15837 Primary 15839 Primary 15841 Primary 15843 Primary 15845 Primary 15847
  5420. Primary 15849 Sign False
  5421. SpecialCategory 13865 "J bisher~Quartal1~Monat2" Parent 13857 Levels 0
  5422. Label "Feb./2020" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5423. Primary 15853 Primary 15855 Primary 15857 Primary 15859 Primary 15861 Primary 15863
  5424. Primary 15865 Primary 15867 Primary 15869 Primary 15871 Primary 15873 Primary 15875
  5425. Primary 15877 Primary 15879 Primary 15881 Primary 15883 Primary 15885 Primary 15887
  5426. Primary 15889 Primary 15891 Primary 15893 Primary 15895 Primary 15897 Primary 15899
  5427. Primary 15901 Primary 15903 Primary 15905 Primary 15907 Primary 15909 Sign False
  5428. SpecialCategory 13867 "J bisher~Quartal1~Monat3" Parent 13857 Levels 0
  5429. Label "März/2020" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5430. Primary 15913 Primary 15915 Primary 15917 Primary 15919 Primary 15921 Primary 15923
  5431. Primary 15925 Primary 15927 Primary 15929 Primary 15931 Primary 15933 Primary 15935
  5432. Primary 15937 Primary 15939 Primary 15941 Primary 15943 Primary 15945 Primary 15947
  5433. Primary 15949 Primary 15951 Primary 15953 Primary 15955 Primary 15957 Primary 15959
  5434. Primary 15961 Primary 15963 Primary 15965 Primary 15967 Primary 15969 Primary 15971
  5435. Primary 15973 Sign False
  5436. SpecialCategory 13869 "J bisher~Quartal2" Parent 1515 Levels 0 Label "2. Q. 2020"
  5437. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 13871
  5438. Primary 13873 Primary 13875 Sign False
  5439. SpecialCategory 13871 "J bisher~Quartal2~Monat1" Parent 13869 Levels 0
  5440. Label "Apr./2020" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5441. Primary 15979 Primary 15981 Primary 15983 Primary 15985 Primary 15987 Primary 15989
  5442. Primary 15991 Primary 15993 Primary 15995 Primary 15997 Primary 15999 Primary 16001
  5443. Primary 16003 Primary 16005 Primary 16007 Primary 16009 Primary 16011 Primary 16013
  5444. Primary 16015 Primary 16017 Primary 16019 Primary 16021 Primary 16023 Primary 16025
  5445. Primary 16027 Primary 16029 Primary 16031 Primary 16033 Primary 16035 Primary 16037
  5446. Sign False
  5447. SpecialCategory 13873 "J bisher~Quartal2~Monat2" Parent 13869 Levels 0
  5448. Label "Mai/2020" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5449. Primary 16041 Primary 16043 Primary 16045 Primary 16047 Primary 16049 Primary 16051
  5450. Primary 16053 Primary 16055 Primary 16057 Primary 16059 Primary 16061 Primary 16063
  5451. Primary 16065 Primary 16067 Primary 16069 Primary 16071 Primary 16073 Primary 16075
  5452. Primary 16077 Primary 16079 Primary 16081 Primary 16083 Primary 16085 Primary 16087
  5453. Primary 16089 Primary 16091 Primary 16093 Primary 16095 Primary 16097 Primary 16099
  5454. Primary 16101 Sign False
  5455. SpecialCategory 13875 "J bisher~Quartal2~Monat3" Parent 13869 Levels 0
  5456. Label "Juni/2020" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5457. Primary 16105 Primary 16107 Primary 16109 Primary 16111 Primary 16113 Primary 16115
  5458. Primary 16117 Primary 16119 Primary 16121 Primary 16123 Primary 16125 Primary 16127
  5459. Primary 16129 Primary 16131 Primary 16133 Primary 16135 Primary 16137 Primary 16139
  5460. Primary 16141 Primary 16143 Primary 16145 Primary 16147 Primary 16149 Primary 16151
  5461. Primary 16153 Primary 16155 Primary 16157 Primary 16159 Primary 16161 Primary 16163
  5462. Sign False
  5463. SpecialCategory 13877 "J bisher~Quartal3" Parent 1515 Levels 0 Label "3. Q. 2020"
  5464. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 13879
  5465. Primary 16565 Primary 16567 Sign False
  5466. SpecialCategory 13879 "J bisher~Quartal3~Monat1" Parent 13877 Levels 0
  5467. Label "Juli/2020" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5468. Primary 16169 Primary 16171 Primary 16173 Primary 16175 Primary 16177 Primary 16179
  5469. Primary 16181 Primary 16183 Primary 16185 Primary 16187 Primary 16189 Primary 16191
  5470. Primary 16193 Primary 16195 Primary 16197 Primary 16199 Primary 16201 Primary 16203
  5471. Primary 16205 Primary 16207 Primary 16209 Primary 16211 Primary 16213 Primary 16215
  5472. Primary 16217 Primary 16219 Primary 16221 Primary 16223 Primary 16225 Primary 16227
  5473. Primary 16229 Sign False
  5474. SpecialCategory 16565 "J bisher~Quartal3~Monat2" Parent 13877 Levels 0
  5475. Label "Aug./2020" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5476. Primary 16233 Primary 16235 Primary 16237 Primary 16239 Primary 16241 Primary 16243
  5477. Primary 16245 Primary 16247 Primary 16249 Primary 16251 Primary 16253 Primary 16255
  5478. Primary 16257 Primary 16259 Primary 16261 Primary 16263 Primary 16265 Primary 16267
  5479. Primary 16269 Primary 16271 Primary 16273 Primary 16275 Primary 16277 Primary 16279
  5480. Primary 16281 Primary 16283 Primary 16285 Primary 16287 Primary 16289 Primary 16291
  5481. Primary 16293 Sign False
  5482. SpecialCategory 16567 "J bisher~Quartal3~Monat3" Parent 13877 Levels 0
  5483. Label "Sept./2020" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5484. Primary 16297 Primary 16299 Primary 16301 Primary 16303 Primary 16305 Primary 16307
  5485. Primary 16309 Primary 16311 Primary 16313 Primary 16315 Primary 16317 Primary 16319
  5486. Primary 16321 Primary 16323 Primary 16325 Primary 16327 Primary 16329 Primary 16331
  5487. Primary 16333 Primary 16335 Primary 16337 Primary 16339 Primary 16341 Primary 16343
  5488. Primary 16345 Primary 16347 Primary 16349 Primary 16351 Primary 16353 Primary 16355
  5489. Sign False
  5490. SpecialCategory 16569 "J bisher~Quartal4" Parent 1515 Levels 0 Label "4. Q. 2020"
  5491. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 16571
  5492. Primary 16573 Primary 16575 Sign False
  5493. SpecialCategory 16571 "J bisher~Quartal4~Monat1" Parent 16569 Levels 0
  5494. Label "Okt./2020" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5495. Primary 16361 Primary 16363 Primary 16365 Primary 16367 Primary 16369 Primary 16371
  5496. Primary 16373 Primary 16375 Primary 16377 Primary 16379 Primary 16381 Primary 16383
  5497. Primary 16385 Primary 16387 Primary 16389 Primary 16391 Primary 16393 Primary 16395
  5498. Primary 16397 Primary 16399 Primary 16401 Primary 16403 Primary 16405 Primary 16407
  5499. Primary 16409 Primary 16411 Primary 16413 Primary 16415 Primary 16417 Primary 16419
  5500. Primary 16421 Sign False
  5501. SpecialCategory 16573 "J bisher~Quartal4~Monat2" Parent 16569 Levels 0
  5502. Label "Nov./2020" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5503. Primary 16425 Primary 16427 Primary 16429 Primary 16431 Primary 16433 Primary 16435
  5504. Primary 16437 Primary 16439 Primary 16441 Primary 16443 Primary 16445 Primary 16447
  5505. Primary 16449 Primary 16451 Primary 16453 Primary 16455 Primary 16457 Primary 16459
  5506. Primary 16461 Primary 16463 Primary 16465 Primary 16467 Primary 16469 Primary 16471
  5507. Primary 16473 Primary 16475 Primary 16477 Primary 16479 Primary 16481 Primary 16483
  5508. Sign False
  5509. SpecialCategory 16575 "J bisher~Quartal4~Monat3" Parent 16569 Levels 0
  5510. Label "Dez./2020" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5511. Primary 16487 Primary 16489 Primary 16491 Primary 16493 Primary 16495 Primary 16497
  5512. Primary 16499 Primary 16501 Primary 16503 Primary 16505 Primary 16507 Primary 16509
  5513. Primary 16511 Primary 16513 Primary 16515 Sign False
  5514. SpecialCategory 1517 "Voriges J bisher" Parent 1467 Levels 0 Lastuse 20210108
  5515. Rollup True TimeAggregate ToDate RunningPeriods 0 ToDateLevel "Jahr" TargetOffset 0
  5516. TargetLevel "Tag" ContextOffset -1 ContextLevel "Jahr" DateDrill 1469 TransientLevelList 13883 For 1481
  5517. 13887 For 1487 EndList Primary 13881 Sign False
  5518. SpecialCategory 13881 "Voriges J bisher~Quartal1" Parent 1517 Levels 0
  5519. Label "1. Q. 2019" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5520. Primary 13885 Sign False
  5521. SpecialCategory 13885 "Voriges J bisher~Quartal1~Monat1" Parent 13881 Levels 0
  5522. Label "März/2019" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5523. Primary 21163 Primary 21165 Primary 21167 Primary 21169 Primary 21171 Primary 21173
  5524. Primary 21175 Primary 21177 Primary 21179 Primary 21181 Primary 21183 Primary 21185
  5525. Primary 21187 Primary 21189 Primary 21191 Sign False
  5526. SpecialCategory 1519 "J bisher gruppiert" Parent 1467 Levels 0 Lastuse 20210108
  5527. Rollup True TimeAggregate ToDate_Grp RunningPeriods 0 ToDateLevel "Jahr"
  5528. TargetOffset 0 TargetLevel "Tag" ContextOffset -1 ContextLevel "Jahr" DateDrill 1469
  5529. TransientLevelList 13909 For 1481 13913 For 1487 13957 For 1519 EndList Primary 13931
  5530. Primary 13905 Primary 13953 Primary 13955 Sign False
  5531. SpecialCategory 13931 "J bisher gruppiert~Voriges J bisher" Parent 1519
  5532. Levels 0 Label "Voriges J bisher" Lastuse 20210108 Rollup False TimeAggregate ToDate
  5533. RunningPeriods 0 ToDateLevel "Jahr" TargetOffset 0 TargetLevel "Tag" ContextOffset -1
  5534. ContextLevel "Jahr" DateDrill 1469 Primary 13933 Sign False
  5535. SpecialCategory 13933 "J bisher gruppiert~Voriges J bisher~Quartal1" Parent 13931
  5536. Levels 0 Label "1. Q. 2019" Inclusion Generate Lastuse 20210108 Rollup True
  5537. TimeAggregate None Primary 13935 Sign False
  5538. SpecialCategory 13935 "J bisher gruppiert~Voriges J bisher~Quartal1~Monat1"
  5539. Parent 13933 Levels 0 Label "März/2019" Inclusion Generate Lastuse 20210108
  5540. Rollup True TimeAggregate None Primary 21163 Primary 21165 Primary 21167
  5541. Primary 21169 Primary 21171 Primary 21173 Primary 21175 Primary 21177 Primary 21179
  5542. Primary 21181 Primary 21183 Primary 21185 Primary 21187 Primary 21189 Primary 21191
  5543. Sign False
  5544. SpecialCategory 13905 "J bisher gruppiert~J bisher" Parent 1519 Levels 0
  5545. Label "J bisher" Lastuse 20210108 Rollup False TimeAggregate ToDate RunningPeriods 0
  5546. ToDateLevel "Jahr" TargetOffset 0 TargetLevel "Tag" ContextOffset 0 DateDrill 1469
  5547. Primary 13907 Primary 13919 Primary 13927 Primary 16605 Sign False
  5548. SpecialCategory 13907 "J bisher gruppiert~J bisher~Quartal1" Parent 13905
  5549. Levels 0 Label "1. Q. 2020" Inclusion Generate Lastuse 20210108 Rollup True
  5550. TimeAggregate None Primary 13911 Primary 13915 Primary 13917 Sign False
  5551. SpecialCategory 13911 "J bisher gruppiert~J bisher~Quartal1~Monat1" Parent 13907
  5552. Levels 0 Label "Jan./2020" Inclusion Generate Lastuse 20210108 Rollup True
  5553. TimeAggregate None Primary 15789 Primary 15791 Primary 15793 Primary 15795
  5554. Primary 15797 Primary 15799 Primary 15801 Primary 15803 Primary 15805 Primary 15807
  5555. Primary 15809 Primary 15811 Primary 15813 Primary 15815 Primary 15817 Primary 15819
  5556. Primary 15821 Primary 15823 Primary 15825 Primary 15827 Primary 15829 Primary 15831
  5557. Primary 15833 Primary 15835 Primary 15837 Primary 15839 Primary 15841 Primary 15843
  5558. Primary 15845 Primary 15847 Primary 15849 Sign False
  5559. SpecialCategory 13915 "J bisher gruppiert~J bisher~Quartal1~Monat2" Parent 13907
  5560. Levels 0 Label "Feb./2020" Inclusion Generate Lastuse 20210108 Rollup True
  5561. TimeAggregate None Primary 15853 Primary 15855 Primary 15857 Primary 15859
  5562. Primary 15861 Primary 15863 Primary 15865 Primary 15867 Primary 15869 Primary 15871
  5563. Primary 15873 Primary 15875 Primary 15877 Primary 15879 Primary 15881 Primary 15883
  5564. Primary 15885 Primary 15887 Primary 15889 Primary 15891 Primary 15893 Primary 15895
  5565. Primary 15897 Primary 15899 Primary 15901 Primary 15903 Primary 15905 Primary 15907
  5566. Primary 15909 Sign False
  5567. SpecialCategory 13917 "J bisher gruppiert~J bisher~Quartal1~Monat3" Parent 13907
  5568. Levels 0 Label "März/2020" Inclusion Generate Lastuse 20210108 Rollup True
  5569. TimeAggregate None Primary 15913 Primary 15915 Primary 15917 Primary 15919
  5570. Primary 15921 Primary 15923 Primary 15925 Primary 15927 Primary 15929 Primary 15931
  5571. Primary 15933 Primary 15935 Primary 15937 Primary 15939 Primary 15941 Primary 15943
  5572. Primary 15945 Primary 15947 Primary 15949 Primary 15951 Primary 15953 Primary 15955
  5573. Primary 15957 Primary 15959 Primary 15961 Primary 15963 Primary 15965 Primary 15967
  5574. Primary 15969 Primary 15971 Primary 15973 Sign False
  5575. SpecialCategory 13919 "J bisher gruppiert~J bisher~Quartal2" Parent 13905
  5576. Levels 0 Label "2. Q. 2020" Inclusion Generate Lastuse 20210108 Rollup True
  5577. TimeAggregate None Primary 13921 Primary 13923 Primary 13925 Sign False
  5578. SpecialCategory 13921 "J bisher gruppiert~J bisher~Quartal2~Monat1" Parent 13919
  5579. Levels 0 Label "Apr./2020" Inclusion Generate Lastuse 20210108 Rollup True
  5580. TimeAggregate None Primary 15979 Primary 15981 Primary 15983 Primary 15985
  5581. Primary 15987 Primary 15989 Primary 15991 Primary 15993 Primary 15995 Primary 15997
  5582. Primary 15999 Primary 16001 Primary 16003 Primary 16005 Primary 16007 Primary 16009
  5583. Primary 16011 Primary 16013 Primary 16015 Primary 16017 Primary 16019 Primary 16021
  5584. Primary 16023 Primary 16025 Primary 16027 Primary 16029 Primary 16031 Primary 16033
  5585. Primary 16035 Primary 16037 Sign False
  5586. SpecialCategory 13923 "J bisher gruppiert~J bisher~Quartal2~Monat2" Parent 13919
  5587. Levels 0 Label "Mai/2020" Inclusion Generate Lastuse 20210108 Rollup True
  5588. TimeAggregate None Primary 16041 Primary 16043 Primary 16045 Primary 16047
  5589. Primary 16049 Primary 16051 Primary 16053 Primary 16055 Primary 16057 Primary 16059
  5590. Primary 16061 Primary 16063 Primary 16065 Primary 16067 Primary 16069 Primary 16071
  5591. Primary 16073 Primary 16075 Primary 16077 Primary 16079 Primary 16081 Primary 16083
  5592. Primary 16085 Primary 16087 Primary 16089 Primary 16091 Primary 16093 Primary 16095
  5593. Primary 16097 Primary 16099 Primary 16101 Sign False
  5594. SpecialCategory 13925 "J bisher gruppiert~J bisher~Quartal2~Monat3" Parent 13919
  5595. Levels 0 Label "Juni/2020" Inclusion Generate Lastuse 20210108 Rollup True
  5596. TimeAggregate None Primary 16105 Primary 16107 Primary 16109 Primary 16111
  5597. Primary 16113 Primary 16115 Primary 16117 Primary 16119 Primary 16121 Primary 16123
  5598. Primary 16125 Primary 16127 Primary 16129 Primary 16131 Primary 16133 Primary 16135
  5599. Primary 16137 Primary 16139 Primary 16141 Primary 16143 Primary 16145 Primary 16147
  5600. Primary 16149 Primary 16151 Primary 16153 Primary 16155 Primary 16157 Primary 16159
  5601. Primary 16161 Primary 16163 Sign False
  5602. SpecialCategory 13927 "J bisher gruppiert~J bisher~Quartal3" Parent 13905
  5603. Levels 0 Label "3. Q. 2020" Inclusion Generate Lastuse 20210108 Rollup True
  5604. TimeAggregate None Primary 13929 Primary 16601 Primary 16603 Sign False
  5605. SpecialCategory 13929 "J bisher gruppiert~J bisher~Quartal3~Monat1" Parent 13927
  5606. Levels 0 Label "Juli/2020" Inclusion Generate Lastuse 20210108 Rollup True
  5607. TimeAggregate None Primary 16169 Primary 16171 Primary 16173 Primary 16175
  5608. Primary 16177 Primary 16179 Primary 16181 Primary 16183 Primary 16185 Primary 16187
  5609. Primary 16189 Primary 16191 Primary 16193 Primary 16195 Primary 16197 Primary 16199
  5610. Primary 16201 Primary 16203 Primary 16205 Primary 16207 Primary 16209 Primary 16211
  5611. Primary 16213 Primary 16215 Primary 16217 Primary 16219 Primary 16221 Primary 16223
  5612. Primary 16225 Primary 16227 Primary 16229 Sign False
  5613. SpecialCategory 16601 "J bisher gruppiert~J bisher~Quartal3~Monat2" Parent 13927
  5614. Levels 0 Label "Aug./2020" Inclusion Generate Lastuse 20210108 Rollup True
  5615. TimeAggregate None Primary 16233 Primary 16235 Primary 16237 Primary 16239
  5616. Primary 16241 Primary 16243 Primary 16245 Primary 16247 Primary 16249 Primary 16251
  5617. Primary 16253 Primary 16255 Primary 16257 Primary 16259 Primary 16261 Primary 16263
  5618. Primary 16265 Primary 16267 Primary 16269 Primary 16271 Primary 16273 Primary 16275
  5619. Primary 16277 Primary 16279 Primary 16281 Primary 16283 Primary 16285 Primary 16287
  5620. Primary 16289 Primary 16291 Primary 16293 Sign False
  5621. SpecialCategory 16603 "J bisher gruppiert~J bisher~Quartal3~Monat3" Parent 13927
  5622. Levels 0 Label "Sept./2020" Inclusion Generate Lastuse 20210108 Rollup True
  5623. TimeAggregate None Primary 16297 Primary 16299 Primary 16301 Primary 16303
  5624. Primary 16305 Primary 16307 Primary 16309 Primary 16311 Primary 16313 Primary 16315
  5625. Primary 16317 Primary 16319 Primary 16321 Primary 16323 Primary 16325 Primary 16327
  5626. Primary 16329 Primary 16331 Primary 16333 Primary 16335 Primary 16337 Primary 16339
  5627. Primary 16341 Primary 16343 Primary 16345 Primary 16347 Primary 16349 Primary 16351
  5628. Primary 16353 Primary 16355 Sign False
  5629. SpecialCategory 16605 "J bisher gruppiert~J bisher~Quartal4" Parent 13905
  5630. Levels 0 Label "4. Q. 2020" Inclusion Generate Lastuse 20210108 Rollup True
  5631. TimeAggregate None Primary 16607 Primary 16609 Primary 16611 Sign False
  5632. SpecialCategory 16607 "J bisher gruppiert~J bisher~Quartal4~Monat1" Parent 16605
  5633. Levels 0 Label "Okt./2020" Inclusion Generate Lastuse 20210108 Rollup True
  5634. TimeAggregate None Primary 16361 Primary 16363 Primary 16365 Primary 16367
  5635. Primary 16369 Primary 16371 Primary 16373 Primary 16375 Primary 16377 Primary 16379
  5636. Primary 16381 Primary 16383 Primary 16385 Primary 16387 Primary 16389 Primary 16391
  5637. Primary 16393 Primary 16395 Primary 16397 Primary 16399 Primary 16401 Primary 16403
  5638. Primary 16405 Primary 16407 Primary 16409 Primary 16411 Primary 16413 Primary 16415
  5639. Primary 16417 Primary 16419 Primary 16421 Sign False
  5640. SpecialCategory 16609 "J bisher gruppiert~J bisher~Quartal4~Monat2" Parent 16605
  5641. Levels 0 Label "Nov./2020" Inclusion Generate Lastuse 20210108 Rollup True
  5642. TimeAggregate None Primary 16425 Primary 16427 Primary 16429 Primary 16431
  5643. Primary 16433 Primary 16435 Primary 16437 Primary 16439 Primary 16441 Primary 16443
  5644. Primary 16445 Primary 16447 Primary 16449 Primary 16451 Primary 16453 Primary 16455
  5645. Primary 16457 Primary 16459 Primary 16461 Primary 16463 Primary 16465 Primary 16467
  5646. Primary 16469 Primary 16471 Primary 16473 Primary 16475 Primary 16477 Primary 16479
  5647. Primary 16481 Primary 16483 Sign False
  5648. SpecialCategory 16611 "J bisher gruppiert~J bisher~Quartal4~Monat3" Parent 16605
  5649. Levels 0 Label "Dez./2020" Inclusion Generate Lastuse 20210108 Rollup True
  5650. TimeAggregate None Primary 16487 Primary 16489 Primary 16491 Primary 16493
  5651. Primary 16495 Primary 16497 Primary 16499 Primary 16501 Primary 16503 Primary 16505
  5652. Primary 16507 Primary 16509 Primary 16511 Primary 16513 Primary 16515 Sign False
  5653. SpecialCategory 13953 "J bisher gruppiert~ÄNDERUNG ( ""Voriges J bisher"" , ""J bisher"" )"
  5654. Parent 1519 Levels 0 Label "J bisher Änderung" Lastuse 20210108 Rollup False
  5655. TimeAggregate None Calc change ( "J bisher gruppiert~Voriges J bisher@13931" , "J bisher gruppiert~J bisher@13905" ) Sign False
  5656. SpecialCategory 13955 "J bisher gruppiert~PROZENTZUWACHS ( ""Voriges J bisher"" , ""J bisher"" )"
  5657. Parent 1519 Levels 0 Label "J bisher Zuwachs" Lastuse 20210108 Rollup False
  5658. TimeAggregate None Calc percent-growth ( "J bisher gruppiert~Voriges J bisher@13931" , "J bisher gruppiert~J bisher@13905" ) Format "0%~2"
  5659. Sign False
  5660. SpecialCategory 9157 "103941" Parent 1467 Levels 0 Label "per Vormonat"
  5661. Lastuse 20210108 Rollup True TimeAggregate ToDate RunningPeriods 0 TargetOffset -1
  5662. TargetLevel "Monat" ContextOffset 0 DateDrill 1469 TransientLevelList 13961 For 1475
  5663. 13965 For 1481 EndList Primary 13959 Primary 13973 Primary 16617 Primary 24071
  5664. Sign False
  5665. SpecialCategory 13959 "103941~Jahr1" Parent 9157 Levels 0 Label "2017"
  5666. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 13963
  5667. Primary 13967 Primary 13969 Primary 13971 Sign False
  5668. SpecialCategory 13963 "103941~Jahr1~Quartal1" Parent 13959 Levels 0 Label "1. Q. 2017"
  5669. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 10559
  5670. Primary 10623 Primary 10681 Sign False
  5671. SpecialCategory 13967 "103941~Jahr1~Quartal2" Parent 13959 Levels 0 Label "2. Q. 2017"
  5672. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 10747
  5673. Primary 10809 Primary 10873 Sign False
  5674. SpecialCategory 13969 "103941~Jahr1~Quartal3" Parent 13959 Levels 0 Label "3. Q. 2017"
  5675. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 10937
  5676. Primary 11001 Primary 11065 Sign False
  5677. SpecialCategory 13971 "103941~Jahr1~Quartal4" Parent 13959 Levels 0 Label "4. Q. 2017"
  5678. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 11129
  5679. Primary 11193 Primary 11255 Sign False
  5680. SpecialCategory 13973 "103941~Jahr2" Parent 9157 Levels 0 Label "2018"
  5681. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 13975
  5682. Primary 13977 Primary 16613 Primary 16615 Sign False
  5683. SpecialCategory 13975 "103941~Jahr2~Quartal1" Parent 13973 Levels 0 Label "1. Q. 2018"
  5684. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 11357
  5685. Primary 11421 Primary 11479 Sign False
  5686. SpecialCategory 13977 "103941~Jahr2~Quartal2" Parent 13973 Levels 0 Label "2. Q. 2018"
  5687. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 11545
  5688. Primary 11607 Primary 11671 Sign False
  5689. SpecialCategory 16613 "103941~Jahr2~Quartal3" Parent 13973 Levels 0 Label "3. Q. 2018"
  5690. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 11735
  5691. Primary 11799 Primary 11863 Sign False
  5692. SpecialCategory 16615 "103941~Jahr2~Quartal4" Parent 13973 Levels 0 Label "4. Q. 2018"
  5693. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 11927
  5694. Primary 11991 Primary 12053 Sign False
  5695. SpecialCategory 16617 "103941~Jahr3" Parent 9157 Levels 0 Label "2019"
  5696. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 16619
  5697. Sign False
  5698. SpecialCategory 16619 "103941~Jahr3~Quartal1" Parent 16617 Levels 0 Label "1. Q. 2019"
  5699. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 21161
  5700. Sign False
  5701. SpecialCategory 24071 "103941~Jahr4" Parent 9157 Levels 0 Label "2020"
  5702. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 24073
  5703. Primary 24075 Primary 24077 Primary 24079 Sign False
  5704. SpecialCategory 24073 "103941~Jahr4~Quartal1" Parent 24071 Levels 0 Label "1. Q. 2020"
  5705. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 15787
  5706. Primary 15851 Primary 15911 Sign False
  5707. SpecialCategory 24075 "103941~Jahr4~Quartal2" Parent 24071 Levels 0 Label "2. Q. 2020"
  5708. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 15977
  5709. Primary 16039 Primary 16103 Sign False
  5710. SpecialCategory 24077 "103941~Jahr4~Quartal3" Parent 24071 Levels 0 Label "3. Q. 2020"
  5711. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 16167
  5712. Primary 16231 Primary 16295 Sign False
  5713. SpecialCategory 24079 "103941~Jahr4~Quartal4" Parent 24071 Levels 0 Label "4. Q. 2020"
  5714. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 16359
  5715. Primary 16423 Sign False
  5716. SpecialCategory 9159 "113319" Parent 1467 Levels 0 Label "älter 14 Tage"
  5717. Lastuse 20210108 Rollup True TimeAggregate ToDate RunningPeriods 0 TargetOffset -14
  5718. TargetLevel "Tag" ContextOffset 0 DateDrill 1469 TransientLevelList 13981 For 1475
  5719. 13985 For 1481 13989 For 1487 EndList Primary 13979 Primary 14019 Primary 16643
  5720. Primary 24081 Sign False
  5721. SpecialCategory 13979 "113319~Jahr1" Parent 9159 Levels 0 Label "2017"
  5722. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 13983
  5723. Primary 13995 Primary 14003 Primary 14011 Sign False
  5724. SpecialCategory 13983 "113319~Jahr1~Quartal1" Parent 13979 Levels 0 Label "1. Q. 2017"
  5725. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 13987
  5726. Primary 13991 Primary 13993 Sign False
  5727. SpecialCategory 13987 "113319~Jahr1~Quartal1~Monat1" Parent 13983 Levels 0
  5728. Label "Jan./2017" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5729. Primary 10561 Primary 10563 Primary 10565 Primary 10567 Primary 10569 Primary 10571
  5730. Primary 10573 Primary 10575 Primary 10577 Primary 10579 Primary 10581 Primary 10583
  5731. Primary 10585 Primary 10587 Primary 10589 Primary 10591 Primary 10593 Primary 10595
  5732. Primary 10597 Primary 10599 Primary 10601 Primary 10603 Primary 10605 Primary 10607
  5733. Primary 10609 Primary 10611 Primary 10613 Primary 10615 Primary 10617 Primary 10619
  5734. Primary 10621 Sign False
  5735. SpecialCategory 13991 "113319~Jahr1~Quartal1~Monat2" Parent 13983 Levels 0
  5736. Label "Feb./2017" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5737. Primary 10625 Primary 10627 Primary 10629 Primary 10631 Primary 10633 Primary 10635
  5738. Primary 10637 Primary 10639 Primary 10641 Primary 10643 Primary 10645 Primary 10647
  5739. Primary 10649 Primary 10651 Primary 10653 Primary 10655 Primary 10657 Primary 10659
  5740. Primary 10661 Primary 10663 Primary 10665 Primary 10667 Primary 10669 Primary 10671
  5741. Primary 10673 Primary 10675 Primary 10677 Primary 10679 Sign False
  5742. SpecialCategory 13993 "113319~Jahr1~Quartal1~Monat3" Parent 13983 Levels 0
  5743. Label "März/2017" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5744. Primary 10683 Primary 10685 Primary 10687 Primary 10689 Primary 10691 Primary 10693
  5745. Primary 10695 Primary 10697 Primary 10699 Primary 10701 Primary 10703 Primary 10705
  5746. Primary 10707 Primary 10709 Primary 10711 Primary 10713 Primary 10715 Primary 10717
  5747. Primary 10719 Primary 10721 Primary 10723 Primary 10725 Primary 10727 Primary 10729
  5748. Primary 10731 Primary 10733 Primary 10735 Primary 10737 Primary 10739 Primary 10741
  5749. Primary 10743 Sign False
  5750. SpecialCategory 13995 "113319~Jahr1~Quartal2" Parent 13979 Levels 0 Label "2. Q. 2017"
  5751. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 13997
  5752. Primary 13999 Primary 14001 Sign False
  5753. SpecialCategory 13997 "113319~Jahr1~Quartal2~Monat1" Parent 13995 Levels 0
  5754. Label "Apr./2017" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5755. Primary 10749 Primary 10751 Primary 10753 Primary 10755 Primary 10757 Primary 10759
  5756. Primary 10761 Primary 10763 Primary 10765 Primary 10767 Primary 10769 Primary 10771
  5757. Primary 10773 Primary 10775 Primary 10777 Primary 10779 Primary 10781 Primary 10783
  5758. Primary 10785 Primary 10787 Primary 10789 Primary 10791 Primary 10793 Primary 10795
  5759. Primary 10797 Primary 10799 Primary 10801 Primary 10803 Primary 10805 Primary 10807
  5760. Sign False
  5761. SpecialCategory 13999 "113319~Jahr1~Quartal2~Monat2" Parent 13995 Levels 0
  5762. Label "Mai/2017" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5763. Primary 10811 Primary 10813 Primary 10815 Primary 10817 Primary 10819 Primary 10821
  5764. Primary 10823 Primary 10825 Primary 10827 Primary 10829 Primary 10831 Primary 10833
  5765. Primary 10835 Primary 10837 Primary 10839 Primary 10841 Primary 10843 Primary 10845
  5766. Primary 10847 Primary 10849 Primary 10851 Primary 10853 Primary 10855 Primary 10857
  5767. Primary 10859 Primary 10861 Primary 10863 Primary 10865 Primary 10867 Primary 10869
  5768. Primary 10871 Sign False
  5769. SpecialCategory 14001 "113319~Jahr1~Quartal2~Monat3" Parent 13995 Levels 0
  5770. Label "Juni/2017" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5771. Primary 10875 Primary 10877 Primary 10879 Primary 10881 Primary 10883 Primary 10885
  5772. Primary 10887 Primary 10889 Primary 10891 Primary 10893 Primary 10895 Primary 10897
  5773. Primary 10899 Primary 10901 Primary 10903 Primary 10905 Primary 10907 Primary 10909
  5774. Primary 10911 Primary 10913 Primary 10915 Primary 10917 Primary 10919 Primary 10921
  5775. Primary 10923 Primary 10925 Primary 10927 Primary 10929 Primary 10931 Primary 10933
  5776. Sign False
  5777. SpecialCategory 14003 "113319~Jahr1~Quartal3" Parent 13979 Levels 0 Label "3. Q. 2017"
  5778. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 14005
  5779. Primary 14007 Primary 14009 Sign False
  5780. SpecialCategory 14005 "113319~Jahr1~Quartal3~Monat1" Parent 14003 Levels 0
  5781. Label "Juli/2017" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5782. Primary 10939 Primary 10941 Primary 10943 Primary 10945 Primary 10947 Primary 10949
  5783. Primary 10951 Primary 10953 Primary 10955 Primary 10957 Primary 10959 Primary 10961
  5784. Primary 10963 Primary 10965 Primary 10967 Primary 10969 Primary 10971 Primary 10973
  5785. Primary 10975 Primary 10977 Primary 10979 Primary 10981 Primary 10983 Primary 10985
  5786. Primary 10987 Primary 10989 Primary 10991 Primary 10993 Primary 10995 Primary 10997
  5787. Primary 10999 Sign False
  5788. SpecialCategory 14007 "113319~Jahr1~Quartal3~Monat2" Parent 14003 Levels 0
  5789. Label "Aug./2017" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5790. Primary 11003 Primary 11005 Primary 11007 Primary 11009 Primary 11011 Primary 11013
  5791. Primary 11015 Primary 11017 Primary 11019 Primary 11021 Primary 11023 Primary 11025
  5792. Primary 11027 Primary 11029 Primary 11031 Primary 11033 Primary 11035 Primary 11037
  5793. Primary 11039 Primary 11041 Primary 11043 Primary 11045 Primary 11047 Primary 11049
  5794. Primary 11051 Primary 11053 Primary 11055 Primary 11057 Primary 11059 Primary 11061
  5795. Primary 11063 Sign False
  5796. SpecialCategory 14009 "113319~Jahr1~Quartal3~Monat3" Parent 14003 Levels 0
  5797. Label "Sept./2017" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5798. Primary 11067 Primary 11069 Primary 11071 Primary 11073 Primary 11075 Primary 11077
  5799. Primary 11079 Primary 11081 Primary 11083 Primary 11085 Primary 11087 Primary 11089
  5800. Primary 11091 Primary 11093 Primary 11095 Primary 11097 Primary 11099 Primary 11101
  5801. Primary 11103 Primary 11105 Primary 11107 Primary 11109 Primary 11111 Primary 11113
  5802. Primary 11115 Primary 11117 Primary 11119 Primary 11121 Primary 11123 Primary 11125
  5803. Sign False
  5804. SpecialCategory 14011 "113319~Jahr1~Quartal4" Parent 13979 Levels 0 Label "4. Q. 2017"
  5805. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 14013
  5806. Primary 14015 Primary 14017 Sign False
  5807. SpecialCategory 14013 "113319~Jahr1~Quartal4~Monat1" Parent 14011 Levels 0
  5808. Label "Okt./2017" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5809. Primary 11131 Primary 11133 Primary 11135 Primary 11137 Primary 11139 Primary 11141
  5810. Primary 11143 Primary 11145 Primary 11147 Primary 11149 Primary 11151 Primary 11153
  5811. Primary 11155 Primary 11157 Primary 11159 Primary 11161 Primary 11163 Primary 11165
  5812. Primary 11167 Primary 11169 Primary 11171 Primary 11173 Primary 11175 Primary 11177
  5813. Primary 11179 Primary 11181 Primary 11183 Primary 11185 Primary 11187 Primary 11189
  5814. Primary 11191 Sign False
  5815. SpecialCategory 14015 "113319~Jahr1~Quartal4~Monat2" Parent 14011 Levels 0
  5816. Label "Nov./2017" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5817. Primary 11195 Primary 11197 Primary 11199 Primary 11201 Primary 11203 Primary 11205
  5818. Primary 11207 Primary 11209 Primary 11211 Primary 11213 Primary 11215 Primary 11217
  5819. Primary 11219 Primary 11221 Primary 11223 Primary 11225 Primary 11227 Primary 11229
  5820. Primary 11231 Primary 11233 Primary 11235 Primary 11237 Primary 11239 Primary 11241
  5821. Primary 11243 Primary 11245 Primary 11247 Primary 11249 Primary 11251 Primary 11253
  5822. Sign False
  5823. SpecialCategory 14017 "113319~Jahr1~Quartal4~Monat3" Parent 14011 Levels 0
  5824. Label "Dez./2017" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5825. Primary 11257 Primary 11259 Primary 11261 Primary 11263 Primary 11265 Primary 11267
  5826. Primary 11269 Primary 11271 Primary 11273 Primary 11275 Primary 11277 Primary 11279
  5827. Primary 11281 Primary 11283 Primary 11285 Primary 11287 Primary 11289 Primary 11291
  5828. Primary 11293 Primary 11295 Primary 11297 Primary 11299 Primary 11301 Primary 11303
  5829. Primary 11305 Primary 11307 Primary 11309 Primary 11311 Primary 11313 Primary 11315
  5830. Primary 11317 Sign False
  5831. SpecialCategory 14019 "113319~Jahr2" Parent 9159 Levels 0 Label "2018"
  5832. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 14021
  5833. Primary 14029 Primary 16627 Primary 16635 Sign False
  5834. SpecialCategory 14021 "113319~Jahr2~Quartal1" Parent 14019 Levels 0 Label "1. Q. 2018"
  5835. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 14023
  5836. Primary 14025 Primary 14027 Sign False
  5837. SpecialCategory 14023 "113319~Jahr2~Quartal1~Monat1" Parent 14021 Levels 0
  5838. Label "Jan./2018" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5839. Primary 11359 Primary 11361 Primary 11363 Primary 11365 Primary 11367 Primary 11369
  5840. Primary 11371 Primary 11373 Primary 11375 Primary 11377 Primary 11379 Primary 11381
  5841. Primary 11383 Primary 11385 Primary 11387 Primary 11389 Primary 11391 Primary 11393
  5842. Primary 11395 Primary 11397 Primary 11399 Primary 11401 Primary 11403 Primary 11405
  5843. Primary 11407 Primary 11409 Primary 11411 Primary 11413 Primary 11415 Primary 11417
  5844. Primary 11419 Sign False
  5845. SpecialCategory 14025 "113319~Jahr2~Quartal1~Monat2" Parent 14021 Levels 0
  5846. Label "Feb./2018" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5847. Primary 11423 Primary 11425 Primary 11427 Primary 11429 Primary 11431 Primary 11433
  5848. Primary 11435 Primary 11437 Primary 11439 Primary 11441 Primary 11443 Primary 11445
  5849. Primary 11447 Primary 11449 Primary 11451 Primary 11453 Primary 11455 Primary 11457
  5850. Primary 11459 Primary 11461 Primary 11463 Primary 11465 Primary 11467 Primary 11469
  5851. Primary 11471 Primary 11473 Primary 11475 Primary 11477 Sign False
  5852. SpecialCategory 14027 "113319~Jahr2~Quartal1~Monat3" Parent 14021 Levels 0
  5853. Label "März/2018" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5854. Primary 11481 Primary 11483 Primary 11485 Primary 11487 Primary 11489 Primary 11491
  5855. Primary 11493 Primary 11495 Primary 11497 Primary 11499 Primary 11501 Primary 11503
  5856. Primary 11505 Primary 11507 Primary 11509 Primary 11511 Primary 11513 Primary 11515
  5857. Primary 11517 Primary 11519 Primary 11521 Primary 11523 Primary 11525 Primary 11527
  5858. Primary 11529 Primary 11531 Primary 11533 Primary 11535 Primary 11537 Primary 11539
  5859. Primary 11541 Sign False
  5860. SpecialCategory 14029 "113319~Jahr2~Quartal2" Parent 14019 Levels 0 Label "2. Q. 2018"
  5861. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 14031
  5862. Primary 14033 Primary 14035 Sign False
  5863. SpecialCategory 14031 "113319~Jahr2~Quartal2~Monat1" Parent 14029 Levels 0
  5864. Label "Apr./2018" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5865. Primary 11547 Primary 11549 Primary 11551 Primary 11553 Primary 11555 Primary 11557
  5866. Primary 11559 Primary 11561 Primary 11563 Primary 11565 Primary 11567 Primary 11569
  5867. Primary 11571 Primary 11573 Primary 11575 Primary 11577 Primary 11579 Primary 11581
  5868. Primary 11583 Primary 11585 Primary 11587 Primary 11589 Primary 11591 Primary 11593
  5869. Primary 11595 Primary 11597 Primary 11599 Primary 11601 Primary 11603 Primary 11605
  5870. Sign False
  5871. SpecialCategory 14033 "113319~Jahr2~Quartal2~Monat2" Parent 14029 Levels 0
  5872. Label "Mai/2018" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5873. Primary 11609 Primary 11611 Primary 11613 Primary 11615 Primary 11617 Primary 11619
  5874. Primary 11621 Primary 11623 Primary 11625 Primary 11627 Primary 11629 Primary 11631
  5875. Primary 11633 Primary 11635 Primary 11637 Primary 11639 Primary 11641 Primary 11643
  5876. Primary 11645 Primary 11647 Primary 11649 Primary 11651 Primary 11653 Primary 11655
  5877. Primary 11657 Primary 11659 Primary 11661 Primary 11663 Primary 11665 Primary 11667
  5878. Primary 11669 Sign False
  5879. SpecialCategory 14035 "113319~Jahr2~Quartal2~Monat3" Parent 14029 Levels 0
  5880. Label "Juni/2018" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5881. Primary 11673 Primary 11675 Primary 11677 Primary 11679 Primary 11681 Primary 11683
  5882. Primary 11685 Primary 11687 Primary 11689 Primary 11691 Primary 11693 Primary 11695
  5883. Primary 11697 Primary 11699 Primary 11701 Primary 11703 Primary 11705 Primary 11707
  5884. Primary 11709 Primary 11711 Primary 11713 Primary 11715 Primary 11717 Primary 11719
  5885. Primary 11721 Primary 11723 Primary 11725 Primary 11727 Primary 11729 Primary 11731
  5886. Sign False
  5887. SpecialCategory 16627 "113319~Jahr2~Quartal3" Parent 14019 Levels 0 Label "3. Q. 2018"
  5888. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 16629
  5889. Primary 16631 Primary 16633 Sign False
  5890. SpecialCategory 16629 "113319~Jahr2~Quartal3~Monat1" Parent 16627 Levels 0
  5891. Label "Juli/2018" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5892. Primary 11737 Primary 11739 Primary 11741 Primary 11743 Primary 11745 Primary 11747
  5893. Primary 11749 Primary 11751 Primary 11753 Primary 11755 Primary 11757 Primary 11759
  5894. Primary 11761 Primary 11763 Primary 11765 Primary 11767 Primary 11769 Primary 11771
  5895. Primary 11773 Primary 11775 Primary 11777 Primary 11779 Primary 11781 Primary 11783
  5896. Primary 11785 Primary 11787 Primary 11789 Primary 11791 Primary 11793 Primary 11795
  5897. Primary 11797 Sign False
  5898. SpecialCategory 16631 "113319~Jahr2~Quartal3~Monat2" Parent 16627 Levels 0
  5899. Label "Aug./2018" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5900. Primary 11801 Primary 11803 Primary 11805 Primary 11807 Primary 11809 Primary 11811
  5901. Primary 11813 Primary 11815 Primary 11817 Primary 11819 Primary 11821 Primary 11823
  5902. Primary 11825 Primary 11827 Primary 11829 Primary 11831 Primary 11833 Primary 11835
  5903. Primary 11837 Primary 11839 Primary 11841 Primary 11843 Primary 11845 Primary 11847
  5904. Primary 11849 Primary 11851 Primary 11853 Primary 11855 Primary 11857 Primary 11859
  5905. Primary 11861 Sign False
  5906. SpecialCategory 16633 "113319~Jahr2~Quartal3~Monat3" Parent 16627 Levels 0
  5907. Label "Sept./2018" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5908. Primary 11865 Primary 11867 Primary 11869 Primary 11871 Primary 11873 Primary 11875
  5909. Primary 11877 Primary 11879 Primary 11881 Primary 11883 Primary 11885 Primary 11887
  5910. Primary 11889 Primary 11891 Primary 11893 Primary 11895 Primary 11897 Primary 11899
  5911. Primary 11901 Primary 11903 Primary 11905 Primary 11907 Primary 11909 Primary 11911
  5912. Primary 11913 Primary 11915 Primary 11917 Primary 11919 Primary 11921 Primary 11923
  5913. Sign False
  5914. SpecialCategory 16635 "113319~Jahr2~Quartal4" Parent 14019 Levels 0 Label "4. Q. 2018"
  5915. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 16637
  5916. Primary 16639 Primary 16641 Sign False
  5917. SpecialCategory 16637 "113319~Jahr2~Quartal4~Monat1" Parent 16635 Levels 0
  5918. Label "Okt./2018" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5919. Primary 11929 Primary 11931 Primary 11933 Primary 11935 Primary 11937 Primary 11939
  5920. Primary 11941 Primary 11943 Primary 11945 Primary 11947 Primary 11949 Primary 11951
  5921. Primary 11953 Primary 11955 Primary 11957 Primary 11959 Primary 11961 Primary 11963
  5922. Primary 11965 Primary 11967 Primary 11969 Primary 11971 Primary 11973 Primary 11975
  5923. Primary 11977 Primary 11979 Primary 11981 Primary 11983 Primary 11985 Primary 11987
  5924. Primary 11989 Sign False
  5925. SpecialCategory 16639 "113319~Jahr2~Quartal4~Monat2" Parent 16635 Levels 0
  5926. Label "Nov./2018" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5927. Primary 11993 Primary 11995 Primary 11997 Primary 11999 Primary 12001 Primary 12003
  5928. Primary 12005 Primary 12007 Primary 12009 Primary 12011 Primary 12013 Primary 12015
  5929. Primary 12017 Primary 12019 Primary 12021 Primary 12023 Primary 12025 Primary 12027
  5930. Primary 12029 Primary 12031 Primary 12033 Primary 12035 Primary 12037 Primary 12039
  5931. Primary 12041 Primary 12043 Primary 12045 Primary 12047 Primary 12049 Primary 12051
  5932. Sign False
  5933. SpecialCategory 16641 "113319~Jahr2~Quartal4~Monat3" Parent 16635 Levels 0
  5934. Label "Dez./2018" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5935. Primary 12055 Primary 12057 Primary 12059 Primary 12061 Primary 12063 Primary 12065
  5936. Primary 12067 Primary 12069 Primary 12071 Primary 12073 Primary 12075 Primary 12077
  5937. Primary 12079 Primary 12081 Primary 12083 Primary 12085 Primary 12087 Primary 12089
  5938. Primary 12091 Primary 12093 Primary 12095 Primary 12097 Primary 12099 Primary 12101
  5939. Primary 12103 Primary 12105 Primary 12107 Primary 12109 Primary 12111 Primary 12113
  5940. Primary 12115 Sign False
  5941. SpecialCategory 16643 "113319~Jahr3" Parent 9159 Levels 0 Label "2019"
  5942. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 16645
  5943. Sign False
  5944. SpecialCategory 16645 "113319~Jahr3~Quartal1" Parent 16643 Levels 0 Label "1. Q. 2019"
  5945. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 16647
  5946. Sign False
  5947. SpecialCategory 16647 "113319~Jahr3~Quartal1~Monat1" Parent 16645 Levels 0
  5948. Label "März/2019" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5949. Primary 21163 Primary 21165 Primary 21167 Primary 21169 Primary 21171 Primary 21173
  5950. Primary 21175 Primary 21177 Primary 21179 Primary 21181 Primary 21183 Primary 21185
  5951. Primary 21187 Primary 21189 Primary 21191 Primary 21193 Primary 21195 Primary 21197
  5952. Primary 21199 Primary 21201 Primary 21203 Primary 21205 Primary 21207 Primary 21209
  5953. Primary 21211 Primary 21213 Primary 21215 Primary 21217 Primary 21219 Primary 21221
  5954. Primary 21223 Sign False
  5955. SpecialCategory 24081 "113319~Jahr4" Parent 9159 Levels 0 Label "2020"
  5956. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 24083
  5957. Primary 24091 Primary 24099 Primary 24107 Sign False
  5958. SpecialCategory 24083 "113319~Jahr4~Quartal1" Parent 24081 Levels 0 Label "1. Q. 2020"
  5959. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 24085
  5960. Primary 24087 Primary 24089 Sign False
  5961. SpecialCategory 24085 "113319~Jahr4~Quartal1~Monat1" Parent 24083 Levels 0
  5962. Label "Jan./2020" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5963. Primary 15789 Primary 15791 Primary 15793 Primary 15795 Primary 15797 Primary 15799
  5964. Primary 15801 Primary 15803 Primary 15805 Primary 15807 Primary 15809 Primary 15811
  5965. Primary 15813 Primary 15815 Primary 15817 Primary 15819 Primary 15821 Primary 15823
  5966. Primary 15825 Primary 15827 Primary 15829 Primary 15831 Primary 15833 Primary 15835
  5967. Primary 15837 Primary 15839 Primary 15841 Primary 15843 Primary 15845 Primary 15847
  5968. Primary 15849 Sign False
  5969. SpecialCategory 24087 "113319~Jahr4~Quartal1~Monat2" Parent 24083 Levels 0
  5970. Label "Feb./2020" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5971. Primary 15853 Primary 15855 Primary 15857 Primary 15859 Primary 15861 Primary 15863
  5972. Primary 15865 Primary 15867 Primary 15869 Primary 15871 Primary 15873 Primary 15875
  5973. Primary 15877 Primary 15879 Primary 15881 Primary 15883 Primary 15885 Primary 15887
  5974. Primary 15889 Primary 15891 Primary 15893 Primary 15895 Primary 15897 Primary 15899
  5975. Primary 15901 Primary 15903 Primary 15905 Primary 15907 Primary 15909 Sign False
  5976. SpecialCategory 24089 "113319~Jahr4~Quartal1~Monat3" Parent 24083 Levels 0
  5977. Label "März/2020" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5978. Primary 15913 Primary 15915 Primary 15917 Primary 15919 Primary 15921 Primary 15923
  5979. Primary 15925 Primary 15927 Primary 15929 Primary 15931 Primary 15933 Primary 15935
  5980. Primary 15937 Primary 15939 Primary 15941 Primary 15943 Primary 15945 Primary 15947
  5981. Primary 15949 Primary 15951 Primary 15953 Primary 15955 Primary 15957 Primary 15959
  5982. Primary 15961 Primary 15963 Primary 15965 Primary 15967 Primary 15969 Primary 15971
  5983. Primary 15973 Sign False
  5984. SpecialCategory 24091 "113319~Jahr4~Quartal2" Parent 24081 Levels 0 Label "2. Q. 2020"
  5985. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 24093
  5986. Primary 24095 Primary 24097 Sign False
  5987. SpecialCategory 24093 "113319~Jahr4~Quartal2~Monat1" Parent 24091 Levels 0
  5988. Label "Apr./2020" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5989. Primary 15979 Primary 15981 Primary 15983 Primary 15985 Primary 15987 Primary 15989
  5990. Primary 15991 Primary 15993 Primary 15995 Primary 15997 Primary 15999 Primary 16001
  5991. Primary 16003 Primary 16005 Primary 16007 Primary 16009 Primary 16011 Primary 16013
  5992. Primary 16015 Primary 16017 Primary 16019 Primary 16021 Primary 16023 Primary 16025
  5993. Primary 16027 Primary 16029 Primary 16031 Primary 16033 Primary 16035 Primary 16037
  5994. Sign False
  5995. SpecialCategory 24095 "113319~Jahr4~Quartal2~Monat2" Parent 24091 Levels 0
  5996. Label "Mai/2020" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  5997. Primary 16041 Primary 16043 Primary 16045 Primary 16047 Primary 16049 Primary 16051
  5998. Primary 16053 Primary 16055 Primary 16057 Primary 16059 Primary 16061 Primary 16063
  5999. Primary 16065 Primary 16067 Primary 16069 Primary 16071 Primary 16073 Primary 16075
  6000. Primary 16077 Primary 16079 Primary 16081 Primary 16083 Primary 16085 Primary 16087
  6001. Primary 16089 Primary 16091 Primary 16093 Primary 16095 Primary 16097 Primary 16099
  6002. Primary 16101 Sign False
  6003. SpecialCategory 24097 "113319~Jahr4~Quartal2~Monat3" Parent 24091 Levels 0
  6004. Label "Juni/2020" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  6005. Primary 16105 Primary 16107 Primary 16109 Primary 16111 Primary 16113 Primary 16115
  6006. Primary 16117 Primary 16119 Primary 16121 Primary 16123 Primary 16125 Primary 16127
  6007. Primary 16129 Primary 16131 Primary 16133 Primary 16135 Primary 16137 Primary 16139
  6008. Primary 16141 Primary 16143 Primary 16145 Primary 16147 Primary 16149 Primary 16151
  6009. Primary 16153 Primary 16155 Primary 16157 Primary 16159 Primary 16161 Primary 16163
  6010. Sign False
  6011. SpecialCategory 24099 "113319~Jahr4~Quartal3" Parent 24081 Levels 0 Label "3. Q. 2020"
  6012. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 24101
  6013. Primary 24103 Primary 24105 Sign False
  6014. SpecialCategory 24101 "113319~Jahr4~Quartal3~Monat1" Parent 24099 Levels 0
  6015. Label "Juli/2020" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  6016. Primary 16169 Primary 16171 Primary 16173 Primary 16175 Primary 16177 Primary 16179
  6017. Primary 16181 Primary 16183 Primary 16185 Primary 16187 Primary 16189 Primary 16191
  6018. Primary 16193 Primary 16195 Primary 16197 Primary 16199 Primary 16201 Primary 16203
  6019. Primary 16205 Primary 16207 Primary 16209 Primary 16211 Primary 16213 Primary 16215
  6020. Primary 16217 Primary 16219 Primary 16221 Primary 16223 Primary 16225 Primary 16227
  6021. Primary 16229 Sign False
  6022. SpecialCategory 24103 "113319~Jahr4~Quartal3~Monat2" Parent 24099 Levels 0
  6023. Label "Aug./2020" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  6024. Primary 16233 Primary 16235 Primary 16237 Primary 16239 Primary 16241 Primary 16243
  6025. Primary 16245 Primary 16247 Primary 16249 Primary 16251 Primary 16253 Primary 16255
  6026. Primary 16257 Primary 16259 Primary 16261 Primary 16263 Primary 16265 Primary 16267
  6027. Primary 16269 Primary 16271 Primary 16273 Primary 16275 Primary 16277 Primary 16279
  6028. Primary 16281 Primary 16283 Primary 16285 Primary 16287 Primary 16289 Primary 16291
  6029. Primary 16293 Sign False
  6030. SpecialCategory 24105 "113319~Jahr4~Quartal3~Monat3" Parent 24099 Levels 0
  6031. Label "Sept./2020" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  6032. Primary 16297 Primary 16299 Primary 16301 Primary 16303 Primary 16305 Primary 16307
  6033. Primary 16309 Primary 16311 Primary 16313 Primary 16315 Primary 16317 Primary 16319
  6034. Primary 16321 Primary 16323 Primary 16325 Primary 16327 Primary 16329 Primary 16331
  6035. Primary 16333 Primary 16335 Primary 16337 Primary 16339 Primary 16341 Primary 16343
  6036. Primary 16345 Primary 16347 Primary 16349 Primary 16351 Primary 16353 Primary 16355
  6037. Sign False
  6038. SpecialCategory 24107 "113319~Jahr4~Quartal4" Parent 24081 Levels 0 Label "4. Q. 2020"
  6039. Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None Primary 24109
  6040. Primary 24111 Primary 24113 Sign False
  6041. SpecialCategory 24109 "113319~Jahr4~Quartal4~Monat1" Parent 24107 Levels 0
  6042. Label "Okt./2020" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  6043. Primary 16361 Primary 16363 Primary 16365 Primary 16367 Primary 16369 Primary 16371
  6044. Primary 16373 Primary 16375 Primary 16377 Primary 16379 Primary 16381 Primary 16383
  6045. Primary 16385 Primary 16387 Primary 16389 Primary 16391 Primary 16393 Primary 16395
  6046. Primary 16397 Primary 16399 Primary 16401 Primary 16403 Primary 16405 Primary 16407
  6047. Primary 16409 Primary 16411 Primary 16413 Primary 16415 Primary 16417 Primary 16419
  6048. Primary 16421 Sign False
  6049. SpecialCategory 24111 "113319~Jahr4~Quartal4~Monat2" Parent 24107 Levels 0
  6050. Label "Nov./2020" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  6051. Primary 16425 Primary 16427 Primary 16429 Primary 16431 Primary 16433 Primary 16435
  6052. Primary 16437 Primary 16439 Primary 16441 Primary 16443 Primary 16445 Primary 16447
  6053. Primary 16449 Primary 16451 Primary 16453 Primary 16455 Primary 16457 Primary 16459
  6054. Primary 16461 Primary 16463 Primary 16465 Primary 16467 Primary 16469 Primary 16471
  6055. Primary 16473 Primary 16475 Primary 16477 Primary 16479 Primary 16481 Primary 16483
  6056. Sign False
  6057. SpecialCategory 24113 "113319~Jahr4~Quartal4~Monat3" Parent 24107 Levels 0
  6058. Label "Dez./2020" Inclusion Generate Lastuse 20210108 Rollup True TimeAggregate None
  6059. Primary 16487 Sign False
  6060. MapDrills
  6061. MapDrill 1469
  6062. ViewName 1471 "Alle Kategorien" Type All ViewCustomView 0
  6063. ViewName 1473 "Dimension auslassen" Type Omit ViewCustomView 0
  6064. Dimension 1521 "AH-Gruppe" DimType Regular NewCatsLock False ExcludeAutoPartitioning False
  6065. DimDefaultCategory 0
  6066. Categories
  6067. Root 1523 "Hauptbetrieb" Inclusion Generate Lastuse 20210108 Filtered False
  6068. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  6069. Blanks False
  6070. Drill 1525 "Nach Hauptbetrieb" Inclusion Suppress Filtered False Suppressed True
  6071. PrimaryDrill True HideValue False
  6072. Levels 1531 "Hauptbetrieb" Blanks "( Leerstelle )" DateFunction None Generate None
  6073. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6074. Timerank 0 UniqueCategories False UniqueMove False Associations 1533 "Hauptbetrieb"
  6075. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Hauptbetrieb"
  6076. Levels 1535 "Standort" Blanks "( Leerstelle )" DateFunction None Generate None
  6077. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6078. Timerank 0 UniqueCategories False UniqueMove False Associations 1537 "Standort"
  6079. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Standort"
  6080. Levels 1539 "Serviceberater" Blanks "( Leerstelle )" DateFunction None
  6081. Generate None RefreshLabel False RefreshDescription False RefreshShortName False
  6082. NewCatsLock False Timerank 0 UniqueCategories False UniqueMove False Associations 1541
  6083. "Serviceberater" AssociationType Type_Query AssociationRole Role_Source
  6084. AssociationReferenced "Serviceberater"
  6085. Levels 1547 "Order Number" Blanks "( Leerstelle )" DateFunction None Generate None
  6086. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6087. Timerank 0 UniqueCategories False UniqueMove False Associations 1549 "Order Number"
  6088. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Order Number"
  6089. Associations 10329 "Arbeitstag Mofr" AssociationContext 1525 AssociationType Type_Query
  6090. AssociationRole Role_OrderBy AssociationReferenced "Arbeitstag Mofr" SortOrder Int16
  6091. SortAs Descending
  6092. Category 28181 "1" Parent 1525 Levels 1531 Label "Gottstein GmbH" Lastuse 20240306
  6093. SourceValue "1" Filtered False Suppressed False Sign False HideValue False
  6094. IsKeyOrphanage False IsTruncated False Blanks False
  6095. Category 28183 "10" Parent 28181 Levels 1535 Label "BSPKW" Lastuse 20240314
  6096. SourceValue "10" Filtered False Suppressed False Sign False HideValue False
  6097. IsKeyOrphanage False IsTruncated False Blanks False
  6098. Category 28185 "20" Parent 28181 Levels 1535 Label "BSMOT" Lastuse 20240314
  6099. SourceValue "20" Filtered False Suppressed False Sign False HideValue False
  6100. IsKeyOrphanage False IsTruncated False Blanks False
  6101. Category 28211 "30" Parent 28181 Levels 1535 Label "RHF" Lastuse 20240314
  6102. SourceValue "30" Filtered False Suppressed False Sign False HideValue False
  6103. IsKeyOrphanage False IsTruncated False Blanks False
  6104. Category 28213 "40" Parent 28181 Levels 1535 Label "SFH" Lastuse 20240314
  6105. SourceValue "40" Filtered False Suppressed False Sign False HideValue False
  6106. IsKeyOrphanage False IsTruncated False Blanks False
  6107. Category 28215 "50" Parent 28181 Levels 1535 Label "WT" Lastuse 20240314
  6108. SourceValue "50" Filtered False Suppressed False Sign False HideValue False
  6109. IsKeyOrphanage False IsTruncated False Blanks False
  6110. Category 28217 "60" Parent 28181 Levels 1535 Label "BI" Lastuse 20240314
  6111. SourceValue "60" Filtered False Suppressed False Sign False HideValue False
  6112. IsKeyOrphanage False IsTruncated False Blanks False
  6113. Category 28219 "70" Parent 28181 Levels 1535 Label "TR" Lastuse 20240314
  6114. SourceValue "70" Filtered False Suppressed False Sign False HideValue False
  6115. IsKeyOrphanage False IsTruncated False Blanks False
  6116. MapDrills
  6117. MapDrill 1525
  6118. ViewName 1527 "Alle Kategorien" Type All ViewCustomView 0
  6119. ViewName 1529 "Dimension auslassen" Type Omit ViewCustomView 0
  6120. Dimension 1551 "Fabrikat" DimType Regular NewCatsLock False ExcludeAutoPartitioning False
  6121. DimDefaultCategory 0
  6122. Categories
  6123. Root 1553 "Fabrikat" Inclusion Generate Lastuse 20210108 Filtered False
  6124. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  6125. Blanks False
  6126. Drill 1555 "Nach Fabrikat" Inclusion Suppress Filtered False Suppressed True
  6127. PrimaryDrill True HideValue False
  6128. Levels 1561 "Fabrikat" Blanks "( Leerstelle )" DateFunction None Generate None
  6129. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6130. Timerank 0 UniqueCategories False UniqueMove False Associations 1563 "Make Code"
  6131. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Make Code"
  6132. Associations 15073 "Make Code" AssociationContext 1555 AssociationType Type_Query
  6133. AssociationRole Role_OrderBy AssociationReferenced "Make Code" SortOrder Text
  6134. SortAs Ascending
  6135. Levels 1565 "Model" Blanks "( Leerstelle )" DateFunction None Generate None
  6136. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6137. Timerank 0 UniqueCategories False UniqueMove False Associations 1567 "Model"
  6138. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Model"
  6139. Levels 1569 "Fahrzeug" Blanks "( Leerstelle )" DateFunction None Generate None
  6140. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6141. Timerank 0 UniqueCategories False UniqueMove False Associations 1571 "Fahrzeug"
  6142. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Fahrzeug"
  6143. MapDrills
  6144. MapDrill 1555
  6145. ViewName 1557 "Alle Kategorien" Type All ViewCustomView 0
  6146. ViewName 1559 "Dimension auslassen" Type Omit ViewCustomView 0
  6147. Dimension 1575 "Kostenstelle" DimType Regular NewCatsLock False ExcludeAutoPartitioning False
  6148. DimDefaultCategory 0
  6149. Categories
  6150. Root 1577 "Kostenstelle" Inclusion Generate Lastuse 20210108 Filtered False
  6151. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  6152. Blanks False
  6153. Drill 1579 "Nach Kostenstelle" Inclusion Suppress Filtered False Suppressed True
  6154. PrimaryDrill True HideValue False
  6155. Levels 1585 "Kostenstelle" Blanks "( Leerstelle )" DateFunction None Generate None
  6156. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6157. Timerank 0 UniqueCategories False UniqueMove False Associations 1587 "Kostenstelle"
  6158. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Kostenstelle"
  6159. MapDrills
  6160. MapDrill 1579
  6161. ViewName 1581 "Alle Kategorien" Type All ViewCustomView 0
  6162. ViewName 1583 "Dimension auslassen" Type Omit ViewCustomView 0
  6163. Dimension 1591 "Marke" DimType Regular NewCatsLock False ExcludeAutoPartitioning False
  6164. DimDefaultCategory 0
  6165. Categories
  6166. Root 1593 "Marke" Inclusion Generate Lastuse 20210108 Filtered False Suppressed False
  6167. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  6168. Drill 1595 "Nach Marke" Inclusion Suppress Filtered False Suppressed True
  6169. PrimaryDrill True HideValue False
  6170. Levels 1601 "Marke" Blanks "( Leerstelle )" DateFunction None Generate None
  6171. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6172. Timerank 0 UniqueCategories False UniqueMove False Associations 1603 "Make Code"
  6173. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Make Code"
  6174. Associations 15643 "Make Code" AssociationContext 1595 AssociationType Type_Query
  6175. AssociationRole Role_OrderBy AssociationReferenced "Make Code" SortOrder Text
  6176. SortAs Ascending
  6177. MapDrills
  6178. MapDrill 1595
  6179. ViewName 1597 "Alle Kategorien" Type All ViewCustomView 0
  6180. ViewName 1599 "Dimension auslassen" Type Omit ViewCustomView 0
  6181. Dimension 1651 "Kunde" DimType Regular NewCatsLock False ExcludeAutoPartitioning False
  6182. DimDefaultCategory 0
  6183. Categories
  6184. Root 1653 "Kunde" Inclusion Generate Lastuse 20210108 Filtered False Suppressed False
  6185. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  6186. Drill 1655 "Nach Kunde" Inclusion Suppress Filtered False Suppressed True
  6187. PrimaryDrill True HideValue False
  6188. Levels 1661 "Kunde" Blanks "( Leerstelle )" DateFunction None Generate None
  6189. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6190. Timerank 0 UniqueCategories False UniqueMove False Associations 1663 "Kunde"
  6191. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Kunde"
  6192. MapDrills
  6193. MapDrill 1655
  6194. ViewName 1657 "Alle Kategorien" Type All ViewCustomView 0
  6195. ViewName 1659 "Dimension auslassen" Type Omit ViewCustomView 0
  6196. Dimension 1665 "Auftrag Detail" DimType Regular NewCatsLock False ExcludeAutoPartitioning False
  6197. DimDefaultCategory 0
  6198. Categories
  6199. Root 1667 "verk. AW" Inclusion Generate Lastuse 20210108 Filtered False
  6200. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  6201. Blanks False
  6202. Drill 1669 "Nach verk. AW" Inclusion Suppress Filtered False Suppressed True
  6203. PrimaryDrill True HideValue False
  6204. Levels 10233 "Serviceberater" Blanks "( Leerstelle )" DateFunction None
  6205. Generate None RefreshLabel False RefreshDescription False RefreshShortName False
  6206. NewCatsLock False Timerank 0 UniqueCategories False UniqueMove False Associations 10235
  6207. "Serviceberater" AssociationType Type_Query AssociationRole Role_Source
  6208. AssociationReferenced "Serviceberater"
  6209. Levels 10227 "Order Number" Blanks "( Leerstelle )" DateFunction None Generate None
  6210. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6211. Timerank 0 UniqueCategories False UniqueMove False Associations 10229 "Order Number_intern_neu"
  6212. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Order Number_intern_neu"
  6213. Associations 10231 "Arbeitstag Mofr" AssociationContext 1669 AssociationType Type_Query
  6214. AssociationRole Role_OrderBy AssociationReferenced "Arbeitstag Mofr" SortOrder Int16
  6215. SortAs Descending
  6216. MapDrills
  6217. MapDrill 1669
  6218. ViewName 1671 "Alle Kategorien" Type All ViewCustomView 0
  6219. ViewName 1673 "Dimension auslassen" Type Omit ViewCustomView 0
  6220. Dimension 1693 "Serviceberater" DimType Regular NewCatsLock False ExcludeAutoPartitioning False
  6221. DimDefaultCategory 0
  6222. Categories
  6223. Root 1695 "Serviceberater" Inclusion Generate Lastuse 20210108 Filtered False
  6224. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  6225. Blanks False
  6226. Drill 1697 "Nach Serviceberater" Inclusion Suppress Filtered False Suppressed True
  6227. PrimaryDrill True HideValue False
  6228. Levels 1703 "Serviceberater" Blanks "( Leerstelle )" DateFunction None
  6229. Generate None RefreshLabel False RefreshDescription False RefreshShortName False
  6230. NewCatsLock False Timerank 0 UniqueCategories False UniqueMove False Associations 1705
  6231. "Serviceberater" AssociationType Type_Query AssociationRole Role_Source
  6232. AssociationReferenced "Serviceberater"
  6233. Levels 14777 "Order Number" Blanks "( Leer )" DateFunction None Generate None
  6234. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6235. Timerank 0 UniqueCategories False UniqueMove False Associations 14779 "Order Number_intern_neu"
  6236. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Order Number_intern_neu"
  6237. Associations 14781 "Arbeitstag Mofr" AssociationContext 1697 AssociationType Type_Query
  6238. AssociationRole Role_OrderBy AssociationReferenced "Arbeitstag Mofr" SortOrder Int16
  6239. SortAs Descending
  6240. MapDrills
  6241. MapDrill 1697
  6242. ViewName 1699 "Alle Kategorien" Type All ViewCustomView 0
  6243. ViewName 1701 "Dimension auslassen" Type Omit ViewCustomView 0
  6244. Dimension 15687 "Umsatzart" DimType Regular NewCatsLock False ExcludeAutoPartitioning False
  6245. DimDefaultCategory 0
  6246. Categories
  6247. Root 15689 "Turnover_Type_Desc" Inclusion Generate Lastuse 20210108 Filtered False
  6248. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  6249. Blanks False
  6250. Drill 15691 "Nach Turnover_Type_Desc" Inclusion Suppress Filtered False
  6251. Suppressed True PrimaryDrill True HideValue False
  6252. Levels 15697 "Turnover_Type_Desc" Blanks "( Leer )" DateFunction None Generate None
  6253. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6254. Timerank 0 UniqueCategories False UniqueMove False Associations 15699 "Intern/Extern"
  6255. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Intern/Extern"
  6256. Category 15701 "Extern" Parent 15691 Levels 15697 Lastuse 20210108 SourceValue "Extern"
  6257. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  6258. IsTruncated False Blanks False
  6259. Category 15703 "GWL" Parent 15691 Levels 15697 Lastuse 20210108 SourceValue "GWL"
  6260. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  6261. IsTruncated False Blanks False
  6262. Category 15705 "Intern" Parent 15691 Levels 15697 Lastuse 20210108 SourceValue "Intern"
  6263. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  6264. IsTruncated False Blanks False
  6265. Category 15711 "15711" Parent 15691 Levels 15697 Label "Extern / GWL (Summe)"
  6266. Lastuse 20191119 SourceValue "15711" Calc "Extern@15701" + "GWL@15703" Filtered False
  6267. Suppressed False Sign False IsKeyOrphanage False IsTruncated False Blanks False
  6268. SpecialCategory 15707 "15707" Parent 15689 Levels 0 Label "Extern / GWL"
  6269. Lastuse 20210108 Rollup False Primary 15701 Primary 15703 Sign False
  6270. SpecialCategory 15709 "15709" Parent 15689 Levels 0 Label "Intern" Lastuse 20210108
  6271. Rollup False Primary 15705 Sign False
  6272. MapDrills
  6273. MapDrill 15691
  6274. ViewName 15693 "Alle Kategorien" Type All ViewCustomView 0
  6275. ViewName 15695 "Dimension auslassen" Type Omit ViewCustomView 0
  6276. Measure 9829 "Tage offen" Missing Zero IgnoreMissingValue False Storage Float64
  6277. OutPutScale 0 Decimals 5 ReverseSign False IsCurrency False IsFolder False
  6278. Format "#,##0~0" DrillThrough False EndList Associations 9831 "Tage offen"
  6279. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Tage offen"
  6280. Measure 10053 "DG" Missing Zero IgnoreMissingValue False Storage Float64
  6281. OutPutScale 0 Decimals 8 ReverseSign False IsCurrency False IsFolder False
  6282. Format "#,##0~0" DrillThrough False EndList Associations 10055 "Durchgänge"
  6283. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Durchgänge"
  6284. Measure 10309 "Lohn" Calc 0 Missing Zero IgnoreMissingValue False Storage Float64
  6285. OutPutScale 8 Decimals 3 ReverseSign False IsCurrency False IsFolder False
  6286. Format "#,##0~0" DrillThrough False EndList
  6287. Measure 10313 "Teile" Missing Zero IgnoreMissingValue False Storage Float64
  6288. OutPutScale 8 Decimals 3 ReverseSign False IsCurrency False IsFolder False
  6289. Format "#,##0~0" DrillThrough False EndList Associations 10315 "Teile"
  6290. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Teile"
  6291. Measure 10317 "Sonst." Calc 0 Missing Zero IgnoreMissingValue False Storage Float64
  6292. OutPutScale 8 Decimals 3 ReverseSign False IsCurrency False IsFolder False
  6293. Format "#,##0~0" DrillThrough False EndList
  6294. Measure 28191 "gebuchte Teile" Missing Zero IgnoreMissingValue False Storage Float64
  6295. OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False IsFolder False
  6296. Format "#,##0~0" DrillThrough False EndList Associations 28193 "gebuchte Teile"
  6297. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "gebuchte Teile"
  6298. Measure 28187 "bisher gest. AW" Missing Zero IgnoreMissingValue False Storage Float64
  6299. OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False IsFolder False
  6300. Format "#,##0~2" DrillThrough False EndList Associations 28189 "benutzte AW"
  6301. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "benutzte AW"
  6302. Measure 28195 "Anz. Tage letzte Stemp." Missing Zero IgnoreMissingValue False
  6303. Storage Float64 OutPutScale 0 Decimals 6 ReverseSign False IsCurrency False
  6304. IsFolder False Format "#,##0~0" DrillThrough False EndList Associations 28197
  6305. "Anz. Tage letzte Stemp." AssociationType Type_Query AssociationRole Role_Source
  6306. AssociationReferenced "Anz. Tage letzte Stemp."
  6307. Measure 28203 "Tage über Abholtermin" Missing Zero IgnoreMissingValue False
  6308. Storage Float64 OutPutScale 0 Decimals 8 ReverseSign False IsCurrency False
  6309. IsFolder False Format "#,##0~0" DrillThrough False EndList Associations 28205
  6310. "Tage über Abholtermin" AssociationType Type_Query AssociationRole Role_Source
  6311. AssociationReferenced "Tage über Abholtermin"
  6312. Measure 28225 "Fremdl." Missing Zero IgnoreMissingValue False Storage Float64
  6313. OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False IsFolder False
  6314. Format "#,##0~0" DrillThrough False EndList Associations 28227 "Fremdl."
  6315. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Fremdl."
  6316. Measure 28233 "Umsatz Auftrag" Missing Zero IgnoreMissingValue False Storage Float64
  6317. OutPutScale 0 Decimals 5 ReverseSign False IsCurrency False IsFolder False
  6318. Format "#,##0~0" DrillThrough False EndList Associations 28235 "Umsatz Auftrag"
  6319. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Umsatz Auftrag"
  6320. Signon 15673 "GC_CARLO" UserId "gaps"
  6321. PromptForPassword False EncryptedPW "*1*015C665D755A3F5A57675A36757D567A48532C2D2727543F28246871C4A360A46D1C"
  6322. "0DDDFA7758EB34" AutoLogon False SignonType "DataSource"
  6323. Signon 27837 "Global1" UserId "Global1"
  6324. FullDb "" PromptForPassword False EncryptedPW "*1*015F72417E4A2555695A5F742C2B4A573C7D5752496341627BD5FB0CC6E63E4D185D"
  6325. "691FB45ECF61ED" AutoLogon True SignOnNamespace "CognosEx" SignonType "Cognos"
  6326. Cube 1707 "S_Offene_Auftraege" MdcFile "c:\globalcube\system\ari\cube_out\s_offene_auftraege.mdc"
  6327. EncryptedPW "" Status OK CubeCreation On Optimize Default ConsolidatedRecords 10000000
  6328. PartitionSize 500000 PassesNumber 5 Compress False IncrementalUpdate False
  6329. ServerCube False CubeStamp 1534758561 CubeCycle 8 BlockParentTotals False
  6330. Caching False UseAlternateFileName False DeployType DeployToAvailableLocationsAutomatic
  6331. DeployLocations "c:\globalcube\cubes" EndList DeployCleanupEnabled True
  6332. DeployCleanupNumberOfCubes 2 DrillThrough False EndList DataSourceSignon False
  6333. PublishEnable True PublishStatus None PublishAllowNullSuppression True
  6334. PublishAllowMultiEdgeSuppression True PublishAllowAccessToSuppressionOptions True
  6335. DimensionView 1463 "All Categories" DimensionView 1521 "All Categories"
  6336. DimensionView 1551 "All Categories" DimensionView 1575 "All Categories"
  6337. DimensionView 1591 "All Categories" DimensionView 1651 "All Categories"
  6338. DimensionView 1665 "All Categories" DimensionView 1693 "All Categories"
  6339. DimensionView 15687 "All Categories"
  6340. MeasureInclude 9829 Yes MeasureInclude 10053 Yes MeasureInclude 10309 Yes
  6341. MeasureInclude 10313 Yes MeasureInclude 10317 Yes MeasureInclude 28191
  6342. Yes MeasureInclude 28187 Yes MeasureInclude 28195 Yes MeasureInclude 28203
  6343. Yes MeasureInclude 28225 Yes MeasureInclude 28233 Yes
  6344. AllocationAdd Measure 9829 Type Default
  6345. AllocationAdd Measure 10053 Type Default
  6346. AllocationAdd Measure 10309 Type Default
  6347. AllocationAdd Measure 10313 Type Default
  6348. AllocationAdd Measure 10317 Type Default
  6349. AllocationAdd Measure 28191 Type Default
  6350. AllocationAdd Measure 28187 Type Default
  6351. AllocationAdd Measure 28195 Type Default
  6352. AllocationAdd Measure 28203 Type Default
  6353. AllocationAdd Measure 28225 Type Default
  6354. AllocationAdd Measure 28233 Type Default