From: kilian Date: Sun, 9 Aug 2020 19:57:10 +0000 (+0200) Subject: v20200809 X-Git-Tag: 1.0.15~46 X-Git-Url: http://cloud.dks.lu/git/?a=commitdiff_plain;h=3d03bd6013f4e3e0c63fc06e5a7c66c77b7076c1;p=pot_lu.git v20200809 --- diff --git a/.gitignore b/.gitignore index 10ccbc1d..c85256e7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,8 @@ OLD/* - website/app/data/output/* website/app/data/tmp/* website/app/tools/* website/app/lib/perl5/* - - +website/appphp/data/output/* +website/appphp/data/tmp/* +website/appphp/tools/* diff --git a/.vscode/settings.json b/.vscode/settings.json index 41b93194..fdf28741 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,6 +1,6 @@ { "perlSyntax.includePaths": [ - "C:/Users/kilian/Workspace/pot_lu/webapp/lib/perl5","C:/Users/kilian/Workspace/pot_lu/webapp/lib" + "C:/Users/kilian/Workspace/pot_lu/website/app/lib/perl5","C:/Users/kilian/Workspace/pot_lu/website/app/lib" ], "git.ignoreLimitWarning": true diff --git a/dev/db/gendefaultschema.sh b/dev/db/gendefaultschema.sh index 5207645c..4e48e355 100755 --- a/dev/db/gendefaultschema.sh +++ b/dev/db/gendefaultschema.sh @@ -35,6 +35,6 @@ grep -v "SELECT pg_catalog" \ > ${CALLDIR}"/potlu_db.newcompanyschema.pg.schema.sql" sed -i -e 's/'${DBSCHEMA}'/'${COMPANYSCHEMA}'/g' ${CALLDIR}"/potlu_db.newcompanyschema.pg.schema.sql" sed -i -e '/^$/N;/^\n$/D' ${CALLDIR}"/potlu_db.newcompanyschema.pg.schema.sql" -cp ${CALLDIR}"/potlu_db.newcompanyschema.pg.schema.sql" ${CALLDIR}"/../../webapp/data/schemata/defaultcompany.schema.sql" +cp ${CALLDIR}"/potlu_db.newcompanyschema.pg.schema.sql" ${CALLDIR}"/../../website/app/data/schemata/defaultcompany.schema.sql" fi diff --git a/dev/db/potlu_db.newcompanyschema.pg.schema.sql b/dev/db/potlu_db.newcompanyschema.pg.schema.sql index baf66b83..155aa081 100644 --- a/dev/db/potlu_db.newcompanyschema.pg.schema.sql +++ b/dev/db/potlu_db.newcompanyschema.pg.schema.sql @@ -9,9 +9,8 @@ declare rpend date; rplength int4; rpparentid text; - rpunit text; - r_stgrps record; - rpsql text; + rpunit text; + allstaff record; newperiodid text; begin select reportperiodunit,reportperiodlength,reportperiodstart into rpunit,rplength,rpstart from public.companies where schemata='%%NEWSCHEMA%%'; @@ -20,12 +19,153 @@ begin select max(id) into rpparentid from %%NEWSCHEMA%%.reportperiod; --raise notice 'ADD NEW PERIOD: %->%',rpstart,rpend; INSERT INTO %%NEWSCHEMA%%.reportperiod (startdate, enddate, id_parentreportperiod) VALUES(rpstart,rpend,rpparentid) returning id into newperiodid; - perform %%NEWSCHEMA%%.update_all_staff_in_period(newperiodid); + for allstaff in select id_staff from %%NEWSCHEMA%%.staff where isdeleted is null + loop + perform %%NEWSCHEMA%%.set_staffperioddays(newperiodid,allstaff.id_staff); + end loop; + return newperiodid; end; $$; -CREATE FUNCTION %%NEWSCHEMA%%.getperiod_staffcontract(pid text) RETURNS TABLE(id text, id_staff text, startdate date, enddate date, weekhours interval, weekdays integer, id_workplan text, defaultfreedays json) +CREATE FUNCTION %%NEWSCHEMA%%.add_staff() RETURNS text + LANGUAGE plpgsql + AS $$ +declare + newuuid text; + stgrid text; + iddef_workplan text; +begin + select id into iddef_workplan from %%NEWSCHEMA%%.workplans where isdefault = true; + select id into stgrid from %%NEWSCHEMA%%.staffgroups where isdefault is null; + if (stgrid is null) then + select id into stgrid from %%NEWSCHEMA%%.staffgroups limit 1; + end if; + insert into %%NEWSCHEMA%%.staff (id_staffgroup) values (stgrid) returning id into newuuid; + insert into %%NEWSCHEMA%%.staffcontract (id_staff,startdate,id_contractworkplan) values (newuuid,CURRENT_DATE,iddef_workplan); + return newuuid; +end; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.add_workplan(pwkname text) RETURNS text + LANGUAGE plpgsql + AS $$ +declare + newuuid text; +begin + insert into %%NEWSCHEMA%%.workplans (workplan) values (pwkname) returning id into newuuid; + for cntwd in 1..7 LOOP + insert into %%NEWSCHEMA%%.workplandays (id_workplan,weeknum,weekday) values (newuuid,1,cntwd); + end loop; + return newuuid; +end; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.clean_staffperiodday(vid_staffperioddays json) RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + rcopy record; + begin + --select id_reportperiod,id_staff into rcopy from %%NEWSCHEMA%%.staffreportperioddays where id in (vid_staffperioddays) group by id_reportperiod, id_staff; + update %%NEWSCHEMA%%.staffreportperioddays set timestart1 = null, + timeend1 =null, + timestart2 = null, + timeend2 = null, + timepause = null, + vacancyhours = null, + id_vacancytype = null, + id_recuperationtype = null, + recuperationhours = null, + workhours=null, + dayhours=null + where id in (select value from json_array_elements_text(vid_staffperioddays) aa); + for rcopy in select id_reportperiod,id_staff from %%NEWSCHEMA%%.staffreportperioddays where id in (select value from json_array_elements_text(vid_staffperioddays) aa) group by id_reportperiod, id_staff + loop + perform %%NEWSCHEMA%%.update_staff_in_period(rcopy.id_reportperiod, rcopy.id_staff); + end loop; + RETURN true; + END; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.clone_staffperiodweekdayhours(vcopyid text, vpasteids json) RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + rcopy record; + + begin + + select * into rcopy from %%NEWSCHEMA%%.staffreportperioddays where id=vcopyid; + update %%NEWSCHEMA%%.staffreportperioddays set timestart1=rcopy.timestart1, + timeend1=rcopy.timeend1, + timestart2= rcopy.timestart2, + timeend2=rcopy.timeend2, + timepause=rcopy.timepause, + vacancyhours=rcopy.vacancyhours, + id_vacancytype=rcopy.id_vacancytype, + id_recuperationtype=rcopy.id_recuperationtype, + recuperationhours=rcopy.recuperationhours + where id in (select value from json_array_elements_text(vpasteids) aa); + perform %%NEWSCHEMA%%.update_staff_in_period(rcopy.id_reportperiod, rcopy.id_staff); + RETURN true; + END; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.del_staff(pid_staff text) RETURNS boolean + LANGUAGE plpgsql + AS $$ +begin + update %%NEWSCHEMA%%.staff set isdeleted = true; + return true; +end; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.del_staffcontract(pid_staffcontract text) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + idstaff text; + rps record; +begin + select id_staff into idstaff from %%NEWSCHEMA%%.staffcontract where id=pid_staffcontract; + delete from %%NEWSCHEMA%%.staffcontract where id=pid_staffcontract; + for rps in select id from %%NEWSCHEMA%%.reportperiod + loop + perform %%NEWSCHEMA%%.set_staffperioddays(rps.id, idstaff); + end loop; + return true; +end; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.delete_workplan(pid_workplan text) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare +begin + delete from %%NEWSCHEMA%%.workplandays where id_workplan=pid_workplan; + --update %%NEWSCHEMA%%.staffcontract set id_worplan=null where id_workplan=pid_workplan; + delete from %%NEWSCHEMA%%.workplans where id=pid_workplan; + return true; +end; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.duplicate_workplan(pid_workplan text) RETURNS text + LANGUAGE plpgsql + AS $$ +declare + newuuid text; + wkname text; +begin + select workplan || ' Copy' into wkname from %%NEWSCHEMA%%.workplans where id=pid_workplan; + insert into %%NEWSCHEMA%%.workplans (workplan) values (wkname) returning id into newuuid; + insert into %%NEWSCHEMA%%.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, weeknum) + select newuuid as id_workplan, weekday,start1,end1,start2,end2,pause,weeknum from %%NEWSCHEMA%%.workplandays where id_workplan = pid_workplan; + return newuuid; +end; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.getperiod_staffcontract(pid text) RETURNS TABLE(id text, id_staff text, startdate date, enddate date) LANGUAGE plpgsql AS $$ declare @@ -34,45 +174,36 @@ CREATE FUNCTION %%NEWSCHEMA%%.getperiod_staffcontract(pid text) RETURNS TABLE(id begin select prd.startdate as prdstart,prd.enddate as prdend into pstart,pend from %%NEWSCHEMA%%.reportperiod prd where prd.id=pid; return QUERY -select sc.id,sc.id_staff, +select sc.id,sc.id_staff,sc.weekdays,sc.weekhours, sc.weekhours/sc.weekdays as wdcontracthours, case when sc.startdate < pstart then pstart else sc.startdate end as startdate, -case when sc.enddate is null then pend when sc.enddate > pend then pend else sc.enddate end as enddate, -sc.weekhours,sc.weekdays,sc.id_workplan,sc.defaultfreedays -from %%NEWSCHEMA%%.staffcontract sc where sc.startdate<= pend and (sc.enddate is null or sc.enddate >= pstart) +case when sc.enddate is null then pend when sc.enddate > pend then pend else sc.enddate end as enddate +from %%NEWSCHEMA%%.staffcontract sc +join %%NEWSCHEMA%%.staff st on st.id=sc.id_staff +where sc.startdate<= pend and (sc.enddate is null or sc.enddate >= pstart) and st.isdeleted is null order by sc.id_staff,sc.startdate,sc.enddate; END; $$; -CREATE FUNCTION %%NEWSCHEMA%%.getperiod_staffcontract(pstart date, pend date) RETURNS TABLE(id text, id_staff text, startdate date, enddate date, weekhours interval, weekdays integer, id_workplan text) +CREATE FUNCTION %%NEWSCHEMA%%.getperiod_staffcontractdata(pid text) RETURNS TABLE(id text, id_staff text, startdate date, enddate date, weekdays integer, weekhours interval, wdcontracthours interval) LANGUAGE plpgsql AS $$ - BEGIN + declare + pstart date; + pend date; + begin + select prd.startdate as prdstart,prd.enddate as prdend into pstart,pend from %%NEWSCHEMA%%.reportperiod prd where prd.id=pid; return QUERY -select id,id_staff,case when startdate < pstart then pstart else startdate end as startdate,case when enddate is null then pend when enddate > pend then pend else enddate end as enddate, -weekdays, -id_workplan, -weekhours from %%NEWSCHEMA%%.staffcontract where startdate<= pend and (enddate is null or enddate >= pstart) order by id_staff,startdate,enddate; +select sc.id,sc.id_staff, +case when sc.startdate < pstart then pstart else sc.startdate end as startdate, +case when sc.enddate is null then pend when sc.enddate > pend then pend else sc.enddate end as enddate +,sc.weekdays,sc.weekhours, sc.weekhours/case when sc.weekdays = 0 or sc.weekdays is null then 7 else sc.weekdays end as wdcontracthours +from %%NEWSCHEMA%%.staffcontract sc +join %%NEWSCHEMA%%.staff st on st.id=sc.id_staff +where sc.startdate<= pend and (sc.enddate is null or sc.enddate >= pstart) and st.isdeleted is null +order by sc.id_staff,sc.startdate,sc.enddate; END; $$; -CREATE FUNCTION %%NEWSCHEMA%%.onchange_reportperiod(pid_period text) RETURNS boolean - LANGUAGE plpgsql - AS $$ -declare - prdstart date; - prdend date; - strec record; -begin - select startdate,enddate into prdstart,prdend from %%NEWSCHEMA%%.reportperiod where id=pid_period; - for strec in select id_staff,startdate,enddate from %%NEWSCHEMA%%.staffcontract where startdate <= prdend and (enddate is null or enddate >= prdstart) group by id_staff - loop - --raise notice 'Start Update period % staffworkplan for % from % to %',pid_period,strec.id_staff,strec.startdate,strec.enddate; - perform %%NEWSCHEMA%%.update_staffworkplan(pid_period,strec.id_staff); - end loop; - return true; -end; -$$; - CREATE FUNCTION %%NEWSCHEMA%%.refresh_periods() RETURNS boolean LANGUAGE plpgsql AS $$ @@ -87,7 +218,91 @@ CREATE FUNCTION %%NEWSCHEMA%%.refresh_periods() RETURNS boolean END; $$; -CREATE FUNCTION %%NEWSCHEMA%%.set_periodday_sums(pid_periodday text) RETURNS text +CREATE FUNCTION %%NEWSCHEMA%%.replace_staffperiodweekdayhours(vworkplanid text, vkeepvac boolean, vkeeprec boolean, vreplaceids json) RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + rcopy record; + + begin + for rcopy in select * from %%NEWSCHEMA%%.workplandays w where id_workplan=vworkplanid + loop + update %%NEWSCHEMA%%.staffreportperioddays set timestart1=rcopy.start1,timeend1=rcopy.end1,timestart2=rcopy.start2,timeend2=rcopy.end2, timepause=rcopy.pause + where id in (select value from json_array_elements_text(vreplaceids) aa) and date_part('isodow',daydate)::INT4=rcopy.weekday; + if vkeepvac = false then + update %%NEWSCHEMA%%.staffreportperioddays set vacancyhours=null,id_vacancytype=null + where id in (select value from json_array_elements_text(vreplaceids) aa) and date_part('isodow',daydate)::INT4=rcopy.weekday; + end if; + if vkeeprec = false then + update %%NEWSCHEMA%%.staffreportperioddays set recuperationhours=null,id_recuperationtype=null + where id in (select value from json_array_elements_text(vreplaceids) aa) and date_part('isodow',daydate)::INT4=rcopy.weekday; + end if; + end loop; + perform %%NEWSCHEMA%%.update_periodsums_byid(vreplaceids); + RETURN true; + END; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.set_staffperiod(pid_period text, pid_staff text) RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + weekrec record; + BEGIN + for weekrec in select id_staff,id_reportperiod, +sum(contracthours) as contracthours, +sum(workhours) as workhours, +sum(vacancyhours) as vacancyhours, +sum(recuperationhours) as recuperationhours, +sum(diffhours) as hoursdiff, +sum(totalhours) as totalhours +from %%NEWSCHEMA%%.staffreportperiodweeks where id_staff=pid_staff and id_reportperiod=pid_period group by id_reportperiod,id_staff + loop + insert into %%NEWSCHEMA%%.staffreportperiod (id_staff,id_reportperiod,contracthours,workhours,vacancyhours,recuperationhours,hoursdiff,totalhours) + values (pid_staff,pid_period ,weekrec.contracthours,weekrec.workhours,weekrec.vacancyhours,weekrec.recuperationhours,weekrec.hoursdiff,weekrec.totalhours) + on conflict on constraint uniq_staffreportperiod_cal do update set contracthours=weekrec.contracthours, + workhours=weekrec.workhours, + vacancyhours=weekrec.vacancyhours, + recuperationhours=weekrec.recuperationhours, + hoursdiff=weekrec.hoursdiff, + totalhours=weekrec.totalhours; + end loop; + --set periodstaffdata (based on periodweeks) + --set nextperiodsdata(based on) + return true; + END; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.set_staffperiod_sums(pid_period text, pid_staff text) RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + weekrec record; + BEGIN + for weekrec in select id_staff,id_reportperiod, +sum(case when contracthours is not null then contracthours else '00:00:00'::interval end) as contracthours, +sum(case when workhours is not null then workhours else '00:00:00'::interval end) as workhours, +sum(case when vacancyhours is not null then vacancyhours else '00:00:00'::interval end) as vacancyhours, +sum(case when recuperationhours is not null then recuperationhours else '00:00:00'::interval end) as recuperationhours, +sum(case when diffhours is not null then diffhours else '00:00:00'::interval end) as hoursdiff, +sum(case when totalhours is not null then totalhours else '00:00:00'::interval end) as totalhours +from %%NEWSCHEMA%%.staffreportperiodweeks where id_staff=pid_staff and id_reportperiod=pid_period group by id_reportperiod,id_staff + loop + update %%NEWSCHEMA%%.staffreportperiod set contracthours=weekrec.contracthours, + workhours=weekrec.workhours, + vacancyhours=weekrec.vacancyhours, + recuperationhours=weekrec.recuperationhours, + hoursdiff=weekrec.hoursdiff, + totalhours=weekrec.totalhours + where id_staff=pid_staff and id_reportperiod=pid_period; + end loop; + --set periodstaffdata (based on periodweeks) + --set nextperiodsdata(based on) + return true; + END; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.set_staffperiodday_sums(pid_periodday text) RETURNS text LANGUAGE plpgsql AS $$ declare @@ -96,101 +311,141 @@ declare dt2 interval := '00:00:00'::interval; dp interval := '00:00:00'::interval; cworkhours interval := '00:00:00'::interval; - cvacancyhours interval := '00:00:00'::interval; - crecuperationhours interval := '00:00:00'::interval; + --cvacancyhours interval := '00:00:00'::interval; + --crecuperationhours interval := '00:00:00'::interval; cdayhours interval := '00:00:00'::interval; - cinterruptionhours interval := '00:00:00'::interval; + cinterruptionhours interval := '00:00:00'::interval; + ccontracthours interval := '00:00:00'::interval; begin - + --raise notice 'set Period Day: %s', pid_periodday; select * into stw from %%NEWSCHEMA%%.staffreportperioddays where id=pid_periodday; if stw.timestart1 is not null and stw.timeend1 is not null then - dt1 := stw.timeend1-stw.timestart1; + if stw.timeend1 < stw.timestart1 then + dt1 := '24:00:00'::interval + stw.timeend1::interval - stw.timestart1::interval; + else + dt1 := stw.timeend1-stw.timestart1; + end if; end if; if stw.timestart2 is not null and stw.timeend2 is not null then - dt2 := stw.timeend2-stw.timestart2; + if stw.timeend2 < stw.timestart2 then + dt2 := '24:00:00'::interval + stw.timeend2::interval - stw.timestart2::interval; + else + dt2 := stw.timeend2-stw.timestart2; + end if; end if; if stw.timepause is not null then dp := stw.timepause; end if; cworkhours := (dt1+dt2)-dp; if (dt1 > '00:00:00'::interval and dt2 > '00:00:00'::interval) then - cinterruptionhours := stw.timestart2 -stw.timeend1; + cinterruptionhours := stw.timestart2 - stw.timeend1; end if; - if stw.vacancyhours is not null then + /*if stw.vacancyhours is not null then if stw.vacancyhours <= stw.contracthours then cvacancyhours := stw.vacancyhours; else cvacancyhours := stw.contracthours; end if; - end if; - if stw.recuperationhours is not null then + end if;*/ + /*if stw.recuperationhours is not null then if stw.recuperationhours <= stw.contracthours then crecuperationhours := stw.recuperationhours; else crecuperationhours := stw.contracthours; end if; + end if;*/ + cdayhours := cworkhours::interval+coalesce(stw.vacancyhours::interval,'00:00:00'::interval)-coalesce(stw.recuperationhours::interval,'00:00:00'::interval); + if cdayhours > '00:00:00'::interval then + ccontracthours := stw.wdcontracthours; end if; - cdayhours := cworkhours+cvacancyhours+crecuperationhours; - - update %%NEWSCHEMA%%.staffreportperioddays set workhours=cworkhours,interruptionhours=cinterruptionhours,dayhours=cdayhours,vacancyhours=cvacancyhours,recuperationhours=crecuperationhours where id=pid_periodday; + update %%NEWSCHEMA%%.staffreportperioddays set workhours=cworkhours,interruptionhours=cinterruptionhours,dayhours=cdayhours,contracthours=ccontracthours where id=pid_periodday; return pid_periodday; end; $$; -CREATE FUNCTION %%NEWSCHEMA%%.set_staffperiod_sums(pid_period text, pid_staff text) RETURNS boolean +CREATE FUNCTION %%NEWSCHEMA%%.set_staffperioddays(pid_period text, pid_staff text) RETURNS boolean LANGUAGE plpgsql AS $$ - declare - weekrec record; - BEGIN - for weekrec in select id_staff,id_reportperiod, -sum(contracthours) as contracthours, -sum(workhours) as workhours, -sum(vacancyhours) as vacancyhours, -sum(recuperationhours) as recuperationhours, -sum(diffhours) as hoursdiff, -sum(totalhours) as totalhours -from %%NEWSCHEMA%%.staffreportperiodweeks where id_staff=pid_staff and id_reportperiod=pid_period group by id_reportperiod,id_staff - loop - update %%NEWSCHEMA%%.staffreportperiod set contracthours=weekrec.contracthours, - workhours=weekrec.workhours, - vacancyhours=weekrec.vacancyhours, - recuperationhours=weekrec.recuperationhours, - hoursdiff=weekrec.hoursdiff, - totalhours=weekrec.totalhours - where id_staff=pid_staff and id_reportperiod=pid_period; +declare + cont record; + prd record; + pday record; + cdate date; + cid_staffworkplan text; +begin + select * into prd from %%NEWSCHEMA%%.reportperiod where id= pid_period; + for cont in select * from %%NEWSCHEMA%%.getperiod_staffcontractdata(pid_period) where id_staff=pid_staff + loop + cdate := cont.startdate; + + while cdate <= cont.enddate loop + --raise notice 'cdate %: % <=> %',cdate, prd.startdate,prd.enddate; + if cdate between prd.startdate and prd.enddate then + --raise notice 'insert %: % <=> %',cdate, prd.startdate,prd.enddate; + insert into %%NEWSCHEMA%%.staffreportperioddays (id_staff,daydate,id_reportperiod,wdcontracthours ) values ( pid_staff , cdate , pid_period,cont.wdcontracthours) + on conflict on constraint uniq_staffworplan_staffday do update set wdcontracthours=cont.wdcontracthours; + end if; + cdate = cdate + interval '1 day'; end loop; - --set periodstaffdata (based on periodweeks) - --set nextperiodsdata(based on) - return true; - END; + + end loop; + perform %%NEWSCHEMA%%.verify_perioddays(pid_period,pid_staff); + for pday in select id from %%NEWSCHEMA%%.staffreportperioddays where id_staff=pid_staff and pid_period=pid_period + loop + perform %%NEWSCHEMA%%.set_staffperiodday_sums(pday.id); + end loop; + raise notice 'start set_staffperiodweeks % % ',pid_period,pid_staff; + perform %%NEWSCHEMA%%.set_staffperiodweeks(pid_period,pid_staff); + return true; +end; $$; CREATE FUNCTION %%NEWSCHEMA%%.set_staffperiodweek_sums(pid_reportperiod text, pid_staff text) RETURNS boolean LANGUAGE plpgsql AS $$ declare - wkcon record; + sweek record; tmpcontrhours interval; freedays int4 := 0; begin - -- INSERT Contract data into Week -for wkcon in select srpw.id,srpw.calweek,srpw.weekstart,srpw.calyear,rp.startdate as periodstart,psc.startdate,rp.enddate as periodend,psc.enddate,psc.weekhours,psc.weekdays,srpw.contractdays,srpw.caldays,srpw.diffhours,srpw.contracthours,srpw.totalhours,psc.defaultfreedays -from %%NEWSCHEMA%%.staffreportperiodweeks srpw -left join (select xa.id_staff,xa.startdate,xa.enddate,xa.weekhours,xa.weekdays,xa.defaultfreedays from %%NEWSCHEMA%%.getperiod_staffcontract(pid_reportperiod) xa where xa.id_staff=pid_staff) psc -on (srpw.weekstart between date_trunc('week',psc.startdate) and psc.enddate) -left join %%NEWSCHEMA%%.reportperiod rp on (srpw.id_reportperiod =rp.id) -where srpw.id_reportperiod=pid_reportperiod and srpw.id_staff=pid_staff -loop - --raise notice 'id=%',wkcon; - if wkcon.defaultfreedays is not null then + +for sweek in +select srpd.id_staff,srpd.id_reportperiod,date(date_trunc('week',srpd.daydate)) as weekstart,date_part('week',srpd.daydate) as calweek, +date_part('isoyear',srpd.daydate) as calyear, +sum(case when srpd.workhours is null then '00:00:00'::interval else srpd.workhours::interval end) as workhours, +'00:00:00'::interval as trackedhours, +sum(case when srpd.vacancyhours is null then '00:00:00'::interval else srpd.vacancyhours::interval end ) as vacancyhours, +sum(case when srpd.recuperationhours is null then '00:00:00'::interval else srpd.recuperationhours::interval end) as recuperationhours, +sum(case when srpd.dayhours is null then '00:00:00'::interval else srpd.dayhours::interval end) as totalhours, +sum(case when srpd.workhours != '00:00:00'::time then 1 else 0 end) as workdays, +sum(case when srpd.contracthours is null then '00:00:00'::interval else srpd.contracthours::interval end) as contracthours +from %%NEWSCHEMA%%.staffreportperioddays srpd +join %%NEWSCHEMA%%.reportperiod rp on (rp.id=srpd.id_reportperiod) +where srpd.id_reportperiod =pid_reportperiod and srpd.id_staff=pid_staff +group by weekstart,calweek,calyear,srpd.id_staff,srpd.id_reportperiod +loop + update %%NEWSCHEMA%%.staffreportperiodweeks set + workhours=sweek.workhours, + trackedhours=sweek.trackedhours, + vacancyhours=sweek.vacancyhours, + recuperationhours=sweek.recuperationhours, + diffhours=case when sweek.contracthours is null or sweek.contracthours::interval='00:00:00'::interval then null else sweek.totalhours-sweek.contracthours end, + totalhours=sweek.totalhours, + workdays=sweek.workdays, + contracthours=sweek.contracthours + where id_staff=sweek.id_staff and id_reportperiod=sweek.id_reportperiod and weekstart=sweek.weekstart; +end loop; + --raise notice 'UPDATE WEEK SUMS %',sweek; + /**/ + /*if wkcon.defaultfreedays is not null then freedays = json_array_length(wkcon.defaultfreedays); end if; wkcon.contracthours=wkcon.weekhours; wkcon.contractdays=wkcon.weekdays; if wkcon.calweek= date_part('week',wkcon.periodstart)::int4 and wkcon.calyear= date_part('isoyear',wkcon.periodstart)::int4 then wkcon.contracthours = wkcon.contracthours - ((wkcon.weekhours/wkcon.weekdays) * (wkcon.startdate-wkcon.periodstart)::int4); - end if; + end if;*/ + --if wkcon.startdate > wkcon.periodstart then -- wkcon.contractdays = wkcon.contractdays-(wkcon.startdate-wkcon.periodstart)::int4; -- wkcon.contracthours = (wkcon.weekhours/wkcon.weekdays) * wkcon.contractdays; @@ -201,65 +456,47 @@ loop --end if; - wkcon.diffhours = wkcon.totalhours-wkcon.contracthours; - raise notice 'contractdays: % contracthours: % totalhours: % diffhours: %',wkcon.contractdays,wkcon.contracthours,wkcon.totalhours,wkcon.diffhours; + /*wkcon.diffhours = wkcon.totalhours-wkcon.contracthours; + raise notice 'contractdays: % contracthours: % totalhours: % diffhours: %',wkcon.contractdays,wkcon.contracthours,wkcon.totalhours,wkcon.diffhours;*/ --raise notice 'id=% cdays=% chours=% diffhours=%',wkcon.id,wkcon.contractdays,wkcon.contracthours,wkcon.diffhours; - update %%NEWSCHEMA%%.staffreportperiodweeks set contracthours=wkcon.contracthours,contractdays=wkcon.contractdays,diffhours=wkcon.diffhours where id=wkcon.id; -end loop; + + return true; end; $$; -CREATE FUNCTION %%NEWSCHEMA%%.set_stafftoperioddays(pid_period text, pid_staff text) RETURNS boolean +CREATE FUNCTION %%NEWSCHEMA%%.set_staffperiodweeks(pid_reportperiod text, pid_staff text) RETURNS boolean LANGUAGE plpgsql AS $$ declare - cont record; - prd record; - cdl record; - cdate date; - edate date; - wday text; - wdaynum int4; - wdayplan record; - cid_staffworkplan text; - cdaytime interval; + wkpd record; + wkcon record; begin - select * into prd from %%NEWSCHEMA%%.reportperiod where id= pid_period; - for cont in select * from %%NEWSCHEMA%%.getperiod_staffcontract(pid_period) where id_staff=pid_staff - loop - cdate := cont.startdate; - while cdate <= cont.enddate loop - if cdate between prd.startdate and prd.enddate then - wdaynum = date_part('isodow',cdate)::INT4; - cdaytime := null; - - if position('"' || wdaynum || '"' in cont.defaultfreedays::text) = 0 then - cdaytime := cont.weekhours/cont.weekdays; - end if; - raise notice 'wday % => % => %',wdaynum,position('"' || wdaynum || '"' in cont.defaultfreedays::text),cdaytime; - if (cont.id_workplan is not null) then - wday := substr(to_char(cdate,'day'),1,3); - execute 'select ' || wday || '_timestart1 as ts1,' || wday || '_timeend1 as te1,' || wday || '_timestart2 as ts2,' || wday ||'_timeend2 as te2,'|| wday ||'_timepause as tp from %%NEWSCHEMA%%.workplans where id=''' || cont.id_workplan || ''';' into wdayplan; - - insert into %%NEWSCHEMA%%.staffreportperioddays (id_staff,daydate,id_reportperiod,timestart1,timeend1,timestart2,timeend2,timepause,contracthours,wdcontracthours) - values (pid_staff,cdate,pid_period,wdayplan.ts1,wdayplan.te1,wdayplan.ts2,wdayplan.te2,wdayplan.tp,cont.weekhours/cont.weekdays,cdaytime) - on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays,wdcontracthours=cdaytime - returning id into cid_staffworkplan; - else - insert into %%NEWSCHEMA%%.staffreportperioddays (id_staff,daydate,id_reportperiod,contracthours,wdcontracthours) values ( pid_staff , cdate , pid_period,cont.weekhours/cont.weekdays,cdaytime) - on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays,wdcontracthours=cdaytime - returning id into cid_staffworkplan; - end if; - end if; - perform %%NEWSCHEMA%%.set_periodday_sums(cid_staffworkplan); - cdate = cdate + interval '1 day'; - end loop; - + for wkpd in select srpd.id_staff,srpd.id_reportperiod,date(date_trunc('week',srpd.daydate)) as weekstart,date_part('week',srpd.daydate) as calweek, +date_part('isoyear',srpd.daydate) as calyear, +coalesce(sum(srpd.workhours::interval),'00:00:00'::interval) as workhours, +coalesce(sum('00:00:00'::interval),'00:00:00'::interval) as trackedhours, +coalesce(sum(srpd.vacancyhours::interval),'00:00:00'::interval) as vacancyhours, +coalesce(sum(srpd.recuperationhours::interval),'00:00:00'::interval) as recuperationhours, +coalesce(sum(srpd.dayhours::interval),'00:00:00'::interval) as totalhours, +sum(case when srpd.workhours != '00:00:00'::time then 1 else 0 end) as workdays, +coalesce(sum(contracthours::interval),'00:00:00'::interval) as contracthours +from %%NEWSCHEMA%%.staffreportperioddays srpd +join %%NEWSCHEMA%%.reportperiod rp on (rp.id=srpd.id_reportperiod) +where srpd.id_reportperiod =pid_reportperiod and srpd.id_staff=pid_staff +group by weekstart,calweek,calyear,srpd.id_staff,srpd.id_reportperiod + loop + raise notice 'CHECK WEEK % % ',wkpd.calweek,wkpd.calyear; + --raise notice 'id_staff: % id_period: % calweek: % calyear: %',pid_staff,pid_reportperiod,wkpd.calweek,wkpd.calyear; + insert into %%NEWSCHEMA%%.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, workhours,vacancyhours, recuperationhours, weekstart,totalhours,workdays,contracthours,diffhours) + VALUES(wkpd.id_staff, wkpd.id_reportperiod, wkpd.calyear, wkpd.calweek, wkpd.workhours, wkpd.vacancyhours, wkpd.recuperationhours, wkpd.weekstart,wkpd.totalhours,wkpd.workdays,wkpd.contracthours,wkpd.contracthours-wkpd.totalhours) + on conflict on constraint uniq_staffweekplan_cal do nothing; + perform %%NEWSCHEMA%%.set_staffperiodweek_sums(wkpd.id_reportperiod,wkpd.id_staff); end loop; - perform %%NEWSCHEMA%%.verify_perioddays(pid_period,pid_staff); + perform %%NEWSCHEMA%%.set_staffperiod(pid_reportperiod, pid_staff); + return true; end; $$; @@ -297,12 +534,84 @@ where swp.id_reportperiod= pid_reportperiod and swp.id_staff=pid_staff) wkwp gro VALUES(wkpd.id_staff, wkpd.id_reportperiod, wkpd.calyear, wkpd.calweek, wkpd.workhours, wkpd.vacancyhours, wkpd.recuperationhours, wkpd.weekstart,wkpd.totalhours,wkpd.caldays,wkpd.contracthours,wkpd.contracthours-wkpd.totalhours) on conflict on constraint uniq_staffweekplan_cal do update set workhours=wkpd.workhours, vacancyhours=wkpd.vacancyhours, recuperationhours=wkpd.recuperationhours,totalhours=wkpd.totalhours,caldays=wkpd.caldays,contracthours=wkpd.contracthours,diffhours=wkpd.contracthours-wkpd.totalhours; end loop; - perform %%NEWSCHEMA%%.set_staffperiodweek_sums(pid_reportperiod, pid_staff); + --perform %%NEWSCHEMA%%.set_staffperiodweek_sums(pid_reportperiod, pid_staff); return true; end; $$; +CREATE FUNCTION %%NEWSCHEMA%%.setworkplan_weekdata(pid_workplan text) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + freedays text; + wdcnt int4; + xweekhours interval; +begin + select '["' || string_agg(weekday::text,'","') || '"]' into freedays from %%NEWSCHEMA%%.workplandays where id_workplan=pid_workplan and start1 is null and start2 is null group by id_workplan; + select count(*) into wdcnt from %%NEWSCHEMA%%.workplandays where id_workplan=pid_workplan and start1 is not null group by id_workplan; + if wdcnt is null then + wdcnt=0; + end if; + SELECT sum( + coalesce(CASE WHEN start1 > end1 THEN '24:00:00'::time without time zone - (start1 - end1)::time without time zone ELSE end1 - start1 end,'00:00:00'::interval) + + coalesce(CASE WHEN start2 > end2 and start1 is not null THEN '24:00:00'::time without time zone - (start2 - end2)::time without time zone ELSE end2 - start2 end,'00:00:00'::interval) - + coalesce(pause,'00:00:00'::time without time zone)) into xweekhours FROM %%NEWSCHEMA%%.workplandays where id_workplan=pid_workplan group by id_workplan ; + update %%NEWSCHEMA%%.workplans set weekhours = xweekhours, weekdays = wdcnt, freeweekdayslist = freedays::JSON where id=pid_workplan; + --update %%NEWSCHEMA%%.staffcontract set weekdays= wdcnt, weekhours= xweekhours, defaultfreedays= freedays::JSON where id_contractworkplan=pid_workplan; + return true; +end; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.trg_after_upd_staffcontract() RETURNS trigger + LANGUAGE plpgsql + AS $$ + declare + idstaff text; + datestart date; + dateend date; + rp record; + begin + raise notice 'After update exec %',new.id; + UPDATE %%NEWSCHEMA%%.staffcontract sc SET weekdays = wp.weekdays , weekhours = wp.weekhours,defaultfreedays= wp.freeweekdayslist from %%NEWSCHEMA%%.workplans wp where wp.id =sc.id_contractworkplan and sc.id=new.id + returning id_staff,startdate,enddate into idstaff,datestart,dateend; + raise notice 'idstaff % startdate % enddate %',idstaff,datestart,dateend; + if datestart is not null and dateend is null then + for rp in select id from %%NEWSCHEMA%%.reportperiod where datestart between startdate and enddate or startdate > datestart + loop + raise notice 'run update_staff_in_period startdate % => %',datestart ,rp.id; + perform %%NEWSCHEMA%%.set_staffperioddays(rp.id, idstaff); + end loop; + elsif dateend is not null then + for rp in select id from %%NEWSCHEMA%%.reportperiod where enddate >= datestart and (startdate <= dateend) + loop + raise notice 'run update_staff_in_period startdate % enddate % => %',datestart,dateend,rp.id; + perform %%NEWSCHEMA%%.set_staffperioddays(rp.id, idstaff); + end loop; + end if; + + RETURN NEW; + END; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.trg_after_upd_worplanday() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + perform %%NEWSCHEMA%%.setworkplan_weekdata((select id_workplan from %%NEWSCHEMA%%.workplandays where id=new.id)); + RETURN NEW; + END; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.trg_before_upd_schematable() RETURNS trigger + LANGUAGE plpgsql + AS $$ + begin + new.modified = now(); + RETURN NEW; + END; +$$; + CREATE FUNCTION %%NEWSCHEMA%%.update_all_staff_in_period(pid_period text) RETURNS boolean LANGUAGE plpgsql AS $$ @@ -318,17 +627,43 @@ CREATE FUNCTION %%NEWSCHEMA%%.update_all_staff_in_period(pid_period text) RETURN END; $$; +CREATE FUNCTION %%NEWSCHEMA%%.update_periodsums_byid(vdayids json) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + rday record; + rweek record; + rperiod record; +BEGIN + for rday in select id from %%NEWSCHEMA%%.staffreportperioddays where id in (select value from json_array_elements_text(vdayids) aa) group by id + loop + perform %%NEWSCHEMA%%.set_staffperiodday_sums(rday.id); + end loop; + for rweek in select id_staff,id_reportperiod from %%NEWSCHEMA%%.staffreportperioddays where id in (select value from json_array_elements_text(vdayids) aa) group by id_reportperiod,id_staff + loop + perform %%NEWSCHEMA%%.set_staffperiodweek_sums(rweek.id_reportperiod,rweek.id_staff); + perform %%NEWSCHEMA%%.set_staffperiod_sums(rweek.id_reportperiod,rweek.id_staff); + end loop; + return true; + END; +$$; + CREATE FUNCTION %%NEWSCHEMA%%.update_staff_in_period(pid_period text, pid_staff text) RETURNS boolean LANGUAGE plpgsql AS $$ declare - staffreportid text; - BEGIN - insert into %%NEWSCHEMA%%.staffreportperiod (id_reportperiod,id_staff) values (pid_period,pid_staff) - on conflict on constraint uniq_staffreportperiod_cal do nothing returning id into staffreportid; - perform %%NEWSCHEMA%%.set_stafftoperioddays(pid_period,pid_staff); - perform %%NEWSCHEMA%%.set_stafftoperiodweeks(pid_period,pid_staff); - perform %%NEWSCHEMA%%.set_staffperiod_sums(pid_period,pid_staff); + staffreportid text; + rdays record; + begin + raise notice 'update staff in period called rp: % st: %',pid_period,pid_staff; + if (pid_period is not null and pid_staff is not null) then + for rdays in select id from %%NEWSCHEMA%%.staffreportperioddays where id_staff=pid_staff and id_reportperiod=pid_period + loop + perform %%NEWSCHEMA%%.set_staffperiodday_sums(rdays.id); + end loop; + perform %%NEWSCHEMA%%.set_staffperiodweek_sums(pid_period,pid_staff); + perform %%NEWSCHEMA%%.set_staffperiod_sums(pid_period,pid_staff); + end if; return true; END; $$; @@ -350,72 +685,6 @@ begin end; $$; -CREATE FUNCTION %%NEWSCHEMA%%.update_staffweeksums(pid_staffworkplan text) RETURNS void - LANGUAGE plpgsql - AS $$ -declare - wkpl_record record; - wkpltt time without time zone := '00:00:00'::interval; -begin - select - case WHEN timestart1 > timeend1 THEN '24:00:00'::time without time zone - (timestart1 - timeend1)::time without time zone ELSE timeend1 - timestart1 END AS time1, - CASE WHEN timestart2 > timeend2 THEN '24:00:00'::time without time zone - (timestart2 - timeend2)::time without time zone ELSE timeend2 - timestart2 END AS time2, - timepause - into wkpl_record - from %%NEWSCHEMA%%.staffworkplan where id= pid_staffworkplan; - - wkpltt := wkpl_record.time1 + wkpl_record.time2 - wkpl_record.timepause::interval; - update %%NEWSCHEMA%%.staffworkplan set totaltime=wkpltt where id=pid_staffworkplan; -end; -$$; - -CREATE FUNCTION %%NEWSCHEMA%%.update_staffworkplan(pid_period text, pid_staff text) RETURNS boolean - LANGUAGE plpgsql - AS $$ -declare - cont record; - prd record; - cdl record; - cdate date; - edate date; - wday text; - wdayplan record; - cid_staffworkplan text; -begin - select * into prd from %%NEWSCHEMA%%.reportperiod where id= pid_period; - for cont in select * from %%NEWSCHEMA%%.staffcontract where id_staff= pid_staff and (enddate >= prd.startdate or (enddate is null and startdate <= prd.enddate)) /*order by startdate,enddate nulls last*/ - loop - if cont.enddate is null then - cont.enddate := prd.enddate; - end if; - cdate := cont.startdate; - while cdate <= cont.enddate loop - if cdate between prd.startdate and prd.enddate then - if (cont.id_workplan is not null) then - wday := substr(to_char(cdate,'day'),1,3); - execute 'select ' || wday || '_timestart1 as ts1,' || wday || '_timeend1 as te1,' || wday || '_timestart2 as ts2,' || wday ||'_timeend2 as te2,'|| wday ||'_timepause as tp from %%NEWSCHEMA%%.workplans where id=' || cont.id_workplan || ';' into wdayplan; - insert into %%NEWSCHEMA%%.staffworkplan (id_staff,daydate,id_reportperiod,timestart1,timeend1,timestart2,timeend2,timepause,contracthours,id_staffgroup,fullweeksplithours) - values (pid_staff,cdate,pid_period,wdayplan.ts1,wdayplan.te1,wdayplan.ts2,wdayplan.te2,wdayplan.tp,cont.weekhours/cont.weekdays,cont.id_staffgroup,cont.weekhours/7) - on conflict on constraint uniq_staffworplan_staffday do update set id_reportperiod = pid_period,contracthours=cont.weekhours/cont.weekdays,id_staffgroup=cont.id_staffgroup,fullweeksplithours=cont.weekhours/7 - returning id into cid_staffworkplan; - else - insert into %%NEWSCHEMA%%.staffworkplan (id_staff,daydate,id_reportperiod,contracthours,id_staffgrou) values ( pid_staff , cdate , pid_period,cont.weekhours/cont.weekdays,cont.id_staffgroup,fullweeksplithours) - on conflict on constraint uniq_staffworplan_staffday do update set id_reportperiod = pid_period,contracthours=cont.weekhours/cont.weekdays,id_staffgroup=cont.id_staffgroup,fullweeksplithours=cont.weekhours/7 - returning id into cid_staffworkplan; - end if; - end if; - perform %%NEWSCHEMA%%.update_staffworkplan_sums(cid_staffworkplan); - cdate = cdate + interval '1 day'; - end loop; - - end loop; - perform %%NEWSCHEMA%%.verify_staffworplan_with_contractdates(pid_period,pid_staff); - --perform %%NEWSCHEMA%%.update_staffweekplan(pid_period,pid_staff); - --perform %%NEWSCHEMA%%.set_staffperiod_data(pid_period,pid_staff); - return true; -end; -$$; - CREATE FUNCTION %%NEWSCHEMA%%.verify_perioddays(pid_period text, pid_staff text) RETURNS boolean LANGUAGE plpgsql AS $$ @@ -429,73 +698,55 @@ begin select startdate,enddate into rpstart,rpend from %%NEWSCHEMA%%.reportperiod where id=pid_period; for wkpd in select id_staff,case when startdate <= rpstart then rpstart else startdate end as startdate,case when enddate is null then rpend else enddate end as enddate from %%NEWSCHEMA%%.staffcontract where id_staff=pid_staff and startdate <= rpend and (enddate is null or enddate >= rpstart) loop - --raise notice '%: % => % ',wkpd.id_staff,wkpd.startdate,wkpd.enddate; qlnotin := qlnotin || ' and daydate not between date(''' || wkpd.startdate || ''') AND date(''' || wkpd.enddate || ''')'; - --raise notice 'xx: %',qlnotin; end loop; sqlcheck := 'delete from %%NEWSCHEMA%%.staffreportperioddays where id in (select id from %%NEWSCHEMA%%.staffreportperioddays where id_staff=''' || pid_staff || ''' and id_reportperiod=''' || pid_period || ''' ' || qlnotin || ');'; - --raise notice 'SQL: %',sqlcheck; execute sqlcheck; - /*update %%NEWSCHEMA%%.staffworkplan - set contracthours=(select weekhours2/weekdays as contracthours - from %%NEWSCHEMA%%.staffcontract where id_staff=pid_staff - and ((%%NEWSCHEMA%%.staffworkplan.daydate between startdate and enddate) or - (startdate <= %%NEWSCHEMA%%.staffworkplan.daydate and enddate is null))), - id_staffgroup=(select id_staffgroup - from %%NEWSCHEMA%%.staffcontract where id_staff=pid_staff - and ((%%NEWSCHEMA%%.staffworkplan.daydate between startdate and enddate) or - (startdate <= %%NEWSCHEMA%%.staffworkplan.daydate and enddate is null))) - where id_staff=pid_staff and id_reportperiod=pid_period; */ return true; end; $$; -CREATE FUNCTION %%NEWSCHEMA%%.zzold_onchange_reportperiod(pid_period text) RETURNS boolean +CREATE FUNCTION %%NEWSCHEMA%%.workplan_replaceday(pid_copy text, pid_paste text) RETURNS boolean LANGUAGE plpgsql AS $$ declare - prdstart date; - prdend date; - strec record; + rday record; begin - select startdate,enddate into prdstart,prdend from %%NEWSCHEMA%%.reportperiod where id=pid_period; - for strec in select id_staff,startdate,enddate from %%NEWSCHEMA%%.staffcontract where startdate <= prdend and (enddate is null or enddate >= prdstart) group by id_staff - loop - raise notice 'Start Update period % staffworkplan for % from % to %',pid_period,strec.id_staff,strec.startdate,strec.enddate; - perform %%NEWSCHEMA%%.update_staffworkplan(pid_period,strec.id_staff); - end loop; + select * into rday from %%NEWSCHEMA%%.workplandays where id=pid_copy; + update %%NEWSCHEMA%%.workplandays set start1=rday.start1,end1=rday.end1,start2=rday.start2,end2=rday.end2, pause=rday.pause where id=pid_paste; return true; end; $$; -CREATE FUNCTION %%NEWSCHEMA%%.zzold_set_staffperiod(pid_period text) RETURNS boolean - LANGUAGE plpgsql - AS $$ - declare - periodstart date; - periodend date; - staffrec record; - staffreportid int4; - BEGIN - select startdate,enddate into periodstart,periodend from %%NEWSCHEMA%%.reportperiod where id= pid_period; - for staffrec in select id_staff from %%NEWSCHEMA%%.staffcontract where (enddate >= periodstart or (enddate is null and startdate <= periodend)) group by id_staff - loop - insert into %%NEWSCHEMA%%.staffreportperiod (id_reportperiod,id_staff) values (pid_period,staffrec.id_staff) - on conflict on constraint uniq_staffreportperiod_cal do nothing returning id into staffreportid; - raise notice 'staffreport ID: %',staffreportid; - perform %%NEWSCHEMA%%.set_staffperioddays(pid_period,staffrec.id_staff); - perform %%NEWSCHEMA%%.set_staffperiodweeks(pid_period,staffrec.id_staff); - end loop; - return true; - END; -$$; - CREATE TABLE %%NEWSCHEMA%%.reportperiod ( periodname text, startdate date, enddate date, id_parentreportperiod text, - id text DEFAULT public.getuuid() NOT NULL + id text DEFAULT public.getuuid() NOT NULL, + modified timestamp without time zone DEFAULT now(), + created timestamp without time zone DEFAULT now() +); + +CREATE TABLE %%NEWSCHEMA%%.reports ( + id text DEFAULT public.getuuid() NOT NULL, + report text, + pdftop numeric, + pdfbottom numeric, + pdfleft numeric, + pdfright numeric, + pdfunit text, + pdfsize text, + pdforientation text, + pdfencoding text, + footer text, + header text, + content text, + prefix text, + sqlfilename text, + actioncase text, + templatetype text, + pdfform boolean ); CREATE TABLE %%NEWSCHEMA%%.staff ( @@ -512,19 +763,23 @@ CREATE TABLE %%NEWSCHEMA%%.staff ( country text, address text, id_staffgroup text, - id text DEFAULT public.getuuid() NOT NULL + id text DEFAULT public.getuuid() NOT NULL, + isdeleted boolean, + modified timestamp without time zone DEFAULT now(), + created timestamp without time zone DEFAULT now() ); CREATE TABLE %%NEWSCHEMA%%.staffcontract ( id_staff text, startdate date, - id_staffgroup text, - weekdays integer, enddate date, - id_workplan text, + id text DEFAULT public.getuuid() NOT NULL, + modified timestamp without time zone DEFAULT now(), + created timestamp without time zone DEFAULT now(), + weekdays integer, weekhours interval, defaultfreedays json, - id text DEFAULT public.getuuid() NOT NULL + id_contractworkplan text ); CREATE TABLE %%NEWSCHEMA%%.staffgroups ( @@ -532,7 +787,9 @@ CREATE TABLE %%NEWSCHEMA%%.staffgroups ( groupcolor text, editoruser_ids json, isdefault boolean, - id text DEFAULT public.getuuid() NOT NULL + id text DEFAULT public.getuuid() NOT NULL, + modified timestamp without time zone DEFAULT now(), + created timestamp without time zone DEFAULT now() ); CREATE TABLE %%NEWSCHEMA%%.staffreportperiod ( @@ -546,7 +803,9 @@ CREATE TABLE %%NEWSCHEMA%%.staffreportperiod ( hoursdiff interval, payedhours interval, diffhourspayed interval, - id text DEFAULT public.getuuid() NOT NULL + id text DEFAULT public.getuuid() NOT NULL, + modified timestamp without time zone DEFAULT now(), + created timestamp without time zone DEFAULT now() ); CREATE TABLE %%NEWSCHEMA%%.staffreportperioddays ( @@ -570,7 +829,9 @@ CREATE TABLE %%NEWSCHEMA%%.staffreportperioddays ( id_recuperationtype text, interruptionhours time without time zone, wdcontracthours time without time zone, - id text DEFAULT public.getuuid() NOT NULL + id text DEFAULT public.getuuid() NOT NULL, + modified timestamp without time zone DEFAULT now(), + created timestamp without time zone DEFAULT now() ); CREATE TABLE %%NEWSCHEMA%%.staffreportperiodweeks ( @@ -590,7 +851,9 @@ CREATE TABLE %%NEWSCHEMA%%.staffreportperiodweeks ( caldays integer, contractdays integer, workdays integer, - id text DEFAULT public.getuuid() NOT NULL + id text DEFAULT public.getuuid() NOT NULL, + modified timestamp without time zone DEFAULT now(), + created timestamp without time zone DEFAULT now() ); CREATE TABLE %%NEWSCHEMA%%.staffvacancy ( @@ -598,13 +861,17 @@ CREATE TABLE %%NEWSCHEMA%%.staffvacancy ( daydate date, id_vacancytype text, vacancyhours time without time zone, - id text DEFAULT public.getuuid() NOT NULL + id text DEFAULT public.getuuid() NOT NULL, + modified timestamp without time zone DEFAULT now(), + created timestamp without time zone DEFAULT now() ); CREATE TABLE %%NEWSCHEMA%%.vacancydays ( daydate date, vacancyname text, - id text DEFAULT public.getuuid() NOT NULL + id text DEFAULT public.getuuid() NOT NULL, + modified timestamp without time zone DEFAULT now(), + created timestamp without time zone DEFAULT now() ); CREATE TABLE %%NEWSCHEMA%%.vacancytypes ( @@ -612,7 +879,9 @@ CREATE TABLE %%NEWSCHEMA%%.vacancytypes ( isworktime boolean, isfreetime boolean, color text, - id text DEFAULT public.getuuid() NOT NULL + id text DEFAULT public.getuuid() NOT NULL, + modified timestamp without time zone DEFAULT now(), + created timestamp without time zone DEFAULT now() ); CREATE VIEW %%NEWSCHEMA%%.vw_reportperioddata AS @@ -645,47 +914,45 @@ CREATE VIEW %%NEWSCHEMA%%.vw_rplbygrpname AS ORDER BY sgr.groupname, rp.startdate, rp.enddate; CREATE VIEW %%NEWSCHEMA%%.vw_staffcontractdata AS - SELECT staffcontract.id, - staffcontract.id_staff, - staffcontract.startdate, - to_char(staffcontract.weekhours, 'HH24:MI'::text) AS weekhours, - staffcontract.weekdays, - staffcontract.id_staffgroup, - staffcontract.enddate, - staffcontract.id AS id_staffcontract, - staffcontract.id_workplan, - staffcontract.defaultfreedays - FROM %%NEWSCHEMA%%.staffcontract; + SELECT sc.id, + sc.id_staff, + sc.startdate, + sc.enddate, + sc.id AS id_staffcontract, + sc.weekdays, + sc.weekhours, + sc.id_contractworkplan, + sc.defaultfreedays + FROM (%%NEWSCHEMA%%.staffcontract sc + JOIN %%NEWSCHEMA%%.staff st ON ((st.id = sc.id_staff))) + WHERE (st.isdeleted IS NULL); CREATE TABLE %%NEWSCHEMA%%.workplans ( workplan text, weekhours interval, weekdays integer, - weekdayslist json, - id text DEFAULT public.getuuid() NOT NULL + freeweekdayslist json, + id text DEFAULT public.getuuid() NOT NULL, + modified timestamp without time zone DEFAULT now(), + created timestamp without time zone DEFAULT now(), + isdefault boolean ); CREATE VIEW %%NEWSCHEMA%%.vw_staffcontractlist AS SELECT sc.id, sc.id_staff, sc.startdate, - to_char(sc.weekhours, 'HH24:MI'::text) AS weekhours, - sc.weekdays, - sc.id_staffgroup, - sg.groupname, - sg.groupcolor, sc.enddate, - sc.id_workplan, - ddf.defaultfreedays, + sc.weekdays, + sc.weekhours, + sc.id_contractworkplan, + ( SELECT string_agg(ww.wday, ','::text) AS string_agg + FROM ( SELECT public.day_name(json_array_elements_text(sc.defaultfreedays)) AS wday) ww) AS defaultfreedays, wp.workplan - FROM (((%%NEWSCHEMA%%.staffcontract sc - LEFT JOIN %%NEWSCHEMA%%.staffgroups sg ON ((sc.id_staffgroup = sg.id))) - LEFT JOIN %%NEWSCHEMA%%.workplans wp ON ((sc.id_workplan = wp.id))) - LEFT JOIN ( SELECT dfd.id, - replace(replace(replace(replace(replace(replace(replace(dfd.defaultfreedays, '7'::text, 'di'::text), '6'::text, 'sa'::text), '5'::text, 've'::text), '4'::text, 'je'::text), '3'::text, 'me'::text), '2'::text, 'ma'::text), '1'::text, 'lu'::text) AS defaultfreedays - FROM ( SELECT staffcontract.id, - json_array_elements_text(staffcontract.defaultfreedays) AS defaultfreedays - FROM %%NEWSCHEMA%%.staffcontract) dfd) ddf ON ((sc.id = ddf.id))) + FROM ((%%NEWSCHEMA%%.staffcontract sc + JOIN %%NEWSCHEMA%%.staff st ON ((st.id = sc.id_staff))) + LEFT JOIN %%NEWSCHEMA%%.workplans wp ON ((sc.id_contractworkplan = wp.id))) + WHERE (st.isdeleted IS NULL) ORDER BY sc.startdate DESC, sc.enddate DESC; CREATE VIEW %%NEWSCHEMA%%.vw_staffdata AS @@ -703,20 +970,23 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffdata AS staff.job, staff.birthdate, staff.id_staffgroup - FROM %%NEWSCHEMA%%.staff; + FROM %%NEWSCHEMA%%.staff + WHERE (staff.isdeleted IS NULL); CREATE VIEW %%NEWSCHEMA%%.vw_staffgroupsdata AS - SELECT staffgroups.id, - staffgroups.groupname, - staffgroups.groupcolor, - staffgroups.isdefault - FROM %%NEWSCHEMA%%.staffgroups; +SELECT + NULL::text AS id, + NULL::text AS groupname, + NULL::text AS groupcolor, + NULL::boolean AS isdefault, + NULL::bigint AS staffmembers; CREATE VIEW %%NEWSCHEMA%%.vw_staffgroupslist AS - SELECT staffgroups.id, - staffgroups.groupname, - staffgroups.isdefault - FROM %%NEWSCHEMA%%.staffgroups; +SELECT + NULL::text AS id, + NULL::text AS groupname, + NULL::boolean AS isdefault, + NULL::bigint AS staffmembers; CREATE VIEW %%NEWSCHEMA%%.vw_stafflist AS SELECT st.id, @@ -734,6 +1004,7 @@ CREATE VIEW %%NEWSCHEMA%%.vw_stafflist AS min(staffcontract.startdate) AS entrydate FROM %%NEWSCHEMA%%.staffcontract GROUP BY staffcontract.id_staff) stentry ON ((st.id = stentry.id_staff))) + WHERE (st.isdeleted IS NULL) ORDER BY st.surname, st.prename; CREATE VIEW %%NEWSCHEMA%%.vw_staffreportperioddays AS @@ -788,9 +1059,15 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffreportperioddays AS WHEN (pw.diffhours < '00:00:00'::interval) THEN ('-'::text || replace(to_char(pw.diffhours, 'HH24:MI'::text), '-'::text, ''::text)) ELSE to_char(pw.diffhours, 'HH24:MI'::text) END AS week_diffhours, - ((pw.calyear || '-'::text) || lpad((pw.calweek)::text, 2, '0'::text)) AS weekident - FROM (%%NEWSCHEMA%%.staffreportperiodweeks pw + ((pw.calyear || '-'::text) || lpad((pw.calweek)::text, 2, '0'::text)) AS weekident, + ((pw.calyear || '-'::text) || lpad((pw.calweek)::text, 2, '0'::text)) AS dspweekshort, + rp.startdate AS periodstart, + rp.enddate AS periodend + FROM (((%%NEWSCHEMA%%.staffreportperiodweeks pw LEFT JOIN %%NEWSCHEMA%%.staffreportperioddays pd ON (((pw.weekstart = date_trunc('week'::text, (pd.daydate)::timestamp with time zone)) AND (pw.id_staff = pd.id_staff) AND (pw.id_reportperiod = pd.id_reportperiod)))) + JOIN %%NEWSCHEMA%%.reportperiod rp ON ((pw.id_reportperiod = rp.id))) + JOIN %%NEWSCHEMA%%.staff st ON ((pd.id_staff = st.id))) + WHERE (st.isdeleted IS NULL) ORDER BY pd.id_reportperiod, pd.id_staff, pd.daydate; CREATE VIEW %%NEWSCHEMA%%.vw_staffreportperiodlist AS @@ -818,6 +1095,7 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffreportperiodlist AS LEFT JOIN %%NEWSCHEMA%%.staff st ON ((srp.id_staff = st.id))) LEFT JOIN %%NEWSCHEMA%%.reportperiod rp ON ((srp.id_reportperiod = rp.id))) LEFT JOIN %%NEWSCHEMA%%.staffgroups sgr ON ((st.id_staffgroup = sgr.id))) + WHERE (st.isdeleted IS NULL) ORDER BY st.surname, st.prename, srp.id_staff, rp.startdate, rp.enddate; CREATE VIEW %%NEWSCHEMA%%.vw_vacancylist AS @@ -835,7 +1113,9 @@ CREATE TABLE %%NEWSCHEMA%%.workplandays ( end2 time without time zone, pause time without time zone, id text DEFAULT public.getuuid() NOT NULL, - weeknum integer + weeknum integer, + modified timestamp without time zone DEFAULT now(), + created timestamp without time zone DEFAULT now() ); CREATE VIEW %%NEWSCHEMA%%.vw_workplandaysdata AS @@ -863,12 +1143,18 @@ SELECT NULL::text AS pause, NULL::text AS dayhours, NULL::bigint AS staffcount, - NULL::integer AS weeknum; + NULL::integer AS weeknum, + NULL::text AS interruption; CREATE VIEW %%NEWSCHEMA%%.vw_workplanlist AS - SELECT workplans.id, - workplans.workplan - FROM %%NEWSCHEMA%%.workplans; + SELECT wp.id, + wp.workplan, + ((((((wp.workplan || ' / '::text) || "substring"((wp.weekhours)::text, 1, 5)) || 'h / '::text) || wp.weekdays) || 'j / libre: '::text) || ( SELECT string_agg(ww.wday, ','::text) AS string_agg + FROM ( SELECT public.day_name(json_array_elements_text(wp.freeweekdayslist)) AS wday) ww)) AS dspworkplandetail, + wp.isdefault, + NULL::bigint AS staffcount + FROM %%NEWSCHEMA%%.workplans wp + ORDER BY wp.isdefault, wp.workplan; CREATE TABLE %%NEWSCHEMA%%.worktimes ( startdate date, @@ -879,7 +1165,9 @@ CREATE TABLE %%NEWSCHEMA%%.worktimes ( maxweekhours interval, maxinterruptionhours interval, isdefault boolean, - id text DEFAULT public.getuuid() NOT NULL + id text DEFAULT public.getuuid() NOT NULL, + modified timestamp without time zone DEFAULT now(), + created timestamp without time zone DEFAULT now() ); CREATE VIEW %%NEWSCHEMA%%.vw_worktimeslist AS @@ -898,6 +1186,9 @@ CREATE VIEW %%NEWSCHEMA%%.vw_worktimeslist AS ALTER TABLE ONLY %%NEWSCHEMA%%.reportperiod ADD CONSTRAINT reportperiod_pkey PRIMARY KEY (id); +ALTER TABLE ONLY %%NEWSCHEMA%%.reports + ADD CONSTRAINT reports_pkey PRIMARY KEY (id); + ALTER TABLE ONLY %%NEWSCHEMA%%.staff ADD CONSTRAINT staff_pkey PRIMARY KEY (id); @@ -946,8 +1237,31 @@ ALTER TABLE ONLY %%NEWSCHEMA%%.workplans ALTER TABLE ONLY %%NEWSCHEMA%%.worktimes ADD CONSTRAINT worktimes_pkey PRIMARY KEY (id); +CREATE OR REPLACE VIEW %%NEWSCHEMA%%.vw_staffgroupsdata AS + SELECT sg.id, + sg.groupname, + sg.groupcolor, + sg.isdefault, + count(st.id) AS staffmembers + FROM (%%NEWSCHEMA%%.staffgroups sg + LEFT JOIN %%NEWSCHEMA%%.staff st ON ((st.id_staffgroup = sg.id))) + WHERE (st.isdeleted IS NULL) + GROUP BY sg.id + ORDER BY sg.groupname; + +CREATE OR REPLACE VIEW %%NEWSCHEMA%%.vw_staffgroupslist AS + SELECT sg.id, + sg.groupname, + sg.isdefault, + count(st.id) AS staffmembers + FROM (%%NEWSCHEMA%%.staffgroups sg + LEFT JOIN %%NEWSCHEMA%%.staff st ON ((st.id_staffgroup = sg.id))) + WHERE (st.isdeleted IS NULL) + GROUP BY sg.id + ORDER BY sg.groupname; + CREATE OR REPLACE VIEW %%NEWSCHEMA%%.vw_workplandayslist AS - SELECT (((wp.workplan || ' - Salarié(s): '::text) || count(DISTINCT sc.id_staff)) || ''::text) AS workplan, + SELECT wp.workplan, to_char(wp.weekhours, 'HH24:MI'::text) AS weekhours, wpd.id, wpd.id_workplan, @@ -957,20 +1271,62 @@ CREATE OR REPLACE VIEW %%NEWSCHEMA%%.vw_workplandayslist AS to_char((wpd.start2)::interval, 'HH24:MI'::text) AS start2, to_char((wpd.end2)::interval, 'HH24:MI'::text) AS end2, to_char((wpd.pause)::interval, 'HH24:MI'::text) AS pause, - to_char((((wpd.end1 - wpd.start1) + COALESCE((wpd.end2 - wpd.start2), '00:00:00'::interval)) - COALESCE((wpd.pause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS dayhours, - count(DISTINCT sc.id_staff) AS staffcount, - wpd.weeknum - FROM ((%%NEWSCHEMA%%.workplandays wpd + to_char(((( + CASE + WHEN (wpd.end1 < wpd.start1) THEN ((wpd.end1)::interval + '24:00:00'::interval) + ELSE (wpd.end1)::interval + END - (wpd.start1)::interval) + COALESCE(( + CASE + WHEN (wpd.end2 < wpd.start2) THEN ((wpd.end2)::interval + '24:00:00'::interval) + ELSE (wpd.end2)::interval + END - (wpd.start2)::interval), '00:00:00'::interval)) - COALESCE((wpd.pause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS dayhours, + NULL::bigint AS staffcount, + wpd.weeknum, + CASE + WHEN ((wpd.start2 IS NOT NULL) AND (wpd.end1 IS NOT NULL)) THEN to_char(((wpd.start2)::interval - (wpd.end1)::interval), 'HH24:MI'::text) + ELSE NULL::text + END AS interruption + FROM (%%NEWSCHEMA%%.workplandays wpd LEFT JOIN %%NEWSCHEMA%%.workplans wp ON ((wpd.id_workplan = wp.id))) - LEFT JOIN %%NEWSCHEMA%%.staffcontract sc ON ((sc.id_workplan = wp.id))) GROUP BY wpd.id, wp.id ORDER BY wp.workplan, wpd.weekday; -ALTER TABLE ONLY %%NEWSCHEMA%%.staffcontract - ADD CONSTRAINT staffcontract_fk FOREIGN KEY (id_staff) REFERENCES %%NEWSCHEMA%%.staff(id); +CREATE TRIGGER trg_after_insert_staffcontract AFTER INSERT ON %%NEWSCHEMA%%.staffcontract FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_after_upd_staffcontract(); + +CREATE TRIGGER trg_after_update_staffcontract AFTER UPDATE OF id_contractworkplan, startdate, enddate ON %%NEWSCHEMA%%.staffcontract FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_after_upd_staffcontract(); + +CREATE TRIGGER trg_dks_after_ins_workplandays AFTER INSERT ON %%NEWSCHEMA%%.workplandays FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_after_upd_worplanday(); + +CREATE TRIGGER trg_dks_after_upd_workplandays AFTER UPDATE OF start1, end1, start2, end2, pause ON %%NEWSCHEMA%%.workplandays FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_after_upd_worplanday(); + +CREATE TRIGGER trg_%%NEWSCHEMA%%_before_upd_reportperiod BEFORE UPDATE ON %%NEWSCHEMA%%.reportperiod FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_before_upd_schematable(); + +CREATE TRIGGER trg_%%NEWSCHEMA%%_before_upd_staff BEFORE UPDATE ON %%NEWSCHEMA%%.staff FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_before_upd_schematable(); + +CREATE TRIGGER trg_%%NEWSCHEMA%%_before_upd_staffcontract BEFORE UPDATE ON %%NEWSCHEMA%%.staffcontract FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_before_upd_schematable(); + +CREATE TRIGGER trg_%%NEWSCHEMA%%_before_upd_staffgroups BEFORE UPDATE ON %%NEWSCHEMA%%.staffgroups FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_before_upd_schematable(); + +CREATE TRIGGER trg_%%NEWSCHEMA%%_before_upd_staffreportperiod BEFORE UPDATE ON %%NEWSCHEMA%%.staffreportperiod FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_before_upd_schematable(); + +CREATE TRIGGER trg_%%NEWSCHEMA%%_before_upd_staffreportperioddays BEFORE UPDATE ON %%NEWSCHEMA%%.staffreportperioddays FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_before_upd_schematable(); + +CREATE TRIGGER trg_%%NEWSCHEMA%%_before_upd_staffreportperiodweeks BEFORE UPDATE ON %%NEWSCHEMA%%.staffreportperiodweeks FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_before_upd_schematable(); + +CREATE TRIGGER trg_%%NEWSCHEMA%%_before_upd_staffvacancy BEFORE UPDATE ON %%NEWSCHEMA%%.staffvacancy FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_before_upd_schematable(); + +CREATE TRIGGER trg_%%NEWSCHEMA%%_before_upd_vacancydays BEFORE UPDATE ON %%NEWSCHEMA%%.vacancydays FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_before_upd_schematable(); + +CREATE TRIGGER trg_%%NEWSCHEMA%%_before_upd_vacancytypes BEFORE UPDATE ON %%NEWSCHEMA%%.vacancytypes FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_before_upd_schematable(); + +CREATE TRIGGER trg_%%NEWSCHEMA%%_before_upd_workplandays BEFORE UPDATE ON %%NEWSCHEMA%%.workplandays FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_before_upd_schematable(); + +CREATE TRIGGER trg_%%NEWSCHEMA%%_before_upd_workplans BEFORE UPDATE ON %%NEWSCHEMA%%.workplans FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_before_upd_schematable(); + +CREATE TRIGGER trg_%%NEWSCHEMA%%_before_upd_worktimes BEFORE UPDATE ON %%NEWSCHEMA%%.worktimes FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_before_upd_schematable(); ALTER TABLE ONLY %%NEWSCHEMA%%.staffcontract - ADD CONSTRAINT staffcontract_fk_1 FOREIGN KEY (id_staffgroup) REFERENCES %%NEWSCHEMA%%.staffgroups(id); + ADD CONSTRAINT staffcontract_fk FOREIGN KEY (id_staff) REFERENCES %%NEWSCHEMA%%.staff(id); ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperiod ADD CONSTRAINT staffreportperiod_fk FOREIGN KEY (id_staff) REFERENCES %%NEWSCHEMA%%.staff(id); diff --git a/dev/db/potlu_db.pg.data.sql b/dev/db/potlu_db.pg.data.sql index d774cb5a..28ade2d6 100644 --- a/dev/db/potlu_db.pg.data.sql +++ b/dev/db/potlu_db.pg.data.sql @@ -118,6 +118,7 @@ INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('608e9219-b30f-43f5-79c5-c17d921297cc', '2020-01-01', '2019-07-31', '875babd8-ac9c-7bb7-3691-d888932fcb21', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('cb44dc10-da71-0483-6903-e53c7903bea8', '2014-03-01', NULL, '28303690-8f8e-14a5-94d6-b0a97c2be8e7', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('ba6c36fb-1812-53a1-4b77-171a92ef1c2c', '2016-05-19', NULL, '9b9cf076-aaff-7987-18c4-03f439a509de', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-01-06', NULL, 'f35400b0-6d27-ad19-630b-7b934d304643', '2020-08-09 16:51:22.105001', '2020-07-23 12:27:10.908142', 6, '40:00:00', '["1"]', 'c2e086cf-32d7-7f1c-cff1-09c13172ade3'); INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('fd1178bd-5578-bc8c-68e6-0caabb7a17fa', '2020-01-01', '2019-05-31', '966517c4-a5ae-6293-1f5c-8523458c847a', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('f2084bf3-3ecc-9b24-c3d7-78d365c45f8e', '2020-01-01', NULL, '045b9fd8-f9a6-ca7c-dd83-911badc20e35', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('9e408ee6-827f-94f1-2f20-ec4a9e36f5df', '2020-01-01', NULL, 'b872bde4-7960-6e3f-2501-c68b409d7004', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); @@ -128,14 +129,13 @@ INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('c126d60c-e088-8b92-ac83-47dfa231e926', '2020-01-01', NULL, '282adea5-8744-691f-7c71-22836577951d', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('05222b12-533d-97fa-6252-2ba03b87d057', '2020-01-01', '2020-03-31', '48f08f4f-815e-7330-2e90-ca150727ac3f', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-01-01', NULL, '95ed73eb-dfbd-37b8-6131-64f259c76b3d', '2020-08-04 08:47:14.423046', '2020-07-23 12:27:10.908142', 6, '40:00:00', '["7"]', '267f424d-9716-cf98-3bd0-c6715257c3a0'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-01-06', NULL, 'f35400b0-6d27-ad19-630b-7b934d304643', '2020-08-04 17:40:43.48673', '2020-07-23 12:27:10.908142', 6, '40:00:00', '["1"]', 'c2e086cf-32d7-7f1c-cff1-09c13172ade3'); INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-01-01', NULL, '7c857a6c-8417-dc5b-7218-24e6b696d076', '2020-08-04 08:46:46.705638', '2020-07-23 12:27:10.908142', 6, '40:00:00', '["2"]', '3ff4557c-b9c6-a2ff-eec3-89ad034b6556'); INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2013-05-01', NULL, 'dfe192ed-3041-920a-41a5-cb7cef91a92f', '2020-08-04 08:48:02.295624', '2020-07-23 12:27:10.908142', 6, '40:00:00', '["1"]', 'f8666bc6-abed-a3ab-35d5-b6df495a0eea'); INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('b82c5c49-c814-c68f-03ec-17ee24e765bb', '2020-01-01', NULL, '797aa17d-d5d1-e509-9973-d48406a3ca46', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('b1843e04-9761-8838-5007-15262f59af56', '2020-01-01', '2020-05-31', '079ff258-bbc9-5606-dd76-34290e8a784b', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('016c1cbd-5197-572a-832b-e44f1c9de181', '2020-01-01', '2022-08-31', '1c4b07c0-28b4-9c68-89b0-4bc71bc03530', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2018-02-12', NULL, 'bb915d87-2a78-76de-1490-019cb411c0b3', '2020-08-04 09:03:04.740487', '2020-07-23 12:27:10.908142', 6, '40:00:00', '["4"]', 'fbd5ac24-becf-c358-45c4-65518415ebb8'); INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('af9f604b-fcf9-0161-da20-1e3d7b1e4111', '2020-01-01', NULL, '8cfcfb06-1669-1f04-529c-f81a0bab1004', '2020-07-31 09:12:15.54278', '2020-07-23 12:27:10.908142', 6, '40:00:00', NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2018-02-12', NULL, 'bb915d87-2a78-76de-1490-019cb411c0b3', '2020-08-09 17:30:46.037748', '2020-07-23 12:27:10.908142', 6, '40:00:00', '["4"]', 'fbd5ac24-becf-c358-45c4-65518415ebb8'); INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('50ff28ff-8b39-52b5-03e7-fecab8706021', '2020-01-01', NULL, 'df69d20b-e89d-f53d-c8ce-4487ea2d6388', '2020-07-31 09:12:15.55329', '2020-07-23 12:27:10.908142', 6, '40:00:00', NULL, NULL); INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('24de156c-6869-d29b-387a-f0a477c33b96', '2020-01-01', '2019-03-31', 'afccbaca-f939-bc55-10b4-21773bf2b4d4', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('c587005b-cabe-dce9-1e35-d37603b3bf8f', '2015-11-15', NULL, 'c7815a50-90f1-c703-20cb-b3b75c353268', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); @@ -165,20 +165,17 @@ INSERT INTO portanova.staffgroups (groupname, groupcolor, editoruser_ids, isdefa -- Data for Name: staffreportperiod; Type: TABLE DATA; Schema: portanova; Owner: - -- -INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('2583c916-2d07-f42d-9c85-18ee42959317', 'cc63023b-4892-c29c-787d-088392d58b88', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, '66419e71-b74b-ae41-ee31-2f5f1c3a38d0', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('2583c916-2d07-f42d-9c85-18ee42959317', '1898317d-07d3-c9b8-c29c-a5aa60c28c27', '320:00:00', '00:00:00', '320:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, '0553af62-8cf0-fa5f-6597-7f5777f79047', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('e3e85c3e-1afa-768e-7938-f0c9996c618a', '1898317d-07d3-c9b8-c29c-a5aa60c28c27', '320:00:00', '00:00:00', '320:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, '45fdb65e-68fb-d55e-e2ab-952a65a4735c', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('9b93bd90-2325-fe28-4bff-852203fc99ce', '1898317d-07d3-c9b8-c29c-a5aa60c28c27', '320:00:00', '00:00:00', '320:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, 'db572221-e032-6cff-d3fc-0d78d5e7572a', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); -INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('9b93bd90-2325-fe28-4bff-852203fc99ce', 'cc63023b-4892-c29c-787d-088392d58b88', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, '3c970df3-cd24-2ab9-3531-c2c8fd39b56e', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('e3e85c3e-1afa-768e-7938-f0c9996c618a', 'cc63023b-4892-c29c-787d-088392d58b88', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, '408079c3-c057-3647-7f80-c46d58d71634', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('2583c916-2d07-f42d-9c85-18ee42959317', 'a77618bc-86f2-800f-b26d-6d641147ab7c', '320:00:00', '00:00:00', '320:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, 'a214cefc-def7-b373-cfda-eadace856f6c', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); -INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('9b93bd90-2325-fe28-4bff-852203fc99ce', 'e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '320:00:00', '00:00:00', '320:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, '054e1f88-f4a4-4ab2-7e9e-e8ab01517a92', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('e3e85c3e-1afa-768e-7938-f0c9996c618a', 'e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '320:00:00', '00:00:00', '320:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, '346964ca-29b7-a452-d8b3-32c7db60c9be', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('9b93bd90-2325-fe28-4bff-852203fc99ce', 'a77618bc-86f2-800f-b26d-6d641147ab7c', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, '93afc058-a92b-b412-be4b-516596e263e8', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('9b93bd90-2325-fe28-4bff-852203fc99ce', 'e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '320:00:00', '00:00:00', '320:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, '054e1f88-f4a4-4ab2-7e9e-e8ab01517a92', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('2583c916-2d07-f42d-9c85-18ee42959317', '3c463353-f763-c72c-0007-e6b4926befee', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, '81e7bb68-ebe0-4903-56db-0e84c9d7b369', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('9b93bd90-2325-fe28-4bff-852203fc99ce', '3c463353-f763-c72c-0007-e6b4926befee', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, '835119a5-dad5-5cbd-cc29-26ab3b5c7af1', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('e3e85c3e-1afa-768e-7938-f0c9996c618a', '3c463353-f763-c72c-0007-e6b4926befee', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, 'a1d4b04b-719b-e336-af1d-3c53e4d27042', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('2583c916-2d07-f42d-9c85-18ee42959317', '71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '320:00:00', '00:00:00', '320:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, '10c5760c-3c1e-2d81-7253-06c3d326a3a8', '2020-08-05 08:46:48.014325', '2020-07-30 14:15:17.796308'); +INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('e3e85c3e-1afa-768e-7938-f0c9996c618a', 'e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '320:00:00', '00:00:00', '320:00:00', '00:00:00', '00:00:00', NULL, '01:00:00', NULL, '346964ca-29b7-a452-d8b3-32c7db60c9be', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('e3e85c3e-1afa-768e-7938-f0c9996c618a', 'a77618bc-86f2-800f-b26d-6d641147ab7c', '320:00:00', '00:00:00', '320:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, '4c757d37-1f8a-a82c-2be8-62c5db6c6544', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('2583c916-2d07-f42d-9c85-18ee42959317', '63204f0b-afae-1380-b655-a6247b129af0', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, '5876d7d6-0db7-1cb2-2458-e6be0e80958c', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('9b93bd90-2325-fe28-4bff-852203fc99ce', '63204f0b-afae-1380-b655-a6247b129af0', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, 'bd698833-782d-85eb-172e-5bab32b2a02a', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); @@ -186,7 +183,10 @@ INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, c INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('2583c916-2d07-f42d-9c85-18ee42959317', '8aa08f14-7976-baca-c214-b1131263ea5d', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, '8d343a7c-5cf9-6bfc-9f85-f42c21b2f9d9', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('9b93bd90-2325-fe28-4bff-852203fc99ce', '8aa08f14-7976-baca-c214-b1131263ea5d', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, 'a741ac9f-d7e2-7221-e407-d3fa781c5c0e', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('e3e85c3e-1afa-768e-7938-f0c9996c618a', '8aa08f14-7976-baca-c214-b1131263ea5d', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, 'a56aa1ae-4706-d996-adb8-617f18184a28', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); -INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('2583c916-2d07-f42d-9c85-18ee42959317', 'e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '320:00:00', '00:00:00', '320:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, '563f17f1-a2e4-c355-1ab2-74bec731c3d7', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('9b93bd90-2325-fe28-4bff-852203fc99ce', 'cc63023b-4892-c29c-787d-088392d58b88', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, '3c970df3-cd24-2ab9-3531-c2c8fd39b56e', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('e3e85c3e-1afa-768e-7938-f0c9996c618a', 'cc63023b-4892-c29c-787d-088392d58b88', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, '408079c3-c057-3647-7f80-c46d58d71634', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('2583c916-2d07-f42d-9c85-18ee42959317', 'e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '316:00:00', '320:00:00', '308:00:00', '00:00:00', '08:00:00', '-12:00:00', NULL, NULL, '563f17f1-a2e4-c355-1ab2-74bec731c3d7', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('2583c916-2d07-f42d-9c85-18ee42959317', 'cc63023b-4892-c29c-787d-088392d58b88', '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', '01:00:00', NULL, '66419e71-b74b-ae41-ee31-2f5f1c3a38d0', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); -- @@ -195,19 +195,53 @@ INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, c INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-18', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', '24b3ba74-5c9c-af51-2baa-ac79402cc147', '2020-08-05 08:46:22.644638', '2020-07-30 13:43:01.660018'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '9a7e2e47-4e38-b8dd-b3ab-ac82bba78404', '2020-08-05 08:46:22.644638', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-04', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '6044e5ef-0c26-dc0b-e5ec-656cee397530', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-06', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '294eefbe-1fbf-11b0-18ce-64daa474c908', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '694a7fe1-f3a9-cf7e-6a07-c07b698d7e66', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-10', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', '00:00:00', NULL, NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '00:00:00', '7fbaf43d-e2f0-b7c2-e098-1a60f9f78c6c', '2020-07-31 14:39:46.223624', '2020-07-30 13:43:01.660018'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', 'ca2c3947-3eb6-cbee-22ed-78df58f0b370', '2020-07-31 14:39:46.223624', '2020-07-30 13:43:01.660018'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-12', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', '00:00:00', NULL, NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '00:00:00', '6fcfb642-9684-36af-c898-1688da15643b', '2020-07-31 14:39:46.223624', '2020-07-30 13:43:01.660018'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-13', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', '00:00:00', NULL, NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '00:00:00', '1fa9c5b8-3de4-4a4c-33a2-6d1ae2091957', '2020-07-31 14:39:46.223624', '2020-07-30 13:43:01.660018'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-14', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', '00:00:00', NULL, NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '00:00:00', '8f25d2b0-34f9-2bcb-7a92-a6a9016196c8', '2020-07-31 14:39:46.223624', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'a84ae25b-43e0-567f-2dde-ebfdef96340a', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'd87c2c4b-d311-f599-a4bb-4670ed0e4498', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '68af56d5-7db1-b1a4-39a0-802eacc7c906', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '3a97f329-3f54-f74c-4d04-06f6d3f3c5e3', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '78cba873-f8fd-0fed-6d5f-f05b585372b2', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '8b02d7b2-c3e4-f18e-0254-daa7778e3694', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '904602ae-0d36-398e-60c2-db4c04238a68', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '00a9115b-959b-a4ca-aa9d-c419de85093e', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '1b67622e-1ecd-d4e6-384d-ec1f469a85e5', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '6f8182f0-379b-1c58-0595-cd8f850fd0b6', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'a920dc81-dd5a-af67-65d0-96167885e190', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '27d16e7d-99e4-92fc-4208-5b39e59e280b', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '4d0392de-3a3b-d1c3-b72f-63dccb88b3eb', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-31', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'beecf864-2602-8168-3910-2a2ef084d9a1', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '994a49d2-70dc-b6d9-515b-88dfc33b7031', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '6938d127-fb0c-ef59-652f-49bdcca34cf1', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '4dc11a5e-ec12-9a58-589e-24056f9485f2', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '266f1b53-edfe-1111-1189-400e9bf64e6e', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-12', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '00:00:00', '2f025e80-834e-579b-4ef5-a04e20ca9b3f', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '0182f7d5-2c82-e0b8-6770-03ff75ca082c', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '02dd3850-83b9-699f-5b4b-b9eed01555f8', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-14', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '8d37a1e1-020b-9d03-acfe-44c0c747422f', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-15', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', '04:00:00', NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:30:00', 'reposition', '00:00:00', '06:40:00', 'b910e083-9fa5-fcf2-71fa-62a40720ea3c', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-16', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '33ff9aa9-677b-0f6a-af18-b331c85f8657', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-29', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '81c0efe4-e630-d93f-d153-92641647b85b', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-30', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '0cc5175b-97ca-e0b5-87f0-a1fa693883b0', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-29', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', 'dd6dc113-3889-be09-b9c2-1cbc1eda18ed', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-06', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '00:00:00', 'f618f025-0c62-2e2a-6560-2ec7835f3b0c', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-18', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', '5d4f091d-66a8-c3b1-1b69-756c53451635', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-20', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', '26e64577-991e-5e68-31e2-9d01b0ba6afe', '2020-08-05 08:46:22.644638', '2020-07-30 13:43:01.660018'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-19', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', '3a7ce744-7a56-6c9a-4cdc-01310f84fef8', '2020-08-05 08:46:22.644638', '2020-07-30 13:43:01.660018'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-21', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', '7f3da7e3-855a-cff0-a068-f8c026447e09', '2020-08-05 08:46:22.644638', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-29', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '82a86d99-205e-0cff-7184-37d7740e57a2', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-28', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'eb811b61-8114-3007-d86b-abb0a010be54', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-30', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', 'ca0f188d-2fd2-dce4-18d5-9a825c0b0994', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-01', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'cd1ec279-8a92-d8af-e347-05f5a0764d9f', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-02', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '3cf38d19-b3c2-0e9c-89e8-09e72f1805f1', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-03', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '6e77eb11-4538-b191-fe07-b863519eb4b5', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-04', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'dd345189-3984-5bdc-08c1-e25b468be30d', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '0ded3220-9db7-6490-857e-9e31defcca3b', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-10-01', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', 'a9aaa078-914d-83b2-63a0-176b7eb745c5', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-26', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '00:00:00', '1af047d2-6ae7-711f-35c8-3512c048397d', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); @@ -220,6 +254,27 @@ INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, time INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-10-02', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', 'b93dba15-40c5-0493-4d85-a618b84addd9', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-16', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', '97dfdbff-f636-9c75-2927-d977bc5ef85f', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-13', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '00:00:00', 'b81dd0bb-cee1-2a90-1420-d1aef612f6db', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-05', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', 'b28ec6a6-1077-6750-6c50-e882b9604000', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-06', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '745cad31-18a9-2dda-46fe-be02e6d3c592', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-08', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'fc854114-0c0e-e08d-0adc-320d6d78321b', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-09', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '055b9820-8fb1-6753-2da7-db743f517227', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-10', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '6070df19-9a72-a066-0020-cd3def00ceb5', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-11', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'e37df37f-d03d-4e23-77f6-2c84a53400b6', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-12', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '4901de65-0682-05f1-4852-d67672baa086', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-13', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '1b71a776-0d31-4f3d-3c2a-605cc593fad7', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-19', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '041deca6-fbbc-b978-3029-13b0defc308e', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-20', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', 'f572a199-449a-3aa6-e67f-e3b3c9802a4c', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-22', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '748ef77b-7f9e-dc78-612a-553acba3d4bf', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-23', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '8b4984ab-dcc0-ce8d-eb43-91206551066e', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-24', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '23da2358-153f-7f44-6738-fb356652b859', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-25', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'c8e3f690-ecb1-12f6-922a-c2d6cca04916', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-26', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '4e7d93a8-46b4-1ad3-1699-7c7d646129fa', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-27', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '537027d5-e08c-801a-3030-29ce2023898c', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-01', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '9328bc91-ce7a-ddbc-a306-87fb99d1100e', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-02', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '7bf68994-ba3a-7ff7-e216-d6c10fc81766', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-03', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', 'aa5d538a-9a16-fac4-84ce-d047ef33c367', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-04', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', 'c335a092-dbea-a4d9-8bee-4401cc242e1b', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-24', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', 'dd2093a7-a680-51d1-d577-31be5ee75abb', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-03', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', '4b7610cc-81a4-6080-0b8e-defac51730e2', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-08-20', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', 'a4d0dacd-a70e-e407-fca3-4dd01d392cd7', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-29', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'ff4868b2-dfec-a669-2efa-22b54b04f26f', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); @@ -736,182 +791,172 @@ INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, time INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2021-01-22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '02433392-231a-6437-55a3-00208be86eb1', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2021-01-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'ac3dd5cd-cb1e-b76d-1af4-108ed46d8817', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2021-01-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '2610a142-1a7b-9e96-25fd-2a08220e5639', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'f0a6c021-7338-26c2-dd85-abb816d14af7', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '621069b7-487f-28d7-6f7f-dbfc8ded195d', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'd726d23d-e678-00a6-2ee0-a8826a50676a', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'a914420a-5625-7d87-b072-0d5b9452ca6a', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'd31116e5-7f7f-f71c-d5f4-c0e6fabd1145', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '41fbed8f-bb6f-e5bd-0de0-4d5543a630c9', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '5286fb98-d7cb-b0ee-adaf-ddabf5bcd9c8', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'a3ba6b33-3d97-b751-89a5-e7f0838e2303', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '4664ae45-fec3-cd50-c2d7-5b0151860c2c', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '9e555497-d77f-d51d-8172-34a85222a412', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '331e0359-d219-1d58-3ec4-b7ef4eb44e36', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'a426f7d1-6696-834c-7760-498dbdf344e0', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '9fc9c24f-81eb-cba0-b066-f4ad18b1ae97', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '5a40ab8c-6c83-fa16-5c9d-c029556fd496', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'eaf31ba7-f528-6b43-0d92-cdf78fb08863', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'ac612255-e004-7742-fe4f-f5cbc1987dee', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '2b06618a-5be7-7f69-d623-fc10ad140310', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-27', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '6885484b-ed08-303c-5b7e-b1872e496704', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '7b3a40d7-7b1d-3709-79b2-699bf586a0db', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-29', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '82c192b4-48c2-dac4-52fc-2f57c7bffeee', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '4a05e133-134a-37c8-8fe1-4692fd4252c7', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-31', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '8dde55e4-8f66-f561-24bb-06336598ea36', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'b200e39d-93f8-ce76-fa7d-9e0dce2a7a66', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'b8e2f479-fdd7-55e5-b335-dbdf3dd80d00', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-03', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'd781606c-1aac-baef-2445-2fa70b714b74', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-04', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'ce5127ee-6d48-d507-031d-4bb61fb71093', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'cdf8dfaf-1560-30ec-9400-530a8922f08d', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '113dfefd-da5b-8e0d-3d15-b3a190b27051', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '700b845e-4ce9-0065-3ee1-907a38d17368', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-08', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'dea90e44-7b32-4642-4615-89dec323f765', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'ae3e7492-6ba1-39d2-3e84-ae53358ae17b', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '32d07a78-e665-bcb3-d2f8-3cd13ef74f57', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '7f7670b4-6db9-6f1e-c90f-e086dfe23a3c', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '96d91e20-744b-16b3-c519-f04689e0fe06', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'db38d142-2bec-723b-1067-bdc2edc7074d', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '30d50f41-d4de-ab70-875c-009a8e00e00e', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '54639988-8ff0-dec2-bb0b-f0df21c9538d', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '12886148-35a0-f1e5-7fe4-54e8ff78a603', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'eee28dae-6abc-ac92-ef5d-ed07389f57de', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '6f00ec4d-9d41-40cb-f30a-e44ad12f6005', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '7c4f3b7d-cb62-41e6-2fa1-4098bd622410', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'ea415cbf-b194-b8af-1392-2854505555fb', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'fec17a01-129f-2853-932b-33433f1000de', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '2e860c94-e6de-9316-f0e2-7c376228a216', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '55aa7c0d-f162-a483-d5e0-c2161c4f6012', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '9ad97518-2a27-043f-ffe8-d6cd9c661ea6', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'acf9e9d6-c62e-434a-d08f-c2aa02bbe1cc', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'a39e4a06-4fb9-af5e-311f-fc2c05dbb274', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-27', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '00a81705-a479-57d1-b507-90fdb32ca6e9', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '0dd7a49e-3253-9467-c5ff-d6a32c6bc86c', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-29', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '53285579-8a56-8952-93af-f0b8f32efc03', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '664a328e-0254-2527-2466-a17b9aa06735', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'bad1c8cf-0f3d-263f-ae0c-b4d98024d627', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'a992b7a5-49a5-72b4-fbe8-2ca5f0dad73d', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-03', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '4d474a99-94a8-1230-440f-17600b592e3e', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-04', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '721e3617-3855-2456-5a91-ff6747f3bc8d', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'a6266dee-5134-b547-260d-1e7afdd722a9', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '5c7db677-9a13-b923-a85e-31788934c13b', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'f194b2fb-a472-553c-6bf6-1f58bb2eb0a4', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-08', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'af5db094-5437-33d1-3773-390376205342', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'e80fe375-1734-babd-091e-fad85fd3e6c7', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '6f5842ba-f529-5242-ff57-692761c059e6', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '8130b9c0-8a64-f8ba-90b5-a973a55f8865', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '54c785cf-9d08-9d32-00a6-b20a14c5dc39', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'dbb9d284-8164-962d-5e40-e93d2d2fb035', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'ade84686-4fe2-8386-0b9b-9f500508b885', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '0c751cde-5af8-7811-2402-43bd6a1709cb', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '1baac61f-d72d-00a7-4b6f-c43699b13839', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '5f42f0b1-4b01-1830-97ce-187f58c261b8', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '0a9ae934-7085-44e4-c5f2-5e0c7d795912', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '2ba1305b-35b9-0175-f8b0-988be98ee1f8', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'e36fd2b0-1992-a483-00f8-fa0630456a36', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'f34d889e-1ced-9a6f-58a9-5f65bffaf4de', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '8ed9c52f-b2b7-6fd3-9c1e-126f1028a9c3', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '3a0546fa-77c5-d9b0-1337-5367b0ea1103', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '537407f1-95cd-1a0d-58be-f2af47482964', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '1b3eb1ee-2468-0c30-8b81-108f7018a7e2', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '7f87b42d-b41c-bacb-cb49-7a374c739ae1', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-27', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '4866e0da-8f9a-fd8d-4f88-b8a107d97966', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '9a72dd08-89fe-c33c-c457-efffeffbca01', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-29', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '570386e9-91aa-7ce0-f8ae-6c5ce0b31dbf', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'b9c55ed7-89bf-f5fa-4bb8-6dc35182e2bf', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-31', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'd00d8b24-1073-330d-8c2f-dc92d6cde364', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '38490da1-7fee-b59d-a563-6884ceeb9b33', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'fbef2e1e-e3be-ebfa-8d68-0359b1b1bd1c', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-03', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '543e49e4-11ff-db40-3f6a-0f2c95bde334', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-04', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'd672ceb0-da6c-94d2-4f05-4b57c46fd48a', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '1e56b72d-ef98-08d1-39a2-8947cec4f137', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'aaab1fb7-c85c-26c3-5f80-5a7f8bc5f229', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '7b1e7f59-38f0-bfeb-9fb7-c5da26d179ef', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-08', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '086aab14-8c40-f92e-9501-d8db0dd99c13', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '994571c3-a804-e58d-0504-20b7fa79074a', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'ce9dac6a-aed7-68e5-76be-28aa8094c926', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '970c3563-0ffd-67bd-d84d-cbd10a195251', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'dcf719c8-3993-d484-ba69-d54d0c2c31d5', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '1b355d23-1e98-e3e0-ce3b-f1b4450c9120', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '8fefaeca-8e45-7ebc-4615-5a17a73de4ad', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'f6ba0af5-d754-a445-810e-08af41068c2f', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'cb6b30a5-69cb-deb2-2b2a-aa16de2a78fc', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'b55ba9ea-37b2-12d3-2ef4-aa4a648027e7', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '93dc8050-e2ad-4bc4-d0d2-724b53fe9aec', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'f2db15e5-8b1e-c94d-fbe2-6f64b8fa025c', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '585702dd-7134-e1d6-b710-f3eca09ae13e', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'b5be8df9-b20e-c7c2-5655-e7fab0005467', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '367746e9-361e-227b-1782-32ff7f59238b', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '5b331907-8e7d-7671-8dea-d90a6936f30e', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '308073ed-14cb-1b80-b95d-f11b6ebfb687', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'cefbef57-1b6a-3b29-1519-87c71602d08b', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'd87deaf3-e13c-7f45-0157-482e2d8c0e1d', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-27', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '53c1d11b-6f54-0c2c-8bf3-6f9be700d926', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'a7e2f70e-49fe-33e1-ea75-0ec1c4b9627d', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-29', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'b0dc1618-651f-deab-7424-eeefb0996b87', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '73134755-e873-f3c7-3dc3-67de17e63edb', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '0dadf608-1e23-e867-c08a-62b451c5fd0f', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '470b76e5-bd23-61ef-99e6-fec25c8f0c1e', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-03', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'cdb58645-a4fa-6b3e-c340-12328b1f12c7', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-04', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'fa35a81e-0f28-9a6e-af1d-6d05f917bdec', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'c8a3f12c-9d6b-f053-b3a7-0398b1d206a4', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '23686a17-c296-783b-5fd1-db158d1b26c7', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '7878a1e2-48b3-9f26-18c9-ba793492eecb', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-08', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '8e889823-c2e5-0c5c-3126-9052309a2e04', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '8fc87785-70e6-ccdf-a6b6-7fc99cf5e751', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '8e1f21d3-817b-2e90-e6f6-433d1dc80b42', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'cf48a312-4055-50e7-33a7-cdd2fb449722', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'acdf8814-cfe0-6184-8c08-fd5f658b6520', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '355b9f56-a0cc-f8ce-1981-21c23f78e971', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '85d834c3-68b9-c430-0122-464ef132e2cc', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '529c008a-1c0c-6bb3-57fc-2b3952d8b3f6', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '26aaa919-a641-f176-49d4-7c6e64dd8ac7', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '60ebf8c4-2dd6-6388-99f4-36f536896ce7', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '743f36e1-157f-4613-7be7-e93a8a757582', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '360c263a-4c5e-4899-8690-38351cde55f9', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '4de66729-15a2-acc4-2ed8-57a1f84b4fa7', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '13752499-a979-385c-c5ed-b1e96b085dd6', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'b2f6da1e-e5ff-2fe0-a705-ee76a8b43b2e', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'a16860d1-21dc-68b8-e0ef-248643868cc0', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '9d9cc711-74b7-1b10-6f7d-47124d2b90dc', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '0b6863a6-bff2-756a-2bc0-0a1083ee150e', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '85685d17-a31c-2bd9-b2e4-3ef9787f12ba', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-27', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '4d535968-3163-aec2-0fa1-2458f8e16466', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '26f263b5-8601-cf53-82ab-e91992a3f912', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-29', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '6b209d57-cb73-95a2-48e0-1a116131bde8', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '8a8091af-5b9e-f026-6e32-f65580d75b69', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-31', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'bb89ce8d-d63c-8c7d-4d96-cb8d8c503348', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'a6298ebd-8f61-9006-5f68-528148844ec7', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '7a283b04-fe7b-d884-b85b-ebfa48bf1af9', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-03', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'add80b02-4bf4-a070-2a59-32970a952ab4', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-04', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'dfb6fd3a-ab9b-85a4-4cf0-8d8edff7484c', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '5af39fa8-6344-ef94-5fdf-5bdc389cb6b5', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'ce7f988c-2cb9-5d56-d8fd-382e3221cb14', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'e57643c6-01b7-8d13-5b24-76be7578ae4e', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-08', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'a0f8f89b-800d-b51b-911c-51da89fdea71', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '21361dd3-ba73-c8a4-2e03-6001d4a93549', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '71fc2e75-cbbb-fff7-1118-47987f39b051', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '27e388f4-95d9-4990-94cb-9dff95973fde', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'daa33163-363b-67c5-36b2-b88b45eeb53a', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'd3605bc2-c2f6-b15e-0dec-d762aa4e812d', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '69cd16a2-f62b-2dd2-ca31-254865a4334b', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '5acd2783-0e46-5516-1464-a82c4cd451e6', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '375910dc-fc9b-0a59-1d3c-bde2bba62271', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'ae565df3-d163-5c5c-d2eb-e182ab9fae3d', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'bf4854f5-4fd2-8f08-f269-d7415644a54e', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'b0e18881-3d97-00c3-6176-0792b2ded6ef', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'f55d1df6-1f6f-2d88-915a-77cbc5987b07', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '996c02a3-7799-1a56-c4f1-8ac207aad61c', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '937cb857-3842-37c3-b59e-63e0f43d1788', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '3ce6a02a-fa8e-444c-1563-72bce95339a4', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'f8e4ecd4-d138-ac89-d780-7ba963907aff', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-19', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', '477b97cd-3532-517c-e48d-ff6d2a50fb5f', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-29', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '82a86d99-205e-0cff-7184-37d7740e57a2', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-19', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', '9e555497-d77f-d51d-8172-34a85222a412', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-22', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '9fc9c24f-81eb-cba0-b066-f4ad18b1ae97', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-25', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', 'ac612255-e004-7742-fe4f-f5cbc1987dee', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-30', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '4a05e133-134a-37c8-8fe1-4692fd4252c7', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-04', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'ce5127ee-6d48-d507-031d-4bb61fb71093', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-09', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', 'ae3e7492-6ba1-39d2-3e84-ae53358ae17b', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-10', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '32d07a78-e665-bcb3-d2f8-3cd13ef74f57', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-12', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '96d91e20-744b-16b3-c519-f04689e0fe06', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-17', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'eee28dae-6abc-ac92-ef5d-ed07389f57de', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-20', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', 'ea415cbf-b194-b8af-1392-2854505555fb', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-18', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '6f00ec4d-9d41-40cb-f30a-e44ad12f6005', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-27', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '00a81705-a479-57d1-b507-90fdb32ca6e9', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-17', '10:30:00', '14:30:00', '18:00:00', '23:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:30:00', '06:40:00', 'a3ba6b33-3d97-b751-89a5-e7f0838e2303', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-18', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', '4664ae45-fec3-cd50-c2d7-5b0151860c2c', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-20', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '331e0359-d219-1d58-3ec4-b7ef4eb44e36', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-21', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'a426f7d1-6696-834c-7760-498dbdf344e0', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-24', '10:30:00', '14:30:00', '18:00:00', '23:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:30:00', '06:40:00', 'eaf31ba7-f528-6b43-0d92-cdf78fb08863', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-28', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '7b3a40d7-7b1d-3709-79b2-699bf586a0db', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-29', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '82c192b4-48c2-dac4-52fc-2f57c7bffeee', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-01', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', 'b200e39d-93f8-ce76-fa7d-9e0dce2a7a66', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-02', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', 'b8e2f479-fdd7-55e5-b335-dbdf3dd80d00', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-03', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'd781606c-1aac-baef-2445-2fa70b714b74', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-07', '10:30:00', '14:30:00', '18:00:00', '23:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:30:00', '06:40:00', '700b845e-4ce9-0065-3ee1-907a38d17368', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-08', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', 'dea90e44-7b32-4642-4615-89dec323f765', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-13', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', 'db38d142-2bec-723b-1067-bdc2edc7074d', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-22', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', '2e860c94-e6de-9316-f0e2-7c376228a216', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-23', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', '55aa7c0d-f162-a483-d5e0-c2161c4f6012', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-25', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'acf9e9d6-c62e-434a-d08f-c2aa02bbe1cc', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-26', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', 'a39e4a06-4fb9-af5e-311f-fc2c05dbb274', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-29', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', '53285579-8a56-8952-93af-f0b8f32efc03', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-30', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', '664a328e-0254-2527-2466-a17b9aa06735', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-02', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'a992b7a5-49a5-72b4-fbe8-2ca5f0dad73d', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-04', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '721e3617-3855-2456-5a91-ff6747f3bc8d', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-26', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', '2b06618a-5be7-7f69-d623-fc10ad140310', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-27', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '6885484b-ed08-303c-5b7e-b1872e496704', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-31', '10:30:00', '14:30:00', '18:00:00', '23:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:30:00', '06:40:00', '8dde55e4-8f66-f561-24bb-06336598ea36', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-06', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '113dfefd-da5b-8e0d-3d15-b3a190b27051', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-14', '10:30:00', '14:30:00', '18:00:00', '23:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:30:00', '06:40:00', '30d50f41-d4de-ab70-875c-009a8e00e00e', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-15', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', '54639988-8ff0-dec2-bb0b-f0df21c9538d', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-16', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', '12886148-35a0-f1e5-7fe4-54e8ff78a603', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-21', '10:30:00', '14:30:00', '18:00:00', '23:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:30:00', '06:40:00', 'fec17a01-129f-2853-932b-33433f1000de', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-01', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'bad1c8cf-0f3d-263f-ae0c-b4d98024d627', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-03', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '4d474a99-94a8-1230-440f-17600b592e3e', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-03', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'cdb58645-a4fa-6b3e-c340-12328b1f12c7', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-04', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'fa35a81e-0f28-9a6e-af1d-6d05f917bdec', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-05', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'c8a3f12c-9d6b-f053-b3a7-0398b1d206a4', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-06', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '23686a17-c296-783b-5fd1-db158d1b26c7', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-07', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '7878a1e2-48b3-9f26-18c9-ba793492eecb', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-08', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '8e889823-c2e5-0c5c-3126-9052309a2e04', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-09', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '8fc87785-70e6-ccdf-a6b6-7fc99cf5e751', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-10', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '8e1f21d3-817b-2e90-e6f6-433d1dc80b42', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-11', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'cf48a312-4055-50e7-33a7-cdd2fb449722', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-12', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'acdf8814-cfe0-6184-8c08-fd5f658b6520', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-13', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '355b9f56-a0cc-f8ce-1981-21c23f78e971', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-14', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '85d834c3-68b9-c430-0122-464ef132e2cc', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-15', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '529c008a-1c0c-6bb3-57fc-2b3952d8b3f6', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-16', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '26aaa919-a641-f176-49d4-7c6e64dd8ac7', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-17', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '60ebf8c4-2dd6-6388-99f4-36f536896ce7', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-18', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '743f36e1-157f-4613-7be7-e93a8a757582', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-19', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '360c263a-4c5e-4899-8690-38351cde55f9', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-20', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '4de66729-15a2-acc4-2ed8-57a1f84b4fa7', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-21', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '13752499-a979-385c-c5ed-b1e96b085dd6', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-22', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'b2f6da1e-e5ff-2fe0-a705-ee76a8b43b2e', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-23', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'a16860d1-21dc-68b8-e0ef-248643868cc0', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-24', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '9d9cc711-74b7-1b10-6f7d-47124d2b90dc', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-25', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '0b6863a6-bff2-756a-2bc0-0a1083ee150e', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-26', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '85685d17-a31c-2bd9-b2e4-3ef9787f12ba', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-27', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '4d535968-3163-aec2-0fa1-2458f8e16466', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-28', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '26f263b5-8601-cf53-82ab-e91992a3f912', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-29', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '6b209d57-cb73-95a2-48e0-1a116131bde8', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-30', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '8a8091af-5b9e-f026-6e32-f65580d75b69', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-31', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'bb89ce8d-d63c-8c7d-4d96-cb8d8c503348', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-01', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'a6298ebd-8f61-9006-5f68-528148844ec7', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-02', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '7a283b04-fe7b-d884-b85b-ebfa48bf1af9', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-03', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'add80b02-4bf4-a070-2a59-32970a952ab4', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-04', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'dfb6fd3a-ab9b-85a4-4cf0-8d8edff7484c', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-05', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '5af39fa8-6344-ef94-5fdf-5bdc389cb6b5', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-06', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'ce7f988c-2cb9-5d56-d8fd-382e3221cb14', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-07', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'e57643c6-01b7-8d13-5b24-76be7578ae4e', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-08', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'a0f8f89b-800d-b51b-911c-51da89fdea71', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-09', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '21361dd3-ba73-c8a4-2e03-6001d4a93549', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-10', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '71fc2e75-cbbb-fff7-1118-47987f39b051', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-11', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '27e388f4-95d9-4990-94cb-9dff95973fde', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-12', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'daa33163-363b-67c5-36b2-b88b45eeb53a', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-13', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'd3605bc2-c2f6-b15e-0dec-d762aa4e812d', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-14', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '69cd16a2-f62b-2dd2-ca31-254865a4334b', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-15', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '5acd2783-0e46-5516-1464-a82c4cd451e6', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-16', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '375910dc-fc9b-0a59-1d3c-bde2bba62271', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-17', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'ae565df3-d163-5c5c-d2eb-e182ab9fae3d', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-18', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'bf4854f5-4fd2-8f08-f269-d7415644a54e', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-19', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'b0e18881-3d97-00c3-6176-0792b2ded6ef', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-20', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'f55d1df6-1f6f-2d88-915a-77cbc5987b07', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-21', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '996c02a3-7799-1a56-c4f1-8ac207aad61c', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-22', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '937cb857-3842-37c3-b59e-63e0f43d1788', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-23', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '3ce6a02a-fa8e-444c-1563-72bce95339a4', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-24', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'f8e4ecd4-d138-ac89-d780-7ba963907aff', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-30', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '73134755-e873-f3c7-3dc3-67de17e63edb', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-01', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '0dadf608-1e23-e867-c08a-62b451c5fd0f', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-02', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '470b76e5-bd23-61ef-99e6-fec25c8f0c1e', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-23', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '5a40ab8c-6c83-fa16-5c9d-c029556fd496', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-05', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'a6266dee-5134-b547-260d-1e7afdd722a9', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-06', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '5c7db677-9a13-b923-a85e-31788934c13b', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-07', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'f194b2fb-a472-553c-6bf6-1f58bb2eb0a4', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-08', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'af5db094-5437-33d1-3773-390376205342', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-09', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'e80fe375-1734-babd-091e-fad85fd3e6c7', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-10', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '6f5842ba-f529-5242-ff57-692761c059e6', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-11', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '8130b9c0-8a64-f8ba-90b5-a973a55f8865', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-12', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '54c785cf-9d08-9d32-00a6-b20a14c5dc39', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-13', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'dbb9d284-8164-962d-5e40-e93d2d2fb035', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-14', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'ade84686-4fe2-8386-0b9b-9f500508b885', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-15', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '0c751cde-5af8-7811-2402-43bd6a1709cb', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-16', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '1baac61f-d72d-00a7-4b6f-c43699b13839', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-17', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '5f42f0b1-4b01-1830-97ce-187f58c261b8', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-18', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '0a9ae934-7085-44e4-c5f2-5e0c7d795912', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-19', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '2ba1305b-35b9-0175-f8b0-988be98ee1f8', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-20', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'e36fd2b0-1992-a483-00f8-fa0630456a36', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-21', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'f34d889e-1ced-9a6f-58a9-5f65bffaf4de', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-22', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '8ed9c52f-b2b7-6fd3-9c1e-126f1028a9c3', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-23', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '3a0546fa-77c5-d9b0-1337-5367b0ea1103', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-24', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '537407f1-95cd-1a0d-58be-f2af47482964', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-25', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '1b3eb1ee-2468-0c30-8b81-108f7018a7e2', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-26', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '7f87b42d-b41c-bacb-cb49-7a374c739ae1', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-27', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '4866e0da-8f9a-fd8d-4f88-b8a107d97966', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-28', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '9a72dd08-89fe-c33c-c457-efffeffbca01', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-29', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '570386e9-91aa-7ce0-f8ae-6c5ce0b31dbf', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-30', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'b9c55ed7-89bf-f5fa-4bb8-6dc35182e2bf', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-31', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'd00d8b24-1073-330d-8c2f-dc92d6cde364', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-01', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '38490da1-7fee-b59d-a563-6884ceeb9b33', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-02', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'fbef2e1e-e3be-ebfa-8d68-0359b1b1bd1c', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-03', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '543e49e4-11ff-db40-3f6a-0f2c95bde334', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-04', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'd672ceb0-da6c-94d2-4f05-4b57c46fd48a', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-05', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '1e56b72d-ef98-08d1-39a2-8947cec4f137', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-06', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'aaab1fb7-c85c-26c3-5f80-5a7f8bc5f229', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-07', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '7b1e7f59-38f0-bfeb-9fb7-c5da26d179ef', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-08', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '086aab14-8c40-f92e-9501-d8db0dd99c13', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-09', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '994571c3-a804-e58d-0504-20b7fa79074a', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-10', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'ce9dac6a-aed7-68e5-76be-28aa8094c926', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-11', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '970c3563-0ffd-67bd-d84d-cbd10a195251', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-12', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'dcf719c8-3993-d484-ba69-d54d0c2c31d5', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-13', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '1b355d23-1e98-e3e0-ce3b-f1b4450c9120', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-14', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '8fefaeca-8e45-7ebc-4615-5a17a73de4ad', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-01', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'ba6084bc-fd98-b1fe-db20-5fa795d99b95', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-04', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', 'b4dbe264-1148-d294-0732-268261999eb2', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-03', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', 'eb8ce779-1d92-02d6-b594-6fb3205f4fc1', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-11-30', '10:30:00', '14:30:00', '19:30:00', '00:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '05:00:00', '06:40:00', '6bcb6815-1dee-2ca1-704c-4556b362fe75', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-05', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', 'a8dce91e-9e64-16b7-e2f3-333e98ab8360', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '6e15ee78-1177-9b9d-bda2-a1f77f39088d', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-15', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'f6ba0af5-d754-a445-810e-08af41068c2f', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-16', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'cb6b30a5-69cb-deb2-2b2a-aa16de2a78fc', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-17', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'b55ba9ea-37b2-12d3-2ef4-aa4a648027e7', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-18', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '93dc8050-e2ad-4bc4-d0d2-724b53fe9aec', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-19', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'f2db15e5-8b1e-c94d-fbe2-6f64b8fa025c', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-20', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '585702dd-7134-e1d6-b710-f3eca09ae13e', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-21', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'b5be8df9-b20e-c7c2-5655-e7fab0005467', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-22', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '367746e9-361e-227b-1782-32ff7f59238b', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-23', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '5b331907-8e7d-7671-8dea-d90a6936f30e', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-24', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '308073ed-14cb-1b80-b95d-f11b6ebfb687', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-25', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'cefbef57-1b6a-3b29-1519-87c71602d08b', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-26', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'd87deaf3-e13c-7f45-0157-482e2d8c0e1d', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-27', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '53c1d11b-6f54-0c2c-8bf3-6f9be700d926', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-28', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'a7e2f70e-49fe-33e1-ea75-0ec1c4b9627d', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-29', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'b0dc1618-651f-deab-7424-eeefb0996b87', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-10', '10:30:00', '14:30:00', '18:00:00', '23:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:30:00', '06:40:00', 'f0a6c021-7338-26c2-dd85-abb816d14af7', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-11', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', '621069b7-487f-28d7-6f7f-dbfc8ded195d', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-12', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', 'd726d23d-e678-00a6-2ee0-a8826a50676a', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-13', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'a914420a-5625-7d87-b072-0d5b9452ca6a', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2021-01-12', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', '868ef8e0-d3fd-dd85-b3b9-006d26603305', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2021-01-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'e0727fc9-5f6d-d2a7-0370-ffd9c86e078a', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2021-01-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '48c066f9-c6ba-38dd-9bf2-13d5032425aa', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); @@ -923,30 +968,6 @@ INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, time INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2021-01-17', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', 'b8a2c4bc-53d6-142e-d4fb-956fc11bbce9', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2021-01-16', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', '845d37e5-2f54-571d-c2d1-5af4bf0ab840', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2021-01-14', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', '369aac17-3c90-b222-08d3-394d9894d7c1', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-01', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'cd1ec279-8a92-d8af-e347-05f5a0764d9f', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-02', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '3cf38d19-b3c2-0e9c-89e8-09e72f1805f1', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-03', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '6e77eb11-4538-b191-fe07-b863519eb4b5', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-04', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'dd345189-3984-5bdc-08c1-e25b468be30d', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-05', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', 'b28ec6a6-1077-6750-6c50-e882b9604000', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-06', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '745cad31-18a9-2dda-46fe-be02e6d3c592', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '4e49e45a-a30d-ccd9-2b03-314bc0e85099', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-08', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'fc854114-0c0e-e08d-0adc-320d6d78321b', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-09', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '055b9820-8fb1-6753-2da7-db743f517227', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-10', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '6070df19-9a72-a066-0020-cd3def00ceb5', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-11', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'e37df37f-d03d-4e23-77f6-2c84a53400b6', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-12', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '4901de65-0682-05f1-4852-d67672baa086', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-13', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '1b71a776-0d31-4f3d-3c2a-605cc593fad7', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '4dc11a5e-ec12-9a58-589e-24056f9485f2', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-15', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'ab99efd4-4b6c-a208-47d4-c9c32a7e792a', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-16', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'ccedd3d8-5226-c7fe-7f92-624d4fef7694', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-17', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'd91bb7d5-542c-f6c8-0f47-cec9c67c28be', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-18', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '68508a4a-067e-a84e-880e-c4b05e61cc2c', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-19', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '041deca6-fbbc-b978-3029-13b0defc308e', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-20', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', 'f572a199-449a-3aa6-e67f-e3b3c9802a4c', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '0182f7d5-2c82-e0b8-6770-03ff75ca082c', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-22', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '748ef77b-7f9e-dc78-612a-553acba3d4bf', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-23', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '8b4984ab-dcc0-ce8d-eb43-91206551066e', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-24', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '23da2358-153f-7f44-6738-fb356652b859', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-09-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'cf664f29-f089-ec95-680e-78dc95f438a3', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-08-17', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'afdefac3-c6b9-8c76-c900-313284f5085b', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-08-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'f66c7e3b-96b1-5df8-c375-ddf9fd95f14e', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); @@ -1115,148 +1136,127 @@ INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, time INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-27', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', 'ed30d5f6-2f55-e2a5-a100-9397c4812641', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-28', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', '73de3eaa-62ab-b514-4bcb-3652548327ca', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-29', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '5969cf20-fe87-28e0-e607-a3c1fa585d4d', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-25', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'c8e3f690-ecb1-12f6-922a-c2d6cca04916', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-26', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '4e7d93a8-46b4-1ad3-1699-7c7d646129fa', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-27', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '537027d5-e08c-801a-3030-29ce2023898c', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '02dd3850-83b9-699f-5b4b-b9eed01555f8', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-29', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '81c0efe4-e630-d93f-d153-92641647b85b', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-30', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '0cc5175b-97ca-e0b5-87f0-a1fa693883b0', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-01', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '9328bc91-ce7a-ddbc-a306-87fb99d1100e', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-02', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '7bf68994-ba3a-7ff7-e216-d6c10fc81766', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-03', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', 'aa5d538a-9a16-fac4-84ce-d047ef33c367', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-04', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', 'c335a092-dbea-a4d9-8bee-4401cc242e1b', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-21', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'c1b354a1-1c7c-3b95-b491-be34708b000f', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-22', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', 'f254709b-0e5d-673e-6c2f-f8f5b76038a2', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-23', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '6ce4b7cb-6fd3-7a57-25e2-b4d74f17a4ca', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '4d0392de-3a3b-d1c3-b72f-63dccb88b3eb', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-25', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '02ccfc69-9697-ae32-bb2c-b3808df91111', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-31', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'beecf864-2602-8168-3910-2a2ef084d9a1', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-26', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'e52ce627-264a-0009-24f7-a1124fd3f228', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-27', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '9822bac6-146e-b4ae-d0bb-ba22a76b08ae', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-28', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'eb811b61-8114-3007-d86b-abb0a010be54', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-30', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', 'ca0f188d-2fd2-dce4-18d5-9a825c0b0994', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-14', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', '8d4981e9-80ee-774b-3229-3248b78e84c6', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-10', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', '80f81359-c787-cd4f-c293-2ef8d0d3ae97', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-16', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '33ff9aa9-677b-0f6a-af18-b331c85f8657', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '994a49d2-70dc-b6d9-515b-88dfc33b7031', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-18', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '650b95f1-19bb-0d68-273e-28b2e0cdd077', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-19', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'a993d0aa-b004-ac48-9494-fd2a6d1b2d98', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'a84ae25b-43e0-567f-2dde-ebfdef96340a', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-01', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'b4b00c8c-7ba8-02fd-950e-831ac0c913a0', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-02', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'c752ed1e-c78f-6e84-24f0-8492e6cfee1a', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-03', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', '7241adc7-8589-68ae-b692-22db6d50a187', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-04', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'cc60eaf6-d53d-e8cb-2d5f-b33d50cb3073', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-05', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', '4c451523-b7fc-3b85-c44d-06c0a2ce5f78', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-06', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', '195e199e-712e-8603-41ae-204b206c4daa', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'd87c2c4b-d311-f599-a4bb-4670ed0e4498', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-08', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'c81f21e9-9929-8626-52fa-6078f3e75dad', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-09', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'd2ca8372-bebe-f8bf-f192-eb45cfa19ac6', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-10', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', 'ccaee6ed-730f-7580-5167-ed5f43fcb16f', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-11', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'dacf1943-c022-99fd-5ab9-bc5e16fac4c5', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-12', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', '0f3d322f-9657-2445-a6ef-ca36a56194e9', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-13', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', '11b1268c-f782-a5bd-7432-e4c816a87f8a', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '68af56d5-7db1-b1a4-39a0-802eacc7c906', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-15', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'aa9d76f8-f265-14b4-cdb5-cd999fa75e41', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-16', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', '476ce341-df4a-24ec-3bc1-b8030994e2d4', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-17', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', 'b71b9bde-77e3-aadf-9a98-071533b5bef8', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-02', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', '46dff1c6-fc53-5869-9b1b-ed553f954b66', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-18', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'c1570ca2-e810-2962-02ae-e13381c7c40c', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-20', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', 'f379a23d-8e79-ad72-256a-ceda5f3f7ca6', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '3a97f329-3f54-f74c-4d04-06f6d3f3c5e3', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-22', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'a55c1e11-990b-e330-aeba-c09ecab233c2', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-23', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'ab64b6fd-0630-9cec-4e67-e77dd34d1676', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-24', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', '738958ae-6b0a-16cc-c3de-2c2d071a9149', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-25', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'acd0e3c8-e2cf-f23c-1a1f-5031e6c192f3', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-26', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', '1e88d057-92c1-a4b7-1f16-99dab21733e2', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-27', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', '7fac269f-9980-1173-3e68-1da77c1b0ac3', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '78cba873-f8fd-0fed-6d5f-f05b585372b2', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-29', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'f8eee20e-7666-a90c-e18b-b0e74aee9057', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-30', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', '8a4a673b-c0aa-6f84-98c3-552c21dbbb49', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-31', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', 'baae0828-7f32-f3c4-3ac6-17547d67cfef', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-01', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', '6f73497c-7b03-49f9-7166-8429b5de923a', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-03', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', '42278bf9-9a45-7af1-e127-7cc3f1b78e8a', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-04', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '6044e5ef-0c26-dc0b-e5ec-656cee397530', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-05', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'f2f0d826-afa3-600a-16d6-b038d3bf6607', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-06', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', '8420e9af-ccf9-7115-39ac-b4a1546d5d04', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-07', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', '4b25b712-ee82-de83-798b-ecd83e21584b', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-08', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'cd79a0e6-3294-5441-3ee8-05ba146b275b', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-09', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', '9dbd5ce4-2fd5-bcca-53af-554453ed96a3', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-10', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', '9cb3f608-2fbd-0eb9-01e2-6d1305291d42', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '8b02d7b2-c3e4-f18e-0254-daa7778e3694', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-12', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', '4d136133-0e4a-ee0b-252f-352ea87e98ab', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-13', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'bc68f7fa-b316-b005-ede9-47608c56d041', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-14', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', '607897b5-3008-0358-510d-596180cf6fd2', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-15', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', '7d7e4a2f-e00d-d5fc-ee40-101a30f49685', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-16', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', '12ea75fc-017d-1d84-1dc8-014ac3d7d27c', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-17', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', '9130f052-0136-9c8c-00d9-eac60ed8d7cf', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '904602ae-0d36-398e-60c2-db4c04238a68', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-19', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'f50ad63e-cbd2-79db-3177-9ca35f373dd9', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-20', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', '82e4f538-7d54-b955-f964-5fa620b90240', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-21', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', 'c33c0f1a-26f0-b8c7-fc86-91e74660bf75', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-22', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', '725a1f7b-b9a4-6b08-8386-339b93f311df', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-23', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', '7e7c9315-74a7-d1cd-ad5b-678c3b624cdc', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-24', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', '69305be0-206f-4544-4391-f72d7f2a8d24', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '6938d127-fb0c-ef59-652f-49bdcca34cf1', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-11', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '4aa15f9b-e387-d6ab-7323-3b9192cf5da1', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-12', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '7e268ff6-e8ea-c0b4-08df-1c73567de3db', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-13', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '4fb47ab5-c8de-3eaf-181f-b5e39c2a8ca8', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-14', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '8d37a1e1-020b-9d03-acfe-44c0c747422f', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-15', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', 'b910e083-9fa5-fcf2-71fa-62a40720ea3c', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-20', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '044eee57-53d4-b5c3-3458-f37f89b105a9', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-06', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '294eefbe-1fbf-11b0-18ce-64daa474c908', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-07', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '1307d3ec-edfd-dbf1-d9b7-68c30005dcd9', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-08', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', 'b200abcb-c514-74ea-3460-74617a139b80', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-09', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '4e23e656-e732-e0a9-5737-6f3e0efba13a', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-11', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '37f74c3d-7303-bcc1-eba9-254284143d27', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '1b67622e-1ecd-d4e6-384d-ec1f469a85e5', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-13', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', 'd7cb539a-18af-adf2-5d14-4281e3be1d15', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-14', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', 'fd772ad8-90e8-f998-f233-56ec23049fd8', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-15', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '57fd3eeb-3f1e-ebe1-4c26-951f2545ee69', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-16', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '34704bdd-3aeb-e7b5-cdda-86f37e8f28f0', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-17', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', '9ab7268b-755c-af8b-dca6-16afe2009bdb', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-18', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '1a42a09f-1d34-6301-7a18-68eacdfdece0', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '6f8182f0-379b-1c58-0595-cd8f850fd0b6', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-20', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', 'f3cb5e62-d1c2-2399-d385-7793f08d4a8d', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-21', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '76ecd943-3fdf-771f-4d6e-31f57ac2fb99', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-22', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', 'e391284a-fa89-061a-30c5-bc6b70771981', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-23', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '866e9b78-c5fb-ce1f-19f5-20bb019dc025', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-24', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', 'dd2093a7-a680-51d1-d577-31be5ee75abb', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-25', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '5108a384-232a-f1e3-9b80-1083c789be52', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'a920dc81-dd5a-af67-65d0-96167885e190', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '00a9115b-959b-a4ca-aa9d-c419de85093e', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-27', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', 'f69285bd-0c5f-0de6-05d8-d8330d9b7a97', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-28', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '7abbe91f-cacc-4aff-84ce-29d48cac6eb6', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-29', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '7deb0793-4f05-f3fd-e60e-90358e48c45f', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-30', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '94885a90-38c1-caff-3324-b4ef97daa652', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-31', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', 'e0477b82-5c38-8786-b2a2-b514912a74ac', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-01', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '3b21cf44-48c7-7ed2-4391-d1dcb5591494', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '27d16e7d-99e4-92fc-4208-5b39e59e280b', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-03', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '066d8839-e40b-1da2-a3a2-f5ef534af42e', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-04', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', 'cb4df9df-c78e-a5e5-eb3b-b7d923143ce5', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-05', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '2a1d711f-e1ec-dc3a-eb41-a54d94e56e51', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-06', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '59c4bb8b-760a-600b-19e3-5a7f91512768', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-07', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', '9be5484a-0aad-98db-0395-997f30ea8f9f', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-08', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '7f8ba55f-1152-b6f7-49cd-f248a9f9c4a0', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'ce89b090-9cd9-a143-fe65-80e3f8ba9708', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-10', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '96ea94a2-66e4-480a-e547-2f2f5ef04dee', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-11', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '3e1ede60-1dad-e3cb-ce3d-060e6effa782', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-12', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', 'caa35de7-1adf-0f01-e322-2c0baa95c265', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-13', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', 'cff05a0e-99d4-7910-4580-422a1e6ff3e3', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-15', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '8c42aca1-8eea-143b-2a53-bf634494c352', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'c0b17801-dd69-aed2-77bb-5db2f28bf779', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-17', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '59127855-f780-d6e0-4911-edcdfb61a097', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-18', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '0d421d78-cf0c-4a92-6a80-58ea6aacb3aa', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-19', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '602ed804-2caa-c1c7-c8d1-b04601ca3561', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-20', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', 'af1476bf-aa5b-1dda-73ce-97280d645256', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-21', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', 'de84b3f9-4b36-ced9-59bc-e705b1dbfda9', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-22', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', 'b76b29b1-f578-af15-f5b3-f5a73bf1ff47', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '694a7fe1-f3a9-cf7e-6a07-c07b698d7e66', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-24', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '6c979ff2-d10c-7269-ac16-ec67a0af2506', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-25', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '54bcd89f-7d54-3c5d-3914-51fed804ff95', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-26', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '94149223-6c26-cfa6-bf6c-8854ab0c8956', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-27', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '3c242edd-27ad-1314-0046-2bd8d8a1c8db', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-28', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', '99068117-e2a7-2f03-b692-befd39ccb59f', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-29', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '147669f2-68a3-75bf-f107-08159314569a', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-09', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', '9dbd5ce4-2fd5-bcca-53af-554453ed96a3', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-14', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'd31116e5-7f7f-f71c-d5f4-c0e6fabd1145', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-15', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '41fbed8f-bb6f-e5bd-0de0-4d5543a630c9', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-16', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '5286fb98-d7cb-b0ee-adaf-ddabf5bcd9c8', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '4e49e45a-a30d-ccd9-2b03-314bc0e85099', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-11', NULL, NULL, '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '04:00:00', '04:00:00', NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', 'reposition', '00:00:00', '06:40:00', '4aa15f9b-e387-d6ab-7323-3b9192cf5da1', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-18', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '650b95f1-19bb-0d68-273e-28b2e0cdd077', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-19', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'a993d0aa-b004-ac48-9494-fd2a6d1b2d98', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-20', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '044eee57-53d4-b5c3-3458-f37f89b105a9', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-21', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'c1b354a1-1c7c-3b95-b491-be34708b000f', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-22', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', 'f254709b-0e5d-673e-6c2f-f8f5b76038a2', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-27', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '3c242edd-27ad-1314-0046-2bd8d8a1c8db', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-28', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', '99068117-e2a7-2f03-b692-befd39ccb59f', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-29', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '147669f2-68a3-75bf-f107-08159314569a', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-23', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '6ce4b7cb-6fd3-7a57-25e2-b4d74f17a4ca', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-25', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '02ccfc69-9697-ae32-bb2c-b3808df91111', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-26', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'e52ce627-264a-0009-24f7-a1124fd3f228', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-27', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '9822bac6-146e-b4ae-d0bb-ba22a76b08ae', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-12', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '7e268ff6-e8ea-c0b4-08df-1c73567de3db', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-13', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '4fb47ab5-c8de-3eaf-181f-b5e39c2a8ca8', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-01', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'b4b00c8c-7ba8-02fd-950e-831ac0c913a0', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-02', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'c752ed1e-c78f-6e84-24f0-8492e6cfee1a', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-03', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', '7241adc7-8589-68ae-b692-22db6d50a187', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-04', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'cc60eaf6-d53d-e8cb-2d5f-b33d50cb3073', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-05', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', '4c451523-b7fc-3b85-c44d-06c0a2ce5f78', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-06', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', '195e199e-712e-8603-41ae-204b206c4daa', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-08', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'c81f21e9-9929-8626-52fa-6078f3e75dad', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-09', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'd2ca8372-bebe-f8bf-f192-eb45cfa19ac6', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-10', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', 'ccaee6ed-730f-7580-5167-ed5f43fcb16f', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-11', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'dacf1943-c022-99fd-5ab9-bc5e16fac4c5', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-12', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', '0f3d322f-9657-2445-a6ef-ca36a56194e9', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-13', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', '11b1268c-f782-a5bd-7432-e4c816a87f8a', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-15', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'ab99efd4-4b6c-a208-47d4-c9c32a7e792a', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-16', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'ccedd3d8-5226-c7fe-7f92-624d4fef7694', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-17', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'd91bb7d5-542c-f6c8-0f47-cec9c67c28be', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-18', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '68508a4a-067e-a84e-880e-c4b05e61cc2c', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-15', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'aa9d76f8-f265-14b4-cdb5-cd999fa75e41', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-16', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', '476ce341-df4a-24ec-3bc1-b8030994e2d4', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-17', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', 'b71b9bde-77e3-aadf-9a98-071533b5bef8', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-18', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'c1570ca2-e810-2962-02ae-e13381c7c40c', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-19', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', '477b97cd-3532-517c-e48d-ff6d2a50fb5f', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-20', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', 'f379a23d-8e79-ad72-256a-ceda5f3f7ca6', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-22', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'a55c1e11-990b-e330-aeba-c09ecab233c2', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-23', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'ab64b6fd-0630-9cec-4e67-e77dd34d1676', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-24', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', '738958ae-6b0a-16cc-c3de-2c2d071a9149', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-25', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'acd0e3c8-e2cf-f23c-1a1f-5031e6c192f3', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-26', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', '1e88d057-92c1-a4b7-1f16-99dab21733e2', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-27', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', '7fac269f-9980-1173-3e68-1da77c1b0ac3', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-29', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'f8eee20e-7666-a90c-e18b-b0e74aee9057', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-30', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', '8a4a673b-c0aa-6f84-98c3-552c21dbbb49', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-31', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', 'baae0828-7f32-f3c4-3ac6-17547d67cfef', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-01', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', '6f73497c-7b03-49f9-7166-8429b5de923a', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-02', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', '46dff1c6-fc53-5869-9b1b-ed553f954b66', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-03', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', '42278bf9-9a45-7af1-e127-7cc3f1b78e8a', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-05', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'f2f0d826-afa3-600a-16d6-b038d3bf6607', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-06', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', '8420e9af-ccf9-7115-39ac-b4a1546d5d04', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-07', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', '4b25b712-ee82-de83-798b-ecd83e21584b', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-08', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'cd79a0e6-3294-5441-3ee8-05ba146b275b', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-10', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', '9cb3f608-2fbd-0eb9-01e2-6d1305291d42', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-12', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', '4d136133-0e4a-ee0b-252f-352ea87e98ab', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-13', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'bc68f7fa-b316-b005-ede9-47608c56d041', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-14', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', '607897b5-3008-0358-510d-596180cf6fd2', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-15', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', '7d7e4a2f-e00d-d5fc-ee40-101a30f49685', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-16', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', '12ea75fc-017d-1d84-1dc8-014ac3d7d27c', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-17', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', '9130f052-0136-9c8c-00d9-eac60ed8d7cf', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-19', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'f50ad63e-cbd2-79db-3177-9ca35f373dd9', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-20', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', '82e4f538-7d54-b955-f964-5fa620b90240', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-21', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', 'c33c0f1a-26f0-b8c7-fc86-91e74660bf75', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-22', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', '725a1f7b-b9a4-6b08-8386-339b93f311df', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-23', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', '7e7c9315-74a7-d1cd-ad5b-678c3b624cdc', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-24', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', '69305be0-206f-4544-4391-f72d7f2a8d24', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-08', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', 'b200abcb-c514-74ea-3460-74617a139b80', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-09', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '4e23e656-e732-e0a9-5737-6f3e0efba13a', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-10', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', '80f81359-c787-cd4f-c293-2ef8d0d3ae97', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-11', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '37f74c3d-7303-bcc1-eba9-254284143d27', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-13', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', 'd7cb539a-18af-adf2-5d14-4281e3be1d15', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-14', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', 'fd772ad8-90e8-f998-f233-56ec23049fd8', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-15', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '57fd3eeb-3f1e-ebe1-4c26-951f2545ee69', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-16', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '34704bdd-3aeb-e7b5-cdda-86f37e8f28f0', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-17', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', '9ab7268b-755c-af8b-dca6-16afe2009bdb', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-18', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '1a42a09f-1d34-6301-7a18-68eacdfdece0', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-20', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', 'f3cb5e62-d1c2-2399-d385-7793f08d4a8d', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-21', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '76ecd943-3fdf-771f-4d6e-31f57ac2fb99', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-22', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', 'e391284a-fa89-061a-30c5-bc6b70771981', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-23', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '866e9b78-c5fb-ce1f-19f5-20bb019dc025', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-25', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '5108a384-232a-f1e3-9b80-1083c789be52', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-27', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', 'f69285bd-0c5f-0de6-05d8-d8330d9b7a97', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-28', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '7abbe91f-cacc-4aff-84ce-29d48cac6eb6', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-29', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '7deb0793-4f05-f3fd-e60e-90358e48c45f', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-30', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '94885a90-38c1-caff-3324-b4ef97daa652', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-31', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', 'e0477b82-5c38-8786-b2a2-b514912a74ac', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-01', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '3b21cf44-48c7-7ed2-4391-d1dcb5591494', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-03', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '066d8839-e40b-1da2-a3a2-f5ef534af42e', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-05', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', 'cdf8dfaf-1560-30ec-9400-530a8922f08d', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-11', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '7f7670b4-6db9-6f1e-c90f-e086dfe23a3c', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-19', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '7c4f3b7d-cb62-41e6-2fa1-4098bd622410', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-24', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '9ad97518-2a27-043f-ffe8-d6cd9c661ea6', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-28', '10:30:00', '14:30:00', '18:00:00', '23:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:30:00', '06:40:00', '0dd7a49e-3253-9467-c5ff-d6a32c6bc86c', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-07', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '1307d3ec-edfd-dbf1-d9b7-68c30005dcd9', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-04', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', 'cb4df9df-c78e-a5e5-eb3b-b7d923143ce5', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-05', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '2a1d711f-e1ec-dc3a-eb41-a54d94e56e51', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-06', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '59c4bb8b-760a-600b-19e3-5a7f91512768', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-07', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', '9be5484a-0aad-98db-0395-997f30ea8f9f', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-08', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '7f8ba55f-1152-b6f7-49cd-f248a9f9c4a0', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-10', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '96ea94a2-66e4-480a-e547-2f2f5ef04dee', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-11', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '3e1ede60-1dad-e3cb-ce3d-060e6effa782', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-12', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', 'caa35de7-1adf-0f01-e322-2c0baa95c265', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-13', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', 'cff05a0e-99d4-7910-4580-422a1e6ff3e3', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-14', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', '8d4981e9-80ee-774b-3229-3248b78e84c6', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-15', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '8c42aca1-8eea-143b-2a53-bf634494c352', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-17', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '59127855-f780-d6e0-4911-edcdfb61a097', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-18', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '0d421d78-cf0c-4a92-6a80-58ea6aacb3aa', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-19', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '602ed804-2caa-c1c7-c8d1-b04601ca3561', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-20', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', 'af1476bf-aa5b-1dda-73ce-97280d645256', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-21', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', 'de84b3f9-4b36-ced9-59bc-e705b1dbfda9', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-22', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', 'b76b29b1-f578-af15-f5b3-f5a73bf1ff47', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-24', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '6c979ff2-d10c-7269-ac16-ec67a0af2506', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-25', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '54bcd89f-7d54-3c5d-3914-51fed804ff95', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-26', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '94149223-6c26-cfa6-bf6c-8854ab0c8956', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'ce89b090-9cd9-a143-fe65-80e3f8ba9708', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'c0b17801-dd69-aed2-77bb-5db2f28bf779', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-08-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '59c83015-13c9-832f-224b-df55382e667f', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-08-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '60adcf53-1fa2-58ad-c466-8b741ea39b93', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-08-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '567d6dbc-da2e-290a-227d-895b142f195f', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); @@ -1444,6 +1444,7 @@ INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 35, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-24', NULL, '00:00:00', NULL, NULL, 0, '8499720f-1dda-a01a-5ed8-4c20879f2e61', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 36, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-31', NULL, '00:00:00', NULL, NULL, 0, '2638a4ed-04ac-7ad5-09a0-f462429ed509', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 37, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-07', NULL, '00:00:00', NULL, NULL, 0, 'bb149c1d-3c32-4f16-6410-9a89c051e209', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 35, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-24', NULL, '40:00:00', NULL, NULL, 6, '999b5f68-67c3-62ad-4670-7ba2041b057c', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 38, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-14', NULL, '00:00:00', NULL, NULL, 0, 'a3b82097-67f4-8058-783c-ded9c94fc6f2', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 39, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-21', NULL, '00:00:00', NULL, NULL, 0, '1b7b66f9-a5f8-dc0f-2053-4c178d0295de', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 40, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-28', NULL, '00:00:00', NULL, NULL, 0, '7c05fb10-69a6-e377-ec49-d06626ccf783', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); @@ -1463,11 +1464,8 @@ INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 39, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-21', NULL, '40:00:00', NULL, NULL, 6, '10c4e207-295b-305f-e70b-38655e911b5d', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 35, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-24', NULL, '40:00:00', NULL, NULL, 6, '741c77e4-c752-0869-77d6-2cc016949f5d', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 36, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-31', NULL, '40:00:00', NULL, NULL, 6, '72f85a45-6a7e-0efc-9d73-bbcbafd55e01', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 33, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-10', NULL, '00:00:00', NULL, NULL, 0, '11a66ae3-870d-c5a3-e64c-2b6bd24cbbdf', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 34, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-17', NULL, '00:00:00', NULL, NULL, 0, '10201a3c-6c34-df8a-aa23-966a99cea4f4', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 35, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-24', NULL, '00:00:00', NULL, NULL, 0, '999b5f68-67c3-62ad-4670-7ba2041b057c', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 36, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-31', NULL, '00:00:00', NULL, NULL, 0, '3d0d3f2c-6fde-17ac-8d6a-65cea55f3486', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 37, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-07', NULL, '00:00:00', NULL, NULL, 0, '6774d93a-eaef-fad8-d95f-91ed27357ae3', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 36, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-31', NULL, '40:00:00', NULL, NULL, 6, '3d0d3f2c-6fde-17ac-8d6a-65cea55f3486', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 40, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-09-28', NULL, '40:00:00', NULL, NULL, 6, '9480f19f-0cda-845e-069c-4179aed88163', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 49, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-30', NULL, '00:00:00', NULL, NULL, 0, '3c2624d8-5132-45d4-2124-a46c6dc4876c', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 50, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-07', NULL, '00:00:00', NULL, NULL, 0, '2f5653e8-399d-f71d-89f2-1f09b0ab794a', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 51, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-14', NULL, '00:00:00', NULL, NULL, 0, '8a8b6dc2-3d47-da92-0725-f0381bb9c22d', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); @@ -1476,13 +1474,11 @@ INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 1, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-04', NULL, '00:00:00', NULL, NULL, 0, '79a3afc4-3ddd-614d-17ed-3791eec587a0', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 2, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-11', NULL, '00:00:00', NULL, NULL, 0, '76905ca8-17fe-c76d-8c3d-6433bb8df9eb', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 3, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-18', NULL, '00:00:00', NULL, NULL, 0, 'da77d389-8665-e613-18ee-00922523c11e', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 38, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-14', NULL, '00:00:00', NULL, NULL, 0, '6612dbf9-c114-a7a9-4cd2-fd4984b1c5e4', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 39, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-21', NULL, '00:00:00', NULL, NULL, 0, '87582198-1f10-2007-2181-d62ca4fd7ad7', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 40, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-28', NULL, '00:00:00', NULL, NULL, 0, '9480f19f-0cda-845e-069c-4179aed88163', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 33, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-10', NULL, '40:00:00', NULL, NULL, 6, '03cefb5b-3fa8-c8c2-acff-1938345c4506', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 39, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-21', NULL, '40:00:00', NULL, NULL, 6, '042d1b82-630b-d1b9-63da-35120771322c', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 40, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-28', NULL, '40:00:00', NULL, NULL, 6, '7aff8a58-0572-1983-612c-1d43dde65c28', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 38, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-14', NULL, '40:00:00', NULL, NULL, 6, 'c9cf917b-8c6b-e909-3120-8544d975d421', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 38, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-09-14', NULL, '40:00:00', NULL, NULL, 6, '6612dbf9-c114-a7a9-4cd2-fd4984b1c5e4', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 33, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-10', NULL, '40:00:00', NULL, NULL, 6, '11a66ae3-870d-c5a3-e64c-2b6bd24cbbdf', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 34, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-17', NULL, '40:00:00', NULL, NULL, 6, '10201a3c-6c34-df8a-aa23-966a99cea4f4', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 37, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-09-07', NULL, '40:00:00', NULL, NULL, 6, '6774d93a-eaef-fad8-d95f-91ed27357ae3', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 39, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-09-21', NULL, '40:00:00', NULL, NULL, 6, '87582198-1f10-2007-2181-d62ca4fd7ad7', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 39, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-21', NULL, '40:00:00', NULL, NULL, 6, 'eb2db0c9-2106-5224-59c3-76855bf658d9', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 34, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-17', NULL, '40:00:00', NULL, NULL, 6, '90bbcb82-f653-0fa2-10da-9e1db3399cff', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 37, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-07', NULL, '40:00:00', NULL, NULL, 6, '4c9e70de-18b5-f4d0-9ee3-2b1ee53cf2b1', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); @@ -1491,10 +1487,6 @@ INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 33, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-10', NULL, '40:00:00', NULL, NULL, 6, '64648b58-895d-266a-ed8b-b8872dcc5d59', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 40, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-28', NULL, '40:00:00', NULL, NULL, 6, '2d47e0ae-5cb0-1615-2aee-7af677a2c1d4', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 36, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-31', NULL, '40:00:00', NULL, NULL, 6, 'f0e408a9-4c6d-34a6-3543-2ffed280406b', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 36, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-31', NULL, '40:00:00', NULL, NULL, 6, '72c7014c-8b9e-b5d5-b92d-d5c577e1d1ee', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 35, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-24', NULL, '40:00:00', NULL, NULL, 6, '5bcd0875-d60c-5012-bd57-5248dc5696f7', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 37, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-07', NULL, '40:00:00', NULL, NULL, 6, 'fe54c0c0-afe1-852d-258a-9f1ccc8a7493', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 34, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-17', NULL, '40:00:00', NULL, NULL, 6, 'd6931909-b9c9-1c3f-4f70-676c4d76e05d', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 49, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-30', NULL, '00:00:00', NULL, NULL, 0, 'd4b81c50-0bf4-1412-d258-ff91fa0203aa', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 50, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-07', NULL, '00:00:00', NULL, NULL, 0, '06e71229-7a42-cce0-f82a-cd6bf38ca27a', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 51, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-14', NULL, '00:00:00', NULL, NULL, 0, 'b1173062-72f4-af8d-979b-e5e3fcda8ffd', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); @@ -1511,14 +1503,14 @@ INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 47, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-16', NULL, '00:00:00', NULL, NULL, 0, 'f0a945f5-ed53-106a-8a8f-a24b2300d90a', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 48, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-23', NULL, '00:00:00', NULL, NULL, 0, '4f63e754-5e2b-4a76-c11f-3e6775b96263', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 3, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-18', NULL, '00:00:00', NULL, NULL, 0, '1250d2be-cd8f-8423-002c-abed6f37de78', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 49, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-30', NULL, '00:00:00', NULL, NULL, 0, '2467313e-fe03-3c46-dee5-5ae4af227a8a', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 50, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-07', NULL, '00:00:00', NULL, NULL, 0, 'ac294e86-480e-bcb3-8cc4-89a651b128f2', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 51, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-14', NULL, '00:00:00', NULL, NULL, 0, '2bc10655-880c-734c-ff08-516f7a21ca1c', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 52, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-21', NULL, '00:00:00', NULL, NULL, 0, '7057e7f9-3c65-5c3f-315e-d79ccfdc263f', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 53, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-28', NULL, '00:00:00', NULL, NULL, 0, '56a54ba1-b2cd-70ba-8cfb-86fe38677f48', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 1, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-04', NULL, '00:00:00', NULL, NULL, 0, 'b180ea27-1765-de62-3e21-173bdc903d1f', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 2, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-11', NULL, '00:00:00', NULL, NULL, 0, 'f36d72c2-95b4-cd2f-b9f7-778e75377aa2', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 3, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-18', NULL, '00:00:00', NULL, NULL, 0, '56e5fee9-96e5-69a4-546a-25c035f21b51', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 53, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-28', NULL, '00:00:00', NULL, NULL, 0, '56a54ba1-b2cd-70ba-8cfb-86fe38677f48', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 2, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-11', NULL, '00:00:00', NULL, NULL, 0, 'f36d72c2-95b4-cd2f-b9f7-778e75377aa2', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 51, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-14', NULL, '00:00:00', NULL, NULL, 0, '2bc10655-880c-734c-ff08-516f7a21ca1c', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 3, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-18', NULL, '00:00:00', NULL, NULL, 0, '56e5fee9-96e5-69a4-546a-25c035f21b51', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 49, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-30', NULL, '00:00:00', NULL, NULL, 0, '2467313e-fe03-3c46-dee5-5ae4af227a8a', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 1, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-04', NULL, '00:00:00', NULL, NULL, 0, 'b180ea27-1765-de62-3e21-173bdc903d1f', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 52, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-21', NULL, '00:00:00', NULL, NULL, 0, '7057e7f9-3c65-5c3f-315e-d79ccfdc263f', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 50, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-07', NULL, '00:00:00', NULL, NULL, 0, 'ac294e86-480e-bcb3-8cc4-89a651b128f2', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 41, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-05', NULL, '00:00:00', NULL, NULL, 0, '9b5151b5-9634-ef27-5c07-ba531de22d2c', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 2, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-11', NULL, '40:00:00', NULL, NULL, 6, '389e6e7f-4752-f68c-4dd6-6f291a503193', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 49, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-30', NULL, '40:00:00', NULL, NULL, 6, 'b234169a-863a-9497-11e1-46a1ae6f5339', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); @@ -1544,35 +1536,30 @@ INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 47, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-16', NULL, '00:00:00', NULL, NULL, 0, '1d3551b6-3eb3-c832-4e60-52052144f6c6', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 53, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-28', NULL, '00:00:00', NULL, NULL, 0, '9f77c01e-e2bf-0313-5d21-4118819df5db', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 48, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-23', NULL, '00:00:00', NULL, NULL, 0, '7256a5a4-048c-0b88-b512-14c476517040', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 2, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-11', NULL, '40:00:00', NULL, NULL, 6, 'a21da5e1-0b38-1cd3-556b-fc9bddfffbdb', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 51, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-14', NULL, '40:00:00', NULL, NULL, 6, 'a1627aaa-220c-9ece-99cf-a05d9ae13e54', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 3, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-18', NULL, '40:00:00', NULL, NULL, 6, 'f627c2c7-fa84-7a2a-ac56-be724ee4a6f4', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 52, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-21', NULL, '40:00:00', NULL, NULL, 6, '9232773b-0f77-89df-3a38-d2afdd80ad0a', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 49, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-30', NULL, '40:00:00', NULL, NULL, 6, '09318c38-7d02-fe13-08e8-bb899a7e133b', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 53, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-28', NULL, '40:00:00', NULL, NULL, 6, 'ae08c0ec-b589-144a-03f4-e10b05642b65', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 1, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-04', NULL, '40:00:00', NULL, NULL, 6, '0f0c3761-21b1-798a-88f6-c25cb861c30c', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 41, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-05', NULL, '00:00:00', NULL, NULL, 0, 'effcf244-746a-d662-cf87-a633ece560a2', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 42, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-12', NULL, '00:00:00', NULL, NULL, 0, 'b633ebf3-5cd2-5b83-c7f0-8bfe57a8a013', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 50, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-07', NULL, '40:00:00', NULL, NULL, 6, '9d10c302-d37d-d69a-1fea-0caa755d9086', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 43, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-19', NULL, '00:00:00', NULL, NULL, 0, 'd0bd791c-466b-4dde-ee3a-ce48f2def331', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 44, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-26', NULL, '00:00:00', NULL, NULL, 0, '55d42aca-695e-b900-22b7-b4c0ce0b5776', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 45, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-02', NULL, '00:00:00', NULL, NULL, 0, '65d9d2b4-ec83-71de-ea3e-d20e7624899c', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 46, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-09', NULL, '00:00:00', NULL, NULL, 0, '4458b82e-caf1-e886-1b33-6bdd6c666d72', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 47, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-16', NULL, '00:00:00', NULL, NULL, 0, '370772c8-45b6-696b-c6b0-f948cf4061e5', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 48, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-23', NULL, '00:00:00', NULL, NULL, 0, 'cb2b6ded-7ef2-cb9c-f930-42fc5c9c6ae9', '2020-08-04 09:03:04.740487', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 40, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-09-28', NULL, '40:00:00', NULL, NULL, 6, '7aff8a58-0572-1983-612c-1d43dde65c28', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 38, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-09-14', NULL, '40:00:00', NULL, NULL, 6, 'c9cf917b-8c6b-e909-3120-8544d975d421', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 36, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-31', NULL, '40:00:00', NULL, NULL, 6, '72c7014c-8b9e-b5d5-b92d-d5c577e1d1ee', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 35, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-24', NULL, '40:00:00', NULL, NULL, 6, '5bcd0875-d60c-5012-bd57-5248dc5696f7', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 37, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-09-07', NULL, '40:00:00', NULL, NULL, 6, 'fe54c0c0-afe1-852d-258a-9f1ccc8a7493', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 34, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-17', NULL, '40:00:00', NULL, NULL, 6, 'd6931909-b9c9-1c3f-4f70-676c4d76e05d', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 33, '40:00:00', '36:00:00', '00:00:00', '00:00:00', '08:00:00', '-12:00:00', '2020-08-10', NULL, '28:00:00', NULL, NULL, 6, '03cefb5b-3fa8-c8c2-acff-1938345c4506', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 39, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-09-21', NULL, '40:00:00', NULL, NULL, 6, '042d1b82-630b-d1b9-63da-35120771322c', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 41, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-05', NULL, '40:00:00', NULL, NULL, 6, 'c0318476-becd-68d0-3e11-bf85b1666f8f', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 47, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-16', NULL, '40:00:00', NULL, NULL, 6, '9863cb37-aea2-b45c-b82f-975cde052a73', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 44, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-26', NULL, '40:00:00', NULL, NULL, 6, '53bb59bc-a296-0e86-6302-21c230be88b8', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 42, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-12', NULL, '40:00:00', NULL, NULL, 6, 'cb8ed656-613b-9261-55aa-d9f78402cdc0', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 45, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-02', NULL, '40:00:00', NULL, NULL, 6, '745bbf58-07a0-654d-1a65-5d4349063833', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 47, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-16', NULL, '40:00:00', NULL, NULL, 6, '4ca5cc30-caf8-1e33-5c36-9b6aa2d325b2', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 45, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-02', NULL, '40:00:00', NULL, NULL, 6, '376d0e39-0a07-94d1-4089-0c889348db1a', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 41, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-05', NULL, '40:00:00', NULL, NULL, 6, '7d3bd1d6-dc29-2a8e-1f9a-4255e1451e33', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 42, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-12', NULL, '40:00:00', NULL, NULL, 6, 'df70e4fd-cbdf-d10a-e612-ccb0dffb48b7', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 48, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-23', NULL, '40:00:00', NULL, NULL, 6, '6737056e-d0bc-f32e-f493-ee52340237c9', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 42, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-12', NULL, '00:00:00', NULL, NULL, 0, 'b633ebf3-5cd2-5b83-c7f0-8bfe57a8a013', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 48, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-23', NULL, '00:00:00', NULL, NULL, 0, 'cb2b6ded-7ef2-cb9c-f930-42fc5c9c6ae9', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 41, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-05', NULL, '00:00:00', NULL, NULL, 0, 'effcf244-746a-d662-cf87-a633ece560a2', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 48, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-23', NULL, '40:00:00', NULL, NULL, 6, 'b37935ef-bc8d-436b-5691-d3fbb717d493', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 46, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-09', NULL, '40:00:00', NULL, NULL, 6, 'c6610cde-b1d8-811a-3f1d-de6c4df56ae4', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 43, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-19', NULL, '40:00:00', NULL, NULL, 6, '7d2667f2-c1ff-3a55-d0c3-b554e0d9c47e', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 46, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-09', NULL, '00:00:00', NULL, NULL, 0, '4458b82e-caf1-e886-1b33-6bdd6c666d72', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 43, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-19', NULL, '00:00:00', NULL, NULL, 0, 'd0bd791c-466b-4dde-ee3a-ce48f2def331', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 44, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-26', NULL, '00:00:00', NULL, NULL, 0, '55d42aca-695e-b900-22b7-b4c0ce0b5776', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 47, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-16', NULL, '00:00:00', NULL, NULL, 0, '370772c8-45b6-696b-c6b0-f948cf4061e5', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 45, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-02', NULL, '00:00:00', NULL, NULL, 0, '65d9d2b4-ec83-71de-ea3e-d20e7624899c', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 42, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-12', NULL, '40:00:00', NULL, NULL, 6, '2c69af3b-da54-416f-6ce8-a23342f3143f', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 48, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-23', NULL, '40:00:00', NULL, NULL, 6, 'e9590724-60b0-9cdf-8efa-5655ceb7cc38', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 44, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-26', NULL, '40:00:00', NULL, NULL, 6, '00e8a37c-03a5-3345-a453-9c9dbc44ece9', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); @@ -1581,6 +1568,14 @@ INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 41, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-05', NULL, '40:00:00', NULL, NULL, 6, 'c1477774-15d0-312e-11e1-59d54ab68074', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 43, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-19', NULL, '40:00:00', NULL, NULL, 6, 'cad0e3a5-08dd-6040-ee76-69264ce4419a', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 46, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-09', NULL, '40:00:00', NULL, NULL, 6, '78a39aca-4e23-e837-fa80-d42d3ca1dcc0', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 2, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-11', NULL, '40:00:00', NULL, NULL, 6, 'a21da5e1-0b38-1cd3-556b-fc9bddfffbdb', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 51, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-14', NULL, '40:00:00', NULL, NULL, 6, 'a1627aaa-220c-9ece-99cf-a05d9ae13e54', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 3, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-18', NULL, '40:00:00', NULL, NULL, 6, 'f627c2c7-fa84-7a2a-ac56-be724ee4a6f4', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 49, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-30', NULL, '40:00:00', NULL, NULL, 6, '09318c38-7d02-fe13-08e8-bb899a7e133b', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 53, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-28', NULL, '40:00:00', NULL, NULL, 6, 'ae08c0ec-b589-144a-03f4-e10b05642b65', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 1, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-04', NULL, '40:00:00', NULL, NULL, 6, '0f0c3761-21b1-798a-88f6-c25cb861c30c', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 52, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-21', NULL, '40:00:00', NULL, NULL, 6, '9232773b-0f77-89df-3a38-d2afdd80ad0a', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 50, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-07', NULL, '40:00:00', NULL, NULL, 6, '9d10c302-d37d-d69a-1fea-0caa755d9086', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 36, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-31', NULL, '00:00:00', NULL, NULL, 0, 'fa264bbc-5a60-46bc-8d5e-45803ed3837f', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 39, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-21', NULL, '00:00:00', NULL, NULL, 0, 'ee38c0a6-1c04-ea11-face-7c2e859c632a', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 40, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-28', NULL, '00:00:00', NULL, NULL, 0, '644651aa-612f-96d8-9f82-e6edb6725ede', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); @@ -1589,6 +1584,11 @@ INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 35, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-24', NULL, '00:00:00', NULL, NULL, 0, '8b8f18d8-9493-f628-322a-70be57c5ed76', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 38, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-14', NULL, '00:00:00', NULL, NULL, 0, '1ff4dde2-5549-3aa5-0630-95325987e045', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 34, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-17', NULL, '00:00:00', NULL, NULL, 0, 'caf1fcaa-66f8-abdd-04b3-caa3fe7cd234', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 47, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-16', NULL, '40:00:00', NULL, NULL, 6, '4ca5cc30-caf8-1e33-5c36-9b6aa2d325b2', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 45, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-02', NULL, '40:00:00', NULL, NULL, 6, '376d0e39-0a07-94d1-4089-0c889348db1a', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 41, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-05', NULL, '40:00:00', NULL, NULL, 6, '7d3bd1d6-dc29-2a8e-1f9a-4255e1451e33', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 42, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-12', NULL, '40:00:00', NULL, NULL, 6, 'df70e4fd-cbdf-d10a-e612-ccb0dffb48b7', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 48, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-23', NULL, '40:00:00', NULL, NULL, 6, '6737056e-d0bc-f32e-f493-ee52340237c9', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 49, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-30', NULL, '00:00:00', NULL, NULL, 0, '07a20dda-7249-33f8-b3bd-94ece0a1dc39', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 50, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-07', NULL, '00:00:00', NULL, NULL, 0, '094f8c94-541f-4435-e37f-6110fdf74d1f', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 52, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-21', NULL, '00:00:00', NULL, NULL, 0, 'bc73ee15-c005-1b1c-7959-08069a52a2ee', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); @@ -1604,9 +1604,9 @@ INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 48, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-23', NULL, '00:00:00', NULL, NULL, 0, '32ce44f1-8045-8219-c463-d0c15fbcf4d7', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 46, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-09', NULL, '00:00:00', NULL, NULL, 0, '71d77a11-3347-941b-c104-421272f17d4c', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 42, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-12', NULL, '00:00:00', NULL, NULL, 0, '53678e81-40f4-8a8e-7a9d-456aa3083026', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 44, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-26', NULL, '40:00:00', NULL, NULL, 6, '907bfec2-6da2-24d9-70ff-4e0adbbfb4ee', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 43, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-19', NULL, '40:00:00', NULL, NULL, 6, '527bd64a-6a3b-920f-eecf-f86e2073bb60', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 46, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-09', NULL, '40:00:00', NULL, NULL, 6, '3cb51a89-5100-3486-d9c7-a52175adf74b', '2020-08-04 17:40:43.48673', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 44, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-26', NULL, '40:00:00', NULL, NULL, 6, '907bfec2-6da2-24d9-70ff-4e0adbbfb4ee', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 43, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-19', NULL, '40:00:00', NULL, NULL, 6, '527bd64a-6a3b-920f-eecf-f86e2073bb60', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 46, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-09', NULL, '40:00:00', NULL, NULL, 6, '3cb51a89-5100-3486-d9c7-a52175adf74b', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); -- @@ -1813,8 +1813,6 @@ INSERT INTO portanova.worktimes (startdate, enddate, defaultdayhours, maxdayhour -- Data for Name: companies; Type: TABLE DATA; Schema: public; Owner: - -- -INSERT INTO public.companies (company, address, zip, city, country, tradetype, comregister, vatnumber, schemata, validated, schemata2, email, socialtype, vatvalidated, reportperiodunit, reportperiodlength, reportperiodstart, id, datasetname, phone) VALUES ('test', '4, rue Principale', '3770', 'Tétange', 'Luxemburg', NULL, NULL, NULL, 'test', NULL, NULL, 'kilian@saffran.lu', 's.à r.l.', NULL, NULL, NULL, NULL, 'd1f1e10e-48ef-d422-3930-0d702e05c689', NULL, NULL); -INSERT INTO public.companies (company, address, zip, city, country, tradetype, comregister, vatnumber, schemata, validated, schemata2, email, socialtype, vatvalidated, reportperiodunit, reportperiodlength, reportperiodstart, id, datasetname, phone) VALUES ('TEST2', '8b, rue du Moulin', '6914', 'Roodt-sur-Syre', 'Luxemburg', NULL, NULL, NULL, 'test2', NULL, NULL, 'support@dks.lu', NULL, NULL, NULL, NULL, NULL, '9c2ff129-6b43-f4ce-4f6d-823bed531152', NULL, NULL); INSERT INTO public.companies (company, address, zip, city, country, tradetype, comregister, vatnumber, schemata, validated, schemata2, email, socialtype, vatvalidated, reportperiodunit, reportperiodlength, reportperiodstart, id, datasetname, phone) VALUES ('Test', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'testmyapp', NULL, NULL, NULL, NULL, NULL, '', 8, '2020-03-04', '716d62c1-f6c7-07bb-17ec-8b5825b9696b', 'TESTMYAPP', NULL); INSERT INTO public.companies (company, address, zip, city, country, tradetype, comregister, vatnumber, schemata, validated, schemata2, email, socialtype, vatvalidated, reportperiodunit, reportperiodlength, reportperiodstart, id, datasetname, phone) VALUES ('IL CANTUCCIO', '14, Avenue de la Faïencerie', '1510', 'Luxembourg', 'Luxemburg', NULL, 'B27344', '', 'portanova', NULL, NULL, 'support@dks.lu', 's.à r.l.', NULL, 'week', 8, '2019-12-30', '8a8728fd-d37d-3a41-757c-bf73d4b9b410', 'Porta Nova', ''); @@ -1896,13 +1894,16 @@ INSERT INTO public.sessions (id_user, user_agent, remote_addr, created, id, sess INSERT INTO public.sessions (id_user, user_agent, remote_addr, created, id, sessiondata) VALUES ('e9e6880b-75c7-70b5-ce61-49cf6d62630f', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0', '::1', '2020-07-23 12:33:29.414745', 'LO-LO-bff6a206-87af-d529-8266-bca458e1786d', '{"schemata": "portanova"}'); INSERT INTO public.sessions (id_user, user_agent, remote_addr, created, id, sessiondata) VALUES ('e9e6880b-75c7-70b5-ce61-49cf6d62630f', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0', '::1', '2020-07-24 16:42:55.137598', 'LO-304e0346-4cb0-67c4-dcbb-9557c33c4336', '{"schemata":"portanova"}'); INSERT INTO public.sessions (id_user, user_agent, remote_addr, created, id, sessiondata) VALUES ('e9e6880b-75c7-70b5-ce61-49cf6d62630f', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0', '::1', '2020-07-28 10:47:38.95606', '4c48f22a-515d-c8f3-0cdd-458304e49523', '{"schemata":"portanova"}'); -INSERT INTO public.sessions (id_user, user_agent, remote_addr, created, id, sessiondata) VALUES ('e9e6880b-75c7-70b5-ce61-49cf6d62630f', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36', '::1', '2020-08-03 15:02:38.486102', 'LO-LO-LO-LO-LO-LO-1aab37e9-6b62-b088-9db2-eb20969effae', '{"schemata": "portanova"}'); -INSERT INTO public.sessions (id_user, user_agent, remote_addr, created, id, sessiondata) VALUES ('e9e6880b-75c7-70b5-ce61-49cf6d62630f', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36', '::1', '2020-08-03 17:07:40.851315', 'LO-LO-LO-LO-LO-4153c4ff-c185-fa16-cf24-a54695fc7281', '{"schemata":"portanova"}'); -INSERT INTO public.sessions (id_user, user_agent, remote_addr, created, id, sessiondata) VALUES ('e9e6880b-75c7-70b5-ce61-49cf6d62630f', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36', '::1', '2020-08-04 07:53:56.664758', 'LO-LO-LO-LO-0bc5edbb-8e14-79a7-c169-0c4cfe7cac9c', '{"schemata":"portanova"}'); -INSERT INTO public.sessions (id_user, user_agent, remote_addr, created, id, sessiondata) VALUES ('e9e6880b-75c7-70b5-ce61-49cf6d62630f', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36', '::1', '2020-08-04 16:36:05.902211', 'LO-LO-LO-89e3d552-9819-b99f-123c-223e1f1d4e2d', '{"schemata":"portanova"}'); -INSERT INTO public.sessions (id_user, user_agent, remote_addr, created, id, sessiondata) VALUES ('e9e6880b-75c7-70b5-ce61-49cf6d62630f', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36', '::1', '2020-08-05 08:26:34.74338', 'LO-LO-35e80a85-1fdb-4eaf-0fae-abe67c064724', '{"schemata":"portanova"}'); -INSERT INTO public.sessions (id_user, user_agent, remote_addr, created, id, sessiondata) VALUES ('e9e6880b-75c7-70b5-ce61-49cf6d62630f', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36', '::1', '2020-08-06 09:05:17.371751', 'LO-2af69d6f-fccd-f066-0a81-c335bc9e19cb', '{"schemata": ""}'); -INSERT INTO public.sessions (id_user, user_agent, remote_addr, created, id, sessiondata) VALUES ('e9e6880b-75c7-70b5-ce61-49cf6d62630f', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36', '::1', '2020-08-06 09:05:49.584275', 'a1bcccdf-e744-4255-b5d5-1f9da4725028', '{"schemata": ""}'); +INSERT INTO public.sessions (id_user, user_agent, remote_addr, created, id, sessiondata) VALUES ('e9e6880b-75c7-70b5-ce61-49cf6d62630f', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36', '::1', '2020-08-03 15:02:38.486102', 'LO-LO-LO-LO-LO-LO-LO-LO-LO-1aab37e9-6b62-b088-9db2-eb20969effae', '{"schemata": "portanova"}'); +INSERT INTO public.sessions (id_user, user_agent, remote_addr, created, id, sessiondata) VALUES ('e9e6880b-75c7-70b5-ce61-49cf6d62630f', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36', '::1', '2020-08-03 17:07:40.851315', 'LO-LO-LO-LO-LO-LO-LO-LO-4153c4ff-c185-fa16-cf24-a54695fc7281', '{"schemata":"portanova"}'); +INSERT INTO public.sessions (id_user, user_agent, remote_addr, created, id, sessiondata) VALUES ('e9e6880b-75c7-70b5-ce61-49cf6d62630f', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36', '::1', '2020-08-04 07:53:56.664758', 'LO-LO-LO-LO-LO-LO-LO-0bc5edbb-8e14-79a7-c169-0c4cfe7cac9c', '{"schemata":"portanova"}'); +INSERT INTO public.sessions (id_user, user_agent, remote_addr, created, id, sessiondata) VALUES ('e9e6880b-75c7-70b5-ce61-49cf6d62630f', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36', '::1', '2020-08-04 16:36:05.902211', 'LO-LO-LO-LO-LO-LO-89e3d552-9819-b99f-123c-223e1f1d4e2d', '{"schemata":"portanova"}'); +INSERT INTO public.sessions (id_user, user_agent, remote_addr, created, id, sessiondata) VALUES ('e9e6880b-75c7-70b5-ce61-49cf6d62630f', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36', '::1', '2020-08-05 08:26:34.74338', 'LO-LO-LO-LO-LO-35e80a85-1fdb-4eaf-0fae-abe67c064724', '{"schemata":"portanova"}'); +INSERT INTO public.sessions (id_user, user_agent, remote_addr, created, id, sessiondata) VALUES ('e9e6880b-75c7-70b5-ce61-49cf6d62630f', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36', '::1', '2020-08-06 09:05:17.371751', 'LO-LO-LO-LO-2af69d6f-fccd-f066-0a81-c335bc9e19cb', '{"schemata": ""}'); +INSERT INTO public.sessions (id_user, user_agent, remote_addr, created, id, sessiondata) VALUES ('e9e6880b-75c7-70b5-ce61-49cf6d62630f', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36', '::1', '2020-08-06 09:05:49.584275', 'LO-LO-LO-a1bcccdf-e744-4255-b5d5-1f9da4725028', '{"schemata": ""}'); +INSERT INTO public.sessions (id_user, user_agent, remote_addr, created, id, sessiondata) VALUES ('e9e6880b-75c7-70b5-ce61-49cf6d62630f', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36', '::1', '2020-08-09 09:52:12.992059', 'LO-LO-1bc90d9f-14c8-6a99-8c53-44092da183c3', '{"schemata": "portanova"}'); +INSERT INTO public.sessions (id_user, user_agent, remote_addr, created, id, sessiondata) VALUES ('e9e6880b-75c7-70b5-ce61-49cf6d62630f', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36', '::1', '2020-08-09 14:22:21.625457', 'LO-f3fead4b-a2fb-cf7a-17a2-703399a3b7eb', '{"schemata":"portanova"}'); +INSERT INTO public.sessions (id_user, user_agent, remote_addr, created, id, sessiondata) VALUES ('e9e6880b-75c7-70b5-ce61-49cf6d62630f', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36', '::1', '2020-08-09 14:49:20.777947', '0bb4c4df-275c-9303-f908-b639c105dee6', '{"schemata":"portanova"}'); -- @@ -1920,9 +1921,9 @@ INSERT INTO public.usergroups (id, isdefault, groupname) VALUES ('teamleader', N -- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: - -- -INSERT INTO public.users (userpassword, created, blocked, username, regcode, vcode, schemaaccess, id_usergroups, surname, prename, phone, job, id_company, id_usergroup, id) VALUES ('0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec', '2019-12-29 16:53:19.68549', NULL, 'ksaffran@dks.lu', NULL, NULL, '["portanova"]', '["3","5"]', 'Saffran', 'Kilian', NULL, NULL, '8a8728fd-d37d-3a41-757c-bf73d4b9b410', 'admin', 'e9e6880b-75c7-70b5-ce61-49cf6d62630f'); INSERT INTO public.users (userpassword, created, blocked, username, regcode, vcode, schemaaccess, id_usergroups, surname, prename, phone, job, id_company, id_usergroup, id) VALUES ('0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec', '2019-10-10 17:12:11.934747', NULL, 'kilian.saffran@gmail.com', NULL, '6tgfkew', '["portanova"]', '["2","5","3","4"]', 'Saffran', 'Kilian', '+352691504574', 'Gérant', '8a8728fd-d37d-3a41-757c-bf73d4b9b410', 'admin', '4e46e03a-932e-36ac-e885-572fb86841b3'); INSERT INTO public.users (userpassword, created, blocked, username, regcode, vcode, schemaaccess, id_usergroups, surname, prename, phone, job, id_company, id_usergroup, id) VALUES ('0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec', '2019-12-20 11:03:08.757357', NULL, 'kilian@saffran.lu', NULL, NULL, '["portanova"]', '["5"]', 'Saffran', 'Kilian', '691504574', NULL, '8a8728fd-d37d-3a41-757c-bf73d4b9b410', 'teamleader', '833ccc12-d964-1314-8be7-06e614666686'); +INSERT INTO public.users (userpassword, created, blocked, username, regcode, vcode, schemaaccess, id_usergroups, surname, prename, phone, job, id_company, id_usergroup, id) VALUES ('0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec', '2019-12-29 16:53:19.68549', NULL, 'ksaffran@dks.lu', NULL, NULL, '["portanova","testmyapp"]', '["3","5"]', 'Saffran', 'Kilian', NULL, NULL, '716d62c1-f6c7-07bb-17ec-8b5825b9696b', 'admin', 'e9e6880b-75c7-70b5-ce61-49cf6d62630f'); -- diff --git a/dev/db/potlu_db.pg.full.sql b/dev/db/potlu_db.pg.full.sql index 72d3d71b..d4bea6af 100644 --- a/dev/db/potlu_db.pg.full.sql +++ b/dev/db/potlu_db.pg.full.sql @@ -17,17 +17,25 @@ SET client_min_messages = warning; SET row_security = off; -- --- Name: portanova; Type: SCHEMA; Schema: -; Owner: potlu2_user +-- Name: portanova; Type: SCHEMA; Schema: -; Owner: potlu_user -- CREATE SCHEMA portanova; -ALTER SCHEMA portanova OWNER TO potlu2_user; +ALTER SCHEMA portanova OWNER TO potlu_user; +-- +-- Name: testmyapp; Type: SCHEMA; Schema: -; Owner: potlu_user +-- + +CREATE SCHEMA testmyapp; + + +ALTER SCHEMA testmyapp OWNER TO potlu_user; -- --- Name: add_reportperiod(); Type: FUNCTION; Schema: portanova; Owner: potlu2_user +-- Name: add_reportperiod(); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- CREATE FUNCTION portanova.add_reportperiod() RETURNS text @@ -58,10 +66,10 @@ end; $$; -ALTER FUNCTION portanova.add_reportperiod() OWNER TO potlu2_user; +ALTER FUNCTION portanova.add_reportperiod() OWNER TO potlu_user; -- --- Name: add_staff(); Type: FUNCTION; Schema: portanova; Owner: potlu2_user +-- Name: add_staff(); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- CREATE FUNCTION portanova.add_staff() RETURNS text @@ -84,10 +92,10 @@ end; $$; -ALTER FUNCTION portanova.add_staff() OWNER TO potlu2_user; +ALTER FUNCTION portanova.add_staff() OWNER TO potlu_user; -- --- Name: add_workplan(text); Type: FUNCTION; Schema: portanova; Owner: potlu2_user +-- Name: add_workplan(text); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- CREATE FUNCTION portanova.add_workplan(pwkname text) RETURNS text @@ -105,10 +113,10 @@ end; $$; -ALTER FUNCTION portanova.add_workplan(pwkname text) OWNER TO potlu2_user; +ALTER FUNCTION portanova.add_workplan(pwkname text) OWNER TO potlu_user; -- --- Name: clean_staffperiodday(json); Type: FUNCTION; Schema: portanova; Owner: potlu2_user +-- Name: clean_staffperiodday(json); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- CREATE FUNCTION portanova.clean_staffperiodday(vid_staffperioddays json) RETURNS boolean @@ -139,10 +147,10 @@ CREATE FUNCTION portanova.clean_staffperiodday(vid_staffperioddays json) RETURNS $$; -ALTER FUNCTION portanova.clean_staffperiodday(vid_staffperioddays json) OWNER TO potlu2_user; +ALTER FUNCTION portanova.clean_staffperiodday(vid_staffperioddays json) OWNER TO potlu_user; -- --- Name: clone_staffperiodweekdayhours(text, json); Type: FUNCTION; Schema: portanova; Owner: potlu2_user +-- Name: clone_staffperiodweekdayhours(text, json); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- CREATE FUNCTION portanova.clone_staffperiodweekdayhours(vcopyid text, vpasteids json) RETURNS boolean @@ -170,10 +178,10 @@ CREATE FUNCTION portanova.clone_staffperiodweekdayhours(vcopyid text, vpasteids $$; -ALTER FUNCTION portanova.clone_staffperiodweekdayhours(vcopyid text, vpasteids json) OWNER TO potlu2_user; +ALTER FUNCTION portanova.clone_staffperiodweekdayhours(vcopyid text, vpasteids json) OWNER TO potlu_user; -- --- Name: del_staff(text); Type: FUNCTION; Schema: portanova; Owner: potlu2_user +-- Name: del_staff(text); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- CREATE FUNCTION portanova.del_staff(pid_staff text) RETURNS boolean @@ -186,10 +194,10 @@ end; $$; -ALTER FUNCTION portanova.del_staff(pid_staff text) OWNER TO potlu2_user; +ALTER FUNCTION portanova.del_staff(pid_staff text) OWNER TO potlu_user; -- --- Name: del_staffcontract(text); Type: FUNCTION; Schema: portanova; Owner: potlu2_user +-- Name: del_staffcontract(text); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- CREATE FUNCTION portanova.del_staffcontract(pid_staffcontract text) RETURNS boolean @@ -210,10 +218,10 @@ end; $$; -ALTER FUNCTION portanova.del_staffcontract(pid_staffcontract text) OWNER TO potlu2_user; +ALTER FUNCTION portanova.del_staffcontract(pid_staffcontract text) OWNER TO potlu_user; -- --- Name: delete_workplan(text); Type: FUNCTION; Schema: portanova; Owner: potlu2_user +-- Name: delete_workplan(text); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- CREATE FUNCTION portanova.delete_workplan(pid_workplan text) RETURNS boolean @@ -229,10 +237,10 @@ end; $$; -ALTER FUNCTION portanova.delete_workplan(pid_workplan text) OWNER TO potlu2_user; +ALTER FUNCTION portanova.delete_workplan(pid_workplan text) OWNER TO potlu_user; -- --- Name: duplicate_workplan(text); Type: FUNCTION; Schema: portanova; Owner: potlu2_user +-- Name: duplicate_workplan(text); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- CREATE FUNCTION portanova.duplicate_workplan(pid_workplan text) RETURNS text @@ -251,10 +259,10 @@ end; $$; -ALTER FUNCTION portanova.duplicate_workplan(pid_workplan text) OWNER TO potlu2_user; +ALTER FUNCTION portanova.duplicate_workplan(pid_workplan text) OWNER TO potlu_user; -- --- Name: getperiod_staffcontract(text); Type: FUNCTION; Schema: portanova; Owner: potlu2_user +-- Name: getperiod_staffcontract(text); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- CREATE FUNCTION portanova.getperiod_staffcontract(pid text) RETURNS TABLE(id text, id_staff text, startdate date, enddate date) @@ -277,10 +285,10 @@ END; $$; -ALTER FUNCTION portanova.getperiod_staffcontract(pid text) OWNER TO potlu2_user; +ALTER FUNCTION portanova.getperiod_staffcontract(pid text) OWNER TO potlu_user; -- --- Name: getperiod_staffcontractdata(text); Type: FUNCTION; Schema: portanova; Owner: potlu2_user +-- Name: getperiod_staffcontractdata(text); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- CREATE FUNCTION portanova.getperiod_staffcontractdata(pid text) RETURNS TABLE(id text, id_staff text, startdate date, enddate date, weekdays integer, weekhours interval, wdcontracthours interval) @@ -304,10 +312,10 @@ END; $$; -ALTER FUNCTION portanova.getperiod_staffcontractdata(pid text) OWNER TO potlu2_user; +ALTER FUNCTION portanova.getperiod_staffcontractdata(pid text) OWNER TO potlu_user; -- --- Name: refresh_periods(); Type: FUNCTION; Schema: portanova; Owner: potlu2_user +-- Name: refresh_periods(); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- CREATE FUNCTION portanova.refresh_periods() RETURNS boolean @@ -325,10 +333,10 @@ CREATE FUNCTION portanova.refresh_periods() RETURNS boolean $$; -ALTER FUNCTION portanova.refresh_periods() OWNER TO potlu2_user; +ALTER FUNCTION portanova.refresh_periods() OWNER TO potlu_user; -- --- Name: replace_staffperiodweekdayhours(text, boolean, boolean, json); Type: FUNCTION; Schema: portanova; Owner: potlu2_user +-- Name: replace_staffperiodweekdayhours(text, boolean, boolean, json); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- CREATE FUNCTION portanova.replace_staffperiodweekdayhours(vworkplanid text, vkeepvac boolean, vkeeprec boolean, vreplaceids json) RETURNS boolean @@ -357,10 +365,10 @@ CREATE FUNCTION portanova.replace_staffperiodweekdayhours(vworkplanid text, vkee $$; -ALTER FUNCTION portanova.replace_staffperiodweekdayhours(vworkplanid text, vkeepvac boolean, vkeeprec boolean, vreplaceids json) OWNER TO potlu2_user; +ALTER FUNCTION portanova.replace_staffperiodweekdayhours(vworkplanid text, vkeepvac boolean, vkeeprec boolean, vreplaceids json) OWNER TO potlu_user; -- --- Name: set_staffperiod(text, text); Type: FUNCTION; Schema: portanova; Owner: potlu2_user +-- Name: set_staffperiod(text, text); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- CREATE FUNCTION portanova.set_staffperiod(pid_period text, pid_staff text) RETURNS boolean @@ -394,10 +402,10 @@ from portanova.staffreportperiodweeks where id_staff=pid_staff and id_reportperi $$; -ALTER FUNCTION portanova.set_staffperiod(pid_period text, pid_staff text) OWNER TO potlu2_user; +ALTER FUNCTION portanova.set_staffperiod(pid_period text, pid_staff text) OWNER TO potlu_user; -- --- Name: set_staffperiod_sums(text, text); Type: FUNCTION; Schema: portanova; Owner: potlu2_user +-- Name: set_staffperiod_sums(text, text); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- CREATE FUNCTION portanova.set_staffperiod_sums(pid_period text, pid_staff text) RETURNS boolean @@ -407,12 +415,12 @@ CREATE FUNCTION portanova.set_staffperiod_sums(pid_period text, pid_staff text) weekrec record; BEGIN for weekrec in select id_staff,id_reportperiod, -sum(contracthours) as contracthours, -sum(workhours) as workhours, -sum(vacancyhours) as vacancyhours, -sum(recuperationhours) as recuperationhours, -sum(diffhours) as hoursdiff, -sum(totalhours) as totalhours +sum(case when contracthours is not null then contracthours else '00:00:00'::interval end) as contracthours, +sum(case when workhours is not null then workhours else '00:00:00'::interval end) as workhours, +sum(case when vacancyhours is not null then vacancyhours else '00:00:00'::interval end) as vacancyhours, +sum(case when recuperationhours is not null then recuperationhours else '00:00:00'::interval end) as recuperationhours, +sum(case when diffhours is not null then diffhours else '00:00:00'::interval end) as hoursdiff, +sum(case when totalhours is not null then totalhours else '00:00:00'::interval end) as totalhours from portanova.staffreportperiodweeks where id_staff=pid_staff and id_reportperiod=pid_period group by id_reportperiod,id_staff loop update portanova.staffreportperiod set contracthours=weekrec.contracthours, @@ -430,10 +438,10 @@ from portanova.staffreportperiodweeks where id_staff=pid_staff and id_reportperi $$; -ALTER FUNCTION portanova.set_staffperiod_sums(pid_period text, pid_staff text) OWNER TO potlu2_user; +ALTER FUNCTION portanova.set_staffperiod_sums(pid_period text, pid_staff text) OWNER TO potlu_user; -- --- Name: set_staffperiodday_sums(text); Type: FUNCTION; Schema: portanova; Owner: potlu2_user +-- Name: set_staffperiodday_sums(text); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- CREATE FUNCTION portanova.set_staffperiodday_sums(pid_periodday text) RETURNS text @@ -488,20 +496,20 @@ begin crecuperationhours := stw.contracthours; end if; end if;*/ - cdayhours := cworkhours::interval+coalesce(stw.vacancyhours::interval,'00:00:00'::interval)+coalesce(stw.recuperationhours::interval,'00:00:00'::interval); - /*if cdayhours > '00:00:00'::interval then + cdayhours := cworkhours::interval+coalesce(stw.vacancyhours::interval,'00:00:00'::interval)-coalesce(stw.recuperationhours::interval,'00:00:00'::interval); + if cdayhours > '00:00:00'::interval then ccontracthours := stw.wdcontracthours; - end if;*/ - update portanova.staffreportperioddays set workhours=cworkhours,interruptionhours=cinterruptionhours,dayhours=cdayhours where id=pid_periodday; + end if; + update portanova.staffreportperioddays set workhours=cworkhours,interruptionhours=cinterruptionhours,dayhours=cdayhours,contracthours=ccontracthours where id=pid_periodday; return pid_periodday; end; $$; -ALTER FUNCTION portanova.set_staffperiodday_sums(pid_periodday text) OWNER TO potlu2_user; +ALTER FUNCTION portanova.set_staffperiodday_sums(pid_periodday text) OWNER TO potlu_user; -- --- Name: set_staffperioddays(text, text); Type: FUNCTION; Schema: portanova; Owner: potlu2_user +-- Name: set_staffperioddays(text, text); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- CREATE FUNCTION portanova.set_staffperioddays(pid_period text, pid_staff text) RETURNS boolean @@ -542,10 +550,10 @@ end; $$; -ALTER FUNCTION portanova.set_staffperioddays(pid_period text, pid_staff text) OWNER TO potlu2_user; +ALTER FUNCTION portanova.set_staffperioddays(pid_period text, pid_staff text) OWNER TO potlu_user; -- --- Name: set_staffperiodweek_sums(text, text); Type: FUNCTION; Schema: portanova; Owner: potlu2_user +-- Name: set_staffperiodweek_sums(text, text); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- CREATE FUNCTION portanova.set_staffperiodweek_sums(pid_reportperiod text, pid_staff text) RETURNS boolean @@ -557,15 +565,16 @@ declare freedays int4 := 0; begin -for sweek in select srpd.id_staff,srpd.id_reportperiod,date(date_trunc('week',srpd.daydate)) as weekstart,date_part('week',srpd.daydate) as calweek, +for sweek in +select srpd.id_staff,srpd.id_reportperiod,date(date_trunc('week',srpd.daydate)) as weekstart,date_part('week',srpd.daydate) as calweek, date_part('isoyear',srpd.daydate) as calyear, -coalesce(sum(srpd.workhours::interval),'00:00:00'::interval) as workhours, -coalesce(sum('00:00:00'::interval),'00:00:00'::interval) as trackedhours, -coalesce(sum(srpd.vacancyhours::interval),'00:00:00'::interval) as vacancyhours, -coalesce(sum(srpd.recuperationhours::interval),'00:00:00'::interval) as recuperationhours, -coalesce(sum(srpd.dayhours::interval),'00:00:00'::interval) as totalhours, +sum(case when srpd.workhours is null then '00:00:00'::interval else srpd.workhours::interval end) as workhours, +'00:00:00'::interval as trackedhours, +sum(case when srpd.vacancyhours is null then '00:00:00'::interval else srpd.vacancyhours::interval end ) as vacancyhours, +sum(case when srpd.recuperationhours is null then '00:00:00'::interval else srpd.recuperationhours::interval end) as recuperationhours, +sum(case when srpd.dayhours is null then '00:00:00'::interval else srpd.dayhours::interval end) as totalhours, sum(case when srpd.workhours != '00:00:00'::time then 1 else 0 end) as workdays, -coalesce(sum(contracthours::interval),'00:00:00'::interval) as contracthours +sum(case when srpd.contracthours is null then '00:00:00'::interval else srpd.contracthours::interval end) as contracthours from portanova.staffreportperioddays srpd join portanova.reportperiod rp on (rp.id=srpd.id_reportperiod) where srpd.id_reportperiod =pid_reportperiod and srpd.id_staff=pid_staff @@ -576,9 +585,10 @@ loop trackedhours=sweek.trackedhours, vacancyhours=sweek.vacancyhours, recuperationhours=sweek.recuperationhours, - diffhours=case when sweek.contracthours is null or sweek.contracthours='00:00:00'::interval then null else sweek.totalhours-sweek.contracthours end, + diffhours=case when sweek.contracthours is null or sweek.contracthours::interval='00:00:00'::interval then null else sweek.totalhours-sweek.contracthours end, totalhours=sweek.totalhours, - workdays=sweek.workdays + workdays=sweek.workdays, + contracthours=sweek.contracthours where id_staff=sweek.id_staff and id_reportperiod=sweek.id_reportperiod and weekstart=sweek.weekstart; end loop; --raise notice 'UPDATE WEEK SUMS %',sweek; @@ -614,10 +624,10 @@ end; $$; -ALTER FUNCTION portanova.set_staffperiodweek_sums(pid_reportperiod text, pid_staff text) OWNER TO potlu2_user; +ALTER FUNCTION portanova.set_staffperiodweek_sums(pid_reportperiod text, pid_staff text) OWNER TO potlu_user; -- --- Name: set_staffperiodweeks(text, text); Type: FUNCTION; Schema: portanova; Owner: potlu2_user +-- Name: set_staffperiodweeks(text, text); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- CREATE FUNCTION portanova.set_staffperiodweeks(pid_reportperiod text, pid_staff text) RETURNS boolean @@ -656,10 +666,10 @@ end; $$; -ALTER FUNCTION portanova.set_staffperiodweeks(pid_reportperiod text, pid_staff text) OWNER TO potlu2_user; +ALTER FUNCTION portanova.set_staffperiodweeks(pid_reportperiod text, pid_staff text) OWNER TO potlu_user; -- --- Name: set_stafftoperiodweeks(text, text); Type: FUNCTION; Schema: portanova; Owner: potlu2_user +-- Name: set_stafftoperiodweeks(text, text); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- CREATE FUNCTION portanova.set_stafftoperiodweeks(pid_reportperiod text, pid_staff text) RETURNS boolean @@ -703,10 +713,10 @@ end; $$; -ALTER FUNCTION portanova.set_stafftoperiodweeks(pid_reportperiod text, pid_staff text) OWNER TO potlu2_user; +ALTER FUNCTION portanova.set_stafftoperiodweeks(pid_reportperiod text, pid_staff text) OWNER TO potlu_user; -- --- Name: setworkplan_weekdata(text); Type: FUNCTION; Schema: portanova; Owner: potlu2_user +-- Name: setworkplan_weekdata(text); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- CREATE FUNCTION portanova.setworkplan_weekdata(pid_workplan text) RETURNS boolean @@ -733,10 +743,10 @@ end; $$; -ALTER FUNCTION portanova.setworkplan_weekdata(pid_workplan text) OWNER TO potlu2_user; +ALTER FUNCTION portanova.setworkplan_weekdata(pid_workplan text) OWNER TO potlu_user; -- --- Name: trg_after_upd_staffcontract(); Type: FUNCTION; Schema: portanova; Owner: potlu2_user +-- Name: trg_after_upd_staffcontract(); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- CREATE FUNCTION portanova.trg_after_upd_staffcontract() RETURNS trigger @@ -771,10 +781,10 @@ CREATE FUNCTION portanova.trg_after_upd_staffcontract() RETURNS trigger $$; -ALTER FUNCTION portanova.trg_after_upd_staffcontract() OWNER TO potlu2_user; +ALTER FUNCTION portanova.trg_after_upd_staffcontract() OWNER TO potlu_user; -- --- Name: trg_after_upd_worplanday(); Type: FUNCTION; Schema: portanova; Owner: potlu2_user +-- Name: trg_after_upd_worplanday(); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- CREATE FUNCTION portanova.trg_after_upd_worplanday() RETURNS trigger @@ -787,10 +797,10 @@ CREATE FUNCTION portanova.trg_after_upd_worplanday() RETURNS trigger $$; -ALTER FUNCTION portanova.trg_after_upd_worplanday() OWNER TO potlu2_user; +ALTER FUNCTION portanova.trg_after_upd_worplanday() OWNER TO potlu_user; -- --- Name: trg_before_upd_schematable(); Type: FUNCTION; Schema: portanova; Owner: potlu2_user +-- Name: trg_before_upd_schematable(); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- CREATE FUNCTION portanova.trg_before_upd_schematable() RETURNS trigger @@ -803,10 +813,10 @@ CREATE FUNCTION portanova.trg_before_upd_schematable() RETURNS trigger $$; -ALTER FUNCTION portanova.trg_before_upd_schematable() OWNER TO potlu2_user; +ALTER FUNCTION portanova.trg_before_upd_schematable() OWNER TO potlu_user; -- --- Name: update_all_staff_in_period(text); Type: FUNCTION; Schema: portanova; Owner: potlu2_user +-- Name: update_all_staff_in_period(text); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- CREATE FUNCTION portanova.update_all_staff_in_period(pid_period text) RETURNS boolean @@ -825,10 +835,10 @@ CREATE FUNCTION portanova.update_all_staff_in_period(pid_period text) RETURNS bo $$; -ALTER FUNCTION portanova.update_all_staff_in_period(pid_period text) OWNER TO potlu2_user; +ALTER FUNCTION portanova.update_all_staff_in_period(pid_period text) OWNER TO potlu_user; -- --- Name: update_periodsums_byid(json); Type: FUNCTION; Schema: portanova; Owner: potlu2_user +-- Name: update_periodsums_byid(json); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- CREATE FUNCTION portanova.update_periodsums_byid(vdayids json) RETURNS boolean @@ -853,10 +863,10 @@ BEGIN $$; -ALTER FUNCTION portanova.update_periodsums_byid(vdayids json) OWNER TO potlu2_user; +ALTER FUNCTION portanova.update_periodsums_byid(vdayids json) OWNER TO potlu_user; -- --- Name: update_staff_in_period(text, text); Type: FUNCTION; Schema: portanova; Owner: potlu2_user +-- Name: update_staff_in_period(text, text); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- CREATE FUNCTION portanova.update_staff_in_period(pid_period text, pid_staff text) RETURNS boolean @@ -880,10 +890,10 @@ CREATE FUNCTION portanova.update_staff_in_period(pid_period text, pid_staff text $$; -ALTER FUNCTION portanova.update_staff_in_period(pid_period text, pid_staff text) OWNER TO potlu2_user; +ALTER FUNCTION portanova.update_staff_in_period(pid_period text, pid_staff text) OWNER TO potlu_user; -- --- Name: update_staffreportperiod(text, text); Type: FUNCTION; Schema: portanova; Owner: potlu2_user +-- Name: update_staffreportperiod(text, text); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- CREATE FUNCTION portanova.update_staffreportperiod(pid_reportperiod text, pid_staff text) RETURNS boolean @@ -904,10 +914,10 @@ end; $$; -ALTER FUNCTION portanova.update_staffreportperiod(pid_reportperiod text, pid_staff text) OWNER TO potlu2_user; +ALTER FUNCTION portanova.update_staffreportperiod(pid_reportperiod text, pid_staff text) OWNER TO potlu_user; -- --- Name: verify_perioddays(text, text); Type: FUNCTION; Schema: portanova; Owner: potlu2_user +-- Name: verify_perioddays(text, text); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- CREATE FUNCTION portanova.verify_perioddays(pid_period text, pid_staff text) RETURNS boolean @@ -932,10 +942,10 @@ end; $$; -ALTER FUNCTION portanova.verify_perioddays(pid_period text, pid_staff text) OWNER TO potlu2_user; +ALTER FUNCTION portanova.verify_perioddays(pid_period text, pid_staff text) OWNER TO potlu_user; -- --- Name: workplan_replaceday(text, text); Type: FUNCTION; Schema: portanova; Owner: potlu2_user +-- Name: workplan_replaceday(text, text); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- CREATE FUNCTION portanova.workplan_replaceday(pid_copy text, pid_paste text) RETURNS boolean @@ -951,10 +961,10 @@ end; $$; -ALTER FUNCTION portanova.workplan_replaceday(pid_copy text, pid_paste text) OWNER TO potlu2_user; +ALTER FUNCTION portanova.workplan_replaceday(pid_copy text, pid_paste text) OWNER TO potlu_user; -- --- Name: add_schemalink(text, text); Type: FUNCTION; Schema: public; Owner: potlu2_user +-- Name: add_schemalink(text, text); Type: FUNCTION; Schema: public; Owner: potlu_user -- CREATE FUNCTION public.add_schemalink(vdatatsetname text, vschemaname text) RETURNS text @@ -969,10 +979,10 @@ end; $$; -ALTER FUNCTION public.add_schemalink(vdatatsetname text, vschemaname text) OWNER TO potlu2_user; +ALTER FUNCTION public.add_schemalink(vdatatsetname text, vschemaname text) OWNER TO potlu_user; -- --- Name: checklogin(text, text, text, text); Type: FUNCTION; Schema: public; Owner: potlu2_user +-- Name: checklogin(text, text, text, text); Type: FUNCTION; Schema: public; Owner: potlu_user -- CREATE FUNCTION public.checklogin(vusername text, vpassword text, vremoteaddr text, vuseragent text) RETURNS text @@ -997,10 +1007,10 @@ end; $$; -ALTER FUNCTION public.checklogin(vusername text, vpassword text, vremoteaddr text, vuseragent text) OWNER TO potlu2_user; +ALTER FUNCTION public.checklogin(vusername text, vpassword text, vremoteaddr text, vuseragent text) OWNER TO potlu_user; -- --- Name: day_name(text); Type: FUNCTION; Schema: public; Owner: potlu2_user +-- Name: day_name(text); Type: FUNCTION; Schema: public; Owner: potlu_user -- CREATE FUNCTION public.day_name(day_index text) RETURNS text @@ -1019,10 +1029,10 @@ CREATE FUNCTION public.day_name(day_index text) RETURNS text $$; -ALTER FUNCTION public.day_name(day_index text) OWNER TO potlu2_user; +ALTER FUNCTION public.day_name(day_index text) OWNER TO potlu_user; -- --- Name: getsession(text, text, text); Type: FUNCTION; Schema: public; Owner: potlu2_user +-- Name: getsession(text, text, text); Type: FUNCTION; Schema: public; Owner: potlu_user -- CREATE FUNCTION public.getsession(vidsession text, vremoteaddr text, vuseragent text) RETURNS TABLE(idsession text, id text, username text, usergroup text, sessiondata json) @@ -1038,10 +1048,10 @@ us.blocked is null group by se.id,us.id,ugrp.id; $$; -ALTER FUNCTION public.getsession(vidsession text, vremoteaddr text, vuseragent text) OWNER TO potlu2_user; +ALTER FUNCTION public.getsession(vidsession text, vremoteaddr text, vuseragent text) OWNER TO potlu_user; -- --- Name: getuuid(); Type: FUNCTION; Schema: public; Owner: potlu2_user +-- Name: getuuid(); Type: FUNCTION; Schema: public; Owner: potlu_user -- CREATE FUNCTION public.getuuid() RETURNS text @@ -1056,10 +1066,10 @@ END; $$; -ALTER FUNCTION public.getuuid() OWNER TO potlu2_user; +ALTER FUNCTION public.getuuid() OWNER TO potlu_user; -- --- Name: random_string(integer); Type: FUNCTION; Schema: public; Owner: potlu2_user +-- Name: random_string(integer); Type: FUNCTION; Schema: public; Owner: potlu_user -- CREATE FUNCTION public.random_string(vlength integer) RETURNS text @@ -1075,10 +1085,10 @@ end; $$; -ALTER FUNCTION public.random_string(vlength integer) OWNER TO potlu2_user; +ALTER FUNCTION public.random_string(vlength integer) OWNER TO potlu_user; -- --- Name: setjsonkeyvalue(text, text, text, text, text, text); Type: FUNCTION; Schema: public; Owner: potlu2_user +-- Name: setjsonkeyvalue(text, text, text, text, text, text); Type: FUNCTION; Schema: public; Owner: potlu_user -- CREATE FUNCTION public.setjsonkeyvalue(vschemata text, vtable text, vcol text, vid text, vkey text, vvalue text) RETURNS json @@ -1096,10 +1106,10 @@ END; $$; -ALTER FUNCTION public.setjsonkeyvalue(vschemata text, vtable text, vcol text, vid text, vkey text, vvalue text) OWNER TO potlu2_user; +ALTER FUNCTION public.setjsonkeyvalue(vschemata text, vtable text, vcol text, vid text, vkey text, vvalue text) OWNER TO potlu_user; -- --- Name: setsessiondata(text, text, text); Type: FUNCTION; Schema: public; Owner: potlu2_user +-- Name: setsessiondata(text, text, text); Type: FUNCTION; Schema: public; Owner: potlu_user -- CREATE FUNCTION public.setsessiondata(vsid text, vkey text, vvalue text) RETURNS json @@ -1114,10 +1124,10 @@ CREATE FUNCTION public.setsessiondata(vsid text, vkey text, vvalue text) RETURNS $$; -ALTER FUNCTION public.setsessiondata(vsid text, vkey text, vvalue text) OWNER TO potlu2_user; +ALTER FUNCTION public.setsessiondata(vsid text, vkey text, vvalue text) OWNER TO potlu_user; -- --- Name: trg_update_modified(); Type: FUNCTION; Schema: public; Owner: potlu2_user +-- Name: trg_update_modified(); Type: FUNCTION; Schema: public; Owner: potlu_user -- CREATE FUNCTION public.trg_update_modified() RETURNS trigger @@ -1131,10 +1141,10 @@ CREATE FUNCTION public.trg_update_modified() RETURNS trigger $$; -ALTER FUNCTION public.trg_update_modified() OWNER TO potlu2_user; +ALTER FUNCTION public.trg_update_modified() OWNER TO potlu_user; -- --- Name: add_reportperiod(); Type: FUNCTION; Schema: testmyapp; Owner: potlu2_user +-- Name: add_reportperiod(); Type: FUNCTION; Schema: testmyapp; Owner: potlu_user -- CREATE FUNCTION testmyapp.add_reportperiod() RETURNS text @@ -1162,10 +1172,10 @@ end; $$; -ALTER FUNCTION testmyapp.add_reportperiod() OWNER TO potlu2_user; +ALTER FUNCTION testmyapp.add_reportperiod() OWNER TO potlu_user; -- --- Name: getperiod_staffcontract(text); Type: FUNCTION; Schema: testmyapp; Owner: potlu2_user +-- Name: getperiod_staffcontract(text); Type: FUNCTION; Schema: testmyapp; Owner: potlu_user -- CREATE FUNCTION testmyapp.getperiod_staffcontract(pid text) RETURNS TABLE(id text, id_staff text, startdate date, enddate date, weekhours interval, weekdays integer, id_workplan text, defaultfreedays json) @@ -1187,10 +1197,10 @@ END; $$; -ALTER FUNCTION testmyapp.getperiod_staffcontract(pid text) OWNER TO potlu2_user; +ALTER FUNCTION testmyapp.getperiod_staffcontract(pid text) OWNER TO potlu_user; -- --- Name: getperiod_staffcontract(date, date); Type: FUNCTION; Schema: testmyapp; Owner: potlu2_user +-- Name: getperiod_staffcontract(date, date); Type: FUNCTION; Schema: testmyapp; Owner: potlu_user -- CREATE FUNCTION testmyapp.getperiod_staffcontract(pstart date, pend date) RETURNS TABLE(id text, id_staff text, startdate date, enddate date, weekhours interval, weekdays integer, id_workplan text) @@ -1206,10 +1216,10 @@ END; $$; -ALTER FUNCTION testmyapp.getperiod_staffcontract(pstart date, pend date) OWNER TO potlu2_user; +ALTER FUNCTION testmyapp.getperiod_staffcontract(pstart date, pend date) OWNER TO potlu_user; -- --- Name: onchange_reportperiod(text); Type: FUNCTION; Schema: testmyapp; Owner: potlu2_user +-- Name: onchange_reportperiod(text); Type: FUNCTION; Schema: testmyapp; Owner: potlu_user -- CREATE FUNCTION testmyapp.onchange_reportperiod(pid_period text) RETURNS boolean @@ -1231,10 +1241,10 @@ end; $$; -ALTER FUNCTION testmyapp.onchange_reportperiod(pid_period text) OWNER TO potlu2_user; +ALTER FUNCTION testmyapp.onchange_reportperiod(pid_period text) OWNER TO potlu_user; -- --- Name: refresh_periods(); Type: FUNCTION; Schema: testmyapp; Owner: potlu2_user +-- Name: refresh_periods(); Type: FUNCTION; Schema: testmyapp; Owner: potlu_user -- CREATE FUNCTION testmyapp.refresh_periods() RETURNS boolean @@ -1252,10 +1262,10 @@ CREATE FUNCTION testmyapp.refresh_periods() RETURNS boolean $$; -ALTER FUNCTION testmyapp.refresh_periods() OWNER TO potlu2_user; +ALTER FUNCTION testmyapp.refresh_periods() OWNER TO potlu_user; -- --- Name: set_periodday_sums(text); Type: FUNCTION; Schema: testmyapp; Owner: potlu2_user +-- Name: set_periodday_sums(text); Type: FUNCTION; Schema: testmyapp; Owner: potlu_user -- CREATE FUNCTION testmyapp.set_periodday_sums(pid_periodday text) RETURNS text @@ -1309,10 +1319,10 @@ end; $$; -ALTER FUNCTION testmyapp.set_periodday_sums(pid_periodday text) OWNER TO potlu2_user; +ALTER FUNCTION testmyapp.set_periodday_sums(pid_periodday text) OWNER TO potlu_user; -- --- Name: set_staffperiod_sums(text, text); Type: FUNCTION; Schema: testmyapp; Owner: potlu2_user +-- Name: set_staffperiod_sums(text, text); Type: FUNCTION; Schema: testmyapp; Owner: potlu_user -- CREATE FUNCTION testmyapp.set_staffperiod_sums(pid_period text, pid_staff text) RETURNS boolean @@ -1345,10 +1355,10 @@ from testmyapp.staffreportperiodweeks where id_staff=pid_staff and id_reportperi $$; -ALTER FUNCTION testmyapp.set_staffperiod_sums(pid_period text, pid_staff text) OWNER TO potlu2_user; +ALTER FUNCTION testmyapp.set_staffperiod_sums(pid_period text, pid_staff text) OWNER TO potlu_user; -- --- Name: set_staffperiodweek_sums(text, text); Type: FUNCTION; Schema: testmyapp; Owner: potlu2_user +-- Name: set_staffperiodweek_sums(text, text); Type: FUNCTION; Schema: testmyapp; Owner: potlu_user -- CREATE FUNCTION testmyapp.set_staffperiodweek_sums(pid_reportperiod text, pid_staff text) RETURNS boolean @@ -1398,10 +1408,10 @@ end; $$; -ALTER FUNCTION testmyapp.set_staffperiodweek_sums(pid_reportperiod text, pid_staff text) OWNER TO potlu2_user; +ALTER FUNCTION testmyapp.set_staffperiodweek_sums(pid_reportperiod text, pid_staff text) OWNER TO potlu_user; -- --- Name: set_stafftoperioddays(text, text); Type: FUNCTION; Schema: testmyapp; Owner: potlu2_user +-- Name: set_stafftoperioddays(text, text); Type: FUNCTION; Schema: testmyapp; Owner: potlu_user -- CREATE FUNCTION testmyapp.set_stafftoperioddays(pid_period text, pid_staff text) RETURNS boolean @@ -1457,10 +1467,10 @@ end; $$; -ALTER FUNCTION testmyapp.set_stafftoperioddays(pid_period text, pid_staff text) OWNER TO potlu2_user; +ALTER FUNCTION testmyapp.set_stafftoperioddays(pid_period text, pid_staff text) OWNER TO potlu_user; -- --- Name: set_stafftoperiodweeks(text, text); Type: FUNCTION; Schema: testmyapp; Owner: potlu2_user +-- Name: set_stafftoperiodweeks(text, text); Type: FUNCTION; Schema: testmyapp; Owner: potlu_user -- CREATE FUNCTION testmyapp.set_stafftoperiodweeks(pid_reportperiod text, pid_staff text) RETURNS boolean @@ -1503,10 +1513,10 @@ end; $$; -ALTER FUNCTION testmyapp.set_stafftoperiodweeks(pid_reportperiod text, pid_staff text) OWNER TO potlu2_user; +ALTER FUNCTION testmyapp.set_stafftoperiodweeks(pid_reportperiod text, pid_staff text) OWNER TO potlu_user; -- --- Name: update_all_staff_in_period(text); Type: FUNCTION; Schema: testmyapp; Owner: potlu2_user +-- Name: update_all_staff_in_period(text); Type: FUNCTION; Schema: testmyapp; Owner: potlu_user -- CREATE FUNCTION testmyapp.update_all_staff_in_period(pid_period text) RETURNS boolean @@ -1525,10 +1535,10 @@ CREATE FUNCTION testmyapp.update_all_staff_in_period(pid_period text) RETURNS bo $$; -ALTER FUNCTION testmyapp.update_all_staff_in_period(pid_period text) OWNER TO potlu2_user; +ALTER FUNCTION testmyapp.update_all_staff_in_period(pid_period text) OWNER TO potlu_user; -- --- Name: update_staff_in_period(text, text); Type: FUNCTION; Schema: testmyapp; Owner: potlu2_user +-- Name: update_staff_in_period(text, text); Type: FUNCTION; Schema: testmyapp; Owner: potlu_user -- CREATE FUNCTION testmyapp.update_staff_in_period(pid_period text, pid_staff text) RETURNS boolean @@ -1547,10 +1557,10 @@ CREATE FUNCTION testmyapp.update_staff_in_period(pid_period text, pid_staff text $$; -ALTER FUNCTION testmyapp.update_staff_in_period(pid_period text, pid_staff text) OWNER TO potlu2_user; +ALTER FUNCTION testmyapp.update_staff_in_period(pid_period text, pid_staff text) OWNER TO potlu_user; -- --- Name: update_staffreportperiod(text, text); Type: FUNCTION; Schema: testmyapp; Owner: potlu2_user +-- Name: update_staffreportperiod(text, text); Type: FUNCTION; Schema: testmyapp; Owner: potlu_user -- CREATE FUNCTION testmyapp.update_staffreportperiod(pid_reportperiod text, pid_staff text) RETURNS boolean @@ -1571,10 +1581,10 @@ end; $$; -ALTER FUNCTION testmyapp.update_staffreportperiod(pid_reportperiod text, pid_staff text) OWNER TO potlu2_user; +ALTER FUNCTION testmyapp.update_staffreportperiod(pid_reportperiod text, pid_staff text) OWNER TO potlu_user; -- --- Name: update_staffweeksums(text); Type: FUNCTION; Schema: testmyapp; Owner: potlu2_user +-- Name: update_staffweeksums(text); Type: FUNCTION; Schema: testmyapp; Owner: potlu_user -- CREATE FUNCTION testmyapp.update_staffweeksums(pid_staffworkplan text) RETURNS void @@ -1597,10 +1607,10 @@ end; $$; -ALTER FUNCTION testmyapp.update_staffweeksums(pid_staffworkplan text) OWNER TO potlu2_user; +ALTER FUNCTION testmyapp.update_staffweeksums(pid_staffworkplan text) OWNER TO potlu_user; -- --- Name: update_staffworkplan(text, text); Type: FUNCTION; Schema: testmyapp; Owner: potlu2_user +-- Name: update_staffworkplan(text, text); Type: FUNCTION; Schema: testmyapp; Owner: potlu_user -- CREATE FUNCTION testmyapp.update_staffworkplan(pid_period text, pid_staff text) RETURNS boolean @@ -1651,10 +1661,10 @@ end; $$; -ALTER FUNCTION testmyapp.update_staffworkplan(pid_period text, pid_staff text) OWNER TO potlu2_user; +ALTER FUNCTION testmyapp.update_staffworkplan(pid_period text, pid_staff text) OWNER TO potlu_user; -- --- Name: verify_perioddays(text, text); Type: FUNCTION; Schema: testmyapp; Owner: potlu2_user +-- Name: verify_perioddays(text, text); Type: FUNCTION; Schema: testmyapp; Owner: potlu_user -- CREATE FUNCTION testmyapp.verify_perioddays(pid_period text, pid_staff text) RETURNS boolean @@ -1692,10 +1702,10 @@ end; $$; -ALTER FUNCTION testmyapp.verify_perioddays(pid_period text, pid_staff text) OWNER TO potlu2_user; +ALTER FUNCTION testmyapp.verify_perioddays(pid_period text, pid_staff text) OWNER TO potlu_user; -- --- Name: zzold_onchange_reportperiod(text); Type: FUNCTION; Schema: testmyapp; Owner: potlu2_user +-- Name: zzold_onchange_reportperiod(text); Type: FUNCTION; Schema: testmyapp; Owner: potlu_user -- CREATE FUNCTION testmyapp.zzold_onchange_reportperiod(pid_period text) RETURNS boolean @@ -1717,10 +1727,10 @@ end; $$; -ALTER FUNCTION testmyapp.zzold_onchange_reportperiod(pid_period text) OWNER TO potlu2_user; +ALTER FUNCTION testmyapp.zzold_onchange_reportperiod(pid_period text) OWNER TO potlu_user; -- --- Name: zzold_set_staffperiod(text); Type: FUNCTION; Schema: testmyapp; Owner: potlu2_user +-- Name: zzold_set_staffperiod(text); Type: FUNCTION; Schema: testmyapp; Owner: potlu_user -- CREATE FUNCTION testmyapp.zzold_set_staffperiod(pid_period text) RETURNS boolean @@ -1746,14 +1756,14 @@ CREATE FUNCTION testmyapp.zzold_set_staffperiod(pid_period text) RETURNS boolean $$; -ALTER FUNCTION testmyapp.zzold_set_staffperiod(pid_period text) OWNER TO potlu2_user; +ALTER FUNCTION testmyapp.zzold_set_staffperiod(pid_period text) OWNER TO potlu_user; SET default_tablespace = ''; SET default_with_oids = false; -- --- Name: reportperiod; Type: TABLE; Schema: portanova; Owner: potlu2_user +-- Name: reportperiod; Type: TABLE; Schema: portanova; Owner: potlu_user -- CREATE TABLE portanova.reportperiod ( @@ -1767,10 +1777,10 @@ CREATE TABLE portanova.reportperiod ( ); -ALTER TABLE portanova.reportperiod OWNER TO potlu2_user; +ALTER TABLE portanova.reportperiod OWNER TO potlu_user; -- --- Name: reports; Type: TABLE; Schema: portanova; Owner: potlu2_user +-- Name: reports; Type: TABLE; Schema: portanova; Owner: potlu_user -- CREATE TABLE portanova.reports ( @@ -1795,10 +1805,10 @@ CREATE TABLE portanova.reports ( ); -ALTER TABLE portanova.reports OWNER TO potlu2_user; +ALTER TABLE portanova.reports OWNER TO potlu_user; -- --- Name: staff; Type: TABLE; Schema: portanova; Owner: potlu2_user +-- Name: staff; Type: TABLE; Schema: portanova; Owner: potlu_user -- CREATE TABLE portanova.staff ( @@ -1822,10 +1832,10 @@ CREATE TABLE portanova.staff ( ); -ALTER TABLE portanova.staff OWNER TO potlu2_user; +ALTER TABLE portanova.staff OWNER TO potlu_user; -- --- Name: staffcontract; Type: TABLE; Schema: portanova; Owner: potlu2_user +-- Name: staffcontract; Type: TABLE; Schema: portanova; Owner: potlu_user -- CREATE TABLE portanova.staffcontract ( @@ -1842,10 +1852,10 @@ CREATE TABLE portanova.staffcontract ( ); -ALTER TABLE portanova.staffcontract OWNER TO potlu2_user; +ALTER TABLE portanova.staffcontract OWNER TO potlu_user; -- --- Name: staffgroups; Type: TABLE; Schema: portanova; Owner: potlu2_user +-- Name: staffgroups; Type: TABLE; Schema: portanova; Owner: potlu_user -- CREATE TABLE portanova.staffgroups ( @@ -1859,10 +1869,10 @@ CREATE TABLE portanova.staffgroups ( ); -ALTER TABLE portanova.staffgroups OWNER TO potlu2_user; +ALTER TABLE portanova.staffgroups OWNER TO potlu_user; -- --- Name: staffreportperiod; Type: TABLE; Schema: portanova; Owner: potlu2_user +-- Name: staffreportperiod; Type: TABLE; Schema: portanova; Owner: potlu_user -- CREATE TABLE portanova.staffreportperiod ( @@ -1882,10 +1892,10 @@ CREATE TABLE portanova.staffreportperiod ( ); -ALTER TABLE portanova.staffreportperiod OWNER TO potlu2_user; +ALTER TABLE portanova.staffreportperiod OWNER TO potlu_user; -- --- Name: staffreportperioddays; Type: TABLE; Schema: portanova; Owner: potlu2_user +-- Name: staffreportperioddays; Type: TABLE; Schema: portanova; Owner: potlu_user -- CREATE TABLE portanova.staffreportperioddays ( @@ -1915,10 +1925,10 @@ CREATE TABLE portanova.staffreportperioddays ( ); -ALTER TABLE portanova.staffreportperioddays OWNER TO potlu2_user; +ALTER TABLE portanova.staffreportperioddays OWNER TO potlu_user; -- --- Name: staffreportperiodweeks; Type: TABLE; Schema: portanova; Owner: potlu2_user +-- Name: staffreportperiodweeks; Type: TABLE; Schema: portanova; Owner: potlu_user -- CREATE TABLE portanova.staffreportperiodweeks ( @@ -1944,10 +1954,10 @@ CREATE TABLE portanova.staffreportperiodweeks ( ); -ALTER TABLE portanova.staffreportperiodweeks OWNER TO potlu2_user; +ALTER TABLE portanova.staffreportperiodweeks OWNER TO potlu_user; -- --- Name: staffvacancy; Type: TABLE; Schema: portanova; Owner: potlu2_user +-- Name: staffvacancy; Type: TABLE; Schema: portanova; Owner: potlu_user -- CREATE TABLE portanova.staffvacancy ( @@ -1961,10 +1971,10 @@ CREATE TABLE portanova.staffvacancy ( ); -ALTER TABLE portanova.staffvacancy OWNER TO potlu2_user; +ALTER TABLE portanova.staffvacancy OWNER TO potlu_user; -- --- Name: vacancydays; Type: TABLE; Schema: portanova; Owner: potlu2_user +-- Name: vacancydays; Type: TABLE; Schema: portanova; Owner: potlu_user -- CREATE TABLE portanova.vacancydays ( @@ -1976,10 +1986,10 @@ CREATE TABLE portanova.vacancydays ( ); -ALTER TABLE portanova.vacancydays OWNER TO potlu2_user; +ALTER TABLE portanova.vacancydays OWNER TO potlu_user; -- --- Name: vacancytypes; Type: TABLE; Schema: portanova; Owner: potlu2_user +-- Name: vacancytypes; Type: TABLE; Schema: portanova; Owner: potlu_user -- CREATE TABLE portanova.vacancytypes ( @@ -1993,10 +2003,10 @@ CREATE TABLE portanova.vacancytypes ( ); -ALTER TABLE portanova.vacancytypes OWNER TO potlu2_user; +ALTER TABLE portanova.vacancytypes OWNER TO potlu_user; -- --- Name: vw_reportperioddata; Type: VIEW; Schema: portanova; Owner: potlu2_user +-- Name: vw_reportperioddata; Type: VIEW; Schema: portanova; Owner: potlu_user -- CREATE VIEW portanova.vw_reportperioddata AS @@ -2008,10 +2018,10 @@ CREATE VIEW portanova.vw_reportperioddata AS FROM portanova.reportperiod rp; -ALTER TABLE portanova.vw_reportperioddata OWNER TO potlu2_user; +ALTER TABLE portanova.vw_reportperioddata OWNER TO potlu_user; -- --- Name: vw_reportperiodlist; Type: VIEW; Schema: portanova; Owner: potlu2_user +-- Name: vw_reportperiodlist; Type: VIEW; Schema: portanova; Owner: potlu_user -- CREATE VIEW portanova.vw_reportperiodlist AS @@ -2023,10 +2033,10 @@ CREATE VIEW portanova.vw_reportperiodlist AS FROM portanova.reportperiod rp; -ALTER TABLE portanova.vw_reportperiodlist OWNER TO potlu2_user; +ALTER TABLE portanova.vw_reportperiodlist OWNER TO potlu_user; -- --- Name: vw_rplbygrpname; Type: VIEW; Schema: portanova; Owner: potlu2_user +-- Name: vw_rplbygrpname; Type: VIEW; Schema: portanova; Owner: potlu_user -- CREATE VIEW portanova.vw_rplbygrpname AS @@ -2043,10 +2053,10 @@ CREATE VIEW portanova.vw_rplbygrpname AS ORDER BY sgr.groupname, rp.startdate, rp.enddate; -ALTER TABLE portanova.vw_rplbygrpname OWNER TO potlu2_user; +ALTER TABLE portanova.vw_rplbygrpname OWNER TO potlu_user; -- --- Name: vw_staffcontractdata; Type: VIEW; Schema: portanova; Owner: potlu2_user +-- Name: vw_staffcontractdata; Type: VIEW; Schema: portanova; Owner: potlu_user -- CREATE VIEW portanova.vw_staffcontractdata AS @@ -2064,10 +2074,10 @@ CREATE VIEW portanova.vw_staffcontractdata AS WHERE (st.isdeleted IS NULL); -ALTER TABLE portanova.vw_staffcontractdata OWNER TO potlu2_user; +ALTER TABLE portanova.vw_staffcontractdata OWNER TO potlu_user; -- --- Name: workplans; Type: TABLE; Schema: portanova; Owner: potlu2_user +-- Name: workplans; Type: TABLE; Schema: portanova; Owner: potlu_user -- CREATE TABLE portanova.workplans ( @@ -2082,10 +2092,10 @@ CREATE TABLE portanova.workplans ( ); -ALTER TABLE portanova.workplans OWNER TO potlu2_user; +ALTER TABLE portanova.workplans OWNER TO potlu_user; -- --- Name: vw_staffcontractlist; Type: VIEW; Schema: portanova; Owner: potlu2_user +-- Name: vw_staffcontractlist; Type: VIEW; Schema: portanova; Owner: potlu_user -- CREATE VIEW portanova.vw_staffcontractlist AS @@ -2106,10 +2116,10 @@ CREATE VIEW portanova.vw_staffcontractlist AS ORDER BY sc.startdate DESC, sc.enddate DESC; -ALTER TABLE portanova.vw_staffcontractlist OWNER TO potlu2_user; +ALTER TABLE portanova.vw_staffcontractlist OWNER TO potlu_user; -- --- Name: vw_staffdata; Type: VIEW; Schema: portanova; Owner: potlu2_user +-- Name: vw_staffdata; Type: VIEW; Schema: portanova; Owner: potlu_user -- CREATE VIEW portanova.vw_staffdata AS @@ -2131,10 +2141,10 @@ CREATE VIEW portanova.vw_staffdata AS WHERE (staff.isdeleted IS NULL); -ALTER TABLE portanova.vw_staffdata OWNER TO potlu2_user; +ALTER TABLE portanova.vw_staffdata OWNER TO potlu_user; -- --- Name: vw_staffgroupsdata; Type: VIEW; Schema: portanova; Owner: potlu2_user +-- Name: vw_staffgroupsdata; Type: VIEW; Schema: portanova; Owner: potlu_user -- CREATE VIEW portanova.vw_staffgroupsdata AS @@ -2146,10 +2156,10 @@ SELECT NULL::bigint AS staffmembers; -ALTER TABLE portanova.vw_staffgroupsdata OWNER TO potlu2_user; +ALTER TABLE portanova.vw_staffgroupsdata OWNER TO potlu_user; -- --- Name: vw_staffgroupslist; Type: VIEW; Schema: portanova; Owner: potlu2_user +-- Name: vw_staffgroupslist; Type: VIEW; Schema: portanova; Owner: potlu_user -- CREATE VIEW portanova.vw_staffgroupslist AS @@ -2160,10 +2170,10 @@ SELECT NULL::bigint AS staffmembers; -ALTER TABLE portanova.vw_staffgroupslist OWNER TO potlu2_user; +ALTER TABLE portanova.vw_staffgroupslist OWNER TO potlu_user; -- --- Name: vw_stafflist; Type: VIEW; Schema: portanova; Owner: potlu2_user +-- Name: vw_stafflist; Type: VIEW; Schema: portanova; Owner: potlu_user -- CREATE VIEW portanova.vw_stafflist AS @@ -2186,10 +2196,10 @@ CREATE VIEW portanova.vw_stafflist AS ORDER BY st.surname, st.prename; -ALTER TABLE portanova.vw_stafflist OWNER TO potlu2_user; +ALTER TABLE portanova.vw_stafflist OWNER TO potlu_user; -- --- Name: vw_staffreportperioddays; Type: VIEW; Schema: portanova; Owner: potlu2_user +-- Name: vw_staffreportperioddays; Type: VIEW; Schema: portanova; Owner: potlu_user -- CREATE VIEW portanova.vw_staffreportperioddays AS @@ -2256,10 +2266,10 @@ CREATE VIEW portanova.vw_staffreportperioddays AS ORDER BY pd.id_reportperiod, pd.id_staff, pd.daydate; -ALTER TABLE portanova.vw_staffreportperioddays OWNER TO potlu2_user; +ALTER TABLE portanova.vw_staffreportperioddays OWNER TO potlu_user; -- --- Name: vw_staffreportperiodlist; Type: VIEW; Schema: portanova; Owner: potlu2_user +-- Name: vw_staffreportperiodlist; Type: VIEW; Schema: portanova; Owner: potlu_user -- CREATE VIEW portanova.vw_staffreportperiodlist AS @@ -2291,10 +2301,10 @@ CREATE VIEW portanova.vw_staffreportperiodlist AS ORDER BY st.surname, st.prename, srp.id_staff, rp.startdate, rp.enddate; -ALTER TABLE portanova.vw_staffreportperiodlist OWNER TO potlu2_user; +ALTER TABLE portanova.vw_staffreportperiodlist OWNER TO potlu_user; -- --- Name: vw_vacancylist; Type: VIEW; Schema: portanova; Owner: potlu2_user +-- Name: vw_vacancylist; Type: VIEW; Schema: portanova; Owner: potlu_user -- CREATE VIEW portanova.vw_vacancylist AS @@ -2304,10 +2314,10 @@ CREATE VIEW portanova.vw_vacancylist AS FROM portanova.vacancytypes; -ALTER TABLE portanova.vw_vacancylist OWNER TO potlu2_user; +ALTER TABLE portanova.vw_vacancylist OWNER TO potlu_user; -- --- Name: workplandays; Type: TABLE; Schema: portanova; Owner: potlu2_user +-- Name: workplandays; Type: TABLE; Schema: portanova; Owner: potlu_user -- CREATE TABLE portanova.workplandays ( @@ -2325,10 +2335,10 @@ CREATE TABLE portanova.workplandays ( ); -ALTER TABLE portanova.workplandays OWNER TO potlu2_user; +ALTER TABLE portanova.workplandays OWNER TO potlu_user; -- --- Name: vw_workplandaysdata; Type: VIEW; Schema: portanova; Owner: potlu2_user +-- Name: vw_workplandaysdata; Type: VIEW; Schema: portanova; Owner: potlu_user -- CREATE VIEW portanova.vw_workplandaysdata AS @@ -2343,10 +2353,10 @@ CREATE VIEW portanova.vw_workplandaysdata AS FROM portanova.workplandays; -ALTER TABLE portanova.vw_workplandaysdata OWNER TO potlu2_user; +ALTER TABLE portanova.vw_workplandaysdata OWNER TO potlu_user; -- --- Name: vw_workplandayslist; Type: VIEW; Schema: portanova; Owner: potlu2_user +-- Name: vw_workplandayslist; Type: VIEW; Schema: portanova; Owner: potlu_user -- CREATE VIEW portanova.vw_workplandayslist AS @@ -2367,10 +2377,10 @@ SELECT NULL::text AS interruption; -ALTER TABLE portanova.vw_workplandayslist OWNER TO potlu2_user; +ALTER TABLE portanova.vw_workplandayslist OWNER TO potlu_user; -- --- Name: vw_workplanlist; Type: VIEW; Schema: portanova; Owner: potlu2_user +-- Name: vw_workplanlist; Type: VIEW; Schema: portanova; Owner: potlu_user -- CREATE VIEW portanova.vw_workplanlist AS @@ -2384,10 +2394,10 @@ CREATE VIEW portanova.vw_workplanlist AS ORDER BY wp.isdefault, wp.workplan; -ALTER TABLE portanova.vw_workplanlist OWNER TO potlu2_user; +ALTER TABLE portanova.vw_workplanlist OWNER TO potlu_user; -- --- Name: worktimes; Type: TABLE; Schema: portanova; Owner: potlu2_user +-- Name: worktimes; Type: TABLE; Schema: portanova; Owner: potlu_user -- CREATE TABLE portanova.worktimes ( @@ -2405,10 +2415,10 @@ CREATE TABLE portanova.worktimes ( ); -ALTER TABLE portanova.worktimes OWNER TO potlu2_user; +ALTER TABLE portanova.worktimes OWNER TO potlu_user; -- --- Name: vw_worktimeslist; Type: VIEW; Schema: portanova; Owner: potlu2_user +-- Name: vw_worktimeslist; Type: VIEW; Schema: portanova; Owner: potlu_user -- CREATE VIEW portanova.vw_worktimeslist AS @@ -2425,10 +2435,10 @@ CREATE VIEW portanova.vw_worktimeslist AS ORDER BY worktimes.startdate NULLS FIRST, worktimes.enddate NULLS FIRST; -ALTER TABLE portanova.vw_worktimeslist OWNER TO potlu2_user; +ALTER TABLE portanova.vw_worktimeslist OWNER TO potlu_user; -- --- Name: companies; Type: TABLE; Schema: public; Owner: potlu2_user +-- Name: companies; Type: TABLE; Schema: public; Owner: potlu_user -- CREATE TABLE public.companies ( @@ -2455,10 +2465,10 @@ CREATE TABLE public.companies ( ); -ALTER TABLE public.companies OWNER TO potlu2_user; +ALTER TABLE public.companies OWNER TO potlu_user; -- --- Name: labels; Type: TABLE; Schema: public; Owner: potlu2_user +-- Name: labels; Type: TABLE; Schema: public; Owner: potlu_user -- CREATE TABLE public.labels ( @@ -2469,10 +2479,10 @@ CREATE TABLE public.labels ( ); -ALTER TABLE public.labels OWNER TO potlu2_user; +ALTER TABLE public.labels OWNER TO potlu_user; -- --- Name: preferences; Type: TABLE; Schema: public; Owner: potlu2_user +-- Name: preferences; Type: TABLE; Schema: public; Owner: potlu_user -- CREATE TABLE public.preferences ( @@ -2483,10 +2493,10 @@ CREATE TABLE public.preferences ( ); -ALTER TABLE public.preferences OWNER TO potlu2_user; +ALTER TABLE public.preferences OWNER TO potlu_user; -- --- Name: sectorworktime; Type: TABLE; Schema: public; Owner: potlu2_user +-- Name: sectorworktime; Type: TABLE; Schema: public; Owner: potlu_user -- CREATE TABLE public.sectorworktime ( @@ -2503,10 +2513,10 @@ CREATE TABLE public.sectorworktime ( ); -ALTER TABLE public.sectorworktime OWNER TO potlu2_user; +ALTER TABLE public.sectorworktime OWNER TO potlu_user; -- --- Name: sessions; Type: TABLE; Schema: public; Owner: potlu2_user +-- Name: sessions; Type: TABLE; Schema: public; Owner: potlu_user -- CREATE TABLE public.sessions ( @@ -2519,10 +2529,10 @@ CREATE TABLE public.sessions ( ); -ALTER TABLE public.sessions OWNER TO potlu2_user; +ALTER TABLE public.sessions OWNER TO potlu_user; -- --- Name: usergroups; Type: TABLE; Schema: public; Owner: potlu2_user +-- Name: usergroups; Type: TABLE; Schema: public; Owner: potlu_user -- CREATE TABLE public.usergroups ( @@ -2532,10 +2542,10 @@ CREATE TABLE public.usergroups ( ); -ALTER TABLE public.usergroups OWNER TO potlu2_user; +ALTER TABLE public.usergroups OWNER TO potlu_user; -- --- Name: users; Type: TABLE; Schema: public; Owner: potlu2_user +-- Name: users; Type: TABLE; Schema: public; Owner: potlu_user -- CREATE TABLE public.users ( @@ -2557,10 +2567,10 @@ CREATE TABLE public.users ( ); -ALTER TABLE public.users OWNER TO potlu2_user; +ALTER TABLE public.users OWNER TO potlu_user; -- --- Name: vw_companiesdata; Type: VIEW; Schema: public; Owner: potlu2_user +-- Name: vw_companiesdata; Type: VIEW; Schema: public; Owner: potlu_user -- CREATE VIEW public.vw_companiesdata AS @@ -2587,10 +2597,10 @@ CREATE VIEW public.vw_companiesdata AS FROM public.companies; -ALTER TABLE public.vw_companiesdata OWNER TO potlu2_user; +ALTER TABLE public.vw_companiesdata OWNER TO potlu_user; -- --- Name: vw_companieslist; Type: VIEW; Schema: public; Owner: potlu2_user +-- Name: vw_companieslist; Type: VIEW; Schema: public; Owner: potlu_user -- CREATE VIEW public.vw_companieslist AS @@ -2617,10 +2627,10 @@ CREATE VIEW public.vw_companieslist AS FROM public.companies; -ALTER TABLE public.vw_companieslist OWNER TO potlu2_user; +ALTER TABLE public.vw_companieslist OWNER TO potlu_user; -- --- Name: vw_schemata; Type: VIEW; Schema: public; Owner: potlu2_user +-- Name: vw_schemata; Type: VIEW; Schema: public; Owner: potlu_user -- CREATE VIEW public.vw_schemata AS @@ -2628,13 +2638,13 @@ CREATE VIEW public.vw_schemata AS COALESCE(cp.datasetname, cp.company) AS company FROM (information_schema.schemata sct JOIN public.companies cp ON (((sct.schema_name)::text = cp.schemata))) - WHERE (((sct.schema_owner)::text = 'potlu2_user'::text) AND ((sct.schema_name)::text <> 'public'::text)); + WHERE (((sct.schema_owner)::text = 'potlu_user'::text) AND ((sct.schema_name)::text <> 'public'::text)); -ALTER TABLE public.vw_schemata OWNER TO potlu2_user; +ALTER TABLE public.vw_schemata OWNER TO potlu_user; -- --- Name: vw_sectorlist; Type: VIEW; Schema: public; Owner: potlu2_user +-- Name: vw_sectorlist; Type: VIEW; Schema: public; Owner: potlu_user -- CREATE VIEW public.vw_sectorlist AS @@ -2643,10 +2653,10 @@ CREATE VIEW public.vw_sectorlist AS ORDER BY sectorworktime.sector; -ALTER TABLE public.vw_sectorlist OWNER TO potlu2_user; +ALTER TABLE public.vw_sectorlist OWNER TO potlu_user; -- --- Name: vw_usergroupslist; Type: VIEW; Schema: public; Owner: potlu2_user +-- Name: vw_usergroupslist; Type: VIEW; Schema: public; Owner: potlu_user -- CREATE VIEW public.vw_usergroupslist AS @@ -2657,10 +2667,10 @@ CREATE VIEW public.vw_usergroupslist AS FROM public.usergroups; -ALTER TABLE public.vw_usergroupslist OWNER TO potlu2_user; +ALTER TABLE public.vw_usergroupslist OWNER TO potlu_user; -- --- Name: vw_userschemaaccess; Type: VIEW; Schema: public; Owner: potlu2_user +-- Name: vw_userschemaaccess; Type: VIEW; Schema: public; Owner: potlu_user -- CREATE VIEW public.vw_userschemaaccess AS @@ -2675,10 +2685,10 @@ CREATE VIEW public.vw_userschemaaccess AS LEFT JOIN public.companies cp ON ((cp.schemata = us.schemaaccess))); -ALTER TABLE public.vw_userschemaaccess OWNER TO potlu2_user; +ALTER TABLE public.vw_userschemaaccess OWNER TO potlu_user; -- --- Name: vw_usersdata; Type: VIEW; Schema: public; Owner: potlu2_user +-- Name: vw_usersdata; Type: VIEW; Schema: public; Owner: potlu_user -- CREATE VIEW public.vw_usersdata AS @@ -2701,10 +2711,10 @@ CREATE VIEW public.vw_usersdata AS FROM public.users; -ALTER TABLE public.vw_usersdata OWNER TO potlu2_user; +ALTER TABLE public.vw_usersdata OWNER TO potlu_user; -- --- Name: vw_userslist; Type: VIEW; Schema: public; Owner: potlu2_user +-- Name: vw_userslist; Type: VIEW; Schema: public; Owner: potlu_user -- CREATE VIEW public.vw_userslist AS @@ -2722,10 +2732,10 @@ SELECT NULL::text AS usergroups; -ALTER TABLE public.vw_userslist OWNER TO potlu2_user; +ALTER TABLE public.vw_userslist OWNER TO potlu_user; -- --- Name: reportperiod; Type: TABLE; Schema: testmyapp; Owner: potlu2_user +-- Name: reportperiod; Type: TABLE; Schema: testmyapp; Owner: potlu_user -- CREATE TABLE testmyapp.reportperiod ( @@ -2737,10 +2747,10 @@ CREATE TABLE testmyapp.reportperiod ( ); -ALTER TABLE testmyapp.reportperiod OWNER TO potlu2_user; +ALTER TABLE testmyapp.reportperiod OWNER TO potlu_user; -- --- Name: staff; Type: TABLE; Schema: testmyapp; Owner: potlu2_user +-- Name: staff; Type: TABLE; Schema: testmyapp; Owner: potlu_user -- CREATE TABLE testmyapp.staff ( @@ -2761,10 +2771,10 @@ CREATE TABLE testmyapp.staff ( ); -ALTER TABLE testmyapp.staff OWNER TO potlu2_user; +ALTER TABLE testmyapp.staff OWNER TO potlu_user; -- --- Name: staffcontract; Type: TABLE; Schema: testmyapp; Owner: potlu2_user +-- Name: staffcontract; Type: TABLE; Schema: testmyapp; Owner: potlu_user -- CREATE TABLE testmyapp.staffcontract ( @@ -2780,10 +2790,10 @@ CREATE TABLE testmyapp.staffcontract ( ); -ALTER TABLE testmyapp.staffcontract OWNER TO potlu2_user; +ALTER TABLE testmyapp.staffcontract OWNER TO potlu_user; -- --- Name: staffgroups; Type: TABLE; Schema: testmyapp; Owner: potlu2_user +-- Name: staffgroups; Type: TABLE; Schema: testmyapp; Owner: potlu_user -- CREATE TABLE testmyapp.staffgroups ( @@ -2795,10 +2805,10 @@ CREATE TABLE testmyapp.staffgroups ( ); -ALTER TABLE testmyapp.staffgroups OWNER TO potlu2_user; +ALTER TABLE testmyapp.staffgroups OWNER TO potlu_user; -- --- Name: staffreportperiod; Type: TABLE; Schema: testmyapp; Owner: potlu2_user +-- Name: staffreportperiod; Type: TABLE; Schema: testmyapp; Owner: potlu_user -- CREATE TABLE testmyapp.staffreportperiod ( @@ -2816,10 +2826,10 @@ CREATE TABLE testmyapp.staffreportperiod ( ); -ALTER TABLE testmyapp.staffreportperiod OWNER TO potlu2_user; +ALTER TABLE testmyapp.staffreportperiod OWNER TO potlu_user; -- --- Name: staffreportperioddays; Type: TABLE; Schema: testmyapp; Owner: potlu2_user +-- Name: staffreportperioddays; Type: TABLE; Schema: testmyapp; Owner: potlu_user -- CREATE TABLE testmyapp.staffreportperioddays ( @@ -2847,10 +2857,10 @@ CREATE TABLE testmyapp.staffreportperioddays ( ); -ALTER TABLE testmyapp.staffreportperioddays OWNER TO potlu2_user; +ALTER TABLE testmyapp.staffreportperioddays OWNER TO potlu_user; -- --- Name: staffreportperiodweeks; Type: TABLE; Schema: testmyapp; Owner: potlu2_user +-- Name: staffreportperiodweeks; Type: TABLE; Schema: testmyapp; Owner: potlu_user -- CREATE TABLE testmyapp.staffreportperiodweeks ( @@ -2874,10 +2884,10 @@ CREATE TABLE testmyapp.staffreportperiodweeks ( ); -ALTER TABLE testmyapp.staffreportperiodweeks OWNER TO potlu2_user; +ALTER TABLE testmyapp.staffreportperiodweeks OWNER TO potlu_user; -- --- Name: staffvacancy; Type: TABLE; Schema: testmyapp; Owner: potlu2_user +-- Name: staffvacancy; Type: TABLE; Schema: testmyapp; Owner: potlu_user -- CREATE TABLE testmyapp.staffvacancy ( @@ -2889,10 +2899,10 @@ CREATE TABLE testmyapp.staffvacancy ( ); -ALTER TABLE testmyapp.staffvacancy OWNER TO potlu2_user; +ALTER TABLE testmyapp.staffvacancy OWNER TO potlu_user; -- --- Name: vacancydays; Type: TABLE; Schema: testmyapp; Owner: potlu2_user +-- Name: vacancydays; Type: TABLE; Schema: testmyapp; Owner: potlu_user -- CREATE TABLE testmyapp.vacancydays ( @@ -2902,10 +2912,10 @@ CREATE TABLE testmyapp.vacancydays ( ); -ALTER TABLE testmyapp.vacancydays OWNER TO potlu2_user; +ALTER TABLE testmyapp.vacancydays OWNER TO potlu_user; -- --- Name: vacancytypes; Type: TABLE; Schema: testmyapp; Owner: potlu2_user +-- Name: vacancytypes; Type: TABLE; Schema: testmyapp; Owner: potlu_user -- CREATE TABLE testmyapp.vacancytypes ( @@ -2917,10 +2927,10 @@ CREATE TABLE testmyapp.vacancytypes ( ); -ALTER TABLE testmyapp.vacancytypes OWNER TO potlu2_user; +ALTER TABLE testmyapp.vacancytypes OWNER TO potlu_user; -- --- Name: vw_reportperioddata; Type: VIEW; Schema: testmyapp; Owner: potlu2_user +-- Name: vw_reportperioddata; Type: VIEW; Schema: testmyapp; Owner: potlu_user -- CREATE VIEW testmyapp.vw_reportperioddata AS @@ -2932,10 +2942,10 @@ CREATE VIEW testmyapp.vw_reportperioddata AS FROM testmyapp.reportperiod rp; -ALTER TABLE testmyapp.vw_reportperioddata OWNER TO potlu2_user; +ALTER TABLE testmyapp.vw_reportperioddata OWNER TO potlu_user; -- --- Name: vw_reportperiodlist; Type: VIEW; Schema: testmyapp; Owner: potlu2_user +-- Name: vw_reportperiodlist; Type: VIEW; Schema: testmyapp; Owner: potlu_user -- CREATE VIEW testmyapp.vw_reportperiodlist AS @@ -2947,10 +2957,10 @@ CREATE VIEW testmyapp.vw_reportperiodlist AS FROM testmyapp.reportperiod rp; -ALTER TABLE testmyapp.vw_reportperiodlist OWNER TO potlu2_user; +ALTER TABLE testmyapp.vw_reportperiodlist OWNER TO potlu_user; -- --- Name: vw_rplbygrpname; Type: VIEW; Schema: testmyapp; Owner: potlu2_user +-- Name: vw_rplbygrpname; Type: VIEW; Schema: testmyapp; Owner: potlu_user -- CREATE VIEW testmyapp.vw_rplbygrpname AS @@ -2967,10 +2977,10 @@ CREATE VIEW testmyapp.vw_rplbygrpname AS ORDER BY sgr.groupname, rp.startdate, rp.enddate; -ALTER TABLE testmyapp.vw_rplbygrpname OWNER TO potlu2_user; +ALTER TABLE testmyapp.vw_rplbygrpname OWNER TO potlu_user; -- --- Name: vw_staffcontractdata; Type: VIEW; Schema: testmyapp; Owner: potlu2_user +-- Name: vw_staffcontractdata; Type: VIEW; Schema: testmyapp; Owner: potlu_user -- CREATE VIEW testmyapp.vw_staffcontractdata AS @@ -2987,10 +2997,10 @@ CREATE VIEW testmyapp.vw_staffcontractdata AS FROM testmyapp.staffcontract; -ALTER TABLE testmyapp.vw_staffcontractdata OWNER TO potlu2_user; +ALTER TABLE testmyapp.vw_staffcontractdata OWNER TO potlu_user; -- --- Name: workplans; Type: TABLE; Schema: testmyapp; Owner: potlu2_user +-- Name: workplans; Type: TABLE; Schema: testmyapp; Owner: potlu_user -- CREATE TABLE testmyapp.workplans ( @@ -3002,10 +3012,10 @@ CREATE TABLE testmyapp.workplans ( ); -ALTER TABLE testmyapp.workplans OWNER TO potlu2_user; +ALTER TABLE testmyapp.workplans OWNER TO potlu_user; -- --- Name: vw_staffcontractlist; Type: VIEW; Schema: testmyapp; Owner: potlu2_user +-- Name: vw_staffcontractlist; Type: VIEW; Schema: testmyapp; Owner: potlu_user -- CREATE VIEW testmyapp.vw_staffcontractlist AS @@ -3032,10 +3042,10 @@ CREATE VIEW testmyapp.vw_staffcontractlist AS ORDER BY sc.startdate DESC, sc.enddate DESC; -ALTER TABLE testmyapp.vw_staffcontractlist OWNER TO potlu2_user; +ALTER TABLE testmyapp.vw_staffcontractlist OWNER TO potlu_user; -- --- Name: vw_staffdata; Type: VIEW; Schema: testmyapp; Owner: potlu2_user +-- Name: vw_staffdata; Type: VIEW; Schema: testmyapp; Owner: potlu_user -- CREATE VIEW testmyapp.vw_staffdata AS @@ -3056,10 +3066,10 @@ CREATE VIEW testmyapp.vw_staffdata AS FROM testmyapp.staff; -ALTER TABLE testmyapp.vw_staffdata OWNER TO potlu2_user; +ALTER TABLE testmyapp.vw_staffdata OWNER TO potlu_user; -- --- Name: vw_staffgroupsdata; Type: VIEW; Schema: testmyapp; Owner: potlu2_user +-- Name: vw_staffgroupsdata; Type: VIEW; Schema: testmyapp; Owner: potlu_user -- CREATE VIEW testmyapp.vw_staffgroupsdata AS @@ -3070,10 +3080,10 @@ CREATE VIEW testmyapp.vw_staffgroupsdata AS FROM testmyapp.staffgroups; -ALTER TABLE testmyapp.vw_staffgroupsdata OWNER TO potlu2_user; +ALTER TABLE testmyapp.vw_staffgroupsdata OWNER TO potlu_user; -- --- Name: vw_staffgroupslist; Type: VIEW; Schema: testmyapp; Owner: potlu2_user +-- Name: vw_staffgroupslist; Type: VIEW; Schema: testmyapp; Owner: potlu_user -- CREATE VIEW testmyapp.vw_staffgroupslist AS @@ -3083,10 +3093,10 @@ CREATE VIEW testmyapp.vw_staffgroupslist AS FROM testmyapp.staffgroups; -ALTER TABLE testmyapp.vw_staffgroupslist OWNER TO potlu2_user; +ALTER TABLE testmyapp.vw_staffgroupslist OWNER TO potlu_user; -- --- Name: vw_stafflist; Type: VIEW; Schema: testmyapp; Owner: potlu2_user +-- Name: vw_stafflist; Type: VIEW; Schema: testmyapp; Owner: potlu_user -- CREATE VIEW testmyapp.vw_stafflist AS @@ -3108,10 +3118,10 @@ CREATE VIEW testmyapp.vw_stafflist AS ORDER BY st.surname, st.prename; -ALTER TABLE testmyapp.vw_stafflist OWNER TO potlu2_user; +ALTER TABLE testmyapp.vw_stafflist OWNER TO potlu_user; -- --- Name: vw_staffreportperioddays; Type: VIEW; Schema: testmyapp; Owner: potlu2_user +-- Name: vw_staffreportperioddays; Type: VIEW; Schema: testmyapp; Owner: potlu_user -- CREATE VIEW testmyapp.vw_staffreportperioddays AS @@ -3172,10 +3182,10 @@ CREATE VIEW testmyapp.vw_staffreportperioddays AS ORDER BY pd.id_reportperiod, pd.id_staff, pd.daydate; -ALTER TABLE testmyapp.vw_staffreportperioddays OWNER TO potlu2_user; +ALTER TABLE testmyapp.vw_staffreportperioddays OWNER TO potlu_user; -- --- Name: vw_staffreportperiodlist; Type: VIEW; Schema: testmyapp; Owner: potlu2_user +-- Name: vw_staffreportperiodlist; Type: VIEW; Schema: testmyapp; Owner: potlu_user -- CREATE VIEW testmyapp.vw_staffreportperiodlist AS @@ -3206,10 +3216,10 @@ CREATE VIEW testmyapp.vw_staffreportperiodlist AS ORDER BY st.surname, st.prename, srp.id_staff, rp.startdate, rp.enddate; -ALTER TABLE testmyapp.vw_staffreportperiodlist OWNER TO potlu2_user; +ALTER TABLE testmyapp.vw_staffreportperiodlist OWNER TO potlu_user; -- --- Name: vw_vacancylist; Type: VIEW; Schema: testmyapp; Owner: potlu2_user +-- Name: vw_vacancylist; Type: VIEW; Schema: testmyapp; Owner: potlu_user -- CREATE VIEW testmyapp.vw_vacancylist AS @@ -3219,10 +3229,10 @@ CREATE VIEW testmyapp.vw_vacancylist AS FROM testmyapp.vacancytypes; -ALTER TABLE testmyapp.vw_vacancylist OWNER TO potlu2_user; +ALTER TABLE testmyapp.vw_vacancylist OWNER TO potlu_user; -- --- Name: workplandays; Type: TABLE; Schema: testmyapp; Owner: potlu2_user +-- Name: workplandays; Type: TABLE; Schema: testmyapp; Owner: potlu_user -- CREATE TABLE testmyapp.workplandays ( @@ -3238,10 +3248,10 @@ CREATE TABLE testmyapp.workplandays ( ); -ALTER TABLE testmyapp.workplandays OWNER TO potlu2_user; +ALTER TABLE testmyapp.workplandays OWNER TO potlu_user; -- --- Name: vw_workplandaysdata; Type: VIEW; Schema: testmyapp; Owner: potlu2_user +-- Name: vw_workplandaysdata; Type: VIEW; Schema: testmyapp; Owner: potlu_user -- CREATE VIEW testmyapp.vw_workplandaysdata AS @@ -3256,10 +3266,10 @@ CREATE VIEW testmyapp.vw_workplandaysdata AS FROM testmyapp.workplandays; -ALTER TABLE testmyapp.vw_workplandaysdata OWNER TO potlu2_user; +ALTER TABLE testmyapp.vw_workplandaysdata OWNER TO potlu_user; -- --- Name: vw_workplandayslist; Type: VIEW; Schema: testmyapp; Owner: potlu2_user +-- Name: vw_workplandayslist; Type: VIEW; Schema: testmyapp; Owner: potlu_user -- CREATE VIEW testmyapp.vw_workplandayslist AS @@ -3279,10 +3289,10 @@ SELECT NULL::integer AS weeknum; -ALTER TABLE testmyapp.vw_workplandayslist OWNER TO potlu2_user; +ALTER TABLE testmyapp.vw_workplandayslist OWNER TO potlu_user; -- --- Name: vw_workplanlist; Type: VIEW; Schema: testmyapp; Owner: potlu2_user +-- Name: vw_workplanlist; Type: VIEW; Schema: testmyapp; Owner: potlu_user -- CREATE VIEW testmyapp.vw_workplanlist AS @@ -3291,10 +3301,10 @@ CREATE VIEW testmyapp.vw_workplanlist AS FROM testmyapp.workplans; -ALTER TABLE testmyapp.vw_workplanlist OWNER TO potlu2_user; +ALTER TABLE testmyapp.vw_workplanlist OWNER TO potlu_user; -- --- Name: worktimes; Type: TABLE; Schema: testmyapp; Owner: potlu2_user +-- Name: worktimes; Type: TABLE; Schema: testmyapp; Owner: potlu_user -- CREATE TABLE testmyapp.worktimes ( @@ -3310,10 +3320,10 @@ CREATE TABLE testmyapp.worktimes ( ); -ALTER TABLE testmyapp.worktimes OWNER TO potlu2_user; +ALTER TABLE testmyapp.worktimes OWNER TO potlu_user; -- --- Name: vw_worktimeslist; Type: VIEW; Schema: testmyapp; Owner: potlu2_user +-- Name: vw_worktimeslist; Type: VIEW; Schema: testmyapp; Owner: potlu_user -- CREATE VIEW testmyapp.vw_worktimeslist AS @@ -3330,10 +3340,10 @@ CREATE VIEW testmyapp.vw_worktimeslist AS ORDER BY worktimes.startdate NULLS FIRST, worktimes.enddate NULLS FIRST; -ALTER TABLE testmyapp.vw_worktimeslist OWNER TO potlu2_user; +ALTER TABLE testmyapp.vw_worktimeslist OWNER TO potlu_user; -- --- Data for Name: reportperiod; Type: TABLE DATA; Schema: portanova; Owner: potlu2_user +-- Data for Name: reportperiod; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- COPY portanova.reportperiod (periodname, startdate, enddate, id_parentreportperiod, id, modified, created) FROM stdin; @@ -3344,7 +3354,7 @@ ddd 2020-10-05 2020-11-29 a17ca96b-36f1-3cbb-2f0c-c0882ea73ed0 e3e85c3e-1afa-768 -- --- Data for Name: reports; Type: TABLE DATA; Schema: portanova; Owner: potlu2_user +-- Data for Name: reports; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- COPY portanova.reports (id, report, pdftop, pdfbottom, pdfleft, pdfright, pdfunit, pdfsize, pdforientation, pdfencoding, footer, header, content, prefix, sqlfilename, actioncase, templatetype, pdfform) FROM stdin; @@ -3353,7 +3363,7 @@ COPY portanova.reports (id, report, pdftop, pdfbottom, pdfleft, pdfright, pdfuni -- --- Data for Name: staff; Type: TABLE DATA; Schema: portanova; Owner: potlu2_user +-- Data for Name: staff; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- COPY portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) FROM stdin; @@ -3414,7 +3424,7 @@ AA1 Mustermann Max \N \N \N \N \N \N \N \N \N 4d35cbc6-f52d-c977-9e10-c0467da3e6 -- --- Data for Name: staffcontract; Type: TABLE DATA; Schema: portanova; Owner: potlu2_user +-- Data for Name: staffcontract; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- COPY portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) FROM stdin; @@ -3441,6 +3451,7 @@ af2cba13-8e7b-c0ae-2ce2-f1ce3c059129 2019-07-15 \N 84e5f590-9e76-dff3-45ce-0c39c 608e9219-b30f-43f5-79c5-c17d921297cc 2020-01-01 2019-07-31 875babd8-ac9c-7bb7-3691-d888932fcb21 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N cb44dc10-da71-0483-6903-e53c7903bea8 2014-03-01 \N 28303690-8f8e-14a5-94d6-b0a97c2be8e7 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N ba6c36fb-1812-53a1-4b77-171a92ef1c2c 2016-05-19 \N 9b9cf076-aaff-7987-18c4-03f439a509de 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-01-06 \N f35400b0-6d27-ad19-630b-7b934d304643 2020-08-09 16:51:22.105001 2020-07-23 12:27:10.908142 6 40:00:00 ["1"] c2e086cf-32d7-7f1c-cff1-09c13172ade3 fd1178bd-5578-bc8c-68e6-0caabb7a17fa 2020-01-01 2019-05-31 966517c4-a5ae-6293-1f5c-8523458c847a 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N f2084bf3-3ecc-9b24-c3d7-78d365c45f8e 2020-01-01 \N 045b9fd8-f9a6-ca7c-dd83-911badc20e35 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N 9e408ee6-827f-94f1-2f20-ec4a9e36f5df 2020-01-01 \N b872bde4-7960-6e3f-2501-c68b409d7004 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N @@ -3451,14 +3462,13 @@ f2084bf3-3ecc-9b24-c3d7-78d365c45f8e 2020-01-01 \N 045b9fd8-f9a6-ca7c-dd83-911ba c126d60c-e088-8b92-ac83-47dfa231e926 2020-01-01 \N 282adea5-8744-691f-7c71-22836577951d 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N 05222b12-533d-97fa-6252-2ba03b87d057 2020-01-01 2020-03-31 48f08f4f-815e-7330-2e90-ca150727ac3f 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N 63204f0b-afae-1380-b655-a6247b129af0 2020-01-01 \N 95ed73eb-dfbd-37b8-6131-64f259c76b3d 2020-08-04 08:47:14.423046 2020-07-23 12:27:10.908142 6 40:00:00 ["7"] 267f424d-9716-cf98-3bd0-c6715257c3a0 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-01-06 \N f35400b0-6d27-ad19-630b-7b934d304643 2020-08-04 17:40:43.48673 2020-07-23 12:27:10.908142 6 40:00:00 ["1"] c2e086cf-32d7-7f1c-cff1-09c13172ade3 a77618bc-86f2-800f-b26d-6d641147ab7c 2020-01-01 \N 7c857a6c-8417-dc5b-7218-24e6b696d076 2020-08-04 08:46:46.705638 2020-07-23 12:27:10.908142 6 40:00:00 ["2"] 3ff4557c-b9c6-a2ff-eec3-89ad034b6556 8aa08f14-7976-baca-c214-b1131263ea5d 2013-05-01 \N dfe192ed-3041-920a-41a5-cb7cef91a92f 2020-08-04 08:48:02.295624 2020-07-23 12:27:10.908142 6 40:00:00 ["1"] f8666bc6-abed-a3ab-35d5-b6df495a0eea b82c5c49-c814-c68f-03ec-17ee24e765bb 2020-01-01 \N 797aa17d-d5d1-e509-9973-d48406a3ca46 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N b1843e04-9761-8838-5007-15262f59af56 2020-01-01 2020-05-31 079ff258-bbc9-5606-dd76-34290e8a784b 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N 016c1cbd-5197-572a-832b-e44f1c9de181 2020-01-01 2022-08-31 1c4b07c0-28b4-9c68-89b0-4bc71bc03530 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N -cc63023b-4892-c29c-787d-088392d58b88 2018-02-12 \N bb915d87-2a78-76de-1490-019cb411c0b3 2020-08-04 09:03:04.740487 2020-07-23 12:27:10.908142 6 40:00:00 ["4"] fbd5ac24-becf-c358-45c4-65518415ebb8 af9f604b-fcf9-0161-da20-1e3d7b1e4111 2020-01-01 \N 8cfcfb06-1669-1f04-529c-f81a0bab1004 2020-07-31 09:12:15.54278 2020-07-23 12:27:10.908142 6 40:00:00 \N \N +cc63023b-4892-c29c-787d-088392d58b88 2018-02-12 \N bb915d87-2a78-76de-1490-019cb411c0b3 2020-08-09 17:30:46.037748 2020-07-23 12:27:10.908142 6 40:00:00 ["4"] fbd5ac24-becf-c358-45c4-65518415ebb8 50ff28ff-8b39-52b5-03e7-fecab8706021 2020-01-01 \N df69d20b-e89d-f53d-c8ce-4487ea2d6388 2020-07-31 09:12:15.55329 2020-07-23 12:27:10.908142 6 40:00:00 \N \N 24de156c-6869-d29b-387a-f0a477c33b96 2020-01-01 2019-03-31 afccbaca-f939-bc55-10b4-21773bf2b4d4 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N c587005b-cabe-dce9-1e35-d37603b3bf8f 2015-11-15 \N c7815a50-90f1-c703-20cb-b3b75c353268 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N @@ -3477,7 +3487,7 @@ af2cba13-8e7b-c0ae-2ce2-f1ce3c059129 2018-11-15 2019-06-15 a0c765c4-faee-5776-2e -- --- Data for Name: staffgroups; Type: TABLE DATA; Schema: portanova; Owner: potlu2_user +-- Data for Name: staffgroups; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- COPY portanova.staffgroups (groupname, groupcolor, editoruser_ids, isdefault, id, modified, created) FROM stdin; @@ -3488,24 +3498,21 @@ Administration \N ["2","4"] t 4d35cbc6-f52d-c977-9e10-c0467da3e672 2020-07-23 11 -- --- Data for Name: staffreportperiod; Type: TABLE DATA; Schema: portanova; Owner: potlu2_user +-- Data for Name: staffreportperiod; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- COPY portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) FROM stdin; -2583c916-2d07-f42d-9c85-18ee42959317 cc63023b-4892-c29c-787d-088392d58b88 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N \N \N 66419e71-b74b-ae41-ee31-2f5f1c3a38d0 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 2583c916-2d07-f42d-9c85-18ee42959317 1898317d-07d3-c9b8-c29c-a5aa60c28c27 320:00:00 00:00:00 320:00:00 00:00:00 00:00:00 \N \N \N 0553af62-8cf0-fa5f-6597-7f5777f79047 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 e3e85c3e-1afa-768e-7938-f0c9996c618a 1898317d-07d3-c9b8-c29c-a5aa60c28c27 320:00:00 00:00:00 320:00:00 00:00:00 00:00:00 \N \N \N 45fdb65e-68fb-d55e-e2ab-952a65a4735c 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 9b93bd90-2325-fe28-4bff-852203fc99ce 1898317d-07d3-c9b8-c29c-a5aa60c28c27 320:00:00 00:00:00 320:00:00 00:00:00 00:00:00 \N \N \N db572221-e032-6cff-d3fc-0d78d5e7572a 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 -9b93bd90-2325-fe28-4bff-852203fc99ce cc63023b-4892-c29c-787d-088392d58b88 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N \N \N 3c970df3-cd24-2ab9-3531-c2c8fd39b56e 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -e3e85c3e-1afa-768e-7938-f0c9996c618a cc63023b-4892-c29c-787d-088392d58b88 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N \N \N 408079c3-c057-3647-7f80-c46d58d71634 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 2583c916-2d07-f42d-9c85-18ee42959317 a77618bc-86f2-800f-b26d-6d641147ab7c 320:00:00 00:00:00 320:00:00 00:00:00 00:00:00 \N \N \N a214cefc-def7-b373-cfda-eadace856f6c 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 -9b93bd90-2325-fe28-4bff-852203fc99ce e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 320:00:00 00:00:00 320:00:00 00:00:00 00:00:00 \N \N \N 054e1f88-f4a4-4ab2-7e9e-e8ab01517a92 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e3e85c3e-1afa-768e-7938-f0c9996c618a e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 320:00:00 00:00:00 320:00:00 00:00:00 00:00:00 \N \N \N 346964ca-29b7-a452-d8b3-32c7db60c9be 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 9b93bd90-2325-fe28-4bff-852203fc99ce a77618bc-86f2-800f-b26d-6d641147ab7c 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N \N \N 93afc058-a92b-b412-be4b-516596e263e8 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +9b93bd90-2325-fe28-4bff-852203fc99ce e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 320:00:00 00:00:00 320:00:00 00:00:00 00:00:00 \N \N \N 054e1f88-f4a4-4ab2-7e9e-e8ab01517a92 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 2583c916-2d07-f42d-9c85-18ee42959317 3c463353-f763-c72c-0007-e6b4926befee 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N \N \N 81e7bb68-ebe0-4903-56db-0e84c9d7b369 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 9b93bd90-2325-fe28-4bff-852203fc99ce 3c463353-f763-c72c-0007-e6b4926befee 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N \N \N 835119a5-dad5-5cbd-cc29-26ab3b5c7af1 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 e3e85c3e-1afa-768e-7938-f0c9996c618a 3c463353-f763-c72c-0007-e6b4926befee 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N \N \N a1d4b04b-719b-e336-af1d-3c53e4d27042 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 2583c916-2d07-f42d-9c85-18ee42959317 71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 320:00:00 00:00:00 320:00:00 00:00:00 00:00:00 \N \N \N 10c5760c-3c1e-2d81-7253-06c3d326a3a8 2020-08-05 08:46:48.014325 2020-07-30 14:15:17.796308 +e3e85c3e-1afa-768e-7938-f0c9996c618a e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 320:00:00 00:00:00 320:00:00 00:00:00 00:00:00 \N 01:00:00 \N 346964ca-29b7-a452-d8b3-32c7db60c9be 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 e3e85c3e-1afa-768e-7938-f0c9996c618a a77618bc-86f2-800f-b26d-6d641147ab7c 320:00:00 00:00:00 320:00:00 00:00:00 00:00:00 \N \N \N 4c757d37-1f8a-a82c-2be8-62c5db6c6544 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 2583c916-2d07-f42d-9c85-18ee42959317 63204f0b-afae-1380-b655-a6247b129af0 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N \N \N 5876d7d6-0db7-1cb2-2458-e6be0e80958c 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 9b93bd90-2325-fe28-4bff-852203fc99ce 63204f0b-afae-1380-b655-a6247b129af0 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N \N \N bd698833-782d-85eb-172e-5bab32b2a02a 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 @@ -3513,30 +3520,67 @@ e3e85c3e-1afa-768e-7938-f0c9996c618a 63204f0b-afae-1380-b655-a6247b129af0 00:00: 2583c916-2d07-f42d-9c85-18ee42959317 8aa08f14-7976-baca-c214-b1131263ea5d 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N \N \N 8d343a7c-5cf9-6bfc-9f85-f42c21b2f9d9 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 9b93bd90-2325-fe28-4bff-852203fc99ce 8aa08f14-7976-baca-c214-b1131263ea5d 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N \N \N a741ac9f-d7e2-7221-e407-d3fa781c5c0e 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 e3e85c3e-1afa-768e-7938-f0c9996c618a 8aa08f14-7976-baca-c214-b1131263ea5d 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N \N \N a56aa1ae-4706-d996-adb8-617f18184a28 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 -2583c916-2d07-f42d-9c85-18ee42959317 e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 320:00:00 00:00:00 320:00:00 00:00:00 00:00:00 \N \N \N 563f17f1-a2e4-c355-1ab2-74bec731c3d7 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 +9b93bd90-2325-fe28-4bff-852203fc99ce cc63023b-4892-c29c-787d-088392d58b88 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N \N \N 3c970df3-cd24-2ab9-3531-c2c8fd39b56e 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +e3e85c3e-1afa-768e-7938-f0c9996c618a cc63023b-4892-c29c-787d-088392d58b88 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N \N \N 408079c3-c057-3647-7f80-c46d58d71634 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +2583c916-2d07-f42d-9c85-18ee42959317 e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 316:00:00 320:00:00 308:00:00 00:00:00 08:00:00 -12:00:00 \N \N 563f17f1-a2e4-c355-1ab2-74bec731c3d7 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +2583c916-2d07-f42d-9c85-18ee42959317 cc63023b-4892-c29c-787d-088392d58b88 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 01:00:00 \N 66419e71-b74b-ae41-ee31-2f5f1c3a38d0 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 \. -- --- Data for Name: staffreportperioddays; Type: TABLE DATA; Schema: portanova; Owner: potlu2_user +-- Data for Name: staffreportperioddays; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- COPY portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) FROM stdin; 71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-18 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 24b3ba74-5c9c-af51-2baa-ac79402cc147 2020-08-05 08:46:22.644638 2020-07-30 13:43:01.660018 71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 9a7e2e47-4e38-b8dd-b3ab-ac82bba78404 2020-08-05 08:46:22.644638 2020-07-30 13:43:01.660018 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-04 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 6044e5ef-0c26-dc0b-e5ec-656cee397530 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-06 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 294eefbe-1fbf-11b0-18ce-64daa474c908 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 694a7fe1-f3a9-cf7e-6a07-c07b698d7e66 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-10 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 00:00:00 \N \N \N \N 08:00:00 00:00:00 \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 00:00:00 7fbaf43d-e2f0-b7c2-e098-1a60f9f78c6c 2020-07-31 14:39:46.223624 2020-07-30 13:43:01.660018 71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-11 \N \N \N \N \N 00:00:00 \N \N \N \N 00:00:00 00:00:00 \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 ca2c3947-3eb6-cbee-22ed-78df58f0b370 2020-07-31 14:39:46.223624 2020-07-30 13:43:01.660018 71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-12 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 00:00:00 \N \N \N \N 08:00:00 00:00:00 \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 00:00:00 6fcfb642-9684-36af-c898-1688da15643b 2020-07-31 14:39:46.223624 2020-07-30 13:43:01.660018 71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-13 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 00:00:00 \N \N \N \N 08:00:00 00:00:00 \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 00:00:00 1fa9c5b8-3de4-4a4c-33a2-6d1ae2091957 2020-07-31 14:39:46.223624 2020-07-30 13:43:01.660018 71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-14 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 00:00:00 \N \N \N \N 08:00:00 00:00:00 \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 00:00:00 8f25d2b0-34f9-2bcb-7a92-a6a9016196c8 2020-07-31 14:39:46.223624 2020-07-30 13:43:01.660018 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-30 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 a84ae25b-43e0-567f-2dde-ebfdef96340a 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-07 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 d87c2c4b-d311-f599-a4bb-4670ed0e4498 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 68af56d5-7db1-b1a4-39a0-802eacc7c906 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 3a97f329-3f54-f74c-4d04-06f6d3f3c5e3 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-28 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 78cba873-f8fd-0fed-6d5f-f05b585372b2 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 8b02d7b2-c3e4-f18e-0254-daa7778e3694 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 904602ae-0d36-398e-60c2-db4c04238a68 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-05 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 00a9115b-959b-a4ca-aa9d-c419de85093e 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-12 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 1b67622e-1ecd-d4e6-384d-ec1f469a85e5 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-19 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 6f8182f0-379b-1c58-0595-cd8f850fd0b6 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-26 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 a920dc81-dd5a-af67-65d0-96167885e190 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-02 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 27d16e7d-99e4-92fc-4208-5b39e59e280b 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 4d0392de-3a3b-d1c3-b72f-63dccb88b3eb 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-31 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 beecf864-2602-8168-3910-2a2ef084d9a1 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 994a49d2-70dc-b6d9-515b-88dfc33b7031 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-10 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 6938d127-fb0c-ef59-652f-49bdcca34cf1 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 4dc11a5e-ec12-9a58-589e-24056f9485f2 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-09 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 266f1b53-edfe-1111-1189-400e9bf64e6e 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-12 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 00:00:00 2f025e80-834e-579b-4ef5-a04e20ca9b3f 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 0182f7d5-2c82-e0b8-6770-03ff75ca082c 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-28 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 02dd3850-83b9-699f-5b4b-b9eed01555f8 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-14 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 8d37a1e1-020b-9d03-acfe-44c0c747422f 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-15 18:30:00 23:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 04:00:00 \N 2583c916-2d07-f42d-9c85-18ee42959317 00:30:00 reposition 00:00:00 06:40:00 b910e083-9fa5-fcf2-71fa-62a40720ea3c 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-16 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 33ff9aa9-677b-0f6a-af18-b331c85f8657 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-29 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 81c0efe4-e630-d93f-d153-92641647b85b 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-30 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 0cc5175b-97ca-e0b5-87f0-a1fa693883b0 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-29 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 dd6dc113-3889-be09-b9c2-1cbc1eda18ed 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-06 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 00:00:00 f618f025-0c62-2e2a-6560-2ec7835f3b0c 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-18 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 5d4f091d-66a8-c3b1-1b69-756c53451635 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-20 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 26e64577-991e-5e68-31e2-9d01b0ba6afe 2020-08-05 08:46:22.644638 2020-07-30 13:43:01.660018 71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-19 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 3a7ce744-7a56-6c9a-4cdc-01310f84fef8 2020-08-05 08:46:22.644638 2020-07-30 13:43:01.660018 71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-21 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 7f3da7e3-855a-cff0-a068-f8c026447e09 2020-08-05 08:46:22.644638 2020-07-30 13:43:01.660018 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-29 18:30:00 23:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 82a86d99-205e-0cff-7184-37d7740e57a2 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-28 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 eb811b61-8114-3007-d86b-abb0a010be54 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-30 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 ca0f188d-2fd2-dce4-18d5-9a825c0b0994 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-01 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 cd1ec279-8a92-d8af-e347-05f5a0764d9f 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-02 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 3cf38d19-b3c2-0e9c-89e8-09e72f1805f1 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-03 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 6e77eb11-4538-b191-fe07-b863519eb4b5 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-04 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 dd345189-3984-5bdc-08c1-e25b468be30d 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 0ded3220-9db7-6490-857e-9e31defcca3b 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-10-01 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 a9aaa078-914d-83b2-63a0-176b7eb745c5 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-26 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 00:00:00 1af047d2-6ae7-711f-35c8-3512c048397d 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 @@ -3549,6 +3593,27 @@ COPY portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, t 71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-10-02 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 b93dba15-40c5-0493-4d85-a618b84addd9 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-16 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 97dfdbff-f636-9c75-2927-d977bc5ef85f 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-13 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 00:00:00 b81dd0bb-cee1-2a90-1420-d1aef612f6db 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-05 18:30:00 23:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 b28ec6a6-1077-6750-6c50-e882b9604000 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-06 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 745cad31-18a9-2dda-46fe-be02e6d3c592 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-08 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 fc854114-0c0e-e08d-0adc-320d6d78321b 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-09 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 055b9820-8fb1-6753-2da7-db743f517227 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-10 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 6070df19-9a72-a066-0020-cd3def00ceb5 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-11 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 e37df37f-d03d-4e23-77f6-2c84a53400b6 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-12 18:30:00 23:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 4901de65-0682-05f1-4852-d67672baa086 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-13 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 1b71a776-0d31-4f3d-3c2a-605cc593fad7 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-19 18:30:00 23:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 041deca6-fbbc-b978-3029-13b0defc308e 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-20 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 f572a199-449a-3aa6-e67f-e3b3c9802a4c 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-22 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 748ef77b-7f9e-dc78-612a-553acba3d4bf 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-23 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 8b4984ab-dcc0-ce8d-eb43-91206551066e 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-24 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 23da2358-153f-7f44-6738-fb356652b859 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-25 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 c8e3f690-ecb1-12f6-922a-c2d6cca04916 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-26 18:30:00 23:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 4e7d93a8-46b4-1ad3-1699-7c7d646129fa 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-27 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 537027d5-e08c-801a-3030-29ce2023898c 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-01 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 9328bc91-ce7a-ddbc-a306-87fb99d1100e 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-02 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 7bf68994-ba3a-7ff7-e216-d6c10fc81766 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-03 18:30:00 23:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 aa5d538a-9a16-fac4-84ce-d047ef33c367 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-04 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 c335a092-dbea-a4d9-8bee-4401cc242e1b 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-24 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 dd2093a7-a680-51d1-d577-31be5ee75abb 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-03 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 4b7610cc-81a4-6080-0b8e-defac51730e2 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-08-20 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 a4d0dacd-a70e-e407-fca3-4dd01d392cd7 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-29 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 ff4868b2-dfec-a669-2efa-22b54b04f26f 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 @@ -4065,182 +4130,172 @@ COPY portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, t 8aa08f14-7976-baca-c214-b1131263ea5d 2021-01-22 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 02433392-231a-6437-55a3-00208be86eb1 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 8aa08f14-7976-baca-c214-b1131263ea5d 2021-01-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 ac3dd5cd-cb1e-b76d-1af4-108ed46d8817 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 8aa08f14-7976-baca-c214-b1131263ea5d 2021-01-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 2610a142-1a7b-9e96-25fd-2a08220e5639 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 -cc63023b-4892-c29c-787d-088392d58b88 2020-08-10 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 f0a6c021-7338-26c2-dd85-abb816d14af7 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-08-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 621069b7-487f-28d7-6f7f-dbfc8ded195d 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-08-12 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 d726d23d-e678-00a6-2ee0-a8826a50676a 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-08-13 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 a914420a-5625-7d87-b072-0d5b9452ca6a 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-08-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 d31116e5-7f7f-f71c-d5f4-c0e6fabd1145 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-08-15 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 41fbed8f-bb6f-e5bd-0de0-4d5543a630c9 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-08-16 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 5286fb98-d7cb-b0ee-adaf-ddabf5bcd9c8 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-08-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 a3ba6b33-3d97-b751-89a5-e7f0838e2303 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-08-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 4664ae45-fec3-cd50-c2d7-5b0151860c2c 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-08-19 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 9e555497-d77f-d51d-8172-34a85222a412 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-08-20 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 331e0359-d219-1d58-3ec4-b7ef4eb44e36 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-08-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 a426f7d1-6696-834c-7760-498dbdf344e0 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-08-22 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 9fc9c24f-81eb-cba0-b066-f4ad18b1ae97 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-08-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 5a40ab8c-6c83-fa16-5c9d-c029556fd496 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-08-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 eaf31ba7-f528-6b43-0d92-cdf78fb08863 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-08-25 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 ac612255-e004-7742-fe4f-f5cbc1987dee 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-08-26 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 2b06618a-5be7-7f69-d623-fc10ad140310 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-08-27 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 6885484b-ed08-303c-5b7e-b1872e496704 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-08-28 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 7b3a40d7-7b1d-3709-79b2-699bf586a0db 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-08-29 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 82c192b4-48c2-dac4-52fc-2f57c7bffeee 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-08-30 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 4a05e133-134a-37c8-8fe1-4692fd4252c7 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-08-31 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 8dde55e4-8f66-f561-24bb-06336598ea36 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-09-01 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 b200e39d-93f8-ce76-fa7d-9e0dce2a7a66 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-09-02 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 b8e2f479-fdd7-55e5-b335-dbdf3dd80d00 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-09-03 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 d781606c-1aac-baef-2445-2fa70b714b74 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-09-04 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 ce5127ee-6d48-d507-031d-4bb61fb71093 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-09-05 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 cdf8dfaf-1560-30ec-9400-530a8922f08d 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-09-06 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 113dfefd-da5b-8e0d-3d15-b3a190b27051 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-09-07 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 700b845e-4ce9-0065-3ee1-907a38d17368 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-09-08 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 dea90e44-7b32-4642-4615-89dec323f765 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-09-09 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 ae3e7492-6ba1-39d2-3e84-ae53358ae17b 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-09-10 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 32d07a78-e665-bcb3-d2f8-3cd13ef74f57 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-09-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 7f7670b4-6db9-6f1e-c90f-e086dfe23a3c 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-09-12 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 96d91e20-744b-16b3-c519-f04689e0fe06 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-09-13 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 db38d142-2bec-723b-1067-bdc2edc7074d 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-09-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 30d50f41-d4de-ab70-875c-009a8e00e00e 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-09-15 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 54639988-8ff0-dec2-bb0b-f0df21c9538d 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-09-16 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 12886148-35a0-f1e5-7fe4-54e8ff78a603 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-09-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 eee28dae-6abc-ac92-ef5d-ed07389f57de 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-09-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 6f00ec4d-9d41-40cb-f30a-e44ad12f6005 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-09-19 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 7c4f3b7d-cb62-41e6-2fa1-4098bd622410 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-09-20 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 ea415cbf-b194-b8af-1392-2854505555fb 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-09-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 fec17a01-129f-2853-932b-33433f1000de 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-09-22 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 2e860c94-e6de-9316-f0e2-7c376228a216 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-09-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 55aa7c0d-f162-a483-d5e0-c2161c4f6012 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-09-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 9ad97518-2a27-043f-ffe8-d6cd9c661ea6 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-09-25 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 acf9e9d6-c62e-434a-d08f-c2aa02bbe1cc 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-09-26 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 a39e4a06-4fb9-af5e-311f-fc2c05dbb274 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-09-27 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 00a81705-a479-57d1-b507-90fdb32ca6e9 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-09-28 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 0dd7a49e-3253-9467-c5ff-d6a32c6bc86c 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-09-29 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 53285579-8a56-8952-93af-f0b8f32efc03 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-09-30 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 664a328e-0254-2527-2466-a17b9aa06735 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-10-01 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 bad1c8cf-0f3d-263f-ae0c-b4d98024d627 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-10-02 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 a992b7a5-49a5-72b4-fbe8-2ca5f0dad73d 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-10-03 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 4d474a99-94a8-1230-440f-17600b592e3e 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-10-04 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 721e3617-3855-2456-5a91-ff6747f3bc8d 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-10-05 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 a6266dee-5134-b547-260d-1e7afdd722a9 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-10-06 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 5c7db677-9a13-b923-a85e-31788934c13b 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-10-07 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 f194b2fb-a472-553c-6bf6-1f58bb2eb0a4 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-10-08 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 af5db094-5437-33d1-3773-390376205342 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-10-09 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 e80fe375-1734-babd-091e-fad85fd3e6c7 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-10-10 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 6f5842ba-f529-5242-ff57-692761c059e6 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-10-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 8130b9c0-8a64-f8ba-90b5-a973a55f8865 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-10-12 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 54c785cf-9d08-9d32-00a6-b20a14c5dc39 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-10-13 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 dbb9d284-8164-962d-5e40-e93d2d2fb035 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-10-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 ade84686-4fe2-8386-0b9b-9f500508b885 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-10-15 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 0c751cde-5af8-7811-2402-43bd6a1709cb 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-10-16 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 1baac61f-d72d-00a7-4b6f-c43699b13839 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-10-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 5f42f0b1-4b01-1830-97ce-187f58c261b8 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-10-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 0a9ae934-7085-44e4-c5f2-5e0c7d795912 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-10-19 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 2ba1305b-35b9-0175-f8b0-988be98ee1f8 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-10-20 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 e36fd2b0-1992-a483-00f8-fa0630456a36 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-10-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 f34d889e-1ced-9a6f-58a9-5f65bffaf4de 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-10-22 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 8ed9c52f-b2b7-6fd3-9c1e-126f1028a9c3 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-10-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 3a0546fa-77c5-d9b0-1337-5367b0ea1103 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-10-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 537407f1-95cd-1a0d-58be-f2af47482964 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-10-25 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 1b3eb1ee-2468-0c30-8b81-108f7018a7e2 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-10-26 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 7f87b42d-b41c-bacb-cb49-7a374c739ae1 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-10-27 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 4866e0da-8f9a-fd8d-4f88-b8a107d97966 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-10-28 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 9a72dd08-89fe-c33c-c457-efffeffbca01 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-10-29 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 570386e9-91aa-7ce0-f8ae-6c5ce0b31dbf 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-10-30 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 b9c55ed7-89bf-f5fa-4bb8-6dc35182e2bf 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-10-31 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 d00d8b24-1073-330d-8c2f-dc92d6cde364 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-11-01 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 38490da1-7fee-b59d-a563-6884ceeb9b33 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-11-02 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 fbef2e1e-e3be-ebfa-8d68-0359b1b1bd1c 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-11-03 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 543e49e4-11ff-db40-3f6a-0f2c95bde334 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-11-04 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 d672ceb0-da6c-94d2-4f05-4b57c46fd48a 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-11-05 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 1e56b72d-ef98-08d1-39a2-8947cec4f137 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-11-06 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 aaab1fb7-c85c-26c3-5f80-5a7f8bc5f229 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-11-07 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 7b1e7f59-38f0-bfeb-9fb7-c5da26d179ef 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-11-08 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 086aab14-8c40-f92e-9501-d8db0dd99c13 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-11-09 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 994571c3-a804-e58d-0504-20b7fa79074a 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-11-10 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 ce9dac6a-aed7-68e5-76be-28aa8094c926 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-11-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 970c3563-0ffd-67bd-d84d-cbd10a195251 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-11-12 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 dcf719c8-3993-d484-ba69-d54d0c2c31d5 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-11-13 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 1b355d23-1e98-e3e0-ce3b-f1b4450c9120 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-11-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 8fefaeca-8e45-7ebc-4615-5a17a73de4ad 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-11-15 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 f6ba0af5-d754-a445-810e-08af41068c2f 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-11-16 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 cb6b30a5-69cb-deb2-2b2a-aa16de2a78fc 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-11-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 b55ba9ea-37b2-12d3-2ef4-aa4a648027e7 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-11-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 93dc8050-e2ad-4bc4-d0d2-724b53fe9aec 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-11-19 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 f2db15e5-8b1e-c94d-fbe2-6f64b8fa025c 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-11-20 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 585702dd-7134-e1d6-b710-f3eca09ae13e 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-11-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 b5be8df9-b20e-c7c2-5655-e7fab0005467 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-11-22 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 367746e9-361e-227b-1782-32ff7f59238b 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-11-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 5b331907-8e7d-7671-8dea-d90a6936f30e 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-11-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 308073ed-14cb-1b80-b95d-f11b6ebfb687 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-11-25 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 cefbef57-1b6a-3b29-1519-87c71602d08b 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-11-26 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 d87deaf3-e13c-7f45-0157-482e2d8c0e1d 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-11-27 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 53c1d11b-6f54-0c2c-8bf3-6f9be700d926 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-11-28 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 a7e2f70e-49fe-33e1-ea75-0ec1c4b9627d 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-11-29 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 b0dc1618-651f-deab-7424-eeefb0996b87 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-11-30 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 73134755-e873-f3c7-3dc3-67de17e63edb 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-12-01 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 0dadf608-1e23-e867-c08a-62b451c5fd0f 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-12-02 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 470b76e5-bd23-61ef-99e6-fec25c8f0c1e 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-12-03 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 cdb58645-a4fa-6b3e-c340-12328b1f12c7 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-12-04 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 fa35a81e-0f28-9a6e-af1d-6d05f917bdec 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-12-05 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 c8a3f12c-9d6b-f053-b3a7-0398b1d206a4 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-12-06 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 23686a17-c296-783b-5fd1-db158d1b26c7 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-12-07 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 7878a1e2-48b3-9f26-18c9-ba793492eecb 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-12-08 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 8e889823-c2e5-0c5c-3126-9052309a2e04 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-12-09 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 8fc87785-70e6-ccdf-a6b6-7fc99cf5e751 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-12-10 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 8e1f21d3-817b-2e90-e6f6-433d1dc80b42 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-12-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 cf48a312-4055-50e7-33a7-cdd2fb449722 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-12-12 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 acdf8814-cfe0-6184-8c08-fd5f658b6520 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-12-13 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 355b9f56-a0cc-f8ce-1981-21c23f78e971 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-12-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 85d834c3-68b9-c430-0122-464ef132e2cc 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-12-15 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 529c008a-1c0c-6bb3-57fc-2b3952d8b3f6 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-12-16 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 26aaa919-a641-f176-49d4-7c6e64dd8ac7 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-12-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 60ebf8c4-2dd6-6388-99f4-36f536896ce7 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-12-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 743f36e1-157f-4613-7be7-e93a8a757582 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-12-19 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 360c263a-4c5e-4899-8690-38351cde55f9 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-12-20 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 4de66729-15a2-acc4-2ed8-57a1f84b4fa7 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-12-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 13752499-a979-385c-c5ed-b1e96b085dd6 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-12-22 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 b2f6da1e-e5ff-2fe0-a705-ee76a8b43b2e 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-12-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 a16860d1-21dc-68b8-e0ef-248643868cc0 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-12-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 9d9cc711-74b7-1b10-6f7d-47124d2b90dc 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-12-25 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 0b6863a6-bff2-756a-2bc0-0a1083ee150e 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-12-26 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 85685d17-a31c-2bd9-b2e4-3ef9787f12ba 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-12-27 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 4d535968-3163-aec2-0fa1-2458f8e16466 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-12-28 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 26f263b5-8601-cf53-82ab-e91992a3f912 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-12-29 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 6b209d57-cb73-95a2-48e0-1a116131bde8 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-12-30 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 8a8091af-5b9e-f026-6e32-f65580d75b69 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2020-12-31 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 bb89ce8d-d63c-8c7d-4d96-cb8d8c503348 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2021-01-01 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 a6298ebd-8f61-9006-5f68-528148844ec7 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2021-01-02 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 7a283b04-fe7b-d884-b85b-ebfa48bf1af9 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2021-01-03 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 add80b02-4bf4-a070-2a59-32970a952ab4 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2021-01-04 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 dfb6fd3a-ab9b-85a4-4cf0-8d8edff7484c 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2021-01-05 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 5af39fa8-6344-ef94-5fdf-5bdc389cb6b5 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2021-01-06 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 ce7f988c-2cb9-5d56-d8fd-382e3221cb14 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2021-01-07 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 e57643c6-01b7-8d13-5b24-76be7578ae4e 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2021-01-08 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 a0f8f89b-800d-b51b-911c-51da89fdea71 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2021-01-09 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 21361dd3-ba73-c8a4-2e03-6001d4a93549 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2021-01-10 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 71fc2e75-cbbb-fff7-1118-47987f39b051 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2021-01-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 27e388f4-95d9-4990-94cb-9dff95973fde 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2021-01-12 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 daa33163-363b-67c5-36b2-b88b45eeb53a 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2021-01-13 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 d3605bc2-c2f6-b15e-0dec-d762aa4e812d 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2021-01-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 69cd16a2-f62b-2dd2-ca31-254865a4334b 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2021-01-15 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 5acd2783-0e46-5516-1464-a82c4cd451e6 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2021-01-16 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 375910dc-fc9b-0a59-1d3c-bde2bba62271 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2021-01-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 ae565df3-d163-5c5c-d2eb-e182ab9fae3d 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2021-01-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 bf4854f5-4fd2-8f08-f269-d7415644a54e 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2021-01-19 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 b0e18881-3d97-00c3-6176-0792b2ded6ef 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2021-01-20 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 f55d1df6-1f6f-2d88-915a-77cbc5987b07 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2021-01-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 996c02a3-7799-1a56-c4f1-8ac207aad61c 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2021-01-22 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 937cb857-3842-37c3-b59e-63e0f43d1788 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2021-01-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 3ce6a02a-fa8e-444c-1563-72bce95339a4 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2021-01-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 f8e4ecd4-d138-ac89-d780-7ba963907aff 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-19 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 477b97cd-3532-517c-e48d-ff6d2a50fb5f 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-29 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 82a86d99-205e-0cff-7184-37d7740e57a2 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-19 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 9e555497-d77f-d51d-8172-34a85222a412 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-22 17:30:00 22:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 9fc9c24f-81eb-cba0-b066-f4ad18b1ae97 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-25 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 ac612255-e004-7742-fe4f-f5cbc1987dee 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-30 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 4a05e133-134a-37c8-8fe1-4692fd4252c7 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-04 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 ce5127ee-6d48-d507-031d-4bb61fb71093 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-09 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 ae3e7492-6ba1-39d2-3e84-ae53358ae17b 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-10 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 32d07a78-e665-bcb3-d2f8-3cd13ef74f57 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-12 17:30:00 22:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 96d91e20-744b-16b3-c519-f04689e0fe06 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-17 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 eee28dae-6abc-ac92-ef5d-ed07389f57de 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-20 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 ea415cbf-b194-b8af-1392-2854505555fb 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-18 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 6f00ec4d-9d41-40cb-f30a-e44ad12f6005 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-27 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 00a81705-a479-57d1-b507-90fdb32ca6e9 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-17 10:30:00 14:30:00 18:00:00 23:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:30:00 06:40:00 a3ba6b33-3d97-b751-89a5-e7f0838e2303 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-18 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 4664ae45-fec3-cd50-c2d7-5b0151860c2c 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-20 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 331e0359-d219-1d58-3ec4-b7ef4eb44e36 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-21 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 a426f7d1-6696-834c-7760-498dbdf344e0 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-24 10:30:00 14:30:00 18:00:00 23:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:30:00 06:40:00 eaf31ba7-f528-6b43-0d92-cdf78fb08863 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-28 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 7b3a40d7-7b1d-3709-79b2-699bf586a0db 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-29 17:30:00 22:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 82c192b4-48c2-dac4-52fc-2f57c7bffeee 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-01 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 b200e39d-93f8-ce76-fa7d-9e0dce2a7a66 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-02 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 b8e2f479-fdd7-55e5-b335-dbdf3dd80d00 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-03 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 d781606c-1aac-baef-2445-2fa70b714b74 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-07 10:30:00 14:30:00 18:00:00 23:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:30:00 06:40:00 700b845e-4ce9-0065-3ee1-907a38d17368 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-08 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 dea90e44-7b32-4642-4615-89dec323f765 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-13 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 db38d142-2bec-723b-1067-bdc2edc7074d 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-22 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 2e860c94-e6de-9316-f0e2-7c376228a216 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-23 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 55aa7c0d-f162-a483-d5e0-c2161c4f6012 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-25 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 acf9e9d6-c62e-434a-d08f-c2aa02bbe1cc 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-26 17:30:00 22:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 a39e4a06-4fb9-af5e-311f-fc2c05dbb274 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-29 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 53285579-8a56-8952-93af-f0b8f32efc03 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-30 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 664a328e-0254-2527-2466-a17b9aa06735 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-02 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 a992b7a5-49a5-72b4-fbe8-2ca5f0dad73d 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-04 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 721e3617-3855-2456-5a91-ff6747f3bc8d 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-26 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 2b06618a-5be7-7f69-d623-fc10ad140310 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-27 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 6885484b-ed08-303c-5b7e-b1872e496704 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-31 10:30:00 14:30:00 18:00:00 23:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:30:00 06:40:00 8dde55e4-8f66-f561-24bb-06336598ea36 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-06 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 113dfefd-da5b-8e0d-3d15-b3a190b27051 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-14 10:30:00 14:30:00 18:00:00 23:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:30:00 06:40:00 30d50f41-d4de-ab70-875c-009a8e00e00e 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-15 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 54639988-8ff0-dec2-bb0b-f0df21c9538d 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-16 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 12886148-35a0-f1e5-7fe4-54e8ff78a603 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-21 10:30:00 14:30:00 18:00:00 23:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:30:00 06:40:00 fec17a01-129f-2853-932b-33433f1000de 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-01 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 bad1c8cf-0f3d-263f-ae0c-b4d98024d627 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-03 17:30:00 22:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 4d474a99-94a8-1230-440f-17600b592e3e 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-03 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 cdb58645-a4fa-6b3e-c340-12328b1f12c7 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-04 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 fa35a81e-0f28-9a6e-af1d-6d05f917bdec 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-05 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 c8a3f12c-9d6b-f053-b3a7-0398b1d206a4 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-06 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 23686a17-c296-783b-5fd1-db158d1b26c7 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-07 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 7878a1e2-48b3-9f26-18c9-ba793492eecb 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-08 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 8e889823-c2e5-0c5c-3126-9052309a2e04 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-09 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 8fc87785-70e6-ccdf-a6b6-7fc99cf5e751 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-10 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 8e1f21d3-817b-2e90-e6f6-433d1dc80b42 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-11 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 cf48a312-4055-50e7-33a7-cdd2fb449722 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-12 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 acdf8814-cfe0-6184-8c08-fd5f658b6520 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-13 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 355b9f56-a0cc-f8ce-1981-21c23f78e971 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-14 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 85d834c3-68b9-c430-0122-464ef132e2cc 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-15 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 529c008a-1c0c-6bb3-57fc-2b3952d8b3f6 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-16 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 26aaa919-a641-f176-49d4-7c6e64dd8ac7 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-17 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 60ebf8c4-2dd6-6388-99f4-36f536896ce7 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-18 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 743f36e1-157f-4613-7be7-e93a8a757582 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-19 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 360c263a-4c5e-4899-8690-38351cde55f9 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-20 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 4de66729-15a2-acc4-2ed8-57a1f84b4fa7 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-21 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 13752499-a979-385c-c5ed-b1e96b085dd6 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-22 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 b2f6da1e-e5ff-2fe0-a705-ee76a8b43b2e 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-23 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 a16860d1-21dc-68b8-e0ef-248643868cc0 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-24 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 9d9cc711-74b7-1b10-6f7d-47124d2b90dc 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-25 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 0b6863a6-bff2-756a-2bc0-0a1083ee150e 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-26 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 85685d17-a31c-2bd9-b2e4-3ef9787f12ba 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-27 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 4d535968-3163-aec2-0fa1-2458f8e16466 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-28 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 26f263b5-8601-cf53-82ab-e91992a3f912 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-29 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 6b209d57-cb73-95a2-48e0-1a116131bde8 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-30 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 8a8091af-5b9e-f026-6e32-f65580d75b69 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-31 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 bb89ce8d-d63c-8c7d-4d96-cb8d8c503348 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-01 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 a6298ebd-8f61-9006-5f68-528148844ec7 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-02 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 7a283b04-fe7b-d884-b85b-ebfa48bf1af9 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-03 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 add80b02-4bf4-a070-2a59-32970a952ab4 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-04 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 dfb6fd3a-ab9b-85a4-4cf0-8d8edff7484c 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-05 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 5af39fa8-6344-ef94-5fdf-5bdc389cb6b5 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-06 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 ce7f988c-2cb9-5d56-d8fd-382e3221cb14 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-07 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 e57643c6-01b7-8d13-5b24-76be7578ae4e 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-08 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 a0f8f89b-800d-b51b-911c-51da89fdea71 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-09 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 21361dd3-ba73-c8a4-2e03-6001d4a93549 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-10 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 71fc2e75-cbbb-fff7-1118-47987f39b051 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-11 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 27e388f4-95d9-4990-94cb-9dff95973fde 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-12 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 daa33163-363b-67c5-36b2-b88b45eeb53a 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-13 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 d3605bc2-c2f6-b15e-0dec-d762aa4e812d 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-14 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 69cd16a2-f62b-2dd2-ca31-254865a4334b 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-15 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 5acd2783-0e46-5516-1464-a82c4cd451e6 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-16 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 375910dc-fc9b-0a59-1d3c-bde2bba62271 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-17 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 ae565df3-d163-5c5c-d2eb-e182ab9fae3d 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-18 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 bf4854f5-4fd2-8f08-f269-d7415644a54e 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-19 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 b0e18881-3d97-00c3-6176-0792b2ded6ef 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-20 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 f55d1df6-1f6f-2d88-915a-77cbc5987b07 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-21 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 996c02a3-7799-1a56-c4f1-8ac207aad61c 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-22 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 937cb857-3842-37c3-b59e-63e0f43d1788 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-23 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 3ce6a02a-fa8e-444c-1563-72bce95339a4 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-24 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 f8e4ecd4-d138-ac89-d780-7ba963907aff 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-30 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 73134755-e873-f3c7-3dc3-67de17e63edb 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-01 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 0dadf608-1e23-e867-c08a-62b451c5fd0f 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-02 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 470b76e5-bd23-61ef-99e6-fec25c8f0c1e 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-23 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 5a40ab8c-6c83-fa16-5c9d-c029556fd496 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-05 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 a6266dee-5134-b547-260d-1e7afdd722a9 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-06 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 5c7db677-9a13-b923-a85e-31788934c13b 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-07 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 f194b2fb-a472-553c-6bf6-1f58bb2eb0a4 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-08 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 af5db094-5437-33d1-3773-390376205342 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-09 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 e80fe375-1734-babd-091e-fad85fd3e6c7 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-10 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 6f5842ba-f529-5242-ff57-692761c059e6 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-11 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 8130b9c0-8a64-f8ba-90b5-a973a55f8865 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-12 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 54c785cf-9d08-9d32-00a6-b20a14c5dc39 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-13 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 dbb9d284-8164-962d-5e40-e93d2d2fb035 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-14 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 ade84686-4fe2-8386-0b9b-9f500508b885 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-15 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 0c751cde-5af8-7811-2402-43bd6a1709cb 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-16 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 1baac61f-d72d-00a7-4b6f-c43699b13839 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-17 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 5f42f0b1-4b01-1830-97ce-187f58c261b8 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-18 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 0a9ae934-7085-44e4-c5f2-5e0c7d795912 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-19 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 2ba1305b-35b9-0175-f8b0-988be98ee1f8 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-20 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 e36fd2b0-1992-a483-00f8-fa0630456a36 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-21 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 f34d889e-1ced-9a6f-58a9-5f65bffaf4de 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-22 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 8ed9c52f-b2b7-6fd3-9c1e-126f1028a9c3 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-23 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 3a0546fa-77c5-d9b0-1337-5367b0ea1103 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-24 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 537407f1-95cd-1a0d-58be-f2af47482964 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-25 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 1b3eb1ee-2468-0c30-8b81-108f7018a7e2 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-26 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 7f87b42d-b41c-bacb-cb49-7a374c739ae1 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-27 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 4866e0da-8f9a-fd8d-4f88-b8a107d97966 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-28 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 9a72dd08-89fe-c33c-c457-efffeffbca01 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-29 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 570386e9-91aa-7ce0-f8ae-6c5ce0b31dbf 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-30 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 b9c55ed7-89bf-f5fa-4bb8-6dc35182e2bf 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-31 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 d00d8b24-1073-330d-8c2f-dc92d6cde364 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-01 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 38490da1-7fee-b59d-a563-6884ceeb9b33 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-02 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 fbef2e1e-e3be-ebfa-8d68-0359b1b1bd1c 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-03 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 543e49e4-11ff-db40-3f6a-0f2c95bde334 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-04 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 d672ceb0-da6c-94d2-4f05-4b57c46fd48a 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-05 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 1e56b72d-ef98-08d1-39a2-8947cec4f137 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-06 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 aaab1fb7-c85c-26c3-5f80-5a7f8bc5f229 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-07 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 7b1e7f59-38f0-bfeb-9fb7-c5da26d179ef 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-08 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 086aab14-8c40-f92e-9501-d8db0dd99c13 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-09 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 994571c3-a804-e58d-0504-20b7fa79074a 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-10 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 ce9dac6a-aed7-68e5-76be-28aa8094c926 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-11 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 970c3563-0ffd-67bd-d84d-cbd10a195251 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-12 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 dcf719c8-3993-d484-ba69-d54d0c2c31d5 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-13 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 1b355d23-1e98-e3e0-ce3b-f1b4450c9120 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-14 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 8fefaeca-8e45-7ebc-4615-5a17a73de4ad 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-01 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 ba6084bc-fd98-b1fe-db20-5fa795d99b95 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-04 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 b4dbe264-1148-d294-0732-268261999eb2 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-03 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 eb8ce779-1d92-02d6-b594-6fb3205f4fc1 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-11-30 10:30:00 14:30:00 19:30:00 00:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 05:00:00 06:40:00 6bcb6815-1dee-2ca1-704c-4556b362fe75 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-05 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 a8dce91e-9e64-16b7-e2f3-333e98ab8360 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-02 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 6e15ee78-1177-9b9d-bda2-a1f77f39088d 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-15 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 f6ba0af5-d754-a445-810e-08af41068c2f 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-16 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 cb6b30a5-69cb-deb2-2b2a-aa16de2a78fc 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-17 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 b55ba9ea-37b2-12d3-2ef4-aa4a648027e7 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-18 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 93dc8050-e2ad-4bc4-d0d2-724b53fe9aec 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-19 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 f2db15e5-8b1e-c94d-fbe2-6f64b8fa025c 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-20 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 585702dd-7134-e1d6-b710-f3eca09ae13e 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-21 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 b5be8df9-b20e-c7c2-5655-e7fab0005467 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-22 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 367746e9-361e-227b-1782-32ff7f59238b 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-23 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 5b331907-8e7d-7671-8dea-d90a6936f30e 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-24 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 308073ed-14cb-1b80-b95d-f11b6ebfb687 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-25 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 cefbef57-1b6a-3b29-1519-87c71602d08b 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-26 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 d87deaf3-e13c-7f45-0157-482e2d8c0e1d 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-27 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 53c1d11b-6f54-0c2c-8bf3-6f9be700d926 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-28 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 a7e2f70e-49fe-33e1-ea75-0ec1c4b9627d 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-29 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 b0dc1618-651f-deab-7424-eeefb0996b87 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-10 10:30:00 14:30:00 18:00:00 23:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:30:00 06:40:00 f0a6c021-7338-26c2-dd85-abb816d14af7 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-11 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 621069b7-487f-28d7-6f7f-dbfc8ded195d 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-12 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 d726d23d-e678-00a6-2ee0-a8826a50676a 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-13 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 a914420a-5625-7d87-b072-0d5b9452ca6a 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 1898317d-07d3-c9b8-c29c-a5aa60c28c27 2021-01-12 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 868ef8e0-d3fd-dd85-b3b9-006d26603305 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 1898317d-07d3-c9b8-c29c-a5aa60c28c27 2021-01-20 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 e0727fc9-5f6d-d2a7-0370-ffd9c86e078a 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 1898317d-07d3-c9b8-c29c-a5aa60c28c27 2021-01-13 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 48c066f9-c6ba-38dd-9bf2-13d5032425aa 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 @@ -4252,30 +4307,6 @@ e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-29 18:30:00 23:00:00 \N \N \N \N \N 1898317d-07d3-c9b8-c29c-a5aa60c28c27 2021-01-17 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 b8a2c4bc-53d6-142e-d4fb-956fc11bbce9 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 1898317d-07d3-c9b8-c29c-a5aa60c28c27 2021-01-16 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 845d37e5-2f54-571d-c2d1-5af4bf0ab840 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 1898317d-07d3-c9b8-c29c-a5aa60c28c27 2021-01-14 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 369aac17-3c90-b222-08d3-394d9894d7c1 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-01 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 cd1ec279-8a92-d8af-e347-05f5a0764d9f 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-02 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 3cf38d19-b3c2-0e9c-89e8-09e72f1805f1 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-03 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 6e77eb11-4538-b191-fe07-b863519eb4b5 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-04 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 dd345189-3984-5bdc-08c1-e25b468be30d 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-05 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 b28ec6a6-1077-6750-6c50-e882b9604000 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-06 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 745cad31-18a9-2dda-46fe-be02e6d3c592 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-07 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 4e49e45a-a30d-ccd9-2b03-314bc0e85099 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-08 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 fc854114-0c0e-e08d-0adc-320d6d78321b 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-09 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 055b9820-8fb1-6753-2da7-db743f517227 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-10 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 6070df19-9a72-a066-0020-cd3def00ceb5 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-11 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 e37df37f-d03d-4e23-77f6-2c84a53400b6 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-12 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 4901de65-0682-05f1-4852-d67672baa086 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-13 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 1b71a776-0d31-4f3d-3c2a-605cc593fad7 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 4dc11a5e-ec12-9a58-589e-24056f9485f2 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-15 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 ab99efd4-4b6c-a208-47d4-c9c32a7e792a 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-16 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 ccedd3d8-5226-c7fe-7f92-624d4fef7694 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-17 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 d91bb7d5-542c-f6c8-0f47-cec9c67c28be 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-18 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 68508a4a-067e-a84e-880e-c4b05e61cc2c 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-19 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 041deca6-fbbc-b978-3029-13b0defc308e 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-20 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 f572a199-449a-3aa6-e67f-e3b3c9802a4c 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 0182f7d5-2c82-e0b8-6770-03ff75ca082c 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-22 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 748ef77b-7f9e-dc78-612a-553acba3d4bf 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-23 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 8b4984ab-dcc0-ce8d-eb43-91206551066e 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-24 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 23da2358-153f-7f44-6738-fb356652b859 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 a77618bc-86f2-800f-b26d-6d641147ab7c 2020-09-01 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 cf664f29-f089-ec95-680e-78dc95f438a3 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 a77618bc-86f2-800f-b26d-6d641147ab7c 2020-08-17 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 afdefac3-c6b9-8c76-c900-313284f5085b 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 a77618bc-86f2-800f-b26d-6d641147ab7c 2020-08-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 f66c7e3b-96b1-5df8-c375-ddf9fd95f14e 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 @@ -4444,148 +4475,127 @@ a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-26 10:30:00 14:30:00 17:30:00 22:30 a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-27 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 ed30d5f6-2f55-e2a5-a100-9397c4812641 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-28 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 73de3eaa-62ab-b514-4bcb-3652548327ca 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-29 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 5969cf20-fe87-28e0-e607-a3c1fa585d4d 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-25 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 c8e3f690-ecb1-12f6-922a-c2d6cca04916 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-26 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 4e7d93a8-46b4-1ad3-1699-7c7d646129fa 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-27 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 537027d5-e08c-801a-3030-29ce2023898c 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-28 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 02dd3850-83b9-699f-5b4b-b9eed01555f8 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-29 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 81c0efe4-e630-d93f-d153-92641647b85b 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-30 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 0cc5175b-97ca-e0b5-87f0-a1fa693883b0 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-01 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 9328bc91-ce7a-ddbc-a306-87fb99d1100e 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-02 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 7bf68994-ba3a-7ff7-e216-d6c10fc81766 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-03 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 aa5d538a-9a16-fac4-84ce-d047ef33c367 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-04 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 c335a092-dbea-a4d9-8bee-4401cc242e1b 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-21 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 c1b354a1-1c7c-3b95-b491-be34708b000f 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-22 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 f254709b-0e5d-673e-6c2f-f8f5b76038a2 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-23 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 6ce4b7cb-6fd3-7a57-25e2-b4d74f17a4ca 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 4d0392de-3a3b-d1c3-b72f-63dccb88b3eb 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-25 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 02ccfc69-9697-ae32-bb2c-b3808df91111 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-31 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 beecf864-2602-8168-3910-2a2ef084d9a1 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-26 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 e52ce627-264a-0009-24f7-a1124fd3f228 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-27 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 9822bac6-146e-b4ae-d0bb-ba22a76b08ae 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-28 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 eb811b61-8114-3007-d86b-abb0a010be54 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-30 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 ca0f188d-2fd2-dce4-18d5-9a825c0b0994 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-14 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 8d4981e9-80ee-774b-3229-3248b78e84c6 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-10 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 80f81359-c787-cd4f-c293-2ef8d0d3ae97 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-16 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 33ff9aa9-677b-0f6a-af18-b331c85f8657 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 994a49d2-70dc-b6d9-515b-88dfc33b7031 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-18 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 650b95f1-19bb-0d68-273e-28b2e0cdd077 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-19 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 a993d0aa-b004-ac48-9494-fd2a6d1b2d98 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-30 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 a84ae25b-43e0-567f-2dde-ebfdef96340a 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-01 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 b4b00c8c-7ba8-02fd-950e-831ac0c913a0 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-02 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 c752ed1e-c78f-6e84-24f0-8492e6cfee1a 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-03 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 7241adc7-8589-68ae-b692-22db6d50a187 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-04 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 cc60eaf6-d53d-e8cb-2d5f-b33d50cb3073 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-05 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 4c451523-b7fc-3b85-c44d-06c0a2ce5f78 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-06 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 195e199e-712e-8603-41ae-204b206c4daa 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-07 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 d87c2c4b-d311-f599-a4bb-4670ed0e4498 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-08 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 c81f21e9-9929-8626-52fa-6078f3e75dad 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-09 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 d2ca8372-bebe-f8bf-f192-eb45cfa19ac6 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-10 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 ccaee6ed-730f-7580-5167-ed5f43fcb16f 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-11 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 dacf1943-c022-99fd-5ab9-bc5e16fac4c5 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-12 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 0f3d322f-9657-2445-a6ef-ca36a56194e9 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-13 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 11b1268c-f782-a5bd-7432-e4c816a87f8a 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 68af56d5-7db1-b1a4-39a0-802eacc7c906 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-15 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 aa9d76f8-f265-14b4-cdb5-cd999fa75e41 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-16 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 476ce341-df4a-24ec-3bc1-b8030994e2d4 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-17 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 b71b9bde-77e3-aadf-9a98-071533b5bef8 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-02 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 46dff1c6-fc53-5869-9b1b-ed553f954b66 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-18 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 c1570ca2-e810-2962-02ae-e13381c7c40c 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-20 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 f379a23d-8e79-ad72-256a-ceda5f3f7ca6 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 3a97f329-3f54-f74c-4d04-06f6d3f3c5e3 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-22 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 a55c1e11-990b-e330-aeba-c09ecab233c2 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-23 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 ab64b6fd-0630-9cec-4e67-e77dd34d1676 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-24 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 738958ae-6b0a-16cc-c3de-2c2d071a9149 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-25 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 acd0e3c8-e2cf-f23c-1a1f-5031e6c192f3 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-26 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 1e88d057-92c1-a4b7-1f16-99dab21733e2 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-27 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 7fac269f-9980-1173-3e68-1da77c1b0ac3 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-28 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 78cba873-f8fd-0fed-6d5f-f05b585372b2 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-29 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 f8eee20e-7666-a90c-e18b-b0e74aee9057 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-30 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 8a4a673b-c0aa-6f84-98c3-552c21dbbb49 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-31 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 baae0828-7f32-f3c4-3ac6-17547d67cfef 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-01 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 6f73497c-7b03-49f9-7166-8429b5de923a 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-03 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 42278bf9-9a45-7af1-e127-7cc3f1b78e8a 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-04 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 6044e5ef-0c26-dc0b-e5ec-656cee397530 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-05 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 f2f0d826-afa3-600a-16d6-b038d3bf6607 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-06 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 8420e9af-ccf9-7115-39ac-b4a1546d5d04 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-07 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 4b25b712-ee82-de83-798b-ecd83e21584b 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-08 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 cd79a0e6-3294-5441-3ee8-05ba146b275b 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-09 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 9dbd5ce4-2fd5-bcca-53af-554453ed96a3 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-10 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 9cb3f608-2fbd-0eb9-01e2-6d1305291d42 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 8b02d7b2-c3e4-f18e-0254-daa7778e3694 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-12 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 4d136133-0e4a-ee0b-252f-352ea87e98ab 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-13 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 bc68f7fa-b316-b005-ede9-47608c56d041 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-14 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 607897b5-3008-0358-510d-596180cf6fd2 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-15 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 7d7e4a2f-e00d-d5fc-ee40-101a30f49685 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-16 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 12ea75fc-017d-1d84-1dc8-014ac3d7d27c 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-17 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 9130f052-0136-9c8c-00d9-eac60ed8d7cf 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 904602ae-0d36-398e-60c2-db4c04238a68 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-19 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 f50ad63e-cbd2-79db-3177-9ca35f373dd9 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-20 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 82e4f538-7d54-b955-f964-5fa620b90240 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-21 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 c33c0f1a-26f0-b8c7-fc86-91e74660bf75 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-22 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 725a1f7b-b9a4-6b08-8386-339b93f311df 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-23 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 7e7c9315-74a7-d1cd-ad5b-678c3b624cdc 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-24 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 69305be0-206f-4544-4391-f72d7f2a8d24 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-10 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 6938d127-fb0c-ef59-652f-49bdcca34cf1 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-11 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 4aa15f9b-e387-d6ab-7323-3b9192cf5da1 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-12 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 7e268ff6-e8ea-c0b4-08df-1c73567de3db 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-13 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 4fb47ab5-c8de-3eaf-181f-b5e39c2a8ca8 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-14 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 8d37a1e1-020b-9d03-acfe-44c0c747422f 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-15 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 b910e083-9fa5-fcf2-71fa-62a40720ea3c 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-20 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 044eee57-53d4-b5c3-3458-f37f89b105a9 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-06 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 294eefbe-1fbf-11b0-18ce-64daa474c908 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-07 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 1307d3ec-edfd-dbf1-d9b7-68c30005dcd9 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-08 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 b200abcb-c514-74ea-3460-74617a139b80 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-09 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 4e23e656-e732-e0a9-5737-6f3e0efba13a 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-11 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 37f74c3d-7303-bcc1-eba9-254284143d27 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-12 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 1b67622e-1ecd-d4e6-384d-ec1f469a85e5 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-13 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 d7cb539a-18af-adf2-5d14-4281e3be1d15 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-14 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 fd772ad8-90e8-f998-f233-56ec23049fd8 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-15 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 57fd3eeb-3f1e-ebe1-4c26-951f2545ee69 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-16 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 34704bdd-3aeb-e7b5-cdda-86f37e8f28f0 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-17 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 9ab7268b-755c-af8b-dca6-16afe2009bdb 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-18 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 1a42a09f-1d34-6301-7a18-68eacdfdece0 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-19 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 6f8182f0-379b-1c58-0595-cd8f850fd0b6 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-20 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 f3cb5e62-d1c2-2399-d385-7793f08d4a8d 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-21 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 76ecd943-3fdf-771f-4d6e-31f57ac2fb99 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-22 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 e391284a-fa89-061a-30c5-bc6b70771981 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-23 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 866e9b78-c5fb-ce1f-19f5-20bb019dc025 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-24 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 dd2093a7-a680-51d1-d577-31be5ee75abb 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-25 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 5108a384-232a-f1e3-9b80-1083c789be52 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-26 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 a920dc81-dd5a-af67-65d0-96167885e190 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-05 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 00a9115b-959b-a4ca-aa9d-c419de85093e 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-27 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 f69285bd-0c5f-0de6-05d8-d8330d9b7a97 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-28 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 7abbe91f-cacc-4aff-84ce-29d48cac6eb6 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-29 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 7deb0793-4f05-f3fd-e60e-90358e48c45f 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-30 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 94885a90-38c1-caff-3324-b4ef97daa652 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-31 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 e0477b82-5c38-8786-b2a2-b514912a74ac 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-01 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 3b21cf44-48c7-7ed2-4391-d1dcb5591494 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-02 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 27d16e7d-99e4-92fc-4208-5b39e59e280b 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-03 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 066d8839-e40b-1da2-a3a2-f5ef534af42e 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-04 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 cb4df9df-c78e-a5e5-eb3b-b7d923143ce5 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-05 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 2a1d711f-e1ec-dc3a-eb41-a54d94e56e51 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-06 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 59c4bb8b-760a-600b-19e3-5a7f91512768 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-07 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 9be5484a-0aad-98db-0395-997f30ea8f9f 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-08 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 7f8ba55f-1152-b6f7-49cd-f248a9f9c4a0 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-09 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 ce89b090-9cd9-a143-fe65-80e3f8ba9708 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-10 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 96ea94a2-66e4-480a-e547-2f2f5ef04dee 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-11 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 3e1ede60-1dad-e3cb-ce3d-060e6effa782 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-12 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 caa35de7-1adf-0f01-e322-2c0baa95c265 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-13 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 cff05a0e-99d4-7910-4580-422a1e6ff3e3 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-15 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 8c42aca1-8eea-143b-2a53-bf634494c352 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-16 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 c0b17801-dd69-aed2-77bb-5db2f28bf779 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-17 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 59127855-f780-d6e0-4911-edcdfb61a097 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-18 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 0d421d78-cf0c-4a92-6a80-58ea6aacb3aa 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-19 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 602ed804-2caa-c1c7-c8d1-b04601ca3561 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-20 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 af1476bf-aa5b-1dda-73ce-97280d645256 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-21 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 de84b3f9-4b36-ced9-59bc-e705b1dbfda9 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-22 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 b76b29b1-f578-af15-f5b3-f5a73bf1ff47 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 694a7fe1-f3a9-cf7e-6a07-c07b698d7e66 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-24 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 6c979ff2-d10c-7269-ac16-ec67a0af2506 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-25 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 54bcd89f-7d54-3c5d-3914-51fed804ff95 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-26 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 94149223-6c26-cfa6-bf6c-8854ab0c8956 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-27 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 3c242edd-27ad-1314-0046-2bd8d8a1c8db 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-28 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 99068117-e2a7-2f03-b692-befd39ccb59f 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-29 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 147669f2-68a3-75bf-f107-08159314569a 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-09 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 9dbd5ce4-2fd5-bcca-53af-554453ed96a3 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-14 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 d31116e5-7f7f-f71c-d5f4-c0e6fabd1145 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-15 17:30:00 22:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 41fbed8f-bb6f-e5bd-0de0-4d5543a630c9 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-16 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 5286fb98-d7cb-b0ee-adaf-ddabf5bcd9c8 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-07 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 4e49e45a-a30d-ccd9-2b03-314bc0e85099 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-11 \N \N 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 04:00:00 04:00:00 \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 reposition 00:00:00 06:40:00 4aa15f9b-e387-d6ab-7323-3b9192cf5da1 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-18 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 650b95f1-19bb-0d68-273e-28b2e0cdd077 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-19 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 a993d0aa-b004-ac48-9494-fd2a6d1b2d98 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-20 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 044eee57-53d4-b5c3-3458-f37f89b105a9 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-21 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 c1b354a1-1c7c-3b95-b491-be34708b000f 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-22 18:30:00 23:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 f254709b-0e5d-673e-6c2f-f8f5b76038a2 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-27 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 3c242edd-27ad-1314-0046-2bd8d8a1c8db 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-28 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 99068117-e2a7-2f03-b692-befd39ccb59f 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-29 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 147669f2-68a3-75bf-f107-08159314569a 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-23 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 6ce4b7cb-6fd3-7a57-25e2-b4d74f17a4ca 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-25 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 02ccfc69-9697-ae32-bb2c-b3808df91111 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-26 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 e52ce627-264a-0009-24f7-a1124fd3f228 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-27 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 9822bac6-146e-b4ae-d0bb-ba22a76b08ae 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-12 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 7e268ff6-e8ea-c0b4-08df-1c73567de3db 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-13 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 4fb47ab5-c8de-3eaf-181f-b5e39c2a8ca8 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-01 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 b4b00c8c-7ba8-02fd-950e-831ac0c913a0 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-02 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 c752ed1e-c78f-6e84-24f0-8492e6cfee1a 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-03 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 7241adc7-8589-68ae-b692-22db6d50a187 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-04 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 cc60eaf6-d53d-e8cb-2d5f-b33d50cb3073 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-05 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 4c451523-b7fc-3b85-c44d-06c0a2ce5f78 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-06 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 195e199e-712e-8603-41ae-204b206c4daa 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-08 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 c81f21e9-9929-8626-52fa-6078f3e75dad 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-09 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 d2ca8372-bebe-f8bf-f192-eb45cfa19ac6 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-10 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 ccaee6ed-730f-7580-5167-ed5f43fcb16f 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-11 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 dacf1943-c022-99fd-5ab9-bc5e16fac4c5 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-12 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 0f3d322f-9657-2445-a6ef-ca36a56194e9 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-13 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 11b1268c-f782-a5bd-7432-e4c816a87f8a 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-15 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 ab99efd4-4b6c-a208-47d4-c9c32a7e792a 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-16 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 ccedd3d8-5226-c7fe-7f92-624d4fef7694 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-17 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 d91bb7d5-542c-f6c8-0f47-cec9c67c28be 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-18 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 68508a4a-067e-a84e-880e-c4b05e61cc2c 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-15 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 aa9d76f8-f265-14b4-cdb5-cd999fa75e41 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-16 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 476ce341-df4a-24ec-3bc1-b8030994e2d4 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-17 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 b71b9bde-77e3-aadf-9a98-071533b5bef8 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-18 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 c1570ca2-e810-2962-02ae-e13381c7c40c 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-19 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 477b97cd-3532-517c-e48d-ff6d2a50fb5f 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-20 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 f379a23d-8e79-ad72-256a-ceda5f3f7ca6 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-22 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 a55c1e11-990b-e330-aeba-c09ecab233c2 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-23 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 ab64b6fd-0630-9cec-4e67-e77dd34d1676 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-24 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 738958ae-6b0a-16cc-c3de-2c2d071a9149 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-25 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 acd0e3c8-e2cf-f23c-1a1f-5031e6c192f3 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-26 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 1e88d057-92c1-a4b7-1f16-99dab21733e2 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-27 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 7fac269f-9980-1173-3e68-1da77c1b0ac3 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-29 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 f8eee20e-7666-a90c-e18b-b0e74aee9057 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-30 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 8a4a673b-c0aa-6f84-98c3-552c21dbbb49 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-31 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 baae0828-7f32-f3c4-3ac6-17547d67cfef 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-01 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 6f73497c-7b03-49f9-7166-8429b5de923a 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-02 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 46dff1c6-fc53-5869-9b1b-ed553f954b66 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-03 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 42278bf9-9a45-7af1-e127-7cc3f1b78e8a 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-05 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 f2f0d826-afa3-600a-16d6-b038d3bf6607 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-06 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 8420e9af-ccf9-7115-39ac-b4a1546d5d04 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-07 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 4b25b712-ee82-de83-798b-ecd83e21584b 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-08 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 cd79a0e6-3294-5441-3ee8-05ba146b275b 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-10 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 9cb3f608-2fbd-0eb9-01e2-6d1305291d42 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-12 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 4d136133-0e4a-ee0b-252f-352ea87e98ab 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-13 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 bc68f7fa-b316-b005-ede9-47608c56d041 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-14 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 607897b5-3008-0358-510d-596180cf6fd2 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-15 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 7d7e4a2f-e00d-d5fc-ee40-101a30f49685 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-16 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 12ea75fc-017d-1d84-1dc8-014ac3d7d27c 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-17 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 9130f052-0136-9c8c-00d9-eac60ed8d7cf 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-19 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 f50ad63e-cbd2-79db-3177-9ca35f373dd9 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-20 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 82e4f538-7d54-b955-f964-5fa620b90240 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-21 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 c33c0f1a-26f0-b8c7-fc86-91e74660bf75 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-22 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 725a1f7b-b9a4-6b08-8386-339b93f311df 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-23 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 7e7c9315-74a7-d1cd-ad5b-678c3b624cdc 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-24 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 69305be0-206f-4544-4391-f72d7f2a8d24 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-08 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 b200abcb-c514-74ea-3460-74617a139b80 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-09 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 4e23e656-e732-e0a9-5737-6f3e0efba13a 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-10 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 80f81359-c787-cd4f-c293-2ef8d0d3ae97 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-11 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 37f74c3d-7303-bcc1-eba9-254284143d27 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-13 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 d7cb539a-18af-adf2-5d14-4281e3be1d15 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-14 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 fd772ad8-90e8-f998-f233-56ec23049fd8 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-15 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 57fd3eeb-3f1e-ebe1-4c26-951f2545ee69 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-16 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 34704bdd-3aeb-e7b5-cdda-86f37e8f28f0 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-17 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 9ab7268b-755c-af8b-dca6-16afe2009bdb 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-18 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 1a42a09f-1d34-6301-7a18-68eacdfdece0 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-20 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 f3cb5e62-d1c2-2399-d385-7793f08d4a8d 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-21 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 76ecd943-3fdf-771f-4d6e-31f57ac2fb99 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-22 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 e391284a-fa89-061a-30c5-bc6b70771981 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-23 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 866e9b78-c5fb-ce1f-19f5-20bb019dc025 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-25 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 5108a384-232a-f1e3-9b80-1083c789be52 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-27 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 f69285bd-0c5f-0de6-05d8-d8330d9b7a97 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-28 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 7abbe91f-cacc-4aff-84ce-29d48cac6eb6 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-29 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 7deb0793-4f05-f3fd-e60e-90358e48c45f 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-30 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 94885a90-38c1-caff-3324-b4ef97daa652 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-31 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 e0477b82-5c38-8786-b2a2-b514912a74ac 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-01 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 3b21cf44-48c7-7ed2-4391-d1dcb5591494 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-03 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 066d8839-e40b-1da2-a3a2-f5ef534af42e 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-05 17:30:00 22:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 cdf8dfaf-1560-30ec-9400-530a8922f08d 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-11 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 7f7670b4-6db9-6f1e-c90f-e086dfe23a3c 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-19 17:30:00 22:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 7c4f3b7d-cb62-41e6-2fa1-4098bd622410 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-24 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 9ad97518-2a27-043f-ffe8-d6cd9c661ea6 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-28 10:30:00 14:30:00 18:00:00 23:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:30:00 06:40:00 0dd7a49e-3253-9467-c5ff-d6a32c6bc86c 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-07 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 1307d3ec-edfd-dbf1-d9b7-68c30005dcd9 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-04 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 cb4df9df-c78e-a5e5-eb3b-b7d923143ce5 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-05 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 2a1d711f-e1ec-dc3a-eb41-a54d94e56e51 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-06 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 59c4bb8b-760a-600b-19e3-5a7f91512768 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-07 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 9be5484a-0aad-98db-0395-997f30ea8f9f 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-08 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 7f8ba55f-1152-b6f7-49cd-f248a9f9c4a0 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-10 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 96ea94a2-66e4-480a-e547-2f2f5ef04dee 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-11 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 3e1ede60-1dad-e3cb-ce3d-060e6effa782 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-12 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 caa35de7-1adf-0f01-e322-2c0baa95c265 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-13 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 cff05a0e-99d4-7910-4580-422a1e6ff3e3 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-14 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 8d4981e9-80ee-774b-3229-3248b78e84c6 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-15 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 8c42aca1-8eea-143b-2a53-bf634494c352 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-17 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 59127855-f780-d6e0-4911-edcdfb61a097 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-18 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 0d421d78-cf0c-4a92-6a80-58ea6aacb3aa 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-19 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 602ed804-2caa-c1c7-c8d1-b04601ca3561 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-20 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 af1476bf-aa5b-1dda-73ce-97280d645256 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-21 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 de84b3f9-4b36-ced9-59bc-e705b1dbfda9 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-22 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 b76b29b1-f578-af15-f5b3-f5a73bf1ff47 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-24 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 6c979ff2-d10c-7269-ac16-ec67a0af2506 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-25 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 54bcd89f-7d54-3c5d-3914-51fed804ff95 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-26 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 94149223-6c26-cfa6-bf6c-8854ab0c8956 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-09 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 ce89b090-9cd9-a143-fe65-80e3f8ba9708 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-16 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 c0b17801-dd69-aed2-77bb-5db2f28bf779 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 63204f0b-afae-1380-b655-a6247b129af0 2020-08-10 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 59c83015-13c9-832f-224b-df55382e667f 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 63204f0b-afae-1380-b655-a6247b129af0 2020-08-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 60adcf53-1fa2-58ad-c466-8b741ea39b93 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 63204f0b-afae-1380-b655-a6247b129af0 2020-08-12 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 567d6dbc-da2e-290a-227d-895b142f195f 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 @@ -4758,7 +4768,7 @@ e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-29 11:00:00 14:30:00 \N \N \N \N \N -- --- Data for Name: staffreportperiodweeks; Type: TABLE DATA; Schema: portanova; Owner: potlu2_user +-- Data for Name: staffreportperiodweeks; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- COPY portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) FROM stdin; @@ -4775,6 +4785,7 @@ COPY portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calwe 3c463353-f763-c72c-0007-e6b4926befee 2583c916-2d07-f42d-9c85-18ee42959317 2020 35 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-24 \N 00:00:00 \N \N 0 8499720f-1dda-a01a-5ed8-4c20879f2e61 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 3c463353-f763-c72c-0007-e6b4926befee 2583c916-2d07-f42d-9c85-18ee42959317 2020 36 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-31 \N 00:00:00 \N \N 0 2638a4ed-04ac-7ad5-09a0-f462429ed509 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 3c463353-f763-c72c-0007-e6b4926befee 2583c916-2d07-f42d-9c85-18ee42959317 2020 37 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-07 \N 00:00:00 \N \N 0 bb149c1d-3c32-4f16-6410-9a89c051e209 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +cc63023b-4892-c29c-787d-088392d58b88 2583c916-2d07-f42d-9c85-18ee42959317 2020 35 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-24 \N 40:00:00 \N \N 6 999b5f68-67c3-62ad-4670-7ba2041b057c 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 3c463353-f763-c72c-0007-e6b4926befee 2583c916-2d07-f42d-9c85-18ee42959317 2020 38 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-14 \N 00:00:00 \N \N 0 a3b82097-67f4-8058-783c-ded9c94fc6f2 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 3c463353-f763-c72c-0007-e6b4926befee 2583c916-2d07-f42d-9c85-18ee42959317 2020 39 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-21 \N 00:00:00 \N \N 0 1b7b66f9-a5f8-dc0f-2053-4c178d0295de 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 3c463353-f763-c72c-0007-e6b4926befee 2583c916-2d07-f42d-9c85-18ee42959317 2020 40 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-28 \N 00:00:00 \N \N 0 7c05fb10-69a6-e377-ec49-d06626ccf783 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 @@ -4794,11 +4805,8 @@ a77618bc-86f2-800f-b26d-6d641147ab7c 2583c916-2d07-f42d-9c85-18ee42959317 2020 3 a77618bc-86f2-800f-b26d-6d641147ab7c 2583c916-2d07-f42d-9c85-18ee42959317 2020 39 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-21 \N 40:00:00 \N \N 6 10c4e207-295b-305f-e70b-38655e911b5d 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 a77618bc-86f2-800f-b26d-6d641147ab7c 2583c916-2d07-f42d-9c85-18ee42959317 2020 35 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-24 \N 40:00:00 \N \N 6 741c77e4-c752-0869-77d6-2cc016949f5d 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 a77618bc-86f2-800f-b26d-6d641147ab7c 2583c916-2d07-f42d-9c85-18ee42959317 2020 36 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-31 \N 40:00:00 \N \N 6 72f85a45-6a7e-0efc-9d73-bbcbafd55e01 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 -cc63023b-4892-c29c-787d-088392d58b88 2583c916-2d07-f42d-9c85-18ee42959317 2020 33 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-10 \N 00:00:00 \N \N 0 11a66ae3-870d-c5a3-e64c-2b6bd24cbbdf 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2583c916-2d07-f42d-9c85-18ee42959317 2020 34 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-17 \N 00:00:00 \N \N 0 10201a3c-6c34-df8a-aa23-966a99cea4f4 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2583c916-2d07-f42d-9c85-18ee42959317 2020 35 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-24 \N 00:00:00 \N \N 0 999b5f68-67c3-62ad-4670-7ba2041b057c 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2583c916-2d07-f42d-9c85-18ee42959317 2020 36 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-31 \N 00:00:00 \N \N 0 3d0d3f2c-6fde-17ac-8d6a-65cea55f3486 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2583c916-2d07-f42d-9c85-18ee42959317 2020 37 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-07 \N 00:00:00 \N \N 0 6774d93a-eaef-fad8-d95f-91ed27357ae3 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2583c916-2d07-f42d-9c85-18ee42959317 2020 36 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-31 \N 40:00:00 \N \N 6 3d0d3f2c-6fde-17ac-8d6a-65cea55f3486 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2583c916-2d07-f42d-9c85-18ee42959317 2020 40 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-09-28 \N 40:00:00 \N \N 6 9480f19f-0cda-845e-069c-4179aed88163 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 3c463353-f763-c72c-0007-e6b4926befee 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 49 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-30 \N 00:00:00 \N \N 0 3c2624d8-5132-45d4-2124-a46c6dc4876c 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 3c463353-f763-c72c-0007-e6b4926befee 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 50 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-07 \N 00:00:00 \N \N 0 2f5653e8-399d-f71d-89f2-1f09b0ab794a 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 3c463353-f763-c72c-0007-e6b4926befee 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 51 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-14 \N 00:00:00 \N \N 0 8a8b6dc2-3d47-da92-0725-f0381bb9c22d 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 @@ -4807,13 +4815,11 @@ cc63023b-4892-c29c-787d-088392d58b88 2583c916-2d07-f42d-9c85-18ee42959317 2020 3 3c463353-f763-c72c-0007-e6b4926befee 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 1 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-04 \N 00:00:00 \N \N 0 79a3afc4-3ddd-614d-17ed-3791eec587a0 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 3c463353-f763-c72c-0007-e6b4926befee 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 2 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-11 \N 00:00:00 \N \N 0 76905ca8-17fe-c76d-8c3d-6433bb8df9eb 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 3c463353-f763-c72c-0007-e6b4926befee 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 3 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-18 \N 00:00:00 \N \N 0 da77d389-8665-e613-18ee-00922523c11e 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 -cc63023b-4892-c29c-787d-088392d58b88 2583c916-2d07-f42d-9c85-18ee42959317 2020 38 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-14 \N 00:00:00 \N \N 0 6612dbf9-c114-a7a9-4cd2-fd4984b1c5e4 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2583c916-2d07-f42d-9c85-18ee42959317 2020 39 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-21 \N 00:00:00 \N \N 0 87582198-1f10-2007-2181-d62ca4fd7ad7 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 2583c916-2d07-f42d-9c85-18ee42959317 2020 40 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-28 \N 00:00:00 \N \N 0 9480f19f-0cda-845e-069c-4179aed88163 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2583c916-2d07-f42d-9c85-18ee42959317 2020 33 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-10 \N 40:00:00 \N \N 6 03cefb5b-3fa8-c8c2-acff-1938345c4506 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2583c916-2d07-f42d-9c85-18ee42959317 2020 39 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-21 \N 40:00:00 \N \N 6 042d1b82-630b-d1b9-63da-35120771322c 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2583c916-2d07-f42d-9c85-18ee42959317 2020 40 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-28 \N 40:00:00 \N \N 6 7aff8a58-0572-1983-612c-1d43dde65c28 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2583c916-2d07-f42d-9c85-18ee42959317 2020 38 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-14 \N 40:00:00 \N \N 6 c9cf917b-8c6b-e909-3120-8544d975d421 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 +cc63023b-4892-c29c-787d-088392d58b88 2583c916-2d07-f42d-9c85-18ee42959317 2020 38 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-09-14 \N 40:00:00 \N \N 6 6612dbf9-c114-a7a9-4cd2-fd4984b1c5e4 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2583c916-2d07-f42d-9c85-18ee42959317 2020 33 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-10 \N 40:00:00 \N \N 6 11a66ae3-870d-c5a3-e64c-2b6bd24cbbdf 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2583c916-2d07-f42d-9c85-18ee42959317 2020 34 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-17 \N 40:00:00 \N \N 6 10201a3c-6c34-df8a-aa23-966a99cea4f4 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2583c916-2d07-f42d-9c85-18ee42959317 2020 37 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-09-07 \N 40:00:00 \N \N 6 6774d93a-eaef-fad8-d95f-91ed27357ae3 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2583c916-2d07-f42d-9c85-18ee42959317 2020 39 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-09-21 \N 40:00:00 \N \N 6 87582198-1f10-2007-2181-d62ca4fd7ad7 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 1898317d-07d3-c9b8-c29c-a5aa60c28c27 2583c916-2d07-f42d-9c85-18ee42959317 2020 39 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-21 \N 40:00:00 \N \N 6 eb2db0c9-2106-5224-59c3-76855bf658d9 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 1898317d-07d3-c9b8-c29c-a5aa60c28c27 2583c916-2d07-f42d-9c85-18ee42959317 2020 34 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-17 \N 40:00:00 \N \N 6 90bbcb82-f653-0fa2-10da-9e1db3399cff 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 1898317d-07d3-c9b8-c29c-a5aa60c28c27 2583c916-2d07-f42d-9c85-18ee42959317 2020 37 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-07 \N 40:00:00 \N \N 6 4c9e70de-18b5-f4d0-9ee3-2b1ee53cf2b1 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 @@ -4822,10 +4828,6 @@ e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2583c916-2d07-f42d-9c85-18ee42959317 2020 3 1898317d-07d3-c9b8-c29c-a5aa60c28c27 2583c916-2d07-f42d-9c85-18ee42959317 2020 33 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-10 \N 40:00:00 \N \N 6 64648b58-895d-266a-ed8b-b8872dcc5d59 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 1898317d-07d3-c9b8-c29c-a5aa60c28c27 2583c916-2d07-f42d-9c85-18ee42959317 2020 40 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-28 \N 40:00:00 \N \N 6 2d47e0ae-5cb0-1615-2aee-7af677a2c1d4 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 1898317d-07d3-c9b8-c29c-a5aa60c28c27 2583c916-2d07-f42d-9c85-18ee42959317 2020 36 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-31 \N 40:00:00 \N \N 6 f0e408a9-4c6d-34a6-3543-2ffed280406b 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2583c916-2d07-f42d-9c85-18ee42959317 2020 36 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-31 \N 40:00:00 \N \N 6 72c7014c-8b9e-b5d5-b92d-d5c577e1d1ee 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2583c916-2d07-f42d-9c85-18ee42959317 2020 35 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-24 \N 40:00:00 \N \N 6 5bcd0875-d60c-5012-bd57-5248dc5696f7 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2583c916-2d07-f42d-9c85-18ee42959317 2020 37 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-07 \N 40:00:00 \N \N 6 fe54c0c0-afe1-852d-258a-9f1ccc8a7493 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2583c916-2d07-f42d-9c85-18ee42959317 2020 34 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-17 \N 40:00:00 \N \N 6 d6931909-b9c9-1c3f-4f70-676c4d76e05d 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 8aa08f14-7976-baca-c214-b1131263ea5d 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 49 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-30 \N 00:00:00 \N \N 0 d4b81c50-0bf4-1412-d258-ff91fa0203aa 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 8aa08f14-7976-baca-c214-b1131263ea5d 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 50 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-07 \N 00:00:00 \N \N 0 06e71229-7a42-cce0-f82a-cd6bf38ca27a 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 8aa08f14-7976-baca-c214-b1131263ea5d 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 51 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-14 \N 00:00:00 \N \N 0 b1173062-72f4-af8d-979b-e5e3fcda8ffd 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 @@ -4842,14 +4844,14 @@ e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2583c916-2d07-f42d-9c85-18ee42959317 2020 3 3c463353-f763-c72c-0007-e6b4926befee e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 47 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-16 \N 00:00:00 \N \N 0 f0a945f5-ed53-106a-8a8f-a24b2300d90a 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 3c463353-f763-c72c-0007-e6b4926befee e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 48 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-23 \N 00:00:00 \N \N 0 4f63e754-5e2b-4a76-c11f-3e6775b96263 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 8aa08f14-7976-baca-c214-b1131263ea5d 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 3 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-18 \N 00:00:00 \N \N 0 1250d2be-cd8f-8423-002c-abed6f37de78 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 -cc63023b-4892-c29c-787d-088392d58b88 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 49 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-30 \N 00:00:00 \N \N 0 2467313e-fe03-3c46-dee5-5ae4af227a8a 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 50 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-07 \N 00:00:00 \N \N 0 ac294e86-480e-bcb3-8cc4-89a651b128f2 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 51 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-14 \N 00:00:00 \N \N 0 2bc10655-880c-734c-ff08-516f7a21ca1c 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 52 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-21 \N 00:00:00 \N \N 0 7057e7f9-3c65-5c3f-315e-d79ccfdc263f 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 53 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-28 \N 00:00:00 \N \N 0 56a54ba1-b2cd-70ba-8cfb-86fe38677f48 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 1 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-04 \N 00:00:00 \N \N 0 b180ea27-1765-de62-3e21-173bdc903d1f 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 2 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-11 \N 00:00:00 \N \N 0 f36d72c2-95b4-cd2f-b9f7-778e75377aa2 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 3 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-18 \N 00:00:00 \N \N 0 56e5fee9-96e5-69a4-546a-25c035f21b51 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 53 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-28 \N 00:00:00 \N \N 0 56a54ba1-b2cd-70ba-8cfb-86fe38677f48 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 2 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-11 \N 00:00:00 \N \N 0 f36d72c2-95b4-cd2f-b9f7-778e75377aa2 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 51 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-14 \N 00:00:00 \N \N 0 2bc10655-880c-734c-ff08-516f7a21ca1c 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 3 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-18 \N 00:00:00 \N \N 0 56e5fee9-96e5-69a4-546a-25c035f21b51 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 49 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-30 \N 00:00:00 \N \N 0 2467313e-fe03-3c46-dee5-5ae4af227a8a 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 1 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-04 \N 00:00:00 \N \N 0 b180ea27-1765-de62-3e21-173bdc903d1f 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 52 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-21 \N 00:00:00 \N \N 0 7057e7f9-3c65-5c3f-315e-d79ccfdc263f 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 50 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-07 \N 00:00:00 \N \N 0 ac294e86-480e-bcb3-8cc4-89a651b128f2 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 63204f0b-afae-1380-b655-a6247b129af0 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 41 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-05 \N 00:00:00 \N \N 0 9b5151b5-9634-ef27-5c07-ba531de22d2c 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 1898317d-07d3-c9b8-c29c-a5aa60c28c27 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 2 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-11 \N 40:00:00 \N \N 6 389e6e7f-4752-f68c-4dd6-6f291a503193 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 1898317d-07d3-c9b8-c29c-a5aa60c28c27 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 49 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-30 \N 40:00:00 \N \N 6 b234169a-863a-9497-11e1-46a1ae6f5339 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 @@ -4875,35 +4877,30 @@ a77618bc-86f2-800f-b26d-6d641147ab7c 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 5 8aa08f14-7976-baca-c214-b1131263ea5d e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 47 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-16 \N 00:00:00 \N \N 0 1d3551b6-3eb3-c832-4e60-52052144f6c6 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 a77618bc-86f2-800f-b26d-6d641147ab7c 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 53 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-28 \N 00:00:00 \N \N 0 9f77c01e-e2bf-0313-5d21-4118819df5db 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 8aa08f14-7976-baca-c214-b1131263ea5d e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 48 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-23 \N 00:00:00 \N \N 0 7256a5a4-048c-0b88-b512-14c476517040 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 2 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-11 \N 40:00:00 \N \N 6 a21da5e1-0b38-1cd3-556b-fc9bddfffbdb 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 51 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-14 \N 40:00:00 \N \N 6 a1627aaa-220c-9ece-99cf-a05d9ae13e54 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 3 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-18 \N 40:00:00 \N \N 6 f627c2c7-fa84-7a2a-ac56-be724ee4a6f4 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 52 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-21 \N 40:00:00 \N \N 6 9232773b-0f77-89df-3a38-d2afdd80ad0a 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 49 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-30 \N 40:00:00 \N \N 6 09318c38-7d02-fe13-08e8-bb899a7e133b 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 53 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-28 \N 40:00:00 \N \N 6 ae08c0ec-b589-144a-03f4-e10b05642b65 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 1 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-04 \N 40:00:00 \N \N 6 0f0c3761-21b1-798a-88f6-c25cb861c30c 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -cc63023b-4892-c29c-787d-088392d58b88 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 41 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-05 \N 00:00:00 \N \N 0 effcf244-746a-d662-cf87-a633ece560a2 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 42 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-12 \N 00:00:00 \N \N 0 b633ebf3-5cd2-5b83-c7f0-8bfe57a8a013 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 50 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-07 \N 40:00:00 \N \N 6 9d10c302-d37d-d69a-1fea-0caa755d9086 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -cc63023b-4892-c29c-787d-088392d58b88 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 43 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-19 \N 00:00:00 \N \N 0 d0bd791c-466b-4dde-ee3a-ce48f2def331 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 44 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-26 \N 00:00:00 \N \N 0 55d42aca-695e-b900-22b7-b4c0ce0b5776 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 45 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-02 \N 00:00:00 \N \N 0 65d9d2b4-ec83-71de-ea3e-d20e7624899c 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 46 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-09 \N 00:00:00 \N \N 0 4458b82e-caf1-e886-1b33-6bdd6c666d72 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 47 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-16 \N 00:00:00 \N \N 0 370772c8-45b6-696b-c6b0-f948cf4061e5 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 -cc63023b-4892-c29c-787d-088392d58b88 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 48 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-23 \N 00:00:00 \N \N 0 cb2b6ded-7ef2-cb9c-f930-42fc5c9c6ae9 2020-08-04 09:03:04.740487 2020-08-04 09:03:04.740487 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2583c916-2d07-f42d-9c85-18ee42959317 2020 40 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-09-28 \N 40:00:00 \N \N 6 7aff8a58-0572-1983-612c-1d43dde65c28 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2583c916-2d07-f42d-9c85-18ee42959317 2020 38 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-09-14 \N 40:00:00 \N \N 6 c9cf917b-8c6b-e909-3120-8544d975d421 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2583c916-2d07-f42d-9c85-18ee42959317 2020 36 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-31 \N 40:00:00 \N \N 6 72c7014c-8b9e-b5d5-b92d-d5c577e1d1ee 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2583c916-2d07-f42d-9c85-18ee42959317 2020 35 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-24 \N 40:00:00 \N \N 6 5bcd0875-d60c-5012-bd57-5248dc5696f7 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2583c916-2d07-f42d-9c85-18ee42959317 2020 37 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-09-07 \N 40:00:00 \N \N 6 fe54c0c0-afe1-852d-258a-9f1ccc8a7493 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2583c916-2d07-f42d-9c85-18ee42959317 2020 34 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-17 \N 40:00:00 \N \N 6 d6931909-b9c9-1c3f-4f70-676c4d76e05d 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2583c916-2d07-f42d-9c85-18ee42959317 2020 33 40:00:00 36:00:00 00:00:00 00:00:00 08:00:00 -12:00:00 2020-08-10 \N 28:00:00 \N \N 6 03cefb5b-3fa8-c8c2-acff-1938345c4506 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2583c916-2d07-f42d-9c85-18ee42959317 2020 39 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-09-21 \N 40:00:00 \N \N 6 042d1b82-630b-d1b9-63da-35120771322c 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 1898317d-07d3-c9b8-c29c-a5aa60c28c27 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 41 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-05 \N 40:00:00 \N \N 6 c0318476-becd-68d0-3e11-bf85b1666f8f 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 1898317d-07d3-c9b8-c29c-a5aa60c28c27 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 47 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-16 \N 40:00:00 \N \N 6 9863cb37-aea2-b45c-b82f-975cde052a73 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 1898317d-07d3-c9b8-c29c-a5aa60c28c27 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 44 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-26 \N 40:00:00 \N \N 6 53bb59bc-a296-0e86-6302-21c230be88b8 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 1898317d-07d3-c9b8-c29c-a5aa60c28c27 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 42 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-12 \N 40:00:00 \N \N 6 cb8ed656-613b-9261-55aa-d9f78402cdc0 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 1898317d-07d3-c9b8-c29c-a5aa60c28c27 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 45 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-02 \N 40:00:00 \N \N 6 745bbf58-07a0-654d-1a65-5d4349063833 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 47 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-16 \N 40:00:00 \N \N 6 4ca5cc30-caf8-1e33-5c36-9b6aa2d325b2 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 45 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-02 \N 40:00:00 \N \N 6 376d0e39-0a07-94d1-4089-0c889348db1a 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 41 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-05 \N 40:00:00 \N \N 6 7d3bd1d6-dc29-2a8e-1f9a-4255e1451e33 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 42 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-12 \N 40:00:00 \N \N 6 df70e4fd-cbdf-d10a-e612-ccb0dffb48b7 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 48 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-23 \N 40:00:00 \N \N 6 6737056e-d0bc-f32e-f493-ee52340237c9 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 +cc63023b-4892-c29c-787d-088392d58b88 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 42 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-12 \N 00:00:00 \N \N 0 b633ebf3-5cd2-5b83-c7f0-8bfe57a8a013 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 48 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-23 \N 00:00:00 \N \N 0 cb2b6ded-7ef2-cb9c-f930-42fc5c9c6ae9 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 41 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-05 \N 00:00:00 \N \N 0 effcf244-746a-d662-cf87-a633ece560a2 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 1898317d-07d3-c9b8-c29c-a5aa60c28c27 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 48 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-23 \N 40:00:00 \N \N 6 b37935ef-bc8d-436b-5691-d3fbb717d493 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 1898317d-07d3-c9b8-c29c-a5aa60c28c27 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 46 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-09 \N 40:00:00 \N \N 6 c6610cde-b1d8-811a-3f1d-de6c4df56ae4 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 1898317d-07d3-c9b8-c29c-a5aa60c28c27 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 43 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-19 \N 40:00:00 \N \N 6 7d2667f2-c1ff-3a55-d0c3-b554e0d9c47e 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +cc63023b-4892-c29c-787d-088392d58b88 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 46 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-09 \N 00:00:00 \N \N 0 4458b82e-caf1-e886-1b33-6bdd6c666d72 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 43 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-19 \N 00:00:00 \N \N 0 d0bd791c-466b-4dde-ee3a-ce48f2def331 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 44 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-26 \N 00:00:00 \N \N 0 55d42aca-695e-b900-22b7-b4c0ce0b5776 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 47 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-16 \N 00:00:00 \N \N 0 370772c8-45b6-696b-c6b0-f948cf4061e5 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 45 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-02 \N 00:00:00 \N \N 0 65d9d2b4-ec83-71de-ea3e-d20e7624899c 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 a77618bc-86f2-800f-b26d-6d641147ab7c e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 42 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-12 \N 40:00:00 \N \N 6 2c69af3b-da54-416f-6ce8-a23342f3143f 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 a77618bc-86f2-800f-b26d-6d641147ab7c e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 48 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-23 \N 40:00:00 \N \N 6 e9590724-60b0-9cdf-8efa-5655ceb7cc38 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 a77618bc-86f2-800f-b26d-6d641147ab7c e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 44 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-26 \N 40:00:00 \N \N 6 00e8a37c-03a5-3345-a453-9c9dbc44ece9 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 @@ -4912,6 +4909,14 @@ a77618bc-86f2-800f-b26d-6d641147ab7c e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 4 a77618bc-86f2-800f-b26d-6d641147ab7c e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 41 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-05 \N 40:00:00 \N \N 6 c1477774-15d0-312e-11e1-59d54ab68074 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 a77618bc-86f2-800f-b26d-6d641147ab7c e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 43 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-19 \N 40:00:00 \N \N 6 cad0e3a5-08dd-6040-ee76-69264ce4419a 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 a77618bc-86f2-800f-b26d-6d641147ab7c e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 46 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-09 \N 40:00:00 \N \N 6 78a39aca-4e23-e837-fa80-d42d3ca1dcc0 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 2 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-11 \N 40:00:00 \N \N 6 a21da5e1-0b38-1cd3-556b-fc9bddfffbdb 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 51 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-14 \N 40:00:00 \N \N 6 a1627aaa-220c-9ece-99cf-a05d9ae13e54 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 3 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-18 \N 40:00:00 \N \N 6 f627c2c7-fa84-7a2a-ac56-be724ee4a6f4 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 49 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-30 \N 40:00:00 \N \N 6 09318c38-7d02-fe13-08e8-bb899a7e133b 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 53 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-28 \N 40:00:00 \N \N 6 ae08c0ec-b589-144a-03f4-e10b05642b65 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 1 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-04 \N 40:00:00 \N \N 6 0f0c3761-21b1-798a-88f6-c25cb861c30c 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 52 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-21 \N 40:00:00 \N \N 6 9232773b-0f77-89df-3a38-d2afdd80ad0a 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 50 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-07 \N 40:00:00 \N \N 6 9d10c302-d37d-d69a-1fea-0caa755d9086 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 63204f0b-afae-1380-b655-a6247b129af0 2583c916-2d07-f42d-9c85-18ee42959317 2020 36 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-31 \N 00:00:00 \N \N 0 fa264bbc-5a60-46bc-8d5e-45803ed3837f 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 63204f0b-afae-1380-b655-a6247b129af0 2583c916-2d07-f42d-9c85-18ee42959317 2020 39 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-21 \N 00:00:00 \N \N 0 ee38c0a6-1c04-ea11-face-7c2e859c632a 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 63204f0b-afae-1380-b655-a6247b129af0 2583c916-2d07-f42d-9c85-18ee42959317 2020 40 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-28 \N 00:00:00 \N \N 0 644651aa-612f-96d8-9f82-e6edb6725ede 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 @@ -4920,6 +4925,11 @@ a77618bc-86f2-800f-b26d-6d641147ab7c e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 4 63204f0b-afae-1380-b655-a6247b129af0 2583c916-2d07-f42d-9c85-18ee42959317 2020 35 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-24 \N 00:00:00 \N \N 0 8b8f18d8-9493-f628-322a-70be57c5ed76 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 63204f0b-afae-1380-b655-a6247b129af0 2583c916-2d07-f42d-9c85-18ee42959317 2020 38 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-14 \N 00:00:00 \N \N 0 1ff4dde2-5549-3aa5-0630-95325987e045 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 63204f0b-afae-1380-b655-a6247b129af0 2583c916-2d07-f42d-9c85-18ee42959317 2020 34 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-17 \N 00:00:00 \N \N 0 caf1fcaa-66f8-abdd-04b3-caa3fe7cd234 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 47 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-16 \N 40:00:00 \N \N 6 4ca5cc30-caf8-1e33-5c36-9b6aa2d325b2 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 45 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-02 \N 40:00:00 \N \N 6 376d0e39-0a07-94d1-4089-0c889348db1a 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 41 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-05 \N 40:00:00 \N \N 6 7d3bd1d6-dc29-2a8e-1f9a-4255e1451e33 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 42 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-12 \N 40:00:00 \N \N 6 df70e4fd-cbdf-d10a-e612-ccb0dffb48b7 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 48 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-23 \N 40:00:00 \N \N 6 6737056e-d0bc-f32e-f493-ee52340237c9 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 63204f0b-afae-1380-b655-a6247b129af0 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 49 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-30 \N 00:00:00 \N \N 0 07a20dda-7249-33f8-b3bd-94ece0a1dc39 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 63204f0b-afae-1380-b655-a6247b129af0 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 50 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-07 \N 00:00:00 \N \N 0 094f8c94-541f-4435-e37f-6110fdf74d1f 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 63204f0b-afae-1380-b655-a6247b129af0 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 52 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-21 \N 00:00:00 \N \N 0 bc73ee15-c005-1b1c-7959-08069a52a2ee 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 @@ -4935,14 +4945,14 @@ a77618bc-86f2-800f-b26d-6d641147ab7c e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 4 63204f0b-afae-1380-b655-a6247b129af0 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 48 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-23 \N 00:00:00 \N \N 0 32ce44f1-8045-8219-c463-d0c15fbcf4d7 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 63204f0b-afae-1380-b655-a6247b129af0 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 46 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-09 \N 00:00:00 \N \N 0 71d77a11-3347-941b-c104-421272f17d4c 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 63204f0b-afae-1380-b655-a6247b129af0 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 42 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-12 \N 00:00:00 \N \N 0 53678e81-40f4-8a8e-7a9d-456aa3083026 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 44 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-26 \N 40:00:00 \N \N 6 907bfec2-6da2-24d9-70ff-4e0adbbfb4ee 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 43 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-19 \N 40:00:00 \N \N 6 527bd64a-6a3b-920f-eecf-f86e2073bb60 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 46 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-09 \N 40:00:00 \N \N 6 3cb51a89-5100-3486-d9c7-a52175adf74b 2020-08-04 17:40:43.48673 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 44 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-26 \N 40:00:00 \N \N 6 907bfec2-6da2-24d9-70ff-4e0adbbfb4ee 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 43 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-19 \N 40:00:00 \N \N 6 527bd64a-6a3b-920f-eecf-f86e2073bb60 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 46 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-09 \N 40:00:00 \N \N 6 3cb51a89-5100-3486-d9c7-a52175adf74b 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 \. -- --- Data for Name: staffvacancy; Type: TABLE DATA; Schema: portanova; Owner: potlu2_user +-- Data for Name: staffvacancy; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- COPY portanova.staffvacancy (id_staff, daydate, id_vacancytype, vacancyhours, id, modified, created) FROM stdin; @@ -4950,7 +4960,7 @@ COPY portanova.staffvacancy (id_staff, daydate, id_vacancytype, vacancyhours, id -- --- Data for Name: vacancydays; Type: TABLE DATA; Schema: portanova; Owner: potlu2_user +-- Data for Name: vacancydays; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- COPY portanova.vacancydays (daydate, vacancyname, id, modified, created) FROM stdin; @@ -4991,7 +5001,7 @@ COPY portanova.vacancydays (daydate, vacancyname, id, modified, created) FROM st -- --- Data for Name: vacancytypes; Type: TABLE DATA; Schema: portanova; Owner: potlu2_user +-- Data for Name: vacancytypes; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- COPY portanova.vacancytypes (vacancyname, isworktime, isfreetime, color, id, modified, created) FROM stdin; @@ -5006,7 +5016,7 @@ normal t t #1b92bb normal 2020-07-23 11:59:38.23885 2020-07-23 12:27:10.908142 -- --- Data for Name: workplandays; Type: TABLE DATA; Schema: portanova; Owner: potlu2_user +-- Data for Name: workplandays; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- COPY portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) FROM stdin; @@ -5119,7 +5129,7 @@ f0e63e3e-e55e-c80d-99fc-b4bfe6fa3312 7 10:30:00 14:30:00 18:30:00 23:30:00 01:00 -- --- Data for Name: workplans; Type: TABLE DATA; Schema: portanova; Owner: potlu2_user +-- Data for Name: workplans; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- COPY portanova.workplans (workplan, weekhours, weekdays, freeweekdayslist, id, modified, created, isdefault) FROM stdin; @@ -5142,7 +5152,7 @@ Horaire Catia 40:00:00 6 ["4"] fbd5ac24-becf-c358-45c4-65518415ebb8 2020-08-04 0 -- --- Data for Name: worktimes; Type: TABLE DATA; Schema: portanova; Owner: potlu2_user +-- Data for Name: worktimes; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- COPY portanova.worktimes (startdate, enddate, defaultdayhours, maxdayhours, defaultweekhours, maxweekhours, maxinterruptionhours, isdefault, id, modified, created) FROM stdin; @@ -5154,19 +5164,17 @@ COPY portanova.worktimes (startdate, enddate, defaultdayhours, maxdayhours, defa -- --- Data for Name: companies; Type: TABLE DATA; Schema: public; Owner: potlu2_user +-- Data for Name: companies; Type: TABLE DATA; Schema: public; Owner: potlu_user -- COPY public.companies (company, address, zip, city, country, tradetype, comregister, vatnumber, schemata, validated, schemata2, email, socialtype, vatvalidated, reportperiodunit, reportperiodlength, reportperiodstart, id, datasetname, phone) FROM stdin; -test 4, rue Principale 3770 Tétange Luxemburg \N \N \N test \N \N kilian@saffran.lu s.à r.l. \N \N \N \N d1f1e10e-48ef-d422-3930-0d702e05c689 \N \N -TEST2 8b, rue du Moulin 6914 Roodt-sur-Syre Luxemburg \N \N \N test2 \N \N support@dks.lu \N \N \N \N \N 9c2ff129-6b43-f4ce-4f6d-823bed531152 \N \N Test \N \N \N \N \N \N \N testmyapp \N \N \N \N \N 8 2020-03-04 716d62c1-f6c7-07bb-17ec-8b5825b9696b TESTMYAPP \N IL CANTUCCIO 14, Avenue de la Faïencerie 1510 Luxembourg Luxemburg \N B27344 portanova \N \N support@dks.lu s.à r.l. \N week 8 2019-12-30 8a8728fd-d37d-3a41-757c-bf73d4b9b410 Porta Nova \. -- --- Data for Name: labels; Type: TABLE DATA; Schema: public; Owner: potlu2_user +-- Data for Name: labels; Type: TABLE DATA; Schema: public; Owner: potlu_user -- COPY public.labels (id, de, fr, en) FROM stdin; @@ -5174,7 +5182,7 @@ COPY public.labels (id, de, fr, en) FROM stdin; -- --- Data for Name: preferences; Type: TABLE DATA; Schema: public; Owner: potlu2_user +-- Data for Name: preferences; Type: TABLE DATA; Schema: public; Owner: potlu_user -- COPY public.preferences (id, id_user, ident, prefdata) FROM stdin; @@ -5182,7 +5190,7 @@ COPY public.preferences (id, id_user, ident, prefdata) FROM stdin; -- --- Data for Name: sectorworktime; Type: TABLE DATA; Schema: public; Owner: potlu2_user +-- Data for Name: sectorworktime; Type: TABLE DATA; Schema: public; Owner: potlu_user -- COPY public.sectorworktime (id, sector, startdate, enddate, defaultdayhours, maxdayhours, defaultweekhours, maxweekhours, maxinterruptionhours, isdefault) FROM stdin; @@ -5194,7 +5202,7 @@ COPY public.sectorworktime (id, sector, startdate, enddate, defaultdayhours, max -- --- Data for Name: sessions; Type: TABLE DATA; Schema: public; Owner: potlu2_user +-- Data for Name: sessions; Type: TABLE DATA; Schema: public; Owner: potlu_user -- COPY public.sessions (id_user, user_agent, remote_addr, created, id, sessiondata) FROM stdin; @@ -5249,18 +5257,21 @@ e9e6880b-75c7-70b5-ce61-49cf6d62630f Mozilla/5.0 (Windows NT 10.0; Win64; x64) A e9e6880b-75c7-70b5-ce61-49cf6d62630f Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0 ::1 2020-07-23 12:33:29.414745 LO-LO-bff6a206-87af-d529-8266-bca458e1786d {"schemata": "portanova"} e9e6880b-75c7-70b5-ce61-49cf6d62630f Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0 ::1 2020-07-24 16:42:55.137598 LO-304e0346-4cb0-67c4-dcbb-9557c33c4336 {"schemata":"portanova"} e9e6880b-75c7-70b5-ce61-49cf6d62630f Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0 ::1 2020-07-28 10:47:38.95606 4c48f22a-515d-c8f3-0cdd-458304e49523 {"schemata":"portanova"} -e9e6880b-75c7-70b5-ce61-49cf6d62630f Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36 ::1 2020-08-03 15:02:38.486102 LO-LO-LO-LO-LO-LO-1aab37e9-6b62-b088-9db2-eb20969effae {"schemata": "portanova"} -e9e6880b-75c7-70b5-ce61-49cf6d62630f Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36 ::1 2020-08-03 17:07:40.851315 LO-LO-LO-LO-LO-4153c4ff-c185-fa16-cf24-a54695fc7281 {"schemata":"portanova"} -e9e6880b-75c7-70b5-ce61-49cf6d62630f Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36 ::1 2020-08-04 07:53:56.664758 LO-LO-LO-LO-0bc5edbb-8e14-79a7-c169-0c4cfe7cac9c {"schemata":"portanova"} -e9e6880b-75c7-70b5-ce61-49cf6d62630f Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36 ::1 2020-08-04 16:36:05.902211 LO-LO-LO-89e3d552-9819-b99f-123c-223e1f1d4e2d {"schemata":"portanova"} -e9e6880b-75c7-70b5-ce61-49cf6d62630f Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36 ::1 2020-08-05 08:26:34.74338 LO-LO-35e80a85-1fdb-4eaf-0fae-abe67c064724 {"schemata":"portanova"} -e9e6880b-75c7-70b5-ce61-49cf6d62630f Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36 ::1 2020-08-06 09:05:17.371751 LO-2af69d6f-fccd-f066-0a81-c335bc9e19cb {"schemata": ""} -e9e6880b-75c7-70b5-ce61-49cf6d62630f Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36 ::1 2020-08-06 09:05:49.584275 a1bcccdf-e744-4255-b5d5-1f9da4725028 {"schemata": ""} +e9e6880b-75c7-70b5-ce61-49cf6d62630f Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36 ::1 2020-08-03 15:02:38.486102 LO-LO-LO-LO-LO-LO-LO-LO-LO-1aab37e9-6b62-b088-9db2-eb20969effae {"schemata": "portanova"} +e9e6880b-75c7-70b5-ce61-49cf6d62630f Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36 ::1 2020-08-03 17:07:40.851315 LO-LO-LO-LO-LO-LO-LO-LO-4153c4ff-c185-fa16-cf24-a54695fc7281 {"schemata":"portanova"} +e9e6880b-75c7-70b5-ce61-49cf6d62630f Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36 ::1 2020-08-04 07:53:56.664758 LO-LO-LO-LO-LO-LO-LO-0bc5edbb-8e14-79a7-c169-0c4cfe7cac9c {"schemata":"portanova"} +e9e6880b-75c7-70b5-ce61-49cf6d62630f Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36 ::1 2020-08-04 16:36:05.902211 LO-LO-LO-LO-LO-LO-89e3d552-9819-b99f-123c-223e1f1d4e2d {"schemata":"portanova"} +e9e6880b-75c7-70b5-ce61-49cf6d62630f Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36 ::1 2020-08-05 08:26:34.74338 LO-LO-LO-LO-LO-35e80a85-1fdb-4eaf-0fae-abe67c064724 {"schemata":"portanova"} +e9e6880b-75c7-70b5-ce61-49cf6d62630f Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36 ::1 2020-08-06 09:05:17.371751 LO-LO-LO-LO-2af69d6f-fccd-f066-0a81-c335bc9e19cb {"schemata": ""} +e9e6880b-75c7-70b5-ce61-49cf6d62630f Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36 ::1 2020-08-06 09:05:49.584275 LO-LO-LO-a1bcccdf-e744-4255-b5d5-1f9da4725028 {"schemata": ""} +e9e6880b-75c7-70b5-ce61-49cf6d62630f Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36 ::1 2020-08-09 09:52:12.992059 LO-LO-1bc90d9f-14c8-6a99-8c53-44092da183c3 {"schemata": "portanova"} +e9e6880b-75c7-70b5-ce61-49cf6d62630f Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36 ::1 2020-08-09 14:22:21.625457 LO-f3fead4b-a2fb-cf7a-17a2-703399a3b7eb {"schemata":"portanova"} +e9e6880b-75c7-70b5-ce61-49cf6d62630f Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36 ::1 2020-08-09 14:49:20.777947 0bb4c4df-275c-9303-f908-b639c105dee6 {"schemata":"portanova"} \. -- --- Data for Name: usergroups; Type: TABLE DATA; Schema: public; Owner: potlu2_user +-- Data for Name: usergroups; Type: TABLE DATA; Schema: public; Owner: potlu_user -- COPY public.usergroups (id, isdefault, groupname) FROM stdin; @@ -5273,18 +5284,18 @@ teamleader \N Responsable -- --- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: potlu2_user +-- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: potlu_user -- COPY public.users (userpassword, created, blocked, username, regcode, vcode, schemaaccess, id_usergroups, surname, prename, phone, job, id_company, id_usergroup, id) FROM stdin; -0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec 2019-12-29 16:53:19.68549 \N ksaffran@dks.lu \N \N ["portanova"] ["3","5"] Saffran Kilian \N \N 8a8728fd-d37d-3a41-757c-bf73d4b9b410 admin e9e6880b-75c7-70b5-ce61-49cf6d62630f 0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec 2019-10-10 17:12:11.934747 \N kilian.saffran@gmail.com \N 6tgfkew ["portanova"] ["2","5","3","4"] Saffran Kilian +352691504574 Gérant 8a8728fd-d37d-3a41-757c-bf73d4b9b410 admin 4e46e03a-932e-36ac-e885-572fb86841b3 0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec 2019-12-20 11:03:08.757357 \N kilian@saffran.lu \N \N ["portanova"] ["5"] Saffran Kilian 691504574 \N 8a8728fd-d37d-3a41-757c-bf73d4b9b410 teamleader 833ccc12-d964-1314-8be7-06e614666686 +0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec 2019-12-29 16:53:19.68549 \N ksaffran@dks.lu \N \N ["portanova","testmyapp"] ["3","5"] Saffran Kilian \N \N 716d62c1-f6c7-07bb-17ec-8b5825b9696b admin e9e6880b-75c7-70b5-ce61-49cf6d62630f \. -- --- Data for Name: reportperiod; Type: TABLE DATA; Schema: testmyapp; Owner: potlu2_user +-- Data for Name: reportperiod; Type: TABLE DATA; Schema: testmyapp; Owner: potlu_user -- COPY testmyapp.reportperiod (periodname, startdate, enddate, id_parentreportperiod, id) FROM stdin; @@ -5292,7 +5303,7 @@ COPY testmyapp.reportperiod (periodname, startdate, enddate, id_parentreportperi -- --- Data for Name: staff; Type: TABLE DATA; Schema: testmyapp; Owner: potlu2_user +-- Data for Name: staff; Type: TABLE DATA; Schema: testmyapp; Owner: potlu_user -- COPY testmyapp.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id) FROM stdin; @@ -5300,7 +5311,7 @@ COPY testmyapp.staff (staffnumber, surname, prename, job, birthdate, matricule, -- --- Data for Name: staffcontract; Type: TABLE DATA; Schema: testmyapp; Owner: potlu2_user +-- Data for Name: staffcontract; Type: TABLE DATA; Schema: testmyapp; Owner: potlu_user -- COPY testmyapp.staffcontract (id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours, defaultfreedays, id) FROM stdin; @@ -5308,7 +5319,7 @@ COPY testmyapp.staffcontract (id_staff, startdate, id_staffgroup, weekdays, endd -- --- Data for Name: staffgroups; Type: TABLE DATA; Schema: testmyapp; Owner: potlu2_user +-- Data for Name: staffgroups; Type: TABLE DATA; Schema: testmyapp; Owner: potlu_user -- COPY testmyapp.staffgroups (groupname, groupcolor, editoruser_ids, isdefault, id) FROM stdin; @@ -5317,7 +5328,7 @@ TESTB \N \N \N 79065dbe-00ab-073b-608a-740f1fc25803 -- --- Data for Name: staffreportperiod; Type: TABLE DATA; Schema: testmyapp; Owner: potlu2_user +-- Data for Name: staffreportperiod; Type: TABLE DATA; Schema: testmyapp; Owner: potlu_user -- COPY testmyapp.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id) FROM stdin; @@ -5325,7 +5336,7 @@ COPY testmyapp.staffreportperiod (id_reportperiod, id_staff, workhours, contract -- --- Data for Name: staffreportperioddays; Type: TABLE DATA; Schema: testmyapp; Owner: potlu2_user +-- Data for Name: staffreportperioddays; Type: TABLE DATA; Schema: testmyapp; Owner: potlu_user -- COPY testmyapp.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id) FROM stdin; @@ -5333,7 +5344,7 @@ COPY testmyapp.staffreportperioddays (id_staff, daydate, timestart1, timeend1, t -- --- Data for Name: staffreportperiodweeks; Type: TABLE DATA; Schema: testmyapp; Owner: potlu2_user +-- Data for Name: staffreportperiodweeks; Type: TABLE DATA; Schema: testmyapp; Owner: potlu_user -- COPY testmyapp.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id) FROM stdin; @@ -5341,7 +5352,7 @@ COPY testmyapp.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calwe -- --- Data for Name: staffvacancy; Type: TABLE DATA; Schema: testmyapp; Owner: potlu2_user +-- Data for Name: staffvacancy; Type: TABLE DATA; Schema: testmyapp; Owner: potlu_user -- COPY testmyapp.staffvacancy (id_staff, daydate, id_vacancytype, vacancyhours, id) FROM stdin; @@ -5349,7 +5360,7 @@ COPY testmyapp.staffvacancy (id_staff, daydate, id_vacancytype, vacancyhours, id -- --- Data for Name: vacancydays; Type: TABLE DATA; Schema: testmyapp; Owner: potlu2_user +-- Data for Name: vacancydays; Type: TABLE DATA; Schema: testmyapp; Owner: potlu_user -- COPY testmyapp.vacancydays (daydate, vacancyname, id) FROM stdin; @@ -5357,7 +5368,7 @@ COPY testmyapp.vacancydays (daydate, vacancyname, id) FROM stdin; -- --- Data for Name: vacancytypes; Type: TABLE DATA; Schema: testmyapp; Owner: potlu2_user +-- Data for Name: vacancytypes; Type: TABLE DATA; Schema: testmyapp; Owner: potlu_user -- COPY testmyapp.vacancytypes (vacancyname, isworktime, isfreetime, color, id) FROM stdin; @@ -5365,7 +5376,7 @@ COPY testmyapp.vacancytypes (vacancyname, isworktime, isfreetime, color, id) FRO -- --- Data for Name: workplandays; Type: TABLE DATA; Schema: testmyapp; Owner: potlu2_user +-- Data for Name: workplandays; Type: TABLE DATA; Schema: testmyapp; Owner: potlu_user -- COPY testmyapp.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum) FROM stdin; @@ -5373,7 +5384,7 @@ COPY testmyapp.workplandays (id_workplan, weekday, start1, end1, start2, end2, p -- --- Data for Name: workplans; Type: TABLE DATA; Schema: testmyapp; Owner: potlu2_user +-- Data for Name: workplans; Type: TABLE DATA; Schema: testmyapp; Owner: potlu_user -- COPY testmyapp.workplans (workplan, weekhours, weekdays, weekdayslist, id) FROM stdin; @@ -5381,7 +5392,7 @@ COPY testmyapp.workplans (workplan, weekhours, weekdays, weekdayslist, id) FROM -- --- Data for Name: worktimes; Type: TABLE DATA; Schema: testmyapp; Owner: potlu2_user +-- Data for Name: worktimes; Type: TABLE DATA; Schema: testmyapp; Owner: potlu_user -- COPY testmyapp.worktimes (startdate, enddate, defaultdayhours, maxdayhours, defaultweekhours, maxweekhours, maxinterruptionhours, isdefault, id) FROM stdin; @@ -5389,7 +5400,7 @@ COPY testmyapp.worktimes (startdate, enddate, defaultdayhours, maxdayhours, defa -- --- Name: reportperiod reportperiod_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu2_user +-- Name: reportperiod reportperiod_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- ALTER TABLE ONLY portanova.reportperiod @@ -5397,7 +5408,7 @@ ALTER TABLE ONLY portanova.reportperiod -- --- Name: reports reports_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu2_user +-- Name: reports reports_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- ALTER TABLE ONLY portanova.reports @@ -5405,7 +5416,7 @@ ALTER TABLE ONLY portanova.reports -- --- Name: staff staff_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu2_user +-- Name: staff staff_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- ALTER TABLE ONLY portanova.staff @@ -5413,7 +5424,7 @@ ALTER TABLE ONLY portanova.staff -- --- Name: staffcontract staffcontract_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu2_user +-- Name: staffcontract staffcontract_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- ALTER TABLE ONLY portanova.staffcontract @@ -5421,7 +5432,7 @@ ALTER TABLE ONLY portanova.staffcontract -- --- Name: staffgroups staffgroups_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu2_user +-- Name: staffgroups staffgroups_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- ALTER TABLE ONLY portanova.staffgroups @@ -5429,7 +5440,7 @@ ALTER TABLE ONLY portanova.staffgroups -- --- Name: staffreportperiod staffreportperiod_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu2_user +-- Name: staffreportperiod staffreportperiod_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- ALTER TABLE ONLY portanova.staffreportperiod @@ -5437,7 +5448,7 @@ ALTER TABLE ONLY portanova.staffreportperiod -- --- Name: staffreportperioddays staffreportperioddays_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu2_user +-- Name: staffreportperioddays staffreportperioddays_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- ALTER TABLE ONLY portanova.staffreportperioddays @@ -5445,7 +5456,7 @@ ALTER TABLE ONLY portanova.staffreportperioddays -- --- Name: staffreportperiodweeks staffreportperiodweeks_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu2_user +-- Name: staffreportperiodweeks staffreportperiodweeks_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- ALTER TABLE ONLY portanova.staffreportperiodweeks @@ -5453,7 +5464,7 @@ ALTER TABLE ONLY portanova.staffreportperiodweeks -- --- Name: staffvacancy staffvacancy_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu2_user +-- Name: staffvacancy staffvacancy_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- ALTER TABLE ONLY portanova.staffvacancy @@ -5461,7 +5472,7 @@ ALTER TABLE ONLY portanova.staffvacancy -- --- Name: staffreportperiod uniq_staffreportperiod_cal; Type: CONSTRAINT; Schema: portanova; Owner: potlu2_user +-- Name: staffreportperiod uniq_staffreportperiod_cal; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- ALTER TABLE ONLY portanova.staffreportperiod @@ -5469,7 +5480,7 @@ ALTER TABLE ONLY portanova.staffreportperiod -- --- Name: staffreportperiodweeks uniq_staffweekplan_cal; Type: CONSTRAINT; Schema: portanova; Owner: potlu2_user +-- Name: staffreportperiodweeks uniq_staffweekplan_cal; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- ALTER TABLE ONLY portanova.staffreportperiodweeks @@ -5477,7 +5488,7 @@ ALTER TABLE ONLY portanova.staffreportperiodweeks -- --- Name: staffreportperioddays uniq_staffworplan_staffday; Type: CONSTRAINT; Schema: portanova; Owner: potlu2_user +-- Name: staffreportperioddays uniq_staffworplan_staffday; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- ALTER TABLE ONLY portanova.staffreportperioddays @@ -5485,7 +5496,7 @@ ALTER TABLE ONLY portanova.staffreportperioddays -- --- Name: vacancydays vacancydays_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu2_user +-- Name: vacancydays vacancydays_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- ALTER TABLE ONLY portanova.vacancydays @@ -5493,7 +5504,7 @@ ALTER TABLE ONLY portanova.vacancydays -- --- Name: vacancytypes vacancytypes_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu2_user +-- Name: vacancytypes vacancytypes_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- ALTER TABLE ONLY portanova.vacancytypes @@ -5501,7 +5512,7 @@ ALTER TABLE ONLY portanova.vacancytypes -- --- Name: workplandays workplandays_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu2_user +-- Name: workplandays workplandays_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- ALTER TABLE ONLY portanova.workplandays @@ -5509,7 +5520,7 @@ ALTER TABLE ONLY portanova.workplandays -- --- Name: workplandays workplandays_un; Type: CONSTRAINT; Schema: portanova; Owner: potlu2_user +-- Name: workplandays workplandays_un; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- ALTER TABLE ONLY portanova.workplandays @@ -5517,7 +5528,7 @@ ALTER TABLE ONLY portanova.workplandays -- --- Name: workplans workplans_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu2_user +-- Name: workplans workplans_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- ALTER TABLE ONLY portanova.workplans @@ -5525,7 +5536,7 @@ ALTER TABLE ONLY portanova.workplans -- --- Name: worktimes worktimes_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu2_user +-- Name: worktimes worktimes_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- ALTER TABLE ONLY portanova.worktimes @@ -5533,7 +5544,7 @@ ALTER TABLE ONLY portanova.worktimes -- --- Name: companies companies_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu2_user +-- Name: companies companies_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user -- ALTER TABLE ONLY public.companies @@ -5541,7 +5552,7 @@ ALTER TABLE ONLY public.companies -- --- Name: labels labels_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu2_user +-- Name: labels labels_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user -- ALTER TABLE ONLY public.labels @@ -5549,7 +5560,7 @@ ALTER TABLE ONLY public.labels -- --- Name: preferences preferences_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu2_user +-- Name: preferences preferences_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user -- ALTER TABLE ONLY public.preferences @@ -5557,7 +5568,7 @@ ALTER TABLE ONLY public.preferences -- --- Name: sectorworktime sectorworktime_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu2_user +-- Name: sectorworktime sectorworktime_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user -- ALTER TABLE ONLY public.sectorworktime @@ -5565,7 +5576,7 @@ ALTER TABLE ONLY public.sectorworktime -- --- Name: sessions sessions_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu2_user +-- Name: sessions sessions_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user -- ALTER TABLE ONLY public.sessions @@ -5573,7 +5584,7 @@ ALTER TABLE ONLY public.sessions -- --- Name: users uniq_username; Type: CONSTRAINT; Schema: public; Owner: potlu2_user +-- Name: users uniq_username; Type: CONSTRAINT; Schema: public; Owner: potlu_user -- ALTER TABLE ONLY public.users @@ -5581,7 +5592,7 @@ ALTER TABLE ONLY public.users -- --- Name: usergroups usergroups_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu2_user +-- Name: usergroups usergroups_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user -- ALTER TABLE ONLY public.usergroups @@ -5589,7 +5600,7 @@ ALTER TABLE ONLY public.usergroups -- --- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu2_user +-- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user -- ALTER TABLE ONLY public.users @@ -5597,7 +5608,7 @@ ALTER TABLE ONLY public.users -- --- Name: reportperiod reportperiod_pkey; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu2_user +-- Name: reportperiod reportperiod_pkey; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu_user -- ALTER TABLE ONLY testmyapp.reportperiod @@ -5605,7 +5616,7 @@ ALTER TABLE ONLY testmyapp.reportperiod -- --- Name: staff staff_pkey; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu2_user +-- Name: staff staff_pkey; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu_user -- ALTER TABLE ONLY testmyapp.staff @@ -5613,7 +5624,7 @@ ALTER TABLE ONLY testmyapp.staff -- --- Name: staffcontract staffcontract_pkey; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu2_user +-- Name: staffcontract staffcontract_pkey; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu_user -- ALTER TABLE ONLY testmyapp.staffcontract @@ -5621,7 +5632,7 @@ ALTER TABLE ONLY testmyapp.staffcontract -- --- Name: staffgroups staffgroups_pkey; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu2_user +-- Name: staffgroups staffgroups_pkey; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu_user -- ALTER TABLE ONLY testmyapp.staffgroups @@ -5629,7 +5640,7 @@ ALTER TABLE ONLY testmyapp.staffgroups -- --- Name: staffreportperiod staffreportperiod_pkey; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu2_user +-- Name: staffreportperiod staffreportperiod_pkey; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu_user -- ALTER TABLE ONLY testmyapp.staffreportperiod @@ -5637,7 +5648,7 @@ ALTER TABLE ONLY testmyapp.staffreportperiod -- --- Name: staffreportperioddays staffreportperioddays_pkey; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu2_user +-- Name: staffreportperioddays staffreportperioddays_pkey; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu_user -- ALTER TABLE ONLY testmyapp.staffreportperioddays @@ -5645,7 +5656,7 @@ ALTER TABLE ONLY testmyapp.staffreportperioddays -- --- Name: staffreportperiodweeks staffreportperiodweeks_pkey; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu2_user +-- Name: staffreportperiodweeks staffreportperiodweeks_pkey; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu_user -- ALTER TABLE ONLY testmyapp.staffreportperiodweeks @@ -5653,7 +5664,7 @@ ALTER TABLE ONLY testmyapp.staffreportperiodweeks -- --- Name: staffvacancy staffvacancy_pkey; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu2_user +-- Name: staffvacancy staffvacancy_pkey; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu_user -- ALTER TABLE ONLY testmyapp.staffvacancy @@ -5661,7 +5672,7 @@ ALTER TABLE ONLY testmyapp.staffvacancy -- --- Name: staffreportperiod uniq_staffreportperiod_cal; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu2_user +-- Name: staffreportperiod uniq_staffreportperiod_cal; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu_user -- ALTER TABLE ONLY testmyapp.staffreportperiod @@ -5669,7 +5680,7 @@ ALTER TABLE ONLY testmyapp.staffreportperiod -- --- Name: staffreportperiodweeks uniq_staffweekplan_cal; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu2_user +-- Name: staffreportperiodweeks uniq_staffweekplan_cal; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu_user -- ALTER TABLE ONLY testmyapp.staffreportperiodweeks @@ -5677,7 +5688,7 @@ ALTER TABLE ONLY testmyapp.staffreportperiodweeks -- --- Name: staffreportperioddays uniq_staffworplan_staffday; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu2_user +-- Name: staffreportperioddays uniq_staffworplan_staffday; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu_user -- ALTER TABLE ONLY testmyapp.staffreportperioddays @@ -5685,7 +5696,7 @@ ALTER TABLE ONLY testmyapp.staffreportperioddays -- --- Name: vacancydays vacancydays_pkey; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu2_user +-- Name: vacancydays vacancydays_pkey; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu_user -- ALTER TABLE ONLY testmyapp.vacancydays @@ -5693,7 +5704,7 @@ ALTER TABLE ONLY testmyapp.vacancydays -- --- Name: vacancytypes vacancytypes_pkey; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu2_user +-- Name: vacancytypes vacancytypes_pkey; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu_user -- ALTER TABLE ONLY testmyapp.vacancytypes @@ -5701,7 +5712,7 @@ ALTER TABLE ONLY testmyapp.vacancytypes -- --- Name: workplandays workplandays_pkey; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu2_user +-- Name: workplandays workplandays_pkey; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu_user -- ALTER TABLE ONLY testmyapp.workplandays @@ -5709,7 +5720,7 @@ ALTER TABLE ONLY testmyapp.workplandays -- --- Name: workplandays workplandays_un; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu2_user +-- Name: workplandays workplandays_un; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu_user -- ALTER TABLE ONLY testmyapp.workplandays @@ -5717,7 +5728,7 @@ ALTER TABLE ONLY testmyapp.workplandays -- --- Name: workplans workplans_pkey; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu2_user +-- Name: workplans workplans_pkey; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu_user -- ALTER TABLE ONLY testmyapp.workplans @@ -5725,7 +5736,7 @@ ALTER TABLE ONLY testmyapp.workplans -- --- Name: worktimes worktimes_pkey; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu2_user +-- Name: worktimes worktimes_pkey; Type: CONSTRAINT; Schema: testmyapp; Owner: potlu_user -- ALTER TABLE ONLY testmyapp.worktimes @@ -5733,7 +5744,7 @@ ALTER TABLE ONLY testmyapp.worktimes -- --- Name: vw_staffgroupsdata _RETURN; Type: RULE; Schema: portanova; Owner: potlu2_user +-- Name: vw_staffgroupsdata _RETURN; Type: RULE; Schema: portanova; Owner: potlu_user -- CREATE OR REPLACE VIEW portanova.vw_staffgroupsdata AS @@ -5750,7 +5761,7 @@ CREATE OR REPLACE VIEW portanova.vw_staffgroupsdata AS -- --- Name: vw_staffgroupslist _RETURN; Type: RULE; Schema: portanova; Owner: potlu2_user +-- Name: vw_staffgroupslist _RETURN; Type: RULE; Schema: portanova; Owner: potlu_user -- CREATE OR REPLACE VIEW portanova.vw_staffgroupslist AS @@ -5766,7 +5777,7 @@ CREATE OR REPLACE VIEW portanova.vw_staffgroupslist AS -- --- Name: vw_workplandayslist _RETURN; Type: RULE; Schema: portanova; Owner: potlu2_user +-- Name: vw_workplandayslist _RETURN; Type: RULE; Schema: portanova; Owner: potlu_user -- CREATE OR REPLACE VIEW portanova.vw_workplandayslist AS @@ -5802,7 +5813,7 @@ CREATE OR REPLACE VIEW portanova.vw_workplandayslist AS -- --- Name: vw_userslist _RETURN; Type: RULE; Schema: public; Owner: potlu2_user +-- Name: vw_userslist _RETURN; Type: RULE; Schema: public; Owner: potlu_user -- CREATE OR REPLACE VIEW public.vw_userslist AS @@ -5824,7 +5835,7 @@ CREATE OR REPLACE VIEW public.vw_userslist AS -- --- Name: vw_workplandayslist _RETURN; Type: RULE; Schema: testmyapp; Owner: potlu2_user +-- Name: vw_workplandayslist _RETURN; Type: RULE; Schema: testmyapp; Owner: potlu_user -- CREATE OR REPLACE VIEW testmyapp.vw_workplandayslist AS @@ -5849,126 +5860,126 @@ CREATE OR REPLACE VIEW testmyapp.vw_workplandayslist AS -- --- Name: staffcontract trg_after_insert_staffcontract; Type: TRIGGER; Schema: portanova; Owner: potlu2_user +-- Name: staffcontract trg_after_insert_staffcontract; Type: TRIGGER; Schema: portanova; Owner: potlu_user -- CREATE TRIGGER trg_after_insert_staffcontract AFTER INSERT ON portanova.staffcontract FOR EACH ROW EXECUTE PROCEDURE portanova.trg_after_upd_staffcontract(); -- --- Name: staffcontract trg_after_update_staffcontract; Type: TRIGGER; Schema: portanova; Owner: potlu2_user +-- Name: staffcontract trg_after_update_staffcontract; Type: TRIGGER; Schema: portanova; Owner: potlu_user -- CREATE TRIGGER trg_after_update_staffcontract AFTER UPDATE OF id_contractworkplan, startdate, enddate ON portanova.staffcontract FOR EACH ROW EXECUTE PROCEDURE portanova.trg_after_upd_staffcontract(); -- --- Name: workplandays trg_dks_after_ins_workplandays; Type: TRIGGER; Schema: portanova; Owner: potlu2_user +-- Name: workplandays trg_dks_after_ins_workplandays; Type: TRIGGER; Schema: portanova; Owner: potlu_user -- CREATE TRIGGER trg_dks_after_ins_workplandays AFTER INSERT ON portanova.workplandays FOR EACH ROW EXECUTE PROCEDURE portanova.trg_after_upd_worplanday(); -- --- Name: workplandays trg_dks_after_upd_workplandays; Type: TRIGGER; Schema: portanova; Owner: potlu2_user +-- Name: workplandays trg_dks_after_upd_workplandays; Type: TRIGGER; Schema: portanova; Owner: potlu_user -- CREATE TRIGGER trg_dks_after_upd_workplandays AFTER UPDATE OF start1, end1, start2, end2, pause ON portanova.workplandays FOR EACH ROW EXECUTE PROCEDURE portanova.trg_after_upd_worplanday(); -- --- Name: reportperiod trg_portanova_before_upd_reportperiod; Type: TRIGGER; Schema: portanova; Owner: potlu2_user +-- Name: reportperiod trg_portanova_before_upd_reportperiod; Type: TRIGGER; Schema: portanova; Owner: potlu_user -- CREATE TRIGGER trg_portanova_before_upd_reportperiod BEFORE UPDATE ON portanova.reportperiod FOR EACH ROW EXECUTE PROCEDURE portanova.trg_before_upd_schematable(); -- --- Name: staff trg_portanova_before_upd_staff; Type: TRIGGER; Schema: portanova; Owner: potlu2_user +-- Name: staff trg_portanova_before_upd_staff; Type: TRIGGER; Schema: portanova; Owner: potlu_user -- CREATE TRIGGER trg_portanova_before_upd_staff BEFORE UPDATE ON portanova.staff FOR EACH ROW EXECUTE PROCEDURE portanova.trg_before_upd_schematable(); -- --- Name: staffcontract trg_portanova_before_upd_staffcontract; Type: TRIGGER; Schema: portanova; Owner: potlu2_user +-- Name: staffcontract trg_portanova_before_upd_staffcontract; Type: TRIGGER; Schema: portanova; Owner: potlu_user -- CREATE TRIGGER trg_portanova_before_upd_staffcontract BEFORE UPDATE ON portanova.staffcontract FOR EACH ROW EXECUTE PROCEDURE portanova.trg_before_upd_schematable(); -- --- Name: staffgroups trg_portanova_before_upd_staffgroups; Type: TRIGGER; Schema: portanova; Owner: potlu2_user +-- Name: staffgroups trg_portanova_before_upd_staffgroups; Type: TRIGGER; Schema: portanova; Owner: potlu_user -- CREATE TRIGGER trg_portanova_before_upd_staffgroups BEFORE UPDATE ON portanova.staffgroups FOR EACH ROW EXECUTE PROCEDURE portanova.trg_before_upd_schematable(); -- --- Name: staffreportperiod trg_portanova_before_upd_staffreportperiod; Type: TRIGGER; Schema: portanova; Owner: potlu2_user +-- Name: staffreportperiod trg_portanova_before_upd_staffreportperiod; Type: TRIGGER; Schema: portanova; Owner: potlu_user -- CREATE TRIGGER trg_portanova_before_upd_staffreportperiod BEFORE UPDATE ON portanova.staffreportperiod FOR EACH ROW EXECUTE PROCEDURE portanova.trg_before_upd_schematable(); -- --- Name: staffreportperioddays trg_portanova_before_upd_staffreportperioddays; Type: TRIGGER; Schema: portanova; Owner: potlu2_user +-- Name: staffreportperioddays trg_portanova_before_upd_staffreportperioddays; Type: TRIGGER; Schema: portanova; Owner: potlu_user -- CREATE TRIGGER trg_portanova_before_upd_staffreportperioddays BEFORE UPDATE ON portanova.staffreportperioddays FOR EACH ROW EXECUTE PROCEDURE portanova.trg_before_upd_schematable(); -- --- Name: staffreportperiodweeks trg_portanova_before_upd_staffreportperiodweeks; Type: TRIGGER; Schema: portanova; Owner: potlu2_user +-- Name: staffreportperiodweeks trg_portanova_before_upd_staffreportperiodweeks; Type: TRIGGER; Schema: portanova; Owner: potlu_user -- CREATE TRIGGER trg_portanova_before_upd_staffreportperiodweeks BEFORE UPDATE ON portanova.staffreportperiodweeks FOR EACH ROW EXECUTE PROCEDURE portanova.trg_before_upd_schematable(); -- --- Name: staffvacancy trg_portanova_before_upd_staffvacancy; Type: TRIGGER; Schema: portanova; Owner: potlu2_user +-- Name: staffvacancy trg_portanova_before_upd_staffvacancy; Type: TRIGGER; Schema: portanova; Owner: potlu_user -- CREATE TRIGGER trg_portanova_before_upd_staffvacancy BEFORE UPDATE ON portanova.staffvacancy FOR EACH ROW EXECUTE PROCEDURE portanova.trg_before_upd_schematable(); -- --- Name: vacancydays trg_portanova_before_upd_vacancydays; Type: TRIGGER; Schema: portanova; Owner: potlu2_user +-- Name: vacancydays trg_portanova_before_upd_vacancydays; Type: TRIGGER; Schema: portanova; Owner: potlu_user -- CREATE TRIGGER trg_portanova_before_upd_vacancydays BEFORE UPDATE ON portanova.vacancydays FOR EACH ROW EXECUTE PROCEDURE portanova.trg_before_upd_schematable(); -- --- Name: vacancytypes trg_portanova_before_upd_vacancytypes; Type: TRIGGER; Schema: portanova; Owner: potlu2_user +-- Name: vacancytypes trg_portanova_before_upd_vacancytypes; Type: TRIGGER; Schema: portanova; Owner: potlu_user -- CREATE TRIGGER trg_portanova_before_upd_vacancytypes BEFORE UPDATE ON portanova.vacancytypes FOR EACH ROW EXECUTE PROCEDURE portanova.trg_before_upd_schematable(); -- --- Name: workplandays trg_portanova_before_upd_workplandays; Type: TRIGGER; Schema: portanova; Owner: potlu2_user +-- Name: workplandays trg_portanova_before_upd_workplandays; Type: TRIGGER; Schema: portanova; Owner: potlu_user -- CREATE TRIGGER trg_portanova_before_upd_workplandays BEFORE UPDATE ON portanova.workplandays FOR EACH ROW EXECUTE PROCEDURE portanova.trg_before_upd_schematable(); -- --- Name: workplans trg_portanova_before_upd_workplans; Type: TRIGGER; Schema: portanova; Owner: potlu2_user +-- Name: workplans trg_portanova_before_upd_workplans; Type: TRIGGER; Schema: portanova; Owner: potlu_user -- CREATE TRIGGER trg_portanova_before_upd_workplans BEFORE UPDATE ON portanova.workplans FOR EACH ROW EXECUTE PROCEDURE portanova.trg_before_upd_schematable(); -- --- Name: worktimes trg_portanova_before_upd_worktimes; Type: TRIGGER; Schema: portanova; Owner: potlu2_user +-- Name: worktimes trg_portanova_before_upd_worktimes; Type: TRIGGER; Schema: portanova; Owner: potlu_user -- CREATE TRIGGER trg_portanova_before_upd_worktimes BEFORE UPDATE ON portanova.worktimes FOR EACH ROW EXECUTE PROCEDURE portanova.trg_before_upd_schematable(); -- --- Name: staffcontract staffcontract_fk; Type: FK CONSTRAINT; Schema: portanova; Owner: potlu2_user +-- Name: staffcontract staffcontract_fk; Type: FK CONSTRAINT; Schema: portanova; Owner: potlu_user -- ALTER TABLE ONLY portanova.staffcontract @@ -5976,7 +5987,7 @@ ALTER TABLE ONLY portanova.staffcontract -- --- Name: staffreportperiod staffreportperiod_fk; Type: FK CONSTRAINT; Schema: portanova; Owner: potlu2_user +-- Name: staffreportperiod staffreportperiod_fk; Type: FK CONSTRAINT; Schema: portanova; Owner: potlu_user -- ALTER TABLE ONLY portanova.staffreportperiod @@ -5984,7 +5995,7 @@ ALTER TABLE ONLY portanova.staffreportperiod -- --- Name: staffreportperiod staffreportperiod_fk_1; Type: FK CONSTRAINT; Schema: portanova; Owner: potlu2_user +-- Name: staffreportperiod staffreportperiod_fk_1; Type: FK CONSTRAINT; Schema: portanova; Owner: potlu_user -- ALTER TABLE ONLY portanova.staffreportperiod @@ -5992,7 +6003,7 @@ ALTER TABLE ONLY portanova.staffreportperiod -- --- Name: staffreportperiodweeks staffweekplan_fk; Type: FK CONSTRAINT; Schema: portanova; Owner: potlu2_user +-- Name: staffreportperiodweeks staffweekplan_fk; Type: FK CONSTRAINT; Schema: portanova; Owner: potlu_user -- ALTER TABLE ONLY portanova.staffreportperiodweeks @@ -6000,7 +6011,7 @@ ALTER TABLE ONLY portanova.staffreportperiodweeks -- --- Name: staffreportperiodweeks staffweekplan_fk_1; Type: FK CONSTRAINT; Schema: portanova; Owner: potlu2_user +-- Name: staffreportperiodweeks staffweekplan_fk_1; Type: FK CONSTRAINT; Schema: portanova; Owner: potlu_user -- ALTER TABLE ONLY portanova.staffreportperiodweeks @@ -6008,7 +6019,7 @@ ALTER TABLE ONLY portanova.staffreportperiodweeks -- --- Name: staffreportperioddays staffworkplan_fk; Type: FK CONSTRAINT; Schema: portanova; Owner: potlu2_user +-- Name: staffreportperioddays staffworkplan_fk; Type: FK CONSTRAINT; Schema: portanova; Owner: potlu_user -- ALTER TABLE ONLY portanova.staffreportperioddays @@ -6016,7 +6027,7 @@ ALTER TABLE ONLY portanova.staffreportperioddays -- --- Name: staffreportperioddays staffworkplan_fk_1; Type: FK CONSTRAINT; Schema: portanova; Owner: potlu2_user +-- Name: staffreportperioddays staffworkplan_fk_1; Type: FK CONSTRAINT; Schema: portanova; Owner: potlu_user -- ALTER TABLE ONLY portanova.staffreportperioddays @@ -6024,7 +6035,7 @@ ALTER TABLE ONLY portanova.staffreportperioddays -- --- Name: workplandays workplandays_fk; Type: FK CONSTRAINT; Schema: portanova; Owner: potlu2_user +-- Name: workplandays workplandays_fk; Type: FK CONSTRAINT; Schema: portanova; Owner: potlu_user -- ALTER TABLE ONLY portanova.workplandays @@ -6032,7 +6043,7 @@ ALTER TABLE ONLY portanova.workplandays -- --- Name: staffcontract staffcontract_fk; Type: FK CONSTRAINT; Schema: testmyapp; Owner: potlu2_user +-- Name: staffcontract staffcontract_fk; Type: FK CONSTRAINT; Schema: testmyapp; Owner: potlu_user -- ALTER TABLE ONLY testmyapp.staffcontract @@ -6040,7 +6051,7 @@ ALTER TABLE ONLY testmyapp.staffcontract -- --- Name: staffcontract staffcontract_fk_1; Type: FK CONSTRAINT; Schema: testmyapp; Owner: potlu2_user +-- Name: staffcontract staffcontract_fk_1; Type: FK CONSTRAINT; Schema: testmyapp; Owner: potlu_user -- ALTER TABLE ONLY testmyapp.staffcontract @@ -6048,7 +6059,7 @@ ALTER TABLE ONLY testmyapp.staffcontract -- --- Name: staffreportperiod staffreportperiod_fk; Type: FK CONSTRAINT; Schema: testmyapp; Owner: potlu2_user +-- Name: staffreportperiod staffreportperiod_fk; Type: FK CONSTRAINT; Schema: testmyapp; Owner: potlu_user -- ALTER TABLE ONLY testmyapp.staffreportperiod @@ -6056,7 +6067,7 @@ ALTER TABLE ONLY testmyapp.staffreportperiod -- --- Name: staffreportperiod staffreportperiod_fk_1; Type: FK CONSTRAINT; Schema: testmyapp; Owner: potlu2_user +-- Name: staffreportperiod staffreportperiod_fk_1; Type: FK CONSTRAINT; Schema: testmyapp; Owner: potlu_user -- ALTER TABLE ONLY testmyapp.staffreportperiod @@ -6064,7 +6075,7 @@ ALTER TABLE ONLY testmyapp.staffreportperiod -- --- Name: staffreportperiodweeks staffweekplan_fk; Type: FK CONSTRAINT; Schema: testmyapp; Owner: potlu2_user +-- Name: staffreportperiodweeks staffweekplan_fk; Type: FK CONSTRAINT; Schema: testmyapp; Owner: potlu_user -- ALTER TABLE ONLY testmyapp.staffreportperiodweeks @@ -6072,7 +6083,7 @@ ALTER TABLE ONLY testmyapp.staffreportperiodweeks -- --- Name: staffreportperiodweeks staffweekplan_fk_1; Type: FK CONSTRAINT; Schema: testmyapp; Owner: potlu2_user +-- Name: staffreportperiodweeks staffweekplan_fk_1; Type: FK CONSTRAINT; Schema: testmyapp; Owner: potlu_user -- ALTER TABLE ONLY testmyapp.staffreportperiodweeks @@ -6080,7 +6091,7 @@ ALTER TABLE ONLY testmyapp.staffreportperiodweeks -- --- Name: staffreportperioddays staffworkplan_fk; Type: FK CONSTRAINT; Schema: testmyapp; Owner: potlu2_user +-- Name: staffreportperioddays staffworkplan_fk; Type: FK CONSTRAINT; Schema: testmyapp; Owner: potlu_user -- ALTER TABLE ONLY testmyapp.staffreportperioddays @@ -6088,7 +6099,7 @@ ALTER TABLE ONLY testmyapp.staffreportperioddays -- --- Name: staffreportperioddays staffworkplan_fk_1; Type: FK CONSTRAINT; Schema: testmyapp; Owner: potlu2_user +-- Name: staffreportperioddays staffworkplan_fk_1; Type: FK CONSTRAINT; Schema: testmyapp; Owner: potlu_user -- ALTER TABLE ONLY testmyapp.staffreportperioddays @@ -6096,7 +6107,7 @@ ALTER TABLE ONLY testmyapp.staffreportperioddays -- --- Name: workplandays workplandays_fk; Type: FK CONSTRAINT; Schema: testmyapp; Owner: potlu2_user +-- Name: workplandays workplandays_fk; Type: FK CONSTRAINT; Schema: testmyapp; Owner: potlu_user -- ALTER TABLE ONLY testmyapp.workplandays diff --git a/dev/db/potlu_db.pg.schema.sql b/dev/db/potlu_db.pg.schema.sql index 8d3bcafe..f368cd35 100644 --- a/dev/db/potlu_db.pg.schema.sql +++ b/dev/db/potlu_db.pg.schema.sql @@ -383,12 +383,12 @@ CREATE FUNCTION portanova.set_staffperiod_sums(pid_period text, pid_staff text) weekrec record; BEGIN for weekrec in select id_staff,id_reportperiod, -sum(contracthours) as contracthours, -sum(workhours) as workhours, -sum(vacancyhours) as vacancyhours, -sum(recuperationhours) as recuperationhours, -sum(diffhours) as hoursdiff, -sum(totalhours) as totalhours +sum(case when contracthours is not null then contracthours else '00:00:00'::interval end) as contracthours, +sum(case when workhours is not null then workhours else '00:00:00'::interval end) as workhours, +sum(case when vacancyhours is not null then vacancyhours else '00:00:00'::interval end) as vacancyhours, +sum(case when recuperationhours is not null then recuperationhours else '00:00:00'::interval end) as recuperationhours, +sum(case when diffhours is not null then diffhours else '00:00:00'::interval end) as hoursdiff, +sum(case when totalhours is not null then totalhours else '00:00:00'::interval end) as totalhours from portanova.staffreportperiodweeks where id_staff=pid_staff and id_reportperiod=pid_period group by id_reportperiod,id_staff loop update portanova.staffreportperiod set contracthours=weekrec.contracthours, @@ -462,11 +462,11 @@ begin crecuperationhours := stw.contracthours; end if; end if;*/ - cdayhours := cworkhours::interval+coalesce(stw.vacancyhours::interval,'00:00:00'::interval)+coalesce(stw.recuperationhours::interval,'00:00:00'::interval); - /*if cdayhours > '00:00:00'::interval then + cdayhours := cworkhours::interval+coalesce(stw.vacancyhours::interval,'00:00:00'::interval)-coalesce(stw.recuperationhours::interval,'00:00:00'::interval); + if cdayhours > '00:00:00'::interval then ccontracthours := stw.wdcontracthours; - end if;*/ - update portanova.staffreportperioddays set workhours=cworkhours,interruptionhours=cinterruptionhours,dayhours=cdayhours where id=pid_periodday; + end if; + update portanova.staffreportperioddays set workhours=cworkhours,interruptionhours=cinterruptionhours,dayhours=cdayhours,contracthours=ccontracthours where id=pid_periodday; return pid_periodday; end; $$; @@ -527,15 +527,16 @@ declare freedays int4 := 0; begin -for sweek in select srpd.id_staff,srpd.id_reportperiod,date(date_trunc('week',srpd.daydate)) as weekstart,date_part('week',srpd.daydate) as calweek, +for sweek in +select srpd.id_staff,srpd.id_reportperiod,date(date_trunc('week',srpd.daydate)) as weekstart,date_part('week',srpd.daydate) as calweek, date_part('isoyear',srpd.daydate) as calyear, -coalesce(sum(srpd.workhours::interval),'00:00:00'::interval) as workhours, -coalesce(sum('00:00:00'::interval),'00:00:00'::interval) as trackedhours, -coalesce(sum(srpd.vacancyhours::interval),'00:00:00'::interval) as vacancyhours, -coalesce(sum(srpd.recuperationhours::interval),'00:00:00'::interval) as recuperationhours, -coalesce(sum(srpd.dayhours::interval),'00:00:00'::interval) as totalhours, +sum(case when srpd.workhours is null then '00:00:00'::interval else srpd.workhours::interval end) as workhours, +'00:00:00'::interval as trackedhours, +sum(case when srpd.vacancyhours is null then '00:00:00'::interval else srpd.vacancyhours::interval end ) as vacancyhours, +sum(case when srpd.recuperationhours is null then '00:00:00'::interval else srpd.recuperationhours::interval end) as recuperationhours, +sum(case when srpd.dayhours is null then '00:00:00'::interval else srpd.dayhours::interval end) as totalhours, sum(case when srpd.workhours != '00:00:00'::time then 1 else 0 end) as workdays, -coalesce(sum(contracthours::interval),'00:00:00'::interval) as contracthours +sum(case when srpd.contracthours is null then '00:00:00'::interval else srpd.contracthours::interval end) as contracthours from portanova.staffreportperioddays srpd join portanova.reportperiod rp on (rp.id=srpd.id_reportperiod) where srpd.id_reportperiod =pid_reportperiod and srpd.id_staff=pid_staff @@ -546,9 +547,10 @@ loop trackedhours=sweek.trackedhours, vacancyhours=sweek.vacancyhours, recuperationhours=sweek.recuperationhours, - diffhours=case when sweek.contracthours is null or sweek.contracthours='00:00:00'::interval then null else sweek.totalhours-sweek.contracthours end, + diffhours=case when sweek.contracthours is null or sweek.contracthours::interval='00:00:00'::interval then null else sweek.totalhours-sweek.contracthours end, totalhours=sweek.totalhours, - workdays=sweek.workdays + workdays=sweek.workdays, + contracthours=sweek.contracthours where id_staff=sweek.id_staff and id_reportperiod=sweek.id_reportperiod and weekstart=sweek.weekstart; end loop; --raise notice 'UPDATE WEEK SUMS %',sweek; diff --git a/dev/db/potlu_db.portanova.pg.data.sql b/dev/db/potlu_db.portanova.pg.data.sql index 9ba770d4..64096f77 100644 --- a/dev/db/potlu_db.portanova.pg.data.sql +++ b/dev/db/potlu_db.portanova.pg.data.sql @@ -36,6 +36,8 @@ INSERT INTO portanova.reports (id, report, pdftop, pdfbottom, pdfleft, pdfright, -- Data for Name: staff; Type: TABLE DATA; Schema: portanova; Owner: - -- +INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('', NULL, 'Nicolas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', '3c463353-f763-c72c-0007-e6b4926befee', NULL, '2020-08-04 08:11:47.316594', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('', '', 'Christian', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', 'e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', NULL, '2020-08-04 08:46:23.304616', '2020-07-23 12:27:10.908142'); INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('3200', 'MULLER', 'RICA', 'secrétaire de direction', '1966-12-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '4d35cbc6-f52d-c977-9e10-c0467da3e672', 'c587005b-cabe-dce9-1e35-d37603b3bf8f', true, '2020-07-23 11:59:14.295687', '2020-07-23 12:27:10.908142'); INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('1320', 'BRUCCOLERI', 'SARAH', 'attachée de direction', '1984-11-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '4d35cbc6-f52d-c977-9e10-c0467da3e672', 'cb44dc10-da71-0483-6903-e53c7903bea8', true, '2020-07-23 11:59:14.295687', '2020-07-23 12:27:10.908142'); INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('8775', 'ZAKLAN', 'ZORAN', 'cuisinier', '1959-05-25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '65e8c55c-da17-3199-1b3c-8e39706157f7', '0a21b428-5d19-9f5a-dbe9-a3b992313b01', true, '2020-07-23 11:59:14.295687', '2020-07-23 12:27:10.908142'); @@ -48,10 +50,10 @@ INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matr INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('5514', 'DAGGIANO', 'GREGORIO', 'serveur/Barman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', '53b2bf62-98ce-a92a-9586-1b04fb122b8b', true, '2020-07-23 11:59:14.295687', '2020-07-23 12:27:10.908142'); INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('5140', 'ARMOCIDA', 'DOMENICO', 'serveur/Barman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', '1954ca0c-cc94-2792-1ae5-6ed2796186be', true, '2020-07-23 11:59:14.295687', '2020-07-23 12:27:10.908142'); INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('5020', 'ALIF', 'DIDIER', 'serveur', '1975-01-26', '', '', '', NULL, '', NULL, '', '8396f3e4-7a90-bd3a-ce16-98748482318a', '008a8ece-5109-4f33-d072-d1463ed42d4c', true, '2020-07-23 11:59:14.295687', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('5502', 'COPPOLA', 'CHRISTIAN', 'chef de salle', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', 'e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', NULL, '2020-07-23 11:59:14.295687', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('5585', 'DO ROSARIO', 'TIFFANY', 'APPRENTI EN SALLE', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', '63204f0b-afae-1380-b655-a6247b129af0', NULL, '2020-07-23 11:59:14.295687', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('7178', 'MORHTASSI', 'KARIM', 'serveur/Barman', NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', '50ff28ff-8b39-52b5-03e7-fecab8706021', NULL, '2020-07-23 11:59:14.295687', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('8050', 'JOSE SILVERIO BARROSO', 'MARIA', 'serveuse', '1968-04-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', '8aa08f14-7976-baca-c214-b1131263ea5d', NULL, '2020-07-23 11:59:14.295687', '2020-07-23 12:27:10.908142'); +INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('', '', 'Liliane', '', '1958-04-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', '5d606bb6-4c9c-24ea-20da-d8f2da9eb597', NULL, '2020-08-04 08:51:11.724652', '2020-07-23 12:27:10.908142'); +INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('', '', 'Tiffany', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', '63204f0b-afae-1380-b655-a6247b129af0', NULL, '2020-08-04 08:47:00.788959', '2020-07-23 12:27:10.908142'); +INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES (NULL, '', 'Vagos', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', '1898317d-07d3-c9b8-c29c-a5aa60c28c27', NULL, '2020-08-04 08:17:05.4599', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('', '', 'Josiane', 'serveuse', '1968-04-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', '6332f4fa-2b55-e230-4015-095bf5ed1c13', NULL, '2020-08-04 08:50:20.670315', '2020-07-23 12:27:10.908142'); INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('100', 'PRESTI', 'ADRIANO', 'gérant', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '4d35cbc6-f52d-c977-9e10-c0467da3e672', 'b82c5c49-c814-c68f-03ec-17ee24e765bb', true, '2020-07-23 11:59:14.295687', '2020-07-23 12:27:10.908142'); INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('AA1', 'Mustermann', 'Max', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '4d35cbc6-f52d-c977-9e10-c0467da3e672', '1f33232f-fc8b-71ca-584f-83a8336ff667', true, '2020-07-23 11:59:14.295687', '2020-07-23 12:27:10.908142'); INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('5270', 'BIGOS', 'Grzegorz', 'serveur/barman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', '62623682-202d-7f16-58bd-3ea6641d9d3b', true, '2020-07-23 11:59:14.295687', '2020-07-23 12:27:10.908142'); @@ -79,73 +81,75 @@ INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matr INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('6770 ', 'KARATHANASIS', 'Evangelos', 'serveur/barman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', 'cf43bc15-cbc5-c426-3c3b-de43c8329731', true, '2020-07-23 11:59:14.295687', '2020-07-23 12:27:10.908142'); INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('5697', 'EMBAREK BEN MOHAMED', 'Francoise', 'Responsable experimente', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', 'd1e5548e-a91e-5132-4a47-0dbdb5c58257', true, '2020-07-23 11:59:14.295687', '2020-07-23 12:27:10.908142'); INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('5506', 'COSTA', 'Giovanni', 'RESPONSABLE DU BAR', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', '2fc94c84-5af1-6010-f5c9-9a3020d04fa2', true, '2020-07-23 11:59:14.295687', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('6600', 'JOURDAN', 'JOSIANE', 'serveuse', '1968-04-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', '6332f4fa-2b55-e230-4015-095bf5ed1c13', NULL, '2020-07-23 11:59:14.295687', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('5550', 'DISTANTE', 'FRANCESCO', 'serveur', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', 'a77618bc-86f2-800f-b26d-6d641147ab7c', NULL, '2020-07-23 11:59:14.295687', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('6895', 'LIMA PERREIRA', 'CATIA INES', 'serveuse', '1995-06-06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', 'cc63023b-4892-c29c-787d-088392d58b88', NULL, '2020-07-23 11:59:14.295687', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('7052', 'MASTRINI', 'MARCO', 'serveur/Barman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', 'af9f604b-fcf9-0161-da20-1e3d7b1e4111', NULL, '2020-07-23 11:59:14.295687', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('7950', 'SANTORO', 'DARIO', 'Hôtesse d''accueil/serveuse', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', '28527822-7e9e-baa4-e825-684d015eed40', NULL, '2020-07-23 11:59:14.295687', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('8155', 'TAVARES LOPES', 'JOAO', 'serveur/Barman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', 'eef01d53-ac8f-de1d-4073-2e7c8f3e8f9c', NULL, '2020-07-23 11:59:14.295687', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('2701', 'WEILER KIEFFER', 'LILIANNE', 'hôtesse d''accueil', '1958-04-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', '5d606bb6-4c9c-24ea-20da-d8f2da9eb597', NULL, '2020-07-23 11:59:14.295687', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('', 'Test', 'Test', '', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', '71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', NULL, '2020-07-29 15:52:36.983908', '2020-07-29 15:28:35.037208'); +INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('', '', 'Dario', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', '28527822-7e9e-baa4-e825-684d015eed40', NULL, '2020-08-04 08:50:46.716797', '2020-07-23 12:27:10.908142'); +INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('', '', 'Maria', '', '1968-04-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', '8aa08f14-7976-baca-c214-b1131263ea5d', NULL, '2020-08-04 08:47:49.593839', '2020-07-23 12:27:10.908142'); +INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('', '', 'Francesco', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', 'a77618bc-86f2-800f-b26d-6d641147ab7c', NULL, '2020-08-04 08:46:38.04952', '2020-07-23 12:27:10.908142'); +INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('', '', 'Catia', '', '1995-06-06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', 'cc63023b-4892-c29c-787d-088392d58b88', NULL, '2020-08-04 08:50:31.282394', '2020-07-23 12:27:10.908142'); +INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('', '', 'Francesca', '', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', '71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', NULL, '2020-08-04 08:52:11.733603', '2020-07-29 15:28:35.037208'); +INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('', '', 'Karim', '', NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', '50ff28ff-8b39-52b5-03e7-fecab8706021', NULL, '2020-08-04 08:50:13.066624', '2020-07-23 12:27:10.908142'); +INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('', '', 'Joao', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', 'eef01d53-ac8f-de1d-4073-2e7c8f3e8f9c', NULL, '2020-08-04 08:50:53.156701', '2020-07-23 12:27:10.908142'); +INSERT INTO portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) VALUES ('', '', 'Marco', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '8396f3e4-7a90-bd3a-ce16-98748482318a', 'af9f604b-fcf9-0161-da20-1e3d7b1e4111', NULL, '2020-08-04 08:50:40.697013', '2020-07-23 12:27:10.908142'); -- -- Data for Name: staffcontract; Type: TABLE DATA; Schema: portanova; Owner: - -- -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('53b2bf62-98ce-a92a-9586-1b04fb122b8b', '2020-05-01', NULL, '115c3d75-267a-d7cb-f12d-3f9e88479cb2', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-07-01', NULL, 'e7717a14-736d-1cfa-61bc-e3174f6d3c2e', '2020-07-30 10:23:45.827895', '2020-07-29 15:28:35.037208'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('008a8ece-5109-4f33-d072-d1463ed42d4c', '2005-04-19', NULL, '45bd4507-3f10-015b-cc41-2b8224d85ac8', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('28527822-7e9e-baa4-e825-684d015eed40', '2020-01-01', '2019-07-31', 'dccb56a1-bea4-b22e-3a7b-f8af3aa404a8', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('eef01d53-ac8f-de1d-4073-2e7c8f3e8f9c', '2020-01-01', '2017-03-31', '1fef8144-55e7-ef57-4fca-824bc6c804a9', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('2fc94c84-5af1-6010-f5c9-9a3020d04fa2', '2020-01-01', NULL, '30b33355-69ec-7036-71ce-e089fbe511fd', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('d1e5548e-a91e-5132-4a47-0dbdb5c58257', '2020-01-01', '2020-08-31', '5d19fff3-df46-70b3-7b76-398a17824291', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('cf43bc15-cbc5-c426-3c3b-de43c8329731', '2020-01-01', NULL, 'ecc7b94f-8843-9b55-ae57-401baee8030f', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('c34e33ba-8c53-33cb-36f3-0dad48c88184', '2020-01-01', NULL, '519aca63-a0f8-a82a-6474-d3bcb374837b', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('a9484bae-dbf9-8b4b-b2e8-37d3f540022d', '2020-01-01', '2019-07-31', '3cbd3a99-e2ff-328e-f71a-9e31262107c2', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('521427be-daf9-59ae-6e6f-d952e89891d5', '2016-04-01', '2019-05-31', 'e80c7476-0c2a-08b1-dd0f-c4ffc783346f', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('5d606bb6-4c9c-24ea-20da-d8f2da9eb597', '2015-07-01', NULL, '3e9a9073-d977-f62c-e392-b4bad6752898', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('51345c10-2931-e287-6e1c-d3d0d05b5d81', '2003-10-01', NULL, '0bf38949-6133-fdab-9a6f-5a535d35585a', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('f1b7b3f9-b1ef-d01d-c1e2-98919f4e8ae3', '2005-01-08', NULL, '1b4e9535-1072-bc8e-1c8a-ca8fec680595', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('f3d30ece-099a-434b-41cf-e9fab08a77f2', '2020-01-01', '2020-01-15', 'fcb5082a-fb0d-04ec-d167-ef4b330947ee', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('eccbcb08-bd45-7885-b5b2-49f480eec5d0', '2013-01-07', NULL, 'e087212f-18b9-7b4e-2d6a-71888aee8604', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-01-01', '2020-07-31', '95ed73eb-dfbd-37b8-6131-64f259c76b3d', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-01-06', NULL, 'f35400b0-6d27-ad19-630b-7b934d304643', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('af2cba13-8e7b-c0ae-2ce2-f1ce3c059129', '2019-07-15', NULL, '84e5f590-9e76-dff3-45ce-0c39ce924ff7', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('9e036202-beb3-498d-60b2-afed7021db25', '2006-10-23', NULL, '318fbb35-1c6c-4223-0ab3-65057a6db4f8', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('11180e90-e972-cbca-cb32-9bff1a0bdc25', '1992-03-15', NULL, '9f811a33-0be7-9c18-75aa-4d01aecc977d', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('608e9219-b30f-43f5-79c5-c17d921297cc', '2020-01-01', '2019-07-31', '875babd8-ac9c-7bb7-3691-d888932fcb21', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('cb44dc10-da71-0483-6903-e53c7903bea8', '2014-03-01', NULL, '28303690-8f8e-14a5-94d6-b0a97c2be8e7', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('ba6c36fb-1812-53a1-4b77-171a92ef1c2c', '2016-05-19', NULL, '9b9cf076-aaff-7987-18c4-03f439a509de', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('6332f4fa-2b55-e230-4015-095bf5ed1c13', '2007-08-14', NULL, '2c9423d6-f10c-8920-d430-b976eed35297', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('fd1178bd-5578-bc8c-68e6-0caabb7a17fa', '2020-01-01', '2019-05-31', '966517c4-a5ae-6293-1f5c-8523458c847a', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('f2084bf3-3ecc-9b24-c3d7-78d365c45f8e', '2020-01-01', NULL, '045b9fd8-f9a6-ca7c-dd83-911badc20e35', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('9e408ee6-827f-94f1-2f20-ec4a9e36f5df', '2020-01-01', NULL, 'b872bde4-7960-6e3f-2501-c68b409d7004', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('0962ec1c-81bb-8e8d-3c4e-d5b45377afb8', '2020-01-01', NULL, '014f39e3-445d-4124-0968-edf2bdb706d3', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('2dcafaf1-c1e3-1bd2-6598-bb356d297168', '2020-01-01', '2020-09-30', '9d9ba9db-b826-e2c8-b9f4-ad8559a23b31', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('72650671-1f42-9ed1-2f4f-be0e2c5344a4', '2020-01-01', '2020-01-31', '9d79d138-8f97-bb1b-9405-e470b96ed5bd', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('8f4790a4-8be9-5e8e-59b3-2d053376fd0c', '2014-04-15', NULL, 'f69d00b6-05c5-763d-a49f-367314c5a298', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('c126d60c-e088-8b92-ac83-47dfa231e926', '2020-01-01', NULL, '282adea5-8744-691f-7c71-22836577951d', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('05222b12-533d-97fa-6252-2ba03b87d057', '2020-01-01', '2020-03-31', '48f08f4f-815e-7330-2e90-ca150727ac3f', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2013-05-01', NULL, 'dfe192ed-3041-920a-41a5-cb7cef91a92f', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('b82c5c49-c814-c68f-03ec-17ee24e765bb', '2020-01-01', NULL, '797aa17d-d5d1-e509-9973-d48406a3ca46', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-01-01', NULL, '7c857a6c-8417-dc5b-7218-24e6b696d076', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('b1843e04-9761-8838-5007-15262f59af56', '2020-01-01', '2020-05-31', '079ff258-bbc9-5606-dd76-34290e8a784b', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('016c1cbd-5197-572a-832b-e44f1c9de181', '2020-01-01', '2022-08-31', '1c4b07c0-28b4-9c68-89b0-4bc71bc03530', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('af9f604b-fcf9-0161-da20-1e3d7b1e4111', '2020-01-01', NULL, '8cfcfb06-1669-1f04-529c-f81a0bab1004', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2018-02-12', NULL, 'bb915d87-2a78-76de-1490-019cb411c0b3', '2020-07-30 11:23:56.510242', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('50ff28ff-8b39-52b5-03e7-fecab8706021', '2020-01-01', NULL, 'df69d20b-e89d-f53d-c8ce-4487ea2d6388', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('24de156c-6869-d29b-387a-f0a477c33b96', '2020-01-01', '2019-03-31', 'afccbaca-f939-bc55-10b4-21773bf2b4d4', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('c587005b-cabe-dce9-1e35-d37603b3bf8f', '2015-11-15', NULL, 'c7815a50-90f1-c703-20cb-b3b75c353268', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('e250843a-4ea6-00d4-7b47-cf2590e6e7ec', '2015-10-15', NULL, 'e31d06e4-60d4-8f04-acc8-6efcc83fc740', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('0a21b428-5d19-9f5a-dbe9-a3b992313b01', '1995-07-01', NULL, '1e653f45-7352-7543-b625-51c8c1944a90', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('1954ca0c-cc94-2792-1ae5-6ed2796186be', '2020-04-01', NULL, '76855ccf-9461-ac5b-84e2-e070cacdfc03', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('1954ca0c-cc94-2792-1ae5-6ed2796186be', '2020-01-01', '2020-03-31', '13f9edc2-9ac9-684d-45c6-a0d5a5840fb4', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('a4edc404-a9f7-37e9-25be-0aaa5a3d76dd', '2020-01-01', '2020-06-30', 'a65f335b-1967-3378-f40c-c6f62606d9b3', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('62623682-202d-7f16-58bd-3ea6641d9d3b', '2020-01-01', NULL, 'b0dff783-0c13-314d-2601-30d21f6c2f5c', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('661bf7d4-7a53-14ff-8566-7382172f65b6', '2011-10-01', NULL, '265ab14a-b44b-f1e7-ba80-0cf9ce00dc16', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('1f33232f-fc8b-71ca-584f-83a8336ff667', '2020-02-01', NULL, 'e2718bfb-929f-7106-94bc-68cdc02ae75b', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) VALUES ('af2cba13-8e7b-c0ae-2ce2-f1ce3c059129', '2018-11-15', '2019-06-15', 'a0c765c4-faee-5776-2eca-5630191392a6', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142'); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('53b2bf62-98ce-a92a-9586-1b04fb122b8b', '2020-05-01', NULL, '115c3d75-267a-d7cb-f12d-3f9e88479cb2', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('28527822-7e9e-baa4-e825-684d015eed40', '2020-01-01', '2019-07-31', 'dccb56a1-bea4-b22e-3a7b-f8af3aa404a8', '2020-07-31 09:12:15.492552', '2020-07-23 12:27:10.908142', 6, '40:00:00', NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('eef01d53-ac8f-de1d-4073-2e7c8f3e8f9c', '2020-01-01', '2017-03-31', '1fef8144-55e7-ef57-4fca-824bc6c804a9', '2020-07-31 09:12:15.49837', '2020-07-23 12:27:10.908142', 6, '40:00:00', NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('5d606bb6-4c9c-24ea-20da-d8f2da9eb597', '2015-07-01', NULL, '3e9a9073-d977-f62c-e392-b4bad6752898', '2020-07-31 09:12:15.5052', '2020-07-23 12:27:10.908142', 6, '40:00:00', NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-07-01', NULL, 'e7717a14-736d-1cfa-61bc-e3174f6d3c2e', '2020-07-31 12:16:48.61792', '2020-07-29 15:28:35.037208', 0, '00:00:00', '["1","2","3","4","5","6","7"]', 'a57742b1-b03c-21d1-54b1-bd0259375d89'); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('008a8ece-5109-4f33-d072-d1463ed42d4c', '2005-04-19', NULL, '45bd4507-3f10-015b-cc41-2b8224d85ac8', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('2fc94c84-5af1-6010-f5c9-9a3020d04fa2', '2020-01-01', NULL, '30b33355-69ec-7036-71ce-e089fbe511fd', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('d1e5548e-a91e-5132-4a47-0dbdb5c58257', '2020-01-01', '2020-08-31', '5d19fff3-df46-70b3-7b76-398a17824291', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('cf43bc15-cbc5-c426-3c3b-de43c8329731', '2020-01-01', NULL, 'ecc7b94f-8843-9b55-ae57-401baee8030f', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('c34e33ba-8c53-33cb-36f3-0dad48c88184', '2020-01-01', NULL, '519aca63-a0f8-a82a-6474-d3bcb374837b', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('a9484bae-dbf9-8b4b-b2e8-37d3f540022d', '2020-01-01', '2019-07-31', '3cbd3a99-e2ff-328e-f71a-9e31262107c2', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('521427be-daf9-59ae-6e6f-d952e89891d5', '2016-04-01', '2019-05-31', 'e80c7476-0c2a-08b1-dd0f-c4ffc783346f', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('51345c10-2931-e287-6e1c-d3d0d05b5d81', '2003-10-01', NULL, '0bf38949-6133-fdab-9a6f-5a535d35585a', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('f1b7b3f9-b1ef-d01d-c1e2-98919f4e8ae3', '2005-01-08', NULL, '1b4e9535-1072-bc8e-1c8a-ca8fec680595', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('6332f4fa-2b55-e230-4015-095bf5ed1c13', '2007-08-14', NULL, '2c9423d6-f10c-8920-d430-b976eed35297', '2020-07-31 09:12:15.526014', '2020-07-23 12:27:10.908142', 6, '40:00:00', NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('f3d30ece-099a-434b-41cf-e9fab08a77f2', '2020-01-01', '2020-01-15', 'fcb5082a-fb0d-04ec-d167-ef4b330947ee', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('eccbcb08-bd45-7885-b5b2-49f480eec5d0', '2013-01-07', NULL, 'e087212f-18b9-7b4e-2d6a-71888aee8604', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('af2cba13-8e7b-c0ae-2ce2-f1ce3c059129', '2019-07-15', NULL, '84e5f590-9e76-dff3-45ce-0c39ce924ff7', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('9e036202-beb3-498d-60b2-afed7021db25', '2006-10-23', NULL, '318fbb35-1c6c-4223-0ab3-65057a6db4f8', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('11180e90-e972-cbca-cb32-9bff1a0bdc25', '1992-03-15', NULL, '9f811a33-0be7-9c18-75aa-4d01aecc977d', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('608e9219-b30f-43f5-79c5-c17d921297cc', '2020-01-01', '2019-07-31', '875babd8-ac9c-7bb7-3691-d888932fcb21', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('cb44dc10-da71-0483-6903-e53c7903bea8', '2014-03-01', NULL, '28303690-8f8e-14a5-94d6-b0a97c2be8e7', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('ba6c36fb-1812-53a1-4b77-171a92ef1c2c', '2016-05-19', NULL, '9b9cf076-aaff-7987-18c4-03f439a509de', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-01-06', NULL, 'f35400b0-6d27-ad19-630b-7b934d304643', '2020-08-09 16:51:22.105001', '2020-07-23 12:27:10.908142', 6, '40:00:00', '["1"]', 'c2e086cf-32d7-7f1c-cff1-09c13172ade3'); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('fd1178bd-5578-bc8c-68e6-0caabb7a17fa', '2020-01-01', '2019-05-31', '966517c4-a5ae-6293-1f5c-8523458c847a', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('f2084bf3-3ecc-9b24-c3d7-78d365c45f8e', '2020-01-01', NULL, '045b9fd8-f9a6-ca7c-dd83-911badc20e35', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('9e408ee6-827f-94f1-2f20-ec4a9e36f5df', '2020-01-01', NULL, 'b872bde4-7960-6e3f-2501-c68b409d7004', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('0962ec1c-81bb-8e8d-3c4e-d5b45377afb8', '2020-01-01', NULL, '014f39e3-445d-4124-0968-edf2bdb706d3', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('2dcafaf1-c1e3-1bd2-6598-bb356d297168', '2020-01-01', '2020-09-30', '9d9ba9db-b826-e2c8-b9f4-ad8559a23b31', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('72650671-1f42-9ed1-2f4f-be0e2c5344a4', '2020-01-01', '2020-01-31', '9d79d138-8f97-bb1b-9405-e470b96ed5bd', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('8f4790a4-8be9-5e8e-59b3-2d053376fd0c', '2014-04-15', NULL, 'f69d00b6-05c5-763d-a49f-367314c5a298', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('c126d60c-e088-8b92-ac83-47dfa231e926', '2020-01-01', NULL, '282adea5-8744-691f-7c71-22836577951d', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('05222b12-533d-97fa-6252-2ba03b87d057', '2020-01-01', '2020-03-31', '48f08f4f-815e-7330-2e90-ca150727ac3f', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-01-01', NULL, '95ed73eb-dfbd-37b8-6131-64f259c76b3d', '2020-08-04 08:47:14.423046', '2020-07-23 12:27:10.908142', 6, '40:00:00', '["7"]', '267f424d-9716-cf98-3bd0-c6715257c3a0'); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-01-01', NULL, '7c857a6c-8417-dc5b-7218-24e6b696d076', '2020-08-04 08:46:46.705638', '2020-07-23 12:27:10.908142', 6, '40:00:00', '["2"]', '3ff4557c-b9c6-a2ff-eec3-89ad034b6556'); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2013-05-01', NULL, 'dfe192ed-3041-920a-41a5-cb7cef91a92f', '2020-08-04 08:48:02.295624', '2020-07-23 12:27:10.908142', 6, '40:00:00', '["1"]', 'f8666bc6-abed-a3ab-35d5-b6df495a0eea'); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('b82c5c49-c814-c68f-03ec-17ee24e765bb', '2020-01-01', NULL, '797aa17d-d5d1-e509-9973-d48406a3ca46', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('b1843e04-9761-8838-5007-15262f59af56', '2020-01-01', '2020-05-31', '079ff258-bbc9-5606-dd76-34290e8a784b', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('016c1cbd-5197-572a-832b-e44f1c9de181', '2020-01-01', '2022-08-31', '1c4b07c0-28b4-9c68-89b0-4bc71bc03530', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('af9f604b-fcf9-0161-da20-1e3d7b1e4111', '2020-01-01', NULL, '8cfcfb06-1669-1f04-529c-f81a0bab1004', '2020-07-31 09:12:15.54278', '2020-07-23 12:27:10.908142', 6, '40:00:00', NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2018-02-12', NULL, 'bb915d87-2a78-76de-1490-019cb411c0b3', '2020-08-09 17:30:46.037748', '2020-07-23 12:27:10.908142', 6, '40:00:00', '["4"]', 'fbd5ac24-becf-c358-45c4-65518415ebb8'); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('50ff28ff-8b39-52b5-03e7-fecab8706021', '2020-01-01', NULL, 'df69d20b-e89d-f53d-c8ce-4487ea2d6388', '2020-07-31 09:12:15.55329', '2020-07-23 12:27:10.908142', 6, '40:00:00', NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('24de156c-6869-d29b-387a-f0a477c33b96', '2020-01-01', '2019-03-31', 'afccbaca-f939-bc55-10b4-21773bf2b4d4', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('c587005b-cabe-dce9-1e35-d37603b3bf8f', '2015-11-15', NULL, 'c7815a50-90f1-c703-20cb-b3b75c353268', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('e250843a-4ea6-00d4-7b47-cf2590e6e7ec', '2015-10-15', NULL, 'e31d06e4-60d4-8f04-acc8-6efcc83fc740', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('0a21b428-5d19-9f5a-dbe9-a3b992313b01', '1995-07-01', NULL, '1e653f45-7352-7543-b625-51c8c1944a90', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('1954ca0c-cc94-2792-1ae5-6ed2796186be', '2020-04-01', NULL, '76855ccf-9461-ac5b-84e2-e070cacdfc03', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('1954ca0c-cc94-2792-1ae5-6ed2796186be', '2020-01-01', '2020-03-31', '13f9edc2-9ac9-684d-45c6-a0d5a5840fb4', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('a4edc404-a9f7-37e9-25be-0aaa5a3d76dd', '2020-01-01', '2020-06-30', 'a65f335b-1967-3378-f40c-c6f62606d9b3', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('62623682-202d-7f16-58bd-3ea6641d9d3b', '2020-01-01', NULL, 'b0dff783-0c13-314d-2601-30d21f6c2f5c', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('661bf7d4-7a53-14ff-8566-7382172f65b6', '2011-10-01', NULL, '265ab14a-b44b-f1e7-ba80-0cf9ce00dc16', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('1f33232f-fc8b-71ca-584f-83a8336ff667', '2020-02-01', NULL, 'e2718bfb-929f-7106-94bc-68cdc02ae75b', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('af2cba13-8e7b-c0ae-2ce2-f1ce3c059129', '2018-11-15', '2019-06-15', 'a0c765c4-faee-5776-2eca-5630191392a6', '2020-07-23 11:59:17.082874', '2020-07-23 12:27:10.908142', NULL, NULL, NULL, NULL); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-08-04', NULL, '7b866b6e-62ef-c354-5d8b-756d34c6f3cd', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867', 0, '00:00:00', '["1","2","3","4","5","6","7"]', 'a57742b1-b03c-21d1-54b1-bd0259375d89'); +INSERT INTO portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-08-04', NULL, 'e35e3264-b571-65cb-86a3-e84a9ef65041', '2020-08-04 08:17:12.572606', '2020-08-04 08:12:22.443771', 6, '40:00:00', '["3"]', 'ec796603-0d87-8457-b92d-1a792e5f5acb'); -- @@ -161,83 +165,1448 @@ INSERT INTO portanova.staffgroups (groupname, groupcolor, editoruser_ids, isdefa -- Data for Name: staffreportperiod; Type: TABLE DATA; Schema: portanova; Owner: - -- -INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('2583c916-2d07-f42d-9c85-18ee42959317', '71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL, '10c5760c-3c1e-2d81-7253-06c3d326a3a8', '2020-07-30 14:15:17.796308', '2020-07-30 14:15:17.796308'); +INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('2583c916-2d07-f42d-9c85-18ee42959317', '1898317d-07d3-c9b8-c29c-a5aa60c28c27', '320:00:00', '00:00:00', '320:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, '0553af62-8cf0-fa5f-6597-7f5777f79047', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('e3e85c3e-1afa-768e-7938-f0c9996c618a', '1898317d-07d3-c9b8-c29c-a5aa60c28c27', '320:00:00', '00:00:00', '320:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, '45fdb65e-68fb-d55e-e2ab-952a65a4735c', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('9b93bd90-2325-fe28-4bff-852203fc99ce', '1898317d-07d3-c9b8-c29c-a5aa60c28c27', '320:00:00', '00:00:00', '320:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, 'db572221-e032-6cff-d3fc-0d78d5e7572a', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('2583c916-2d07-f42d-9c85-18ee42959317', 'a77618bc-86f2-800f-b26d-6d641147ab7c', '320:00:00', '00:00:00', '320:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, 'a214cefc-def7-b373-cfda-eadace856f6c', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('9b93bd90-2325-fe28-4bff-852203fc99ce', 'a77618bc-86f2-800f-b26d-6d641147ab7c', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, '93afc058-a92b-b412-be4b-516596e263e8', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('9b93bd90-2325-fe28-4bff-852203fc99ce', 'e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '320:00:00', '00:00:00', '320:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, '054e1f88-f4a4-4ab2-7e9e-e8ab01517a92', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('2583c916-2d07-f42d-9c85-18ee42959317', '3c463353-f763-c72c-0007-e6b4926befee', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, '81e7bb68-ebe0-4903-56db-0e84c9d7b369', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('9b93bd90-2325-fe28-4bff-852203fc99ce', '3c463353-f763-c72c-0007-e6b4926befee', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, '835119a5-dad5-5cbd-cc29-26ab3b5c7af1', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('e3e85c3e-1afa-768e-7938-f0c9996c618a', '3c463353-f763-c72c-0007-e6b4926befee', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, 'a1d4b04b-719b-e336-af1d-3c53e4d27042', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('2583c916-2d07-f42d-9c85-18ee42959317', '71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '320:00:00', '00:00:00', '320:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, '10c5760c-3c1e-2d81-7253-06c3d326a3a8', '2020-08-05 08:46:48.014325', '2020-07-30 14:15:17.796308'); +INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('e3e85c3e-1afa-768e-7938-f0c9996c618a', 'e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '320:00:00', '00:00:00', '320:00:00', '00:00:00', '00:00:00', NULL, '01:00:00', NULL, '346964ca-29b7-a452-d8b3-32c7db60c9be', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('e3e85c3e-1afa-768e-7938-f0c9996c618a', 'a77618bc-86f2-800f-b26d-6d641147ab7c', '320:00:00', '00:00:00', '320:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, '4c757d37-1f8a-a82c-2be8-62c5db6c6544', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('2583c916-2d07-f42d-9c85-18ee42959317', '63204f0b-afae-1380-b655-a6247b129af0', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, '5876d7d6-0db7-1cb2-2458-e6be0e80958c', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('9b93bd90-2325-fe28-4bff-852203fc99ce', '63204f0b-afae-1380-b655-a6247b129af0', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, 'bd698833-782d-85eb-172e-5bab32b2a02a', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('e3e85c3e-1afa-768e-7938-f0c9996c618a', '63204f0b-afae-1380-b655-a6247b129af0', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, 'bbe9ed09-21ed-a377-a067-b2c69b850cce', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('2583c916-2d07-f42d-9c85-18ee42959317', '8aa08f14-7976-baca-c214-b1131263ea5d', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, '8d343a7c-5cf9-6bfc-9f85-f42c21b2f9d9', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('9b93bd90-2325-fe28-4bff-852203fc99ce', '8aa08f14-7976-baca-c214-b1131263ea5d', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, 'a741ac9f-d7e2-7221-e407-d3fa781c5c0e', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('e3e85c3e-1afa-768e-7938-f0c9996c618a', '8aa08f14-7976-baca-c214-b1131263ea5d', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, 'a56aa1ae-4706-d996-adb8-617f18184a28', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('9b93bd90-2325-fe28-4bff-852203fc99ce', 'cc63023b-4892-c29c-787d-088392d58b88', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, '3c970df3-cd24-2ab9-3531-c2c8fd39b56e', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('e3e85c3e-1afa-768e-7938-f0c9996c618a', 'cc63023b-4892-c29c-787d-088392d58b88', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, NULL, NULL, '408079c3-c057-3647-7f80-c46d58d71634', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('2583c916-2d07-f42d-9c85-18ee42959317', 'e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '316:00:00', '320:00:00', '308:00:00', '00:00:00', '08:00:00', '-12:00:00', NULL, NULL, '563f17f1-a2e4-c355-1ab2-74bec731c3d7', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) VALUES ('2583c916-2d07-f42d-9c85-18ee42959317', 'cc63023b-4892-c29c-787d-088392d58b88', '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', '01:00:00', NULL, '66419e71-b74b-ae41-ee31-2f5f1c3a38d0', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); -- -- Data for Name: staffreportperioddays; Type: TABLE DATA; Schema: portanova; Owner: - -- -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '7fbaf43d-e2f0-b7c2-e098-1a60f9f78c6c', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, 'ca2c3947-3eb6-cbee-22ed-78df58f0b370', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '6fcfb642-9684-36af-c898-1688da15643b', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '1fa9c5b8-3de4-4a4c-33a2-6d1ae2091957', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '8f25d2b0-34f9-2bcb-7a92-a6a9016196c8', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '06ff8830-7a3d-220a-2529-22228bade512', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, 'a27c45f4-57aa-82f8-6876-025958ed3f47', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '9a7e2e47-4e38-b8dd-b3ab-ac82bba78404', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '24b3ba74-5c9c-af51-2baa-ac79402cc147', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '3a7ce744-7a56-6c9a-4cdc-01310f84fef8', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '26e64577-991e-5e68-31e2-9d01b0ba6afe', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '7f3da7e3-855a-cff0-a068-f8c026447e09', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '7b559764-5e5e-6411-d835-77ff8cf7c3fe', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '20d0e733-aea1-a0a7-48b1-eb6d5546716c', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, 'c4d1f11f-e887-0f23-f933-78626c3f0728', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, 'e622c6d3-82a7-d345-05dd-ccfa0448f499', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '973f8ba2-391a-83e4-cde5-d0a4eacf4267', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-27', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, 'f4902e70-ad97-af0f-66fc-b24e4a1da138', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '78dcc23a-97c1-d550-447e-49a5a40377f6', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-29', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '9a70cbf5-d4ed-7c96-f19e-6201f4140890', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '607b403f-cb51-a72c-de58-90b49f12f8b8', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-31', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, 'cc117fe9-0958-3c25-bc48-28c2c0c4dd05', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '332fd795-42bc-1603-92ef-8dad38b857f7', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '62eca5bd-9788-7ad7-dbdf-da582c18bfc0', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-03', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '4b7610cc-81a4-6080-0b8e-defac51730e2', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-04', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '60e74220-67d6-e1be-9865-ca5675e3d626', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '0edc4443-51e9-8e35-6000-86192e9f724b', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, 'f618f025-0c62-2e2a-6560-2ec7835f3b0c', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '3145fd44-e08f-7819-d172-d1d0d64a3d38', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-08', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '8926ebd7-195d-d118-efaf-c8967e28845e', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '7db277ae-320e-ca83-ce2b-6f3a6d2c4aad', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, 'c659484b-d815-3848-c184-7f7d910e97e8', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '741261ea-0256-bbf8-9185-1a70a328075d', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '2f025e80-834e-579b-4ef5-a04e20ca9b3f', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, 'b81dd0bb-cee1-2a90-1420-d1aef612f6db', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '0ded3220-9db7-6490-857e-9e31defcca3b', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, 'aa90d97f-93fa-e193-77fd-edcb91e90430', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '97dfdbff-f636-9c75-2927-d977bc5ef85f', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '67c6cc06-2583-8907-1f39-fe8e3d6ac456', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '5d4f091d-66a8-c3b1-1b69-756c53451635', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, 'a2dd15cf-900b-f4d0-3d46-cf6b0907dda2', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '64041cd9-489e-7b3d-7a9a-2c042c074d25', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, 'db8ea35c-3b63-54ba-fae7-538168e2e7d0', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '33d74a9a-4ac4-6df2-7713-04b5aca08b74', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '881ffc2c-f56d-08c5-fce2-145d23d31ca7', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '4c9dbf82-14a4-63fd-0848-a0364a72e41c', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '5b40473d-b699-a022-174d-b642989b4cfd', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '1af047d2-6ae7-711f-35c8-3512c048397d', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-27', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, 'fe62c09a-a626-c021-a5ce-bb2d44fba8ab', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, 'aa30f154-5870-c990-3686-af6a520b5f7e', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-29', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, 'dd6dc113-3889-be09-b9c2-1cbc1eda18ed', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '7e4d4a1e-3d42-f58d-9f99-84e782467caa', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-10-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, 'a9aaa078-914d-83b2-63a0-176b7eb745c5', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-10-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, 'b93dba15-40c5-0493-4d85-a618b84addd9', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-10-03', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, '46513d93-f29b-a87e-b5ec-cd79c6cbca27', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); -INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-10-04', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', NULL, NULL, NULL, NULL, 'e845bd46-e252-2f6c-93f0-40a3d00b4570', '2020-07-30 13:43:01.660018', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-18', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', '24b3ba74-5c9c-af51-2baa-ac79402cc147', '2020-08-05 08:46:22.644638', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '9a7e2e47-4e38-b8dd-b3ab-ac82bba78404', '2020-08-05 08:46:22.644638', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-04', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '6044e5ef-0c26-dc0b-e5ec-656cee397530', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-06', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '294eefbe-1fbf-11b0-18ce-64daa474c908', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '694a7fe1-f3a9-cf7e-6a07-c07b698d7e66', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-10', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', '00:00:00', NULL, NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '00:00:00', '7fbaf43d-e2f0-b7c2-e098-1a60f9f78c6c', '2020-07-31 14:39:46.223624', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', 'ca2c3947-3eb6-cbee-22ed-78df58f0b370', '2020-07-31 14:39:46.223624', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-12', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', '00:00:00', NULL, NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '00:00:00', '6fcfb642-9684-36af-c898-1688da15643b', '2020-07-31 14:39:46.223624', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-13', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', '00:00:00', NULL, NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '00:00:00', '1fa9c5b8-3de4-4a4c-33a2-6d1ae2091957', '2020-07-31 14:39:46.223624', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-14', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', '00:00:00', NULL, NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '00:00:00', '8f25d2b0-34f9-2bcb-7a92-a6a9016196c8', '2020-07-31 14:39:46.223624', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'a84ae25b-43e0-567f-2dde-ebfdef96340a', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'd87c2c4b-d311-f599-a4bb-4670ed0e4498', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '68af56d5-7db1-b1a4-39a0-802eacc7c906', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '3a97f329-3f54-f74c-4d04-06f6d3f3c5e3', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '78cba873-f8fd-0fed-6d5f-f05b585372b2', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '8b02d7b2-c3e4-f18e-0254-daa7778e3694', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '904602ae-0d36-398e-60c2-db4c04238a68', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '00a9115b-959b-a4ca-aa9d-c419de85093e', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '1b67622e-1ecd-d4e6-384d-ec1f469a85e5', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '6f8182f0-379b-1c58-0595-cd8f850fd0b6', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'a920dc81-dd5a-af67-65d0-96167885e190', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '27d16e7d-99e4-92fc-4208-5b39e59e280b', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '4d0392de-3a3b-d1c3-b72f-63dccb88b3eb', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-31', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'beecf864-2602-8168-3910-2a2ef084d9a1', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '994a49d2-70dc-b6d9-515b-88dfc33b7031', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '6938d127-fb0c-ef59-652f-49bdcca34cf1', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '4dc11a5e-ec12-9a58-589e-24056f9485f2', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '266f1b53-edfe-1111-1189-400e9bf64e6e', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-12', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '00:00:00', '2f025e80-834e-579b-4ef5-a04e20ca9b3f', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '0182f7d5-2c82-e0b8-6770-03ff75ca082c', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '02dd3850-83b9-699f-5b4b-b9eed01555f8', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-14', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '8d37a1e1-020b-9d03-acfe-44c0c747422f', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-15', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', '04:00:00', NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:30:00', 'reposition', '00:00:00', '06:40:00', 'b910e083-9fa5-fcf2-71fa-62a40720ea3c', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-16', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '33ff9aa9-677b-0f6a-af18-b331c85f8657', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-29', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '81c0efe4-e630-d93f-d153-92641647b85b', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-30', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '0cc5175b-97ca-e0b5-87f0-a1fa693883b0', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-29', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', 'dd6dc113-3889-be09-b9c2-1cbc1eda18ed', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-06', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '00:00:00', 'f618f025-0c62-2e2a-6560-2ec7835f3b0c', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-18', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', '5d4f091d-66a8-c3b1-1b69-756c53451635', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-20', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', '26e64577-991e-5e68-31e2-9d01b0ba6afe', '2020-08-05 08:46:22.644638', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-19', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', '3a7ce744-7a56-6c9a-4cdc-01310f84fef8', '2020-08-05 08:46:22.644638', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-21', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', '7f3da7e3-855a-cff0-a068-f8c026447e09', '2020-08-05 08:46:22.644638', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-29', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '82a86d99-205e-0cff-7184-37d7740e57a2', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-28', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'eb811b61-8114-3007-d86b-abb0a010be54', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-30', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', 'ca0f188d-2fd2-dce4-18d5-9a825c0b0994', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-01', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'cd1ec279-8a92-d8af-e347-05f5a0764d9f', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-02', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '3cf38d19-b3c2-0e9c-89e8-09e72f1805f1', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-03', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '6e77eb11-4538-b191-fe07-b863519eb4b5', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-04', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'dd345189-3984-5bdc-08c1-e25b468be30d', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '0ded3220-9db7-6490-857e-9e31defcca3b', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-10-01', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', 'a9aaa078-914d-83b2-63a0-176b7eb745c5', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-26', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '00:00:00', '1af047d2-6ae7-711f-35c8-3512c048397d', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-05', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '00:00:00', '0edc4443-51e9-8e35-6000-86192e9f724b', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-04', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', '60e74220-67d6-e1be-9865-ca5675e3d626', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-17', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', '67c6cc06-2583-8907-1f39-fe8e3d6ac456', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-01', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', '332fd795-42bc-1603-92ef-8dad38b857f7', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-30', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', '7e4d4a1e-3d42-f58d-9f99-84e782467caa', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-27', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '00:00:00', 'fe62c09a-a626-c021-a5ce-bb2d44fba8ab', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-10-02', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', 'b93dba15-40c5-0493-4d85-a618b84addd9', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-16', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', '97dfdbff-f636-9c75-2927-d977bc5ef85f', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-13', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '00:00:00', 'b81dd0bb-cee1-2a90-1420-d1aef612f6db', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-05', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', 'b28ec6a6-1077-6750-6c50-e882b9604000', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-06', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '745cad31-18a9-2dda-46fe-be02e6d3c592', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-08', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'fc854114-0c0e-e08d-0adc-320d6d78321b', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-09', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '055b9820-8fb1-6753-2da7-db743f517227', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-10', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '6070df19-9a72-a066-0020-cd3def00ceb5', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-11', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'e37df37f-d03d-4e23-77f6-2c84a53400b6', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-12', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '4901de65-0682-05f1-4852-d67672baa086', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-13', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '1b71a776-0d31-4f3d-3c2a-605cc593fad7', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-19', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '041deca6-fbbc-b978-3029-13b0defc308e', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-20', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', 'f572a199-449a-3aa6-e67f-e3b3c9802a4c', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-22', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '748ef77b-7f9e-dc78-612a-553acba3d4bf', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-23', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '8b4984ab-dcc0-ce8d-eb43-91206551066e', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-24', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '23da2358-153f-7f44-6738-fb356652b859', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-25', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'c8e3f690-ecb1-12f6-922a-c2d6cca04916', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-26', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '4e7d93a8-46b4-1ad3-1699-7c7d646129fa', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-27', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '537027d5-e08c-801a-3030-29ce2023898c', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-01', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '9328bc91-ce7a-ddbc-a306-87fb99d1100e', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-02', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '7bf68994-ba3a-7ff7-e216-d6c10fc81766', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-03', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', 'aa5d538a-9a16-fac4-84ce-d047ef33c367', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-04', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', 'c335a092-dbea-a4d9-8bee-4401cc242e1b', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-24', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', 'dd2093a7-a680-51d1-d577-31be5ee75abb', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-03', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', '4b7610cc-81a4-6080-0b8e-defac51730e2', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-08-20', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', 'a4d0dacd-a70e-e407-fca3-4dd01d392cd7', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-29', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'ff4868b2-dfec-a669-2efa-22b54b04f26f', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-08-23', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '95d158ae-2a39-f538-6bd7-3fa3ad60c65c', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-10-02', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'f8dfdfe4-956c-9370-b628-0dee93f09d32', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-08-18', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '0ad35720-f02a-8a12-8aaa-c051d8a1bdbd', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-22', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '723f4617-a651-1c47-0ce7-fe62032e0fe0', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-08-14', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '6b857425-3df3-3ffd-d1d6-2bfda9bf6fa6', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-11', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', '741261ea-0256-bbf8-9185-1a70a328075d', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '3145fd44-e08f-7819-d172-d1d0d64a3d38', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-22', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', '33d74a9a-4ac4-6df2-7713-04b5aca08b74', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-25', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', '5b40473d-b699-a022-174d-b642989b4cfd', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-10', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', 'c659484b-d815-3848-c184-7f7d910e97e8', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-24', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', '4c9dbf82-14a4-63fd-0848-a0364a72e41c', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-09', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', '7db277ae-320e-ca83-ce2b-6f3a6d2c4aad', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-23', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', '881ffc2c-f56d-08c5-fce2-145d23d31ca7', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-10-03', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '43b413c4-85c9-04d2-3a8a-0110018312f1', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-12', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', 'bc6d5bb9-7deb-8afe-d03d-2cc084eccd8e', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-08-30', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '1ca59f10-f1c0-7094-18c8-4fb3a12dc0bf', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-20', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '00:00:00', '64041cd9-489e-7b3d-7a9a-2c042c074d25', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-08', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', '8926ebd7-195d-d118-efaf-c8967e28845e', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', 'aa30f154-5870-c990-3686-af6a520b5f7e', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-10-04', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '00:00:00', 'e845bd46-e252-2f6c-93f0-40a3d00b4570', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-15', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', 'aa90d97f-93fa-e193-77fd-edcb91e90430', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-02', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', '62eca5bd-9788-7ad7-dbdf-da582c18bfc0', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-19', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '00:00:00', 'a2dd15cf-900b-f4d0-3d46-cf6b0907dda2', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-10-03', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '00:00:00', '46513d93-f29b-a87e-b5ec-cd79c6cbca27', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-09-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', 'db8ea35c-3b63-54ba-fae7-538168e2e7d0', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-17', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '02f42dfb-5883-bd53-49d3-76a6be8632c6', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-23', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '00:00:00', '20d0e733-aea1-a0a7-48b1-eb6d5546716c', '2020-08-05 08:46:22.644638', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-22', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '00:00:00', '7b559764-5e5e-6411-d835-77ff8cf7c3fe', '2020-08-05 08:46:22.644638', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', 'c4d1f11f-e887-0f23-f933-78626c3f0728', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-26', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', '973f8ba2-391a-83e4-cde5-d0a4eacf4267', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-29', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '00:00:00', '9a70cbf5-d4ed-7c96-f19e-6201f4140890', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-25', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', 'e622c6d3-82a7-d345-05dd-ccfa0448f499', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-27', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', 'f4902e70-ad97-af0f-66fc-b24e4a1da138', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-30', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '00:00:00', '607b403f-cb51-a72c-de58-90b49f12f8b8', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-28', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '00:00:00', '78dcc23a-97c1-d550-447e-49a5a40377f6', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-15', '17:30:00', '22:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, NULL, '04:30:00', '00:00:00', NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '00:00:00', '06ff8830-7a3d-220a-2529-22228bade512', '2020-07-31 14:39:46.223624', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-16', '11:00:00', '14:30:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, NULL, '03:30:00', '00:00:00', NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '00:00:00', 'a27c45f4-57aa-82f8-6876-025958ed3f47', '2020-07-31 14:39:46.223624', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2020-08-31', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', 'cc117fe9-0958-3c25-bc48-28c2c0c4dd05', '2020-08-05 08:46:48.014325', '2020-07-30 13:43:01.660018'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-05', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '1af80872-add6-9791-6a66-2ba68c6cf321', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-06', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '685f4c92-5ee7-4059-9e08-8866201cfb61', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-28', '10:30:00', '14:30:00', '19:30:00', '00:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '05:00:00', '06:40:00', '7af41774-d11c-0b6c-351c-c3e6a36b1d6e', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-08-24', '10:30:00', '14:30:00', '19:30:00', '00:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '05:00:00', '06:40:00', '2265504c-50cd-dab2-9c69-d1fc9c94d417', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-10-04', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'b8b599fa-5957-e3a6-9a76-42865c32d34e', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-08-28', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'cd73b3b3-b863-5ef0-8a03-4af2fe339230', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-21', '10:30:00', '14:30:00', '19:30:00', '00:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '05:00:00', '06:40:00', '03e40c7b-ee49-2ecb-1a7d-ef8ab6b57795', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-10', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '8e72186f-3e43-a861-71a1-92c33227fac5', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-08-29', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', 'fce8fc78-b618-568e-69d3-0071ad4b7b52', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'db169d4e-b95a-d078-4a2c-82959e4e71c6', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-08-13', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '37098af0-bdf7-c705-43ab-e74b7b6b6155', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-08-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '8634c1b2-7094-9433-084d-905f6b950981', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-10-01', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '0d89dc9b-854a-b98a-7261-bdccfd00bff9', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-08-25', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '88e6c77b-22ca-eecb-848b-43273373e229', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-26', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '38b8bf87-f00b-503c-61a8-d7ccb3bfac19', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-08-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '66be1077-286b-cc57-d7ef-f19c55508a78', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'a994d6e6-7667-e2fe-9acf-664a86bfd115', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-18', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '20f8953d-8e3b-768d-2c4f-7eed2c4bc47c', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-08-27', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '5d37a859-0184-365e-a65c-16d183aafebb', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-08-10', '10:30:00', '14:30:00', '19:30:00', '00:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '05:00:00', '06:40:00', 'a760014b-ac94-f7e1-9641-118727f8073a', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-01', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '7fa07df6-bb7c-5931-56ab-013b0fad37f2', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-08-31', '10:30:00', '14:30:00', '19:30:00', '00:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '05:00:00', '06:40:00', 'e6e08cbc-cb55-d674-b416-313c69eb123d', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-04', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'be7530e4-3154-b366-7914-d347bce36fc4', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-27', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'eade2fdf-f9b6-40d0-fdb3-81dc991b6dc0', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'dde44d30-8cde-d8c2-7eae-83d9b72b6dc1', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-08-22', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '41134d3f-dd5c-50a2-1fde-7e9a0ec2fadd', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-08-21', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'c2ddb234-9bbf-41ad-0067-490607813615', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-08', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '8dda6322-3b40-17cc-fec1-9d86f1aac7f3', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-08-11', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'c2eb8b2e-a8c1-19d5-18f1-c3991b1fd0f6', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-08-17', '10:30:00', '14:30:00', '19:30:00', '00:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '05:00:00', '06:40:00', 'dc407dc6-0cc3-65ff-de30-292e05200960', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-08-15', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '890d3ab9-4b0e-43fa-4bff-9d75d0d4a184', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-08-16', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'ed4e35c2-142e-bcbc-ddc5-ead36da2df6c', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-03', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '3d6a812e-b913-b5d6-69f1-a7a3a4233229', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '08930711-c66d-1913-57f5-9e30361875e1', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-15', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'da58f918-7d71-acb8-3ed1-ee120d8ee17a', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-19', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '2e5174d4-2487-e99b-5d2d-f4ad399f8e7f', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-25', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'ced9fd17-74f1-ab3d-f3ef-abe0f94cc7e7', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-13', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'dc17e572-d6d4-418c-44f5-a1affe62c1fd', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-07', '10:30:00', '14:30:00', '19:30:00', '00:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '05:00:00', '06:40:00', 'fcc8472f-086d-a74f-f802-6ad3a410bfcd', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-20', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'ff01dd7f-c4a7-77c0-3387-c3dfba49d0c3', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-24', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '910505cc-8eb0-aa84-08a5-e9b0b0d1810f', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-14', '10:30:00', '14:30:00', '19:30:00', '00:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '05:00:00', '06:40:00', '67aa4eb2-2d30-5526-a746-03b4972e3230', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-08-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'e9015303-fade-8a75-83ed-830b3af5ae06', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-09-11', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'f39ecb1a-53ec-f5e0-db76-78216a56f60f', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-10-31', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', '579d25f0-52eb-4073-2f2c-49fe684abad8', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-10-23', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', 'e19c0060-fdef-8d82-80cf-06dccec53b15', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-11-05', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '42508999-922f-ed29-c08f-464a89da2fcf', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-11-03', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', 'cb7c7ea1-3ecd-81c9-24a3-dc082058a0da', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-10-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '3a77e71f-cc59-b5e6-bab0-99f17de793f7', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-10-13', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '145bb35c-e43e-4813-1d26-666337de4ae7', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-11-27', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '9b451e04-bb2c-9fee-2ad7-45a16f76bb15', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-11-04', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'e3284175-0939-e3dd-bb52-4e92bad7b00c', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-11-07', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', '3b52260d-cdea-f7d3-8c23-3334baa907be', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-11-23', '10:30:00', '14:30:00', '19:30:00', '00:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '05:00:00', '06:40:00', 'f49ceaa2-473c-bd09-7cba-6838b7ce6e45', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-10-26', '10:30:00', '14:30:00', '19:30:00', '00:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '05:00:00', '06:40:00', '9f834b6f-fb3b-b3de-f9e9-e32829f3320f', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-11-17', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '9d03974f-da61-2f46-72f7-0800f1772ca8', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-11-25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '0e72368b-13bf-f5fa-d1cb-3d318608d36b', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-11-21', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', '7139e8af-49b2-ba73-e143-194229cb1513', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-10-27', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '9f18d28c-bda1-39a6-441d-93cad30c5fab', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-11-19', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '17f74b3b-7b4e-8280-9ccf-11cc108c3647', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-11-16', '10:30:00', '14:30:00', '19:30:00', '00:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '05:00:00', '06:40:00', '9faf0c18-4799-8189-99fa-bb2ad187eec7', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-10-10', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', '750001cf-53a4-7238-9445-250799395c43', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-11-22', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', 'cd3a25cc-ec7d-f3ab-3183-2182439c4cdd', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-11-01', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', 'e2b24534-9182-4b62-c14d-2a5ec69e92b1', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-10-22', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', 'a5703366-f4f4-59bb-84ab-bf64ac906cd9', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-10-11', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '73ff5ea1-a654-5c3a-b9d3-f05ba7798f8e', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-10-09', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', 'c9bb53dd-5356-ee2e-3f16-a228a0171e87', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-11-29', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '9143d866-d328-ab93-9793-2daf3d5babf0', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-10-29', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '2bb5dd38-3a75-1bd1-9e32-834e58a173ea', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-10-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'b8278cb6-fdcd-3ad5-d266-65037fca985b', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-10-05', '10:30:00', '14:30:00', '19:30:00', '00:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '05:00:00', '06:40:00', '09fa1e84-70e9-b892-2f53-b12549a47512', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-10-20', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', 'dc432815-ca05-69b3-300a-5275adc8a7b8', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-11-08', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '3cf493b9-c9b0-c7da-613e-d2b7df1bf530', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-10-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '1d336b1d-563d-4255-de11-7c1e683782b5', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-10-16', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', 'dd405912-d7d6-aed2-14f9-5d45922e0a73', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-11-24', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '58e0b2b6-8e3d-708a-bb94-02700975f7ac', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-10-19', '10:30:00', '14:30:00', '19:30:00', '00:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '05:00:00', '06:40:00', '12dbd610-ac06-74e6-4b5e-452399bc1c70', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-11-10', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '291024af-a268-1d18-31e6-28a3f18c07e4', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-10-25', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', 'a1c9f897-5c27-ca45-2e88-b84debd4a015', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-10-12', '10:30:00', '14:30:00', '19:30:00', '00:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '05:00:00', '06:40:00', 'd1dce27b-271c-c817-2627-da17cb014056', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-10-30', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '90cf3dba-2652-e48a-61c1-69ab904e94c9', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-11-13', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', 'ca84e6f8-0b62-034f-80a5-08ad13551e2d', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-11-28', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', 'a0a9f0fa-8276-8ec9-2c3e-a6e95254a264', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-11-09', '10:30:00', '14:30:00', '19:30:00', '00:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '05:00:00', '06:40:00', 'b12e2e43-2541-016f-e50b-c86569e6e929', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-10-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'ea979bf9-508c-1759-7a27-c8c7e25882bf', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-10-06', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', 'fc6c2789-9fa4-0292-c712-4c5457255794', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-11-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'd455cf0f-c94a-301c-a8c1-ea46321bb55f', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-11-02', '10:30:00', '14:30:00', '19:30:00', '00:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '05:00:00', '06:40:00', '2dac3b34-19ec-6f28-e257-4d2d51c4ccc9', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-10-08', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '6248809e-012f-8326-0613-1a04f55a3108', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-11-26', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', 'a5955cde-d535-7b0a-b0c6-75b41c088e72', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-10-24', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', '76c5cd8d-b57d-3f6a-945b-bbb77a05fb80', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-11-06', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '442dfc94-a148-f722-f787-6a24e5367289', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-11-12', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '44165e9c-68ae-f553-5868-15834682c906', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-11-20', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '448a0182-fb89-ecec-4f9a-6e88112883c7', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-10-18', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', 'a7ca0cba-8728-34b9-6c93-fd44836975b9', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-11-14', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', '16a3a707-4fc6-3899-07c6-4184b28fab51', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-10-17', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', '9674a45d-8fc5-0794-4898-d42d7958ea5a', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-10-15', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', 'aa78819a-961f-895c-aa3d-e8a8dada0759', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-11-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'c93c607d-d037-dc0a-a0b4-8dfc37e5953f', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-11-15', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '57310bb8-2985-664c-343e-d756d3a95c7b', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-25', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', 'ebbc7005-91ed-c41e-7547-1d7079ef0cda', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-20', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', '2ce13302-3dc9-1db1-d46d-6d68d3722a44', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'd2f223bd-534b-81aa-b1ee-aa33b1a9ffe3', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '980939db-15c2-ae86-4683-e43533328d07', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-15', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', '4d2ad9d4-edb8-d8c3-ff99-061f71c5bc52', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-19', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', 'e91173bf-0d2f-37ce-1a66-b72e3b292f19', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-26', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', 'af965465-872a-97d7-fe5a-2cff55b180e3', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2021-01-10', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', '30d68d2d-c68f-b8b2-5428-1f1bd745eae6', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-11', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', 'a056257d-a08e-f954-1cac-e5dac694b000', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-14', '10:30:00', '14:30:00', '19:30:00', '00:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '05:00:00', '06:40:00', '7dd6061a-d3e6-90ee-c460-ffb2bd9e302a', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-17', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', '7df12d18-3c6d-b951-41d3-d06a0878d31e', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2021-01-02', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', '0d161849-f673-95fe-caeb-09a71b8efc74', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2021-01-08', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', 'ad854151-0024-dc44-73df-cd83a15cc035', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-31', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', '954927af-4441-308d-21c6-3e65d9c2bbc7', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-28', '10:30:00', '14:30:00', '19:30:00', '00:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '05:00:00', '06:40:00', '52850e96-04a4-4787-6057-c0e1b7418cee', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2021-01-05', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', '0a5a6143-e91b-18fc-4427-1eb298175af4', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-27', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', '1cc6ba5a-e8a7-0fa9-d59d-50a97021909d', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2021-01-09', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', '6814ea1b-3908-d374-fd25-275b8e0d68f1', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-18', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', 'badfbbde-1ad4-b46c-2a7e-4945b6b8b555', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-08-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '5fecb19d-6201-67fd-6bdf-f07ffa057bfa', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-08-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '6b60c5e9-a917-266b-6f1f-cf04a69ca865', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-08-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '72c0e8af-05ed-82bb-17ed-ea987f041a69', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-08-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'a124faf5-a464-240e-2636-bf2cfb00c2e4', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-08-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '2a7b3616-ea63-4de7-aa4b-6ed50a172c32', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-08-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '173a0120-69f2-1016-12db-f71d0ebc9e52', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-08-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '00a48a4b-08d0-b9e3-2e77-727fd420b764', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-08-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '101cd8af-c09f-94ea-4b07-dcea76770731', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-08-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '56877d67-7b9e-8928-e000-af66bd19b4be', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-08-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '3d39e8a8-ca3d-e03e-1077-f6f6324a7256', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-08-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '1ff1668f-1daa-02ed-627b-a2ae600729fd', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-08-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '46435604-abf7-84f3-9599-89503abcaf7f', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-08-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '8a6d9145-8c8e-6f9b-131d-0bdd53d19454', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-08-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'cd89f5f4-bdbf-622a-c349-98c869e98d59', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-08-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'eac906e3-1729-7b59-7204-275053f64c1b', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-08-22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '1f9455d0-8810-49cb-9328-5264c4a05926', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-08-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'c5977305-1b4e-d114-080c-5c30428ff851', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-08-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '860f3a75-072c-01b2-d957-9143e9959e45', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-08-25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '6386d95e-4eb5-7073-9637-c07a4175d89f', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-08-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'd08489ac-fa6e-ab62-491d-a499c2419907', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-08-27', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '53d505f1-d3e9-77ad-bb36-fe490a80a8bd', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-08-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '25485fbb-c1c9-fbcc-2c65-a1756d8df1bf', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-08-29', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'bba08b5a-1444-0ab0-c95c-6ab232b12239', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-08-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '0b7560ec-a3b0-017c-ddda-686fc9bee346', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-08-31', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'e8420e43-d1d2-a357-a96a-a7e35e981107', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-09-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '8de2528b-a27b-0083-77a9-f97b491524cb', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-09-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '58ba022b-b231-4812-fe2f-afe6c1d42df8', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-09-03', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '55e2d665-fc03-c3fc-769f-095eb45fe296', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-09-04', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '812a88ae-5f8c-3e7c-1239-1b00893970f5', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-09-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '90d1036d-7ed9-039d-373a-feb55ee843a8', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-08-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', 'f68a3c2c-7631-1dc0-ee15-371948b8051c', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-08-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '4003c9c5-fd42-c3f5-6772-cb28446ceb03', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-08-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '187fbec1-5b6f-9bbd-4d94-077d278c244f', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-08-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '35b6610b-cfee-d960-e5e9-726fe01bb987', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-08-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '18d5a3a0-b309-9d9d-b1ab-cd7933171910', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-08-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', 'ef731574-50bf-fde0-b890-83c5f687852a', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-08-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', 'c3573fcf-1f52-95a0-a5fa-a5d5502ce29a', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-08-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', 'cd37d6be-c384-4cea-c316-a15e1e62cba4', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-08-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', 'b6e67af2-0dd7-c8c4-9ea2-8d86a48752db', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-08-22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '44ac3f81-de49-d09f-e7c0-d72bfbbb0494', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-08-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', 'c4278330-16bf-8c1b-05e0-b9c2333076eb', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-08-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '67a064c5-08bd-ac0d-d9f4-9742f965ec26', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-08-25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', 'fbf73184-a97c-2e4d-8984-4f532af77148', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-08-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '7c5ac028-8274-5077-eb93-edafeba0a661', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-08-27', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', 'd56abb0f-2d85-abdd-70ea-165f95099432', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-08-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', 'fd7fa732-9550-6743-e308-fcfb5b45ecd0', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-08-29', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '1c427d15-47bf-1c55-6b83-72d28b14161c', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-08-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', 'a8620b08-b43f-58a5-269a-82b1bf92b4c8', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-08-31', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', 'ee535d65-58d7-74f0-6cb7-dacea9693bf9', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-09-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', 'b3a1a33b-8a38-f18e-3322-d20b687c80ad', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-09-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', 'ee6504d3-08ae-f247-10e4-b53409849835', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-09-03', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '41297e7e-4d79-1817-bb0a-0a1d4b688ca2', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-09-04', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', 'd30006fd-fdb3-2e3e-d918-a7dd4917cae1', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-09-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', 'abd24a34-12cf-e24a-70c9-3ffea617f199', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-09-06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '39b644aa-5135-eaea-6487-719e178cc5bf', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-09-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '67a1bf08-f859-0e3a-66e5-372076a53070', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-09-08', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '582e3079-e24d-4cef-00bc-cfa7d2976c9e', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-09-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '8b81f2cf-97cb-f34c-085e-0672d52f12c1', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-09-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', 'e61cc78c-07ed-9830-f2d3-71ed03cfef9a', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-09-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '887a65d1-9cf3-c78e-80a4-5f01fac71bdd', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-09-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '3dc754e1-f4cb-081d-5c73-635aed5d5ed5', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-09-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '3dbbc976-6e3a-b9bb-323d-5c74f7e8f8fe', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-09-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '5fd31578-2cb4-2c4f-36a7-decfe970a5e8', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-09-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '67653192-f921-fe03-dc05-4796c65f73a6', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-09-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '8f142bd4-24a5-7380-0d7d-2f5f00516e9c', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-09-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', 'cf25b96e-bf98-6cd5-2464-0066c63aa0d7', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-09-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '79ea9378-0ebb-81ed-9633-1f2d1adc3b76', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-09-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '99a0e6d6-5f02-21fd-2d9d-d3bf1cae8fcb', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-09-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', 'eb538159-6733-cfb9-4965-f58c8db5d275', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-09-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '410fa46a-8f62-ba15-2fdb-ff2a074e08c5', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-09-22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', 'd72216bd-ca97-4c9d-544c-10f78dd4c52e', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-09-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', 'f172e070-d158-713c-2f9f-76de883dbc7d', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-09-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', 'cfa1dfea-7116-fd5b-76d0-58c6578bc9cd', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-09-25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '404feff9-4682-c471-d81e-084b05bee8c2', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-09-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', 'a9cedc20-1674-691b-a12d-14f65fe2e8c0', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-09-27', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '55704216-4803-cc98-4e1c-3802fe24c064', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-09-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '7237038a-8ad7-89bf-d108-8cbbab9f6069', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-09-29', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', 'c6957776-808c-71d5-9b04-9a9442b38681', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-09-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '4fef351b-13d9-ff8a-d23b-6ff047ade59f', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-10-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '3bce4c51-4cfa-cf72-87b8-69db4581d533', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-10-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '7f95c94e-01e1-16db-93c1-e5d2874492f4', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-10-03', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', 'c87c169a-8a4e-2ff4-8760-3c18153f983c', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-10-04', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '00:00:00', '9aa0cd1d-6896-cd08-e34a-3ad092dda6f6', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-10-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '294b7c94-64c2-b8f8-d468-c0b110978960', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-10-06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '638ca73e-c1d0-3442-65e3-49767fed4fb3', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-10-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '5140a1a9-db1b-b95c-4760-836626159289', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-10-08', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', 'ebc30682-f19a-9a30-8243-4d02b748612e', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-10-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', 'f74937fb-b07e-a3f6-c999-95b6d4870ad2', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-10-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '1ebae3b8-9d20-3439-e0d6-bbd5b45de133', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-10-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', 'ba58825b-f46f-14f6-5ca4-145fc94add2b', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-10-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', 'f7b95bfd-0a54-66cb-ea70-709cac7dbee7', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-10-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', 'df7a8c07-15a3-a07a-00cc-4bed883b02f8', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-10-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '6d32e0ac-0061-8e95-2fa5-158c6eeefc70', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-10-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '65dc405b-9b86-c747-dfe8-a3d2af2bda5e', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-10-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', 'fffeed39-b6c0-520e-7ec0-8790d1116e60', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-10-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', 'c7b389ce-7fe1-2845-93da-29f30f702d05', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-10-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', 'dc6508bf-0492-bc54-df75-93d79a6e96b2', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-10-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '3cf97371-315d-b7e7-eb4c-4b6239a520f8', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-10-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', 'e3d3e2f6-6bf6-b734-6a27-197d38dbb2c2', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-10-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '63afea67-0cf9-55f8-4131-6337d9fa2db0', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-10-22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', 'a296fa71-88b3-2d38-2479-90435d9c462d', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-10-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '9b95408a-f541-4b8b-81cb-4cd6ca9e81ef', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-10-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', 'da750332-b6ca-5109-f981-267e515b2666', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-10-25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '26507ba6-ac8e-9640-a6be-6370939cba57', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-10-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '17f34198-b3ee-f3fa-0635-bb0d17a03233', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-10-27', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '49d42f98-ede6-61f2-6d07-f2120ec32517', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-10-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '9f4fc242-7de2-ddc3-3416-bd92f7397e9a', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-10-29', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '7c8c9ade-426d-3c9e-bfcb-85481e8029ad', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-10-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', 'a365fa06-1e59-e7bb-109f-5ded4c5a0de4', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-10-31', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '1f1938d5-581e-d034-6d86-4f6c0e92aa94', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-11-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '0ac6c933-7c4b-b23b-64b9-e79c1e00a4e3', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-11-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', 'f432630b-daab-7ca9-ece8-10507bb4da90', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-11-03', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '75a7971a-c0a1-f89d-3d05-742d528c11ae', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-11-04', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '1ec8ad50-b338-e5ec-4d43-2179952cf0dd', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-11-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '83586a77-c097-f6dc-e725-a231844a53ed', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-11-06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', 'a3eedc02-38b5-d356-5235-34b86b443098', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-11-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '744af9fc-de08-5998-c31e-df01e8628bc9', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-11-08', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', 'fd650147-00f8-659f-0597-0c7a8c80ace9', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-11-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '1b44a57b-11df-d16c-05ca-2e3b8aea6297', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-11-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '19180613-ec5f-57c1-2c5f-85652205622d', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-11-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '7947714e-5485-8dda-43d5-bbf024e04144', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-11-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', 'c4030361-a1a3-81e9-43a9-fdfa2daa0ef1', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-11-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '8d78a56f-fec8-3838-0aeb-c995ede66ca3', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-11-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', 'e724a7d5-8762-da94-648b-3b95ed16085f', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-11-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '0587d349-5c64-8f36-04c9-b1168188bc7b', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-11-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', 'f65324f3-8b2a-f3ef-e25e-7ae0faf67997', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-11-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', 'a63883e3-7df3-e590-fb17-0e7a0a25f954', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-11-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '72c85b91-2b96-fed8-beb5-5768f6cdbde5', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-11-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '50622888-657a-5d15-a2f0-631d30c80b8d', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-11-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '0f17cf54-6805-30a3-dc6c-480cdd3a29a3', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-11-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', 'ae91665e-aa4c-f421-f8ee-6c4f95b58a35', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-11-22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '0b55b4de-7e5d-410c-fe8f-f01b790916ca', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-11-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '699066cd-298c-7a35-26cc-c86174a330fd', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-11-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '14a6f971-bceb-eb95-00b0-8292728d671f', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-11-25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '3be950f4-a717-bfee-76b7-1d51041c628f', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-11-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '24e07232-6f12-0637-40c9-d8a6c7bfb71e', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-11-27', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '2a3b1e34-4fd7-3eee-0bdd-0c3f4b1aed27', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-11-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '4876b6f2-aeee-42a4-c44d-b7649a74e66c', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-11-29', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '00:00:00', '10ecf4fe-67e9-4569-33ad-88d856398296', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-11-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', 'fc8bbb24-830e-d396-6f06-439561874f11', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-12-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', 'a8ed40fe-fc07-582c-823f-9a421fd734de', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-12-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '80a6bd3d-cc8e-9316-125d-57df5a9e2de5', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-12-03', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '409720d7-2f22-9c68-9dea-e664491a760e', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-12-04', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '3a42beff-3f27-3f89-4b7a-1e6631d642fb', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-12-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', 'a91801af-ee25-a601-bb4f-72c0f9d226bb', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-12-06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '4498ffc4-655b-6ba1-00d9-279106076f4d', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-12-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', 'e8d709bc-e17f-4086-705d-a82fa4350b81', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-12-08', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', 'af6456cc-31df-a1e9-bf30-7ec744f22eba', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-12-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '026f87af-8917-55cc-5280-21826034ec2f', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-12-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', 'ccde47e7-d86f-3efc-bd73-388907b193b1', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-12-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '28d48cec-a186-64a0-0777-5bdf2a0df2fe', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-12-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', 'a32a82d7-7193-ff7d-8217-b730b86575be', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-12-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '21007133-757c-95b3-4df1-d2b7a25d81a8', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-12-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', 'acaf8883-0cb0-3c25-083a-ae03bbade008', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-12-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', 'b9a54a4e-f5a3-ccfd-08a3-56eee54329b4', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-12-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', 'b63419db-c2c6-2ca0-652f-0a6123fe7f44', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-12-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '30337f63-6a4f-c1d1-c6f8-86ea08e74a14', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-12-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '29d164ae-94d0-3a0c-f9fc-7b3eda914332', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-12-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', 'a0e7febc-28ea-6c89-c634-5326dd13016e', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-12-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '2d21e0ee-2965-bdd6-faf6-c9d7f9db2b99', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-12-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '16252256-1ed0-f9a1-4222-053a8921e308', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-12-22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', 'fa20e9b2-48a8-cd87-ecb7-ebca9620564e', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-12-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '94d6e882-d008-be44-e8be-f289ee3a0d82', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-12-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', 'eb900490-41f2-dc42-d56a-8df69eeec082', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-12-25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '6ca2e885-0914-487b-ae2d-ba25903e8bb6', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-12-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '23e6442c-3df9-2dab-cb40-8949818ee366', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-12-27', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', 'd0e33bdf-90f8-21ab-a3fb-3d953e02ec2c', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-12-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '05b91681-0b5e-b654-57fd-ebd94753bcb4', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-12-29', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '30dc6c55-6cb4-4091-2add-88ee321f9e40', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-12-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '7d459597-189a-239b-8201-ed6b3bf00bc5', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2020-12-31', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '390ab613-d9cc-55dd-a77e-d11511e26327', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2021-01-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '72e2a6f0-a5d0-96c6-a736-f1f930066d29', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2021-01-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '4e710dc7-2b3c-8d17-f1be-408db60f02e2', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2021-01-03', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '390a67d4-cd97-5eee-d91e-3e2b7201800a', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2021-01-04', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '39b34310-944d-90ef-4f50-06ca34658e47', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2021-01-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', 'b63d106d-8057-4bc1-b779-3e9df8e3b03c', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2021-01-06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '9cceb7ec-b68e-574b-83e7-cb6a9a8de25e', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2021-01-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', 'a645e9b9-5859-ebc3-5748-55e079027605', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2021-01-08', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', 'e725de5d-d112-bb5c-71ef-88bbd35a8f9d', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2021-01-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '6be42697-ba54-326f-9608-640025a4adf1', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2021-01-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '73bdfe80-4ca4-5e11-f7da-02692d271aed', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2021-01-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '1b7235a1-fca2-39e1-8077-f9d0990b3fcc', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2021-01-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '0bd7c31c-4474-4cc6-1132-e4e6108a3e5b', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2021-01-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '45bb556a-9ea1-c1a5-7c29-5c189848a5ad', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2021-01-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '8c009de5-7bbe-bbbc-29d3-54d3b8370ba5', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2021-01-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', 'd72eb031-9d4d-0193-56bf-7ff5e9526092', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2021-01-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '5a6d0bfa-f4bb-5a6e-e14e-46567a5efaaf', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2021-01-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '40983734-13ff-14b4-9f58-69c8bf998fd2', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2021-01-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', 'd8353796-3a15-b988-37ec-dae2bcd138ab', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2021-01-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '87238370-1628-ccf7-f91b-160c6d16c615', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2021-01-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '63a5a7fe-b5b6-0800-6327-836915ba2da9', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2021-01-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', 'e557a730-559f-ef17-a68b-8b334d2c0901', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2021-01-22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '25fb6fd8-8218-ecff-00a1-f4958d52afe6', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2021-01-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', 'e1084f65-576e-bb2d-f9fe-fa428ea409ca', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2021-01-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '00:00:00', '24e7e8f0-726d-6ce0-4330-4c646ed58bd8', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '188d37ea-6e35-a117-51bb-92d0286ff48a', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2021-01-21', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', '0272028e-7ece-095a-b774-b1ecd4589f2b', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2021-01-07', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', 'a620dc5d-5f60-2180-b81a-0643da0acd66', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-12', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', 'fdfd6b05-8b39-7e03-dcbd-70de948e1f82', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-10', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', 'e315bcb2-d32f-2f09-1333-b4e84dc3199b', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '3bcef980-b863-4515-93bc-e4c0d5e86c3d', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2021-01-04', '10:30:00', '14:30:00', '19:30:00', '00:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '05:00:00', '06:40:00', '61f11a6d-7ad0-c311-5f08-3e626a38532e', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-22', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', '92ab2c92-24be-8a40-c192-0755b47919cd', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-07', '10:30:00', '14:30:00', '19:30:00', '00:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '05:00:00', '06:40:00', '81771dff-ac96-f718-d937-efed26ec511a', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2021-01-22', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', 'e9908524-50b8-5725-626f-0a4710dbc095', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-29', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', '1f3d26d6-bddc-3b66-b794-103db11c9cca', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-24', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', '9fbc8443-b6ec-711a-c333-febe0d0fa3bd', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-21', '10:30:00', '14:30:00', '19:30:00', '00:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '05:00:00', '06:40:00', '586718d9-f506-eabe-c7c8-280e406d7006', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-06', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', 'bcb594f2-9b92-dd0a-4da5-755dbb2a9092', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2021-01-03', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', 'daa2a364-8b36-cf71-5acc-8d1bec8985d5', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2021-01-06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'ef0686e2-5912-ba16-5c8a-a205a5099276', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2021-01-23', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', 'b4ecc6df-7d82-c42b-3fcf-8c7a0fcae0db', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-13', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', '5bf40b28-eb08-37b2-08d9-2fb8200326b4', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-08', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'f3b4af95-80af-232f-3bb4-d58d67e14eb0', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2021-01-01', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', 'f8dd92a0-049c-d965-caa9-8590407c4102', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-09-06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '73534c87-e6d3-c1e0-b3f7-3b84e05de40d', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-09-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '74103015-0b40-be6f-b7cc-f94c64349597', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-09-08', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '43e6bdf4-6458-3f1e-5ca9-cc9325450ff3', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-09-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'c80f5a7d-df6e-ef96-65d2-9cbbe0776155', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-09-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '61e79093-6e44-7baa-8cf4-61ca63f984f7', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-09-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'c2362aee-1f92-7fcb-4c71-4e5f9157451e', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-09-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '4b3f8678-8c66-f308-d1cc-68968060c70e', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-09-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '50f53371-78ac-5a28-d3eb-c2e6a251de93', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-09-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '68c0b6c8-0246-12bb-3610-aebb94944832', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-09-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '30918a94-be6d-ea22-b2ae-2972d1bb22eb', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-09-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'b31f915b-142a-d81c-118f-44a1f4160665', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-09-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '87c17ad3-5fa4-a414-fdb6-32da663f3511', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-09-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '497e6fb8-6304-c0d6-2b84-86228972578a', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-09-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '09877049-ac60-a13b-4057-2629aa5e827d', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-09-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '3e3d4f52-78a9-58f4-530d-eeddb06cbf45', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-09-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '36dfda52-3a54-3a60-f363-333ff71cb5f8', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-09-22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'ef958b3f-a41b-f457-b87a-8440c7a10fb1', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-09-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '1d87354e-d3d4-8e26-b459-b04592538580', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-09-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'aeb6b697-80cd-2f73-d95e-e7d6dfac618c', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-09-25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '02b4482d-adfd-807f-83cd-8f24b9889307', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-09-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '22f62744-81cc-375c-9e16-0d6661230be4', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-09-27', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '599f45c9-ec11-307c-897d-7f82756d204a', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-09-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'e667f092-d7b4-7149-1148-bc3ca7634e31', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-09-29', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'd3b6550f-96e4-2b1d-430d-162c0fc243fd', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-09-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '7fc1f9aa-a032-de31-1ad0-b7fdf3bdb7b0', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-10-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '5327a023-ba66-b82c-f59b-f2f36eb25ef2', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-10-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '68bcd9a4-8bc9-6d66-9bef-84b5a0f15c40', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-10-03', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '0ff6f589-db7e-2d66-376a-6f7bbe8ad187', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-10-04', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '082fee79-fc73-4791-1bc8-4581acf1c170', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-10-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '7d6eb689-d834-fb89-4302-c6f3b60b491b', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-10-06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '2612bd4e-3757-99d1-a0cb-42370c94f484', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-10-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '7ac2bf17-7418-c189-20df-0ec1230a067e', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-10-08', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '38fcfa3d-d74f-d556-a4fc-3b8fabd9f8fa', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-10-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '70637e5f-8c98-ba56-f6dd-4244a79aeb25', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-10-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '93068fc5-0fa0-8f9d-9411-e9cb27e1e802', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-10-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '0b638602-41e3-127e-ec20-5b9e778bcf18', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-10-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '9801a7fe-3ce4-bfd0-c62b-ee309f78128c', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-10-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '74f5b31b-d66a-0089-6a3f-2f272cb1e4c8', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-10-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '4b90a75b-56bb-6b42-2e8a-a8241d1b7d6b', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-10-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '27648572-60b5-b0af-5401-8277f80298b0', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-10-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '6c53fa9a-2367-30bf-fb14-c3bc1fb13792', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-10-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '29ebec63-bca5-cdb0-897d-ff8462e09b3b', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-10-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '55707a4f-0a6c-71c3-1519-da2b5b4dd175', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-10-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '4c8fd10b-0c29-d9aa-7656-463c889739e6', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-10-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '605c096e-9f59-e014-68d3-9bc91b40b325', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-10-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '3f7d7e74-fe68-d796-8394-033a01397b47', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-10-22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'c3a137bf-0df5-0530-6d5d-1ae73f6488ef', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-10-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '44986788-286d-a382-4e92-a6a567444e0d', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-10-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '755b1710-73e2-b253-8af2-ab7ff2b92f3c', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-10-25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'b2872d09-3932-68d4-1d6a-ce32fba06701', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-10-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'b0e0ee1f-d7f4-4e1e-79ea-add359da867e', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-10-27', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '1407208f-5c11-377c-6270-c2790679d98a', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-10-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '7daafce7-b51d-52f5-2fdf-f43339f3222e', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-10-29', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '68698764-18f1-d808-0c07-b56539152fce', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-10-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '638cc907-3806-0502-8a14-4c817c97b352', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-10-31', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '562b7f1e-43d5-f8a6-7c48-4a3dac222c1f', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-11-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '0ecc33fb-59f7-93fe-2fdf-c182fd9e0da8', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-11-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'b893a278-ed89-bc9f-ad1e-e7fadec18fed', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-11-03', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '40fbea37-8338-6ad8-9697-6186d16c63e8', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-11-04', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '3defa9a8-99af-761e-54ab-f83548c23f30', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-11-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '1bfed972-89fc-2b48-ea59-13167fc18d76', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-11-06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'cb371a0c-6134-80e6-2f20-74abf3058c8a', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-11-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '9dd178f4-b702-5a79-1a92-fff55845ec67', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-11-08', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'd9ff7d2c-61b1-2bbe-8528-135609e138df', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-11-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '91c81f1a-5855-0d3f-225b-f2e0499d315e', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-11-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '5543eb4a-db91-57b6-bbf9-c47aad059594', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-11-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '29004857-b549-80be-5dcd-a25fea71268f', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-11-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '8c0953be-990c-7069-8677-00045c6245a9', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-11-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '36458cc1-4ff5-f4de-a0c1-1f2dd697fb74', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-11-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '49fcacef-cb04-232b-3113-1d3b7b180697', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-11-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '0a6f009d-0733-9ca3-42be-3ecaaea4d7f2', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-11-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '17101a77-77fb-f2b2-56aa-15b0e7e10623', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-11-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'c50255a6-5704-d806-e067-37ab54cb332c', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-11-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '6570a952-efbd-928a-34da-a9774b679c04', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-11-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'd7b3d39d-7c71-83da-b5ad-f87db91a8b1a', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-11-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '84f98cdf-c9be-a6b3-f3f9-f2f95282b9ac', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-11-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'c938e9ee-7638-f092-44ce-37bc3933d552', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-11-22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '3cb718b6-8ed7-88ba-b126-f150f644cd8d', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-11-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '5dc41fc6-8d38-60df-b07d-2080d99f41ce', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-11-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '4ee05e08-f686-707e-b457-a65132ff28e5', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-11-25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '8d23f69a-45f4-2c7e-2b3a-3c19956fe954', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-11-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'b44e17f6-7f2f-d06f-b8b5-75ed63332bdf', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-11-27', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'ed05dc4b-ed68-e9e1-1352-a7c8c9701d4a', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-11-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'dfaa6777-2e5a-1978-f72b-909ea0996dd4', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-11-29', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'eace6510-8612-51e8-8adc-41ea02231d1f', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-11-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'e51e73c2-2fa1-160e-28bf-d7b916c1fe95', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-12-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'a4eec078-a6b5-a20f-aaae-e653a133ca4d', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-12-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '9bfe2ecc-5dde-1aff-9fb3-872f2f4f5224', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-12-03', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'c5637f67-290d-7cf3-123e-9be2fbb61678', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-12-04', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'c1b13174-c731-9af1-b5ca-1dc36e9e0f14', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-12-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'd6704184-fe3e-b79c-f027-9b35671c8d69', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-12-06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '2dc56343-81d4-1297-a5ef-7d98ea332d30', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-12-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '0f8ddeac-acdd-a23d-cb9c-970406e7e04d', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-12-08', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '6d0e8ed8-1eb7-dc20-a20c-14a428a422e0', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-12-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'e8f2f2b1-c614-2e50-204c-0315c1e3fbc7', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-12-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '2a7f7f29-92ec-c69b-a66f-1a4cc493c649', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-12-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'e83bc98d-b386-b14e-9c1f-0fa753f0e56d', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-12-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'a2168ba9-4c6f-66f7-cd8f-a7bf098d9970', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-12-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '89b39003-a56f-a0ff-5ae6-6904bdcd9afe', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-12-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '02aa62b6-bb44-c18b-f027-118e598dd428', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-12-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'c7050a59-e9db-bd10-219e-9cbcb56f961d', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-12-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '17ac8b63-a20a-84b3-f39f-14654d85c5c1', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-12-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '136f4013-2b77-5685-300b-68ee53def2a8', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-12-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'ce0ac52a-b965-5af5-8d7f-86f28d3ff340', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-12-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '724293f8-66db-f3ad-8f7e-1126b6fa8386', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-12-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'c06a37e5-c940-96e3-345e-65a8b3ddbd95', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-12-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '572c6c96-72a2-3f9f-40fd-51cb929cbed3', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-12-22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '57ae26a5-9439-8869-0a87-85ef83b612ea', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-12-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'c9245f51-aa66-085a-7cc5-f6deb8157a8a', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-12-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'b2644b9c-8cb8-462f-6828-c7f856584347', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-12-25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'd21a8829-7673-3079-8414-c5a0bf9e414b', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-12-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '8080a929-21b1-e5af-41db-ab5e40b50267', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-12-27', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'd776d2c8-3a4b-de52-ca4e-a78000bc3322', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-12-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '5e4708cd-eba6-a51d-e8da-b51039816845', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-12-29', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '257a8d09-970d-fa49-8917-7a1a748f01b2', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-12-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '195e7c12-0c29-f08c-e25f-3c65f6eeee66', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2020-12-31', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '0157e001-ad4c-31ec-7221-4d1e0f6d7c69', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2021-01-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '9679f8e1-ff1a-11ed-0f42-ecbaaac01535', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2021-01-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'dc41e2b3-35a1-daae-52ad-4b8bf5f393f3', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2021-01-03', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '1646bd13-0bb7-6ecd-7871-a5b2f0768828', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2021-01-04', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '075d6292-86e7-c7c0-8c1d-a2ac05c86107', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2021-01-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '53504206-83f2-868f-1358-2363657a4f6b', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2021-01-06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '87182c19-98e5-3622-23d7-eeda5d101fbd', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2021-01-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '2a963e04-d458-46cc-dd18-965be1ada46b', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2021-01-08', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '20888d84-9550-2986-50a3-be0b27ef3cf4', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2021-01-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '666cc000-7a81-161e-068a-5801f717368d', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2021-01-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'bc935197-f952-2274-51b1-0dc953e63e16', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2021-01-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '55676b23-4b73-375b-e21d-055e61284bde', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2021-01-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '6878bc28-19a6-221d-9269-b632e244299a', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2021-01-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '29b4cf96-2cd4-4234-2867-97d3c130ad5b', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2021-01-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '184a9efe-fad9-08bd-fed5-e6a10be170aa', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2021-01-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '93be0ddc-d5e8-b949-4016-0281728523d9', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2021-01-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'c563ce1d-011a-3f31-e247-e0131d29d3cc', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2021-01-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '91b7ccae-2fa8-333b-b9ad-0f23510d3ac0', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2021-01-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '930447d3-3070-d5c0-5b90-da2829e11fc8', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2021-01-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '53794153-bfc6-603f-6f7d-b3b72520e47a', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2021-01-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'a67e46ec-3056-128f-edac-ccaf57a0450c', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2021-01-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '0753f70c-92f1-ced6-3fbe-e27d0eb0bfbe', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2021-01-22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '02433392-231a-6437-55a3-00208be86eb1', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2021-01-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'ac3dd5cd-cb1e-b76d-1af4-108ed46d8817', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2021-01-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '2610a142-1a7b-9e96-25fd-2a08220e5639', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-19', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', '9e555497-d77f-d51d-8172-34a85222a412', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-22', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '9fc9c24f-81eb-cba0-b066-f4ad18b1ae97', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-25', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', 'ac612255-e004-7742-fe4f-f5cbc1987dee', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-30', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '4a05e133-134a-37c8-8fe1-4692fd4252c7', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-04', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'ce5127ee-6d48-d507-031d-4bb61fb71093', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-09', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', 'ae3e7492-6ba1-39d2-3e84-ae53358ae17b', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-10', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '32d07a78-e665-bcb3-d2f8-3cd13ef74f57', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-12', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '96d91e20-744b-16b3-c519-f04689e0fe06', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-17', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'eee28dae-6abc-ac92-ef5d-ed07389f57de', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-20', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', 'ea415cbf-b194-b8af-1392-2854505555fb', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-18', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '6f00ec4d-9d41-40cb-f30a-e44ad12f6005', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-27', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '00a81705-a479-57d1-b507-90fdb32ca6e9', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-17', '10:30:00', '14:30:00', '18:00:00', '23:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:30:00', '06:40:00', 'a3ba6b33-3d97-b751-89a5-e7f0838e2303', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-18', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', '4664ae45-fec3-cd50-c2d7-5b0151860c2c', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-20', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '331e0359-d219-1d58-3ec4-b7ef4eb44e36', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-21', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'a426f7d1-6696-834c-7760-498dbdf344e0', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-24', '10:30:00', '14:30:00', '18:00:00', '23:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:30:00', '06:40:00', 'eaf31ba7-f528-6b43-0d92-cdf78fb08863', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-28', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '7b3a40d7-7b1d-3709-79b2-699bf586a0db', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-29', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '82c192b4-48c2-dac4-52fc-2f57c7bffeee', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-01', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', 'b200e39d-93f8-ce76-fa7d-9e0dce2a7a66', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-02', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', 'b8e2f479-fdd7-55e5-b335-dbdf3dd80d00', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-03', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'd781606c-1aac-baef-2445-2fa70b714b74', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-07', '10:30:00', '14:30:00', '18:00:00', '23:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:30:00', '06:40:00', '700b845e-4ce9-0065-3ee1-907a38d17368', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-08', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', 'dea90e44-7b32-4642-4615-89dec323f765', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-13', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', 'db38d142-2bec-723b-1067-bdc2edc7074d', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-22', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', '2e860c94-e6de-9316-f0e2-7c376228a216', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-23', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', '55aa7c0d-f162-a483-d5e0-c2161c4f6012', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-25', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'acf9e9d6-c62e-434a-d08f-c2aa02bbe1cc', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-26', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', 'a39e4a06-4fb9-af5e-311f-fc2c05dbb274', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-29', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', '53285579-8a56-8952-93af-f0b8f32efc03', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-30', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', '664a328e-0254-2527-2466-a17b9aa06735', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-02', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'a992b7a5-49a5-72b4-fbe8-2ca5f0dad73d', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-04', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '721e3617-3855-2456-5a91-ff6747f3bc8d', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-26', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', '2b06618a-5be7-7f69-d623-fc10ad140310', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-27', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '6885484b-ed08-303c-5b7e-b1872e496704', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-31', '10:30:00', '14:30:00', '18:00:00', '23:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:30:00', '06:40:00', '8dde55e4-8f66-f561-24bb-06336598ea36', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-06', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '113dfefd-da5b-8e0d-3d15-b3a190b27051', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-14', '10:30:00', '14:30:00', '18:00:00', '23:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:30:00', '06:40:00', '30d50f41-d4de-ab70-875c-009a8e00e00e', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-15', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', '54639988-8ff0-dec2-bb0b-f0df21c9538d', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-16', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', '12886148-35a0-f1e5-7fe4-54e8ff78a603', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-21', '10:30:00', '14:30:00', '18:00:00', '23:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:30:00', '06:40:00', 'fec17a01-129f-2853-932b-33433f1000de', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-01', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'bad1c8cf-0f3d-263f-ae0c-b4d98024d627', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-03', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '4d474a99-94a8-1230-440f-17600b592e3e', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-03', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'cdb58645-a4fa-6b3e-c340-12328b1f12c7', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-04', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'fa35a81e-0f28-9a6e-af1d-6d05f917bdec', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-05', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'c8a3f12c-9d6b-f053-b3a7-0398b1d206a4', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-06', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '23686a17-c296-783b-5fd1-db158d1b26c7', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-07', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '7878a1e2-48b3-9f26-18c9-ba793492eecb', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-08', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '8e889823-c2e5-0c5c-3126-9052309a2e04', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-09', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '8fc87785-70e6-ccdf-a6b6-7fc99cf5e751', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-10', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '8e1f21d3-817b-2e90-e6f6-433d1dc80b42', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-11', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'cf48a312-4055-50e7-33a7-cdd2fb449722', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-12', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'acdf8814-cfe0-6184-8c08-fd5f658b6520', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-13', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '355b9f56-a0cc-f8ce-1981-21c23f78e971', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-14', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '85d834c3-68b9-c430-0122-464ef132e2cc', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-15', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '529c008a-1c0c-6bb3-57fc-2b3952d8b3f6', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-16', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '26aaa919-a641-f176-49d4-7c6e64dd8ac7', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-17', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '60ebf8c4-2dd6-6388-99f4-36f536896ce7', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-18', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '743f36e1-157f-4613-7be7-e93a8a757582', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-19', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '360c263a-4c5e-4899-8690-38351cde55f9', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-20', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '4de66729-15a2-acc4-2ed8-57a1f84b4fa7', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-21', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '13752499-a979-385c-c5ed-b1e96b085dd6', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-22', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'b2f6da1e-e5ff-2fe0-a705-ee76a8b43b2e', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-23', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'a16860d1-21dc-68b8-e0ef-248643868cc0', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-24', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '9d9cc711-74b7-1b10-6f7d-47124d2b90dc', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-25', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '0b6863a6-bff2-756a-2bc0-0a1083ee150e', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-26', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '85685d17-a31c-2bd9-b2e4-3ef9787f12ba', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-27', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '4d535968-3163-aec2-0fa1-2458f8e16466', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-28', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '26f263b5-8601-cf53-82ab-e91992a3f912', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-29', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '6b209d57-cb73-95a2-48e0-1a116131bde8', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-30', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '8a8091af-5b9e-f026-6e32-f65580d75b69', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-31', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'bb89ce8d-d63c-8c7d-4d96-cb8d8c503348', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-01', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'a6298ebd-8f61-9006-5f68-528148844ec7', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-02', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '7a283b04-fe7b-d884-b85b-ebfa48bf1af9', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-03', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'add80b02-4bf4-a070-2a59-32970a952ab4', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-04', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'dfb6fd3a-ab9b-85a4-4cf0-8d8edff7484c', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-05', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '5af39fa8-6344-ef94-5fdf-5bdc389cb6b5', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-06', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'ce7f988c-2cb9-5d56-d8fd-382e3221cb14', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-07', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'e57643c6-01b7-8d13-5b24-76be7578ae4e', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-08', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'a0f8f89b-800d-b51b-911c-51da89fdea71', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-09', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '21361dd3-ba73-c8a4-2e03-6001d4a93549', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-10', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '71fc2e75-cbbb-fff7-1118-47987f39b051', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-11', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '27e388f4-95d9-4990-94cb-9dff95973fde', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-12', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'daa33163-363b-67c5-36b2-b88b45eeb53a', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-13', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'd3605bc2-c2f6-b15e-0dec-d762aa4e812d', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-14', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '69cd16a2-f62b-2dd2-ca31-254865a4334b', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-15', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '5acd2783-0e46-5516-1464-a82c4cd451e6', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-16', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '375910dc-fc9b-0a59-1d3c-bde2bba62271', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-17', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'ae565df3-d163-5c5c-d2eb-e182ab9fae3d', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-18', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'bf4854f5-4fd2-8f08-f269-d7415644a54e', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-19', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'b0e18881-3d97-00c3-6176-0792b2ded6ef', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-20', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'f55d1df6-1f6f-2d88-915a-77cbc5987b07', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-21', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '996c02a3-7799-1a56-c4f1-8ac207aad61c', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-22', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '937cb857-3842-37c3-b59e-63e0f43d1788', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-23', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '3ce6a02a-fa8e-444c-1563-72bce95339a4', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2021-01-24', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'f8e4ecd4-d138-ac89-d780-7ba963907aff', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-30', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '73134755-e873-f3c7-3dc3-67de17e63edb', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-01', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '0dadf608-1e23-e867-c08a-62b451c5fd0f', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-12-02', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '470b76e5-bd23-61ef-99e6-fec25c8f0c1e', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-23', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '5a40ab8c-6c83-fa16-5c9d-c029556fd496', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-05', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'a6266dee-5134-b547-260d-1e7afdd722a9', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-06', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '5c7db677-9a13-b923-a85e-31788934c13b', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-07', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'f194b2fb-a472-553c-6bf6-1f58bb2eb0a4', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-08', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'af5db094-5437-33d1-3773-390376205342', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-09', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'e80fe375-1734-babd-091e-fad85fd3e6c7', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-10', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '6f5842ba-f529-5242-ff57-692761c059e6', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-11', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '8130b9c0-8a64-f8ba-90b5-a973a55f8865', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-12', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '54c785cf-9d08-9d32-00a6-b20a14c5dc39', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-13', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'dbb9d284-8164-962d-5e40-e93d2d2fb035', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-14', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'ade84686-4fe2-8386-0b9b-9f500508b885', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-15', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '0c751cde-5af8-7811-2402-43bd6a1709cb', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-16', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '1baac61f-d72d-00a7-4b6f-c43699b13839', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-17', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '5f42f0b1-4b01-1830-97ce-187f58c261b8', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-18', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '0a9ae934-7085-44e4-c5f2-5e0c7d795912', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-19', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '2ba1305b-35b9-0175-f8b0-988be98ee1f8', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-20', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'e36fd2b0-1992-a483-00f8-fa0630456a36', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-21', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'f34d889e-1ced-9a6f-58a9-5f65bffaf4de', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-22', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '8ed9c52f-b2b7-6fd3-9c1e-126f1028a9c3', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-23', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '3a0546fa-77c5-d9b0-1337-5367b0ea1103', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-24', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '537407f1-95cd-1a0d-58be-f2af47482964', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-25', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '1b3eb1ee-2468-0c30-8b81-108f7018a7e2', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-26', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '7f87b42d-b41c-bacb-cb49-7a374c739ae1', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-27', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '4866e0da-8f9a-fd8d-4f88-b8a107d97966', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-28', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '9a72dd08-89fe-c33c-c457-efffeffbca01', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-29', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '570386e9-91aa-7ce0-f8ae-6c5ce0b31dbf', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-30', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'b9c55ed7-89bf-f5fa-4bb8-6dc35182e2bf', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-10-31', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'd00d8b24-1073-330d-8c2f-dc92d6cde364', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-01', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '38490da1-7fee-b59d-a563-6884ceeb9b33', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-02', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'fbef2e1e-e3be-ebfa-8d68-0359b1b1bd1c', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-03', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '543e49e4-11ff-db40-3f6a-0f2c95bde334', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-04', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'd672ceb0-da6c-94d2-4f05-4b57c46fd48a', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-05', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '1e56b72d-ef98-08d1-39a2-8947cec4f137', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-06', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'aaab1fb7-c85c-26c3-5f80-5a7f8bc5f229', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-07', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '7b1e7f59-38f0-bfeb-9fb7-c5da26d179ef', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-08', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '086aab14-8c40-f92e-9501-d8db0dd99c13', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-09', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '994571c3-a804-e58d-0504-20b7fa79074a', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-10', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'ce9dac6a-aed7-68e5-76be-28aa8094c926', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-11', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '970c3563-0ffd-67bd-d84d-cbd10a195251', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-12', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'dcf719c8-3993-d484-ba69-d54d0c2c31d5', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-13', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '1b355d23-1e98-e3e0-ce3b-f1b4450c9120', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-14', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '8fefaeca-8e45-7ebc-4615-5a17a73de4ad', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-01', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'ba6084bc-fd98-b1fe-db20-5fa795d99b95', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-04', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', 'b4dbe264-1148-d294-0732-268261999eb2', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-03', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', 'eb8ce779-1d92-02d6-b594-6fb3205f4fc1', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-11-30', '10:30:00', '14:30:00', '19:30:00', '00:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '05:00:00', '06:40:00', '6bcb6815-1dee-2ca1-704c-4556b362fe75', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-05', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', 'a8dce91e-9e64-16b7-e2f3-333e98ab8360', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2020-12-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '6e15ee78-1177-9b9d-bda2-a1f77f39088d', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-15', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'f6ba0af5-d754-a445-810e-08af41068c2f', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-16', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'cb6b30a5-69cb-deb2-2b2a-aa16de2a78fc', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-17', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'b55ba9ea-37b2-12d3-2ef4-aa4a648027e7', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-18', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '93dc8050-e2ad-4bc4-d0d2-724b53fe9aec', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-19', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'f2db15e5-8b1e-c94d-fbe2-6f64b8fa025c', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-20', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '585702dd-7134-e1d6-b710-f3eca09ae13e', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-21', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'b5be8df9-b20e-c7c2-5655-e7fab0005467', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-22', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '367746e9-361e-227b-1782-32ff7f59238b', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-23', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '5b331907-8e7d-7671-8dea-d90a6936f30e', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-24', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '308073ed-14cb-1b80-b95d-f11b6ebfb687', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-25', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'cefbef57-1b6a-3b29-1519-87c71602d08b', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-26', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'd87deaf3-e13c-7f45-0157-482e2d8c0e1d', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-27', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '53c1d11b-6f54-0c2c-8bf3-6f9be700d926', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-28', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'a7e2f70e-49fe-33e1-ea75-0ec1c4b9627d', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-11-29', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'b0dc1618-651f-deab-7424-eeefb0996b87', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-10', '10:30:00', '14:30:00', '18:00:00', '23:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:30:00', '06:40:00', 'f0a6c021-7338-26c2-dd85-abb816d14af7', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-11', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', '621069b7-487f-28d7-6f7f-dbfc8ded195d', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-12', '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '02:30:00', '06:40:00', 'd726d23d-e678-00a6-2ee0-a8826a50676a', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-13', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'a914420a-5625-7d87-b072-0d5b9452ca6a', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2021-01-12', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', '868ef8e0-d3fd-dd85-b3b9-006d26603305', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2021-01-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'e0727fc9-5f6d-d2a7-0370-ffd9c86e078a', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2021-01-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '48c066f9-c6ba-38dd-9bf2-13d5032425aa', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2021-01-18', '10:30:00', '14:30:00', '19:30:00', '00:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '05:00:00', '06:40:00', 'f8d1b65c-57af-be5d-54f6-0a2306fb44b5', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2021-01-24', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', '20d9d400-6fc0-bd28-d2bc-5491e36c78d8', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2021-01-11', '10:30:00', '14:30:00', '19:30:00', '00:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '05:00:00', '06:40:00', '34e6df3d-d013-be16-a6d1-6777b5e93b71', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2021-01-19', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', '5814e1f1-85a0-7e91-5f9d-61688268afa5', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2021-01-15', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', 'e6752e3a-c3ac-b9ff-3afe-bbec40ef4f32', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2021-01-17', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', 'b8a2c4bc-53d6-142e-d4fb-956fc11bbce9', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2021-01-16', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', '845d37e5-2f54-571d-c2d1-5af4bf0ab840', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2021-01-14', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', '369aac17-3c90-b222-08d3-394d9894d7c1', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-09-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'cf664f29-f089-ec95-680e-78dc95f438a3', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-08-17', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'afdefac3-c6b9-8c76-c900-313284f5085b', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-08-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'f66c7e3b-96b1-5df8-c375-ddf9fd95f14e', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-08-19', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '734bf81c-8e6d-4b24-aa09-d6d50edb04fe', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-08-20', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'f8094156-46dd-cdb5-1f5d-77a813886551', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-08-21', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '86b2e47c-13aa-cd37-4728-55d0b5b829a2', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-08-22', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '588a03ca-d106-b1d7-c58a-0f5b122e7ccf', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-08-23', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '0d61780a-5370-1cc6-0c85-5d202d1fc15f', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-08-24', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '6b827acb-96d2-9d4d-3ea0-77e911b0e807', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-08-25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '0724411c-4d9a-008f-01dd-5550af029ef2', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-08-26', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '63e21830-0e01-f8ce-0557-b2a42e13d9fc', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-08-27', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'cf3b24bf-ceec-da0b-eddf-0d9788f847a1', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-08-28', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'fbe3112a-5191-8ffb-737e-6a7068a4a008', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-08-29', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', 'f040de2f-2aca-f578-24a7-5acfebd20bca', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-08-31', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'ff8acb83-f4e7-91d2-d7e7-afb8de4bd4b5', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-09-02', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'dadaa790-60fd-c046-06f6-a78085524bb1', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-09-03', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '84471ba3-d385-be8d-8725-72d5831dea85', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-09-04', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'f60d4d5e-27b3-73c6-698e-4baaf0066199', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-09-05', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '9f9c2c9a-37f8-f308-7dda-54909c67806b', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-09-06', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', 'f0a5d8bd-6240-68af-5e93-92b7085e1870', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-09-07', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '56f8347a-1ee6-3d72-6282-73f63ffb8dac', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-09-08', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '05df5f99-f8f7-0412-2bf4-2436f438886e', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-09-09', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '4249e7dc-88a2-bdd7-50d1-cf10211e5d24', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-09-10', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '03a3f483-ae7d-ac0c-abe5-8663fe8b1a0d', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-09-11', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'fb7994aa-e5a3-9f0d-13ab-c137522a29bc', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-09-12', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', 'babc8c9a-243f-6af8-1ff0-b59f386e04b5', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-09-13', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '9c6d4d27-1c2a-2be5-ca5c-7f41568466f8', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-09-14', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'd7b79022-2484-399a-207c-8737a0f95edd', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-09-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '8408ca16-9fd6-7e7a-4460-449668d8ce6b', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-09-16', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'd33a5922-454b-698d-8141-d670bd212b8c', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-09-17', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '06320563-6ddf-ee59-43c3-c9ea65f1dbf3', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-09-18', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '23d5a890-2696-4495-0bf4-e96862692d19', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-09-19', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '9064b3ac-b4fe-9c88-6c82-62ccc19f16f5', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-09-20', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', 'c9fad76a-6949-8cfa-63ff-903b59cbcb2d', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-09-21', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '2e2cf313-7ede-3295-8efd-0e5500014ec3', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-09-22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '7e0945af-d57a-572e-776c-49b86813dd4b', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-09-23', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'c3cac33c-8a99-f2b5-e116-4cd005dc628d', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-08-10', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'b3e1281e-ec78-bb23-0dfa-dd1acd748107', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-08-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'f6d9e9ca-bfcd-2936-7f63-62ba93ea0346', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-08-12', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'a3fd60d0-b835-d5c9-da77-37612502bec6', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-08-13', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'f708d39f-d9d9-d849-f067-626238790e90', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-08-14', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '74a07c5d-3c83-2e06-168d-2afe97e35381', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-08-15', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '19f8369b-9054-d629-c438-8b2130601a1f', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-08-16', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '8ccc5123-5566-bc54-452c-af6daafa20f4', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-09-24', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '9c004b5b-af17-b7fa-858b-daa966eb18da', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-09-25', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '4d169656-3064-f4cb-adc1-c3098b9b5727', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-09-26', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '32911478-9c88-2bbb-081e-e1a0ea1dd444', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-09-27', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', 'ef71a7e9-a460-9bab-fa57-aa9373529fbd', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-09-28', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'f55646dd-6951-8913-f11b-cd5690641c09', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2021-01-22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'e421854f-d01d-74d2-38eb-b1e030b8866c', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-09-29', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '55f13c51-123d-b74c-80bd-5c9ebbe7b96f', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-09-30', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'a96c379d-4033-a97f-9daa-5d70957e5e20', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-10-01', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'faf5031a-a6bb-32e5-ceeb-a264d733bb0b', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-10-02', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'b3dc4669-a872-0694-1cd9-b861363606b1', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-10-03', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', 'ecd09d4d-490e-4561-9d76-53a76f163f3f', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-08-30', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '3b333751-d062-a8d4-5af5-774e906218d4', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-10-04', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '8f50c2cb-2efa-e040-4793-d70b758d4520', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '39aa6b19-5d67-1c3a-4cab-fb3e672cf65a', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-12-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'e0a25dc9-cc28-c049-1d30-2367ad2024bd', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-12-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'ac50b0db-ae06-1f37-6650-ffa5769cb5ed', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-12-03', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '0ec6c1d0-1bf0-4fb6-6a9b-7745be9b7eaa', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-12-04', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'c638187d-06b0-00b3-4aba-39a7a04bd589', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-12-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '42bab0fc-d23c-cb59-c600-bd08a475c142', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-12-06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '26022e21-318b-1cde-05b3-535898d30cba', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-12-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '1b521001-b8b3-accd-0c61-180e404af3a7', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-12-08', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '7181f400-3aea-3907-b37f-d383d85d504c', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-12-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '14e4ace7-9b54-785e-1cf0-61d030046eae', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-12-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '4ee962bd-8cca-272f-7dc6-5ba64245fadc', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-12-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'b87d55fb-396f-1855-712e-f19d1f930e90', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-12-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '10c68c44-c8de-844f-e518-e7c8a899821d', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-12-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '60e5c811-432d-ba94-e432-42f264c4e1be', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-12-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'ab980f68-e64c-f3f0-88b2-eb063775826e', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-12-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'd5f44f8f-4184-ca07-d770-7be7b364a23a', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-12-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '5b00e15f-6a1b-4ecc-a98a-70d6b13515f4', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-12-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'f3b41da8-03f8-dda0-10e2-c1ae21287579', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-12-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '3c87011c-320f-824f-21e8-5aadaef12ee4', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-12-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'c859ef26-d9f3-2844-c73d-ff298bdee071', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-12-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '6a29d4e3-7d9f-63f7-4118-b3e9d153490d', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-12-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'a9cee4e2-4c9f-f9eb-07ef-2e022b62e82f', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-12-22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '10fb6fbb-0dcf-2c0f-dbc5-7edccccd0830', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-12-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'b430ba69-e181-3a84-1806-bdd5fe075fe3', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-12-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '9e0e6f54-8602-aaa5-be59-f747c2c620b7', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-12-25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '917d6220-d594-6d3d-dd39-349608a8d297', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-12-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '33922a26-64fd-93b7-1c70-29983cede226', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-12-27', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '4823d724-807a-1f01-b3b3-4e046074c6d2', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-12-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'fcd182fc-ef99-ae5a-b3e1-f9b997c566d3', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-12-29', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '8cd6376d-df9d-7b7f-5620-62685cc8f7d3', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-12-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '1ceb3f22-a23b-037b-e011-e8e93af694bf', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-12-31', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '32477d32-f3de-e5b2-cdc7-66ef494c1083', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2021-01-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'fa970bad-30c8-6f42-fa3d-6c53a4661de0', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2021-01-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '65decba2-f8c7-d696-18bb-ef6bc4c41fc7', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2021-01-03', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '5462127c-d45a-92e3-a654-0635bdef30e9', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2021-01-04', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '3cff62ea-ecf8-1020-4892-fc022e2e07c9', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2021-01-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '8eddb550-c0ed-b016-6802-1352169a6454', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2021-01-06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'a1054b3e-34f7-6106-8383-80d93a151e82', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2021-01-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '21d94762-a0c8-23fa-8555-740105969e28', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2021-01-08', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'f339ba92-aa64-7e93-5d30-bdcd041aa8ec', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2021-01-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '1fed406c-a780-4d84-e434-50a9e4fa5fc7', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2021-01-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '8f6933a1-21ac-4351-41cd-09f4a5db15b2', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2021-01-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'a45424b7-c928-fb50-baf3-bb88e8e80bfe', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2021-01-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '1b229e8e-b29f-20d5-d69b-ecb38bc36cd3', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2021-01-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'e8fbfbdb-a94b-bed7-d897-94b75ebc6b2a', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2021-01-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '62b78d92-d0d3-d0b7-cedd-7c76e72efc2e', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2021-01-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'b9b41d2c-dc00-410b-407d-65244a9fb787', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2021-01-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'dde8b0ed-aab6-43a3-2505-963c588bfa0d', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2021-01-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '50858fd2-f757-b433-bac1-ae43a994a71b', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2021-01-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '1367fced-b354-7043-d8ce-f65a2b851195', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2021-01-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '6e57d60e-d84c-e9e4-f0a4-7496cb100755', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2021-01-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '04832459-75c0-87c9-1f1d-91b2b2d6477c', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2021-01-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '8acdc46e-b71e-87c1-d50b-0c812a990f6d', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2021-01-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'fc652e74-9da7-b870-d374-3f6bc16da094', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2021-01-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'b20bbf92-5d1b-28b8-773d-1881b891435a', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-10-05', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '6a7e64b5-4924-1884-a656-39efa73de048', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-10-06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'b06b0f63-278d-e64e-81ae-326ac466fc9d', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-10-07', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '4e234eb0-e931-36ff-88b5-38e1c5806c24', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-10-08', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', 'c07a315f-8b26-8b4b-f2cf-2468ac1a603a', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-10-09', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', 'b947eb69-3ba0-eca0-1824-bc232e2866c5', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-10-10', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', 'e04a33c0-0109-0965-e53a-8d48368d9987', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-10-11', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '7baf642e-18ff-4a5b-6bec-6fba2d372a17', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-10-12', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '75d5aaf1-667f-9f84-3e20-56f1a96bdc68', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-10-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '7a2c56b5-1b5f-79ad-e2be-0b5b25d37ba2', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-10-14', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '80148d2f-e364-8f8d-8b86-7f3939902ff0', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-10-15', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '434c5269-758b-d8a8-1a0f-1b91b7d623f5', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-10-16', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '9059b4c9-088d-24e3-f1bb-33de36d7d407', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-10-17', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', '25ef3e9c-eac7-4820-250b-508fe4671cba', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-10-18', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '31807bd7-f074-5f18-6f11-796a88df6261', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-10-19', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '332b2dfa-c3fe-8ddc-43e5-5ffb41b5f039', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-10-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '6d0c12fc-57d1-ce23-8a8d-f18f8eaa45eb', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-10-21', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '761fb548-3c67-7059-0d8b-a898414e0734', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-10-22', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', 'd235193a-5d45-b52d-0412-351f1ab5fce1', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-10-23', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', 'a68bff60-304f-fb79-38c8-3c1deaae90f2', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-10-24', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', 'ac6f9038-2c59-f00c-55cd-a34011257888', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-10-25', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', 'a4fdf96b-41da-f821-16f3-6dc9ea28ee60', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-10-26', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '1d7b6994-ac27-cc6d-254f-6b08d86505a0', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-10-27', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'eff20831-552f-a0c4-6817-d8599c7dde98', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-10-28', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '8f03226f-12be-2dbd-287e-b1dffa8bc65d', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-10-29', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', 'f12da513-b4c3-8eb7-ee4e-963f335bec9d', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-10-30', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '74c44902-ea6a-ab37-d343-f8add6ca78e3', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-10-31', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', '1158ff88-1fb9-fb88-e52a-6fc530619425', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-01', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '3250ced9-23cc-8f5d-b515-7ca96bb25fd3', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-02', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', 'bb2af118-b603-c5b0-ee83-b0fb2bdd8c3e', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-03', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '3a9c9243-e90f-aafd-fa3b-acd688c10b79', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-04', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '0df984e0-d765-c350-4bf8-c32a5c806c88', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-05', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', 'aa9ad55c-e1df-ada4-8334-cdae3961a791', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-06', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', 'a512a801-d9bd-4870-673a-cdb59149ed84', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-07', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', '4efc0e95-4b4b-a1d2-0ff7-1c2aa45d3375', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-08', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '76680bec-3a80-ae4c-f295-9c28aa4d9241', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-09', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '0bf7c1e9-6c7e-c93c-8726-d11ecfa2a4ad', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '85b9c34a-934f-186a-bf9e-8c379d5c0ac9', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-11', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '45864f61-7217-80ee-b18f-62fe6d8c6647', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-12', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', 'a936635a-3ce9-6cf3-88e1-9ce962cc2baa', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-13', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '10b65b5a-4edf-441a-5cf9-18e73919be54', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-14', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', '0b1ae518-00b7-fec9-7222-1ad445f76cd5', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-15', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', 'c0688fa2-7663-dd75-8258-420da2281fec', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-16', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', 'c7deb505-5c1a-4679-a6fe-58c671fcab5d', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '26be04ee-7a77-f85c-07f1-fcfe735d276e', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-18', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '438146a1-20f3-ec1e-cb7f-da547c3af8de', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-19', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', 'd47145a0-dbfb-81ac-0d8d-0c4007ca52b3', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-20', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', 'a3e61910-77cb-6db9-2da3-06144a37e424', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-21', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', 'd3541889-c04f-ce7d-62dd-cce7c10d754c', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-22', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', 'ae7ecdc8-5498-7729-8799-d341f9b4935d', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-23', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '59f096c7-f9c2-bc01-a9de-df050c463b54', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'b2c3759f-e3ae-a4f7-0608-087f645f566c', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-25', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '12dd3bef-48be-8dc1-4e14-57ff2f20ce36', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-26', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '1bcc6b89-36c4-5758-e0f0-9eae95a6fbd1', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-27', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', 'ed30d5f6-2f55-e2a5-a100-9397c4812641', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-28', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', '73de3eaa-62ab-b514-4bcb-3652548327ca', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2020-11-29', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '5969cf20-fe87-28e0-e607-a3c1fa585d4d', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-09', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', '9dbd5ce4-2fd5-bcca-53af-554453ed96a3', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-14', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'd31116e5-7f7f-f71c-d5f4-c0e6fabd1145', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-15', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '41fbed8f-bb6f-e5bd-0de0-4d5543a630c9', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-08-16', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '5286fb98-d7cb-b0ee-adaf-ddabf5bcd9c8', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '4e49e45a-a30d-ccd9-2b03-314bc0e85099', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-11', NULL, NULL, '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '04:00:00', '04:00:00', NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', 'reposition', '00:00:00', '06:40:00', '4aa15f9b-e387-d6ab-7323-3b9192cf5da1', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-18', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '650b95f1-19bb-0d68-273e-28b2e0cdd077', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-19', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'a993d0aa-b004-ac48-9494-fd2a6d1b2d98', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-20', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '044eee57-53d4-b5c3-3458-f37f89b105a9', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-21', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'c1b354a1-1c7c-3b95-b491-be34708b000f', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-22', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', 'f254709b-0e5d-673e-6c2f-f8f5b76038a2', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-27', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '3c242edd-27ad-1314-0046-2bd8d8a1c8db', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-28', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', '99068117-e2a7-2f03-b692-befd39ccb59f', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-29', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '147669f2-68a3-75bf-f107-08159314569a', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-23', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '03:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '03:30:00', NULL, '00:00:00', '06:40:00', '6ce4b7cb-6fd3-7a57-25e2-b4d74f17a4ca', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-25', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '02ccfc69-9697-ae32-bb2c-b3808df91111', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-26', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'e52ce627-264a-0009-24f7-a1124fd3f228', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-27', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '9822bac6-146e-b4ae-d0bb-ba22a76b08ae', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-12', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '7e268ff6-e8ea-c0b4-08df-1c73567de3db', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-08-13', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '4fb47ab5-c8de-3eaf-181f-b5e39c2a8ca8', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-01', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'b4b00c8c-7ba8-02fd-950e-831ac0c913a0', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-02', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'c752ed1e-c78f-6e84-24f0-8492e6cfee1a', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-03', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', '7241adc7-8589-68ae-b692-22db6d50a187', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-04', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'cc60eaf6-d53d-e8cb-2d5f-b33d50cb3073', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-05', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', '4c451523-b7fc-3b85-c44d-06c0a2ce5f78', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-06', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', '195e199e-712e-8603-41ae-204b206c4daa', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-08', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'c81f21e9-9929-8626-52fa-6078f3e75dad', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-09', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'd2ca8372-bebe-f8bf-f192-eb45cfa19ac6', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-10', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', 'ccaee6ed-730f-7580-5167-ed5f43fcb16f', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-11', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'dacf1943-c022-99fd-5ab9-bc5e16fac4c5', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-12', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', '0f3d322f-9657-2445-a6ef-ca36a56194e9', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-13', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', '11b1268c-f782-a5bd-7432-e4c816a87f8a', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-15', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'ab99efd4-4b6c-a208-47d4-c9c32a7e792a', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-16', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', 'ccedd3d8-5226-c7fe-7f92-624d4fef7694', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-17', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', 'd91bb7d5-542c-f6c8-0f47-cec9c67c28be', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-09-18', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '04:00:00', '06:40:00', '68508a4a-067e-a84e-880e-c4b05e61cc2c', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-15', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'aa9d76f8-f265-14b4-cdb5-cd999fa75e41', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-16', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', '476ce341-df4a-24ec-3bc1-b8030994e2d4', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-17', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', 'b71b9bde-77e3-aadf-9a98-071533b5bef8', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-18', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'c1570ca2-e810-2962-02ae-e13381c7c40c', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-19', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', '477b97cd-3532-517c-e48d-ff6d2a50fb5f', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-20', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', 'f379a23d-8e79-ad72-256a-ceda5f3f7ca6', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-22', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'a55c1e11-990b-e330-aeba-c09ecab233c2', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-23', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'ab64b6fd-0630-9cec-4e67-e77dd34d1676', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-24', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', '738958ae-6b0a-16cc-c3de-2c2d071a9149', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-25', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'acd0e3c8-e2cf-f23c-1a1f-5031e6c192f3', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-26', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', '1e88d057-92c1-a4b7-1f16-99dab21733e2', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-27', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', '7fac269f-9980-1173-3e68-1da77c1b0ac3', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-29', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'f8eee20e-7666-a90c-e18b-b0e74aee9057', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-30', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', '8a4a673b-c0aa-6f84-98c3-552c21dbbb49', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-12-31', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', 'baae0828-7f32-f3c4-3ac6-17547d67cfef', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-01', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', '6f73497c-7b03-49f9-7166-8429b5de923a', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-02', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', '46dff1c6-fc53-5869-9b1b-ed553f954b66', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-03', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', '42278bf9-9a45-7af1-e127-7cc3f1b78e8a', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-05', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'f2f0d826-afa3-600a-16d6-b038d3bf6607', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-06', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', '8420e9af-ccf9-7115-39ac-b4a1546d5d04', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-07', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', '4b25b712-ee82-de83-798b-ecd83e21584b', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-08', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'cd79a0e6-3294-5441-3ee8-05ba146b275b', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-10', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', '9cb3f608-2fbd-0eb9-01e2-6d1305291d42', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-12', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', '4d136133-0e4a-ee0b-252f-352ea87e98ab', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-13', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'bc68f7fa-b316-b005-ede9-47608c56d041', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-14', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', '607897b5-3008-0358-510d-596180cf6fd2', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-15', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', '7d7e4a2f-e00d-d5fc-ee40-101a30f49685', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-16', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', '12ea75fc-017d-1d84-1dc8-014ac3d7d27c', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-17', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', '9130f052-0136-9c8c-00d9-eac60ed8d7cf', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-19', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', 'f50ad63e-cbd2-79db-3177-9ca35f373dd9', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-20', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', '82e4f538-7d54-b955-f964-5fa620b90240', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-21', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '03:00:00', '06:40:00', 'c33c0f1a-26f0-b8c7-fc86-91e74660bf75', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-22', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '08:00:00', NULL, '04:00:00', '06:40:00', '725a1f7b-b9a4-6b08-8386-339b93f311df', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-23', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '04:30:00', NULL, '00:00:00', '06:40:00', '7e7c9315-74a7-d1cd-ad5b-678c3b624cdc', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2021-01-24', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '03:30:00', NULL, '00:00:00', '06:40:00', '69305be0-206f-4544-4391-f72d7f2a8d24', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-08', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', 'b200abcb-c514-74ea-3460-74617a139b80', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-09', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '4e23e656-e732-e0a9-5737-6f3e0efba13a', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-10', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', '80f81359-c787-cd4f-c293-2ef8d0d3ae97', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-11', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '37f74c3d-7303-bcc1-eba9-254284143d27', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-13', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', 'd7cb539a-18af-adf2-5d14-4281e3be1d15', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-14', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', 'fd772ad8-90e8-f998-f233-56ec23049fd8', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-15', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '57fd3eeb-3f1e-ebe1-4c26-951f2545ee69', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-16', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '34704bdd-3aeb-e7b5-cdda-86f37e8f28f0', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-17', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', '9ab7268b-755c-af8b-dca6-16afe2009bdb', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-18', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '1a42a09f-1d34-6301-7a18-68eacdfdece0', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-20', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', 'f3cb5e62-d1c2-2399-d385-7793f08d4a8d', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-21', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '76ecd943-3fdf-771f-4d6e-31f57ac2fb99', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-22', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', 'e391284a-fa89-061a-30c5-bc6b70771981', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-23', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '866e9b78-c5fb-ce1f-19f5-20bb019dc025', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-25', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '5108a384-232a-f1e3-9b80-1083c789be52', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-27', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', 'f69285bd-0c5f-0de6-05d8-d8330d9b7a97', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-28', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '7abbe91f-cacc-4aff-84ce-29d48cac6eb6', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-29', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '7deb0793-4f05-f3fd-e60e-90358e48c45f', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-30', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '94885a90-38c1-caff-3324-b4ef97daa652', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-31', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', 'e0477b82-5c38-8786-b2a2-b514912a74ac', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-01', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '3b21cf44-48c7-7ed2-4391-d1dcb5591494', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-03', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '066d8839-e40b-1da2-a3a2-f5ef534af42e', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-05', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', 'cdf8dfaf-1560-30ec-9400-530a8922f08d', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-11', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:00:00', '06:40:00', '7f7670b4-6db9-6f1e-c90f-e086dfe23a3c', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-19', '17:30:00', '22:00:00', NULL, NULL, NULL, NULL, '06:40:00', NULL, NULL, NULL, '04:30:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '04:30:00', NULL, '00:00:00', '06:40:00', '7c4f3b7d-cb62-41e6-2fa1-4098bd622410', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-24', NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '9ad97518-2a27-043f-ffe8-d6cd9c661ea6', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2020-09-28', '10:30:00', '14:30:00', '18:00:00', '23:00:00', '01:00:00', NULL, '06:40:00', NULL, NULL, NULL, '08:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '08:00:00', NULL, '03:30:00', '06:40:00', '0dd7a49e-3253-9467-c5ff-d6a32c6bc86c', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-10-07', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '1307d3ec-edfd-dbf1-d9b7-68c30005dcd9', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-04', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', 'cb4df9df-c78e-a5e5-eb3b-b7d923143ce5', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-05', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '2a1d711f-e1ec-dc3a-eb41-a54d94e56e51', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-06', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '59c4bb8b-760a-600b-19e3-5a7f91512768', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-07', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', '9be5484a-0aad-98db-0395-997f30ea8f9f', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-08', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '7f8ba55f-1152-b6f7-49cd-f248a9f9c4a0', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-10', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '96ea94a2-66e4-480a-e547-2f2f5ef04dee', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-11', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '3e1ede60-1dad-e3cb-ce3d-060e6effa782', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-12', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', 'caa35de7-1adf-0f01-e322-2c0baa95c265', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-13', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', 'cff05a0e-99d4-7910-4580-422a1e6ff3e3', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-14', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', '8d4981e9-80ee-774b-3229-3248b78e84c6', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-15', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', '8c42aca1-8eea-143b-2a53-bf634494c352', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-17', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '59127855-f780-d6e0-4911-edcdfb61a097', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-18', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '0d421d78-cf0c-4a92-6a80-58ea6aacb3aa', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-19', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '602ed804-2caa-c1c7-c8d1-b04601ca3561', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-20', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', 'af1476bf-aa5b-1dda-73ce-97280d645256', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-21', '18:30:00', '23:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '04:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '04:30:00', NULL, '00:00:00', '06:40:00', 'de84b3f9-4b36-ced9-59bc-e705b1dbfda9', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-22', '11:00:00', '14:30:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03:30:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '03:30:00', NULL, '00:00:00', '06:40:00', 'b76b29b1-f578-af15-f5b3-f5a73bf1ff47', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-24', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '6c979ff2-d10c-7269-ac16-ec67a0af2506', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-25', '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '04:00:00', '06:40:00', '54bcd89f-7d54-3c5d-3914-51fed804ff95', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-26', '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, '08:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '08:00:00', NULL, '03:00:00', '06:40:00', '94149223-6c26-cfa6-bf6c-8854ab0c8956', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'ce89b090-9cd9-a143-fe65-80e3f8ba9708', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2020-11-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'c0b17801-dd69-aed2-77bb-5db2f28bf779', '2020-08-09 16:55:07.693226', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-08-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '59c83015-13c9-832f-224b-df55382e667f', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-08-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '60adcf53-1fa2-58ad-c466-8b741ea39b93', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-08-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '567d6dbc-da2e-290a-227d-895b142f195f', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-08-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '27729c74-1e21-e2cb-d43e-4ef14f200afb', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-08-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'b2470a81-7b44-8bee-2d4a-0d2b28ce598c', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-08-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'c38cc8bd-44ac-126e-5131-6a475e3e676d', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-08-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '3c44623f-e885-b41c-f6a1-0671f092004a', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-08-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '70161c8b-0187-96ad-dcae-a8dec52025c2', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-08-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '11018a87-6591-3309-38b8-d53bbd31629e', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-08-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'b5dfef8f-840c-7824-dbd0-8a81f5bb4c17', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2021-01-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '498d8036-6130-b93a-8be6-7dc969059449', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2021-01-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '1209c37f-0406-5739-7103-7f96727f96a2', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2021-01-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'c9199856-afa7-b0b9-4544-aa4f7204cd4c', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2021-01-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '812caf2e-c505-9a2e-07a2-4d280f14c520', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2021-01-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'd900bd71-71fe-b252-054b-53d01788aafc', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2021-01-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'e58fb966-9403-b964-2298-ea0561ecbf7e', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2021-01-22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '062aa93a-cdbf-45a4-9f5b-695f9332e436', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-08-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '6f8e9172-5f2f-e862-1b9c-7bd26e18707c', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-08-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '263c9ff3-9729-d7d0-e0cd-7baa7c32e8af', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-08-22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'e8ab0ba7-a3c2-91df-e025-094b7b6f4443', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-08-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'c6d94da2-0c1a-5826-3e8d-9d3af3d7a052', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-08-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'c655a939-57e5-5bee-69c2-3a9bef6c101e', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-08-25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'cd5253eb-5798-5880-5bef-d2d6da78db66', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-08-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '970f7ed5-e027-6f86-ccd3-7cc81c0076fd', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-08-27', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '77c73500-838d-871e-7d25-bcfc2323ba2a', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-08-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '96642ef3-c7b1-5f83-c2fc-bed86f045991', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-08-29', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '8ea34c0a-05c7-c042-ba42-365acc8eaeea', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-08-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '01818ddc-24dd-a7b0-273e-48a07a41451e', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-08-31', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'e91ec6b8-76ed-f128-025b-8b9a477d3c30', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-09-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'de247f41-eb17-a0a9-602e-4b12787b5c55', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-09-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'f2b36b98-0220-5c4d-89ee-c6f8872b6eda', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-09-03', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '09af81d8-50b8-3dc8-7a2c-90bc9b7738a9', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-09-04', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'c088f9f2-5d7f-add7-26bb-280d07d2c2ef', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-09-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '0dbf0487-b18b-f02b-692e-d472a4404a15', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-09-06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'ad7a21c2-aa08-1a23-9ee4-35a726a57b85', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-09-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '8dfbf465-76dd-0138-451a-38846add570c', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-09-08', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '7cd6894d-5d9a-6f25-ff12-250ec665f8ca', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-09-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '55c0a6c8-1fbc-489b-769b-d7deb5104e32', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-09-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'a03336aa-7c70-4708-97f9-2e4ebb54f16b', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-09-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '0a37d5a8-b959-9417-4b37-f74caf476c36', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-09-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '393c07ea-2cc5-f927-cb51-36bfd83c8759', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-09-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'f139fd1a-43c6-1381-2d8f-a27133605ace', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-09-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '5fac42b1-b802-427d-e781-5ae580e6593f', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-09-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'ba772c61-f91d-2ccf-eced-7300ac31d714', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-09-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'fd6d319c-ce50-611f-b560-1d97adeab895', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-09-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'bceccb5a-6178-8734-1840-8eeb3789495d', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-09-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '44fec951-4fc3-421e-493e-4f554390b0b1', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-09-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '11862861-bf47-9946-49da-7bb1e773a65f', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-09-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '59e55f89-90d5-f9cf-dff8-7d81d8aba845', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-09-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '046e9817-9526-bcd9-ad0d-f21748730cab', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-09-22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'af4279f6-69c7-d29d-e098-ac0f521e9a8c', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-09-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '4adb9525-c115-5e91-7b77-23996be68b78', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-09-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '7f6a45a1-7d67-b30d-d39f-608ba6426bc7', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-09-25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'e09b7cdf-9570-598d-8e07-afab92cae7d1', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-09-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'afdf1f62-9f19-eea7-bc1f-a30a090640e7', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-09-27', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '02688815-2904-d1e3-cd1a-2179bfcdc644', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-09-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '04faeeb0-b963-e636-c111-714ea0a4c24a', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-09-29', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '77118b78-3a4c-f4ac-3327-ce91f136b193', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-09-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '54cb742c-e1c5-c90f-9d1a-8770f3ca56cd', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-10-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '355d8527-5854-dad7-f073-32a13d21c508', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-10-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'defdc370-b5dc-0718-fbe8-4c69027830ea', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-10-03', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', 'ddda791f-6ec7-efdb-72fd-5f6b3496aac1', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-10-04', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '2583c916-2d07-f42d-9c85-18ee42959317', '00:00:00', NULL, '00:00:00', '06:40:00', '500da86d-47bb-6d12-7985-4fb7b1560947', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-11-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '1f1ce7bf-4a92-2fc3-883c-1170b1364854', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-12-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '3a280ef8-0b9a-3b43-5bd8-f3a84409c9db', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-12-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '753b5c99-73d0-188d-95ff-c9bc1e167cac', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-12-03', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '463bcc86-d076-1741-b4c0-3758b1cafecc', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-12-04', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '1a6a0439-2e44-d60c-d98d-ab7bdcf12ddb', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-12-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '0149bc87-542b-d4b6-b1b0-f31633ff3d27', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-12-06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'a7af7ff5-a9c7-f623-b9be-c74d0ae22669', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-12-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '0f5632f3-f57f-a397-6d14-fb81aa6cd044', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-12-08', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'da6f6662-5bc1-9a71-bd63-580a8c917a0b', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-12-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'af1cb010-32c1-ffe2-294e-dbd0aaa1cdf7', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-12-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '95a49455-1e30-6d81-3fac-37f4d645e091', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-12-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '275eec6f-4965-4928-8f74-ec1b97196fb4', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-12-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '9d72eeb6-cf38-f553-b630-f24a9155f633', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-12-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '3df9da0c-e2ab-3706-1be4-5b7d29e1f0fa', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-12-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'bddd8601-8e63-03c2-3102-1eef59b1a1cf', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-12-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '402d2ddc-dd17-5e76-0dd2-787dd7c3d942', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-12-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'a4358212-3a4e-dfa0-d6e7-8de9dbfee999', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-12-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '7bd541af-3659-84b4-7cb6-0373b4d9867b', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-12-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '20168a2c-38b7-0bc6-5f7a-212efccdb0f9', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-12-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '75332c71-22c7-7681-4a5f-425954b1c999', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-12-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '586e0885-b428-719d-25ac-fdfae251a573', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-12-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'c2d402eb-ad8c-27b8-7e75-63b7ecb41e2a', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-12-22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '778f675a-fd1c-8242-edda-a08ab3af5a2a', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-12-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'b373a4cd-fe68-40cf-959b-75cd87c4bf0c', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-12-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'f1ca21f4-c6a0-e9ec-a003-86e0bb8320c9', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-12-25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '5870ea75-5d23-197e-585e-e89fd02dc894', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-12-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '7f33d505-b5af-d0cd-fc54-c14fe91f19ea', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-12-27', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'a5e6a841-7987-a55f-df9d-20e42148bbf3', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-12-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '35d33ffb-b4ae-e86a-cdcd-7e2c3fc02acb', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-12-29', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '290fdcab-d3da-43b0-e5a8-bbbe1e64bd66', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-12-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'c87f50a8-6bf6-2e87-319d-b8191b39e256', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-12-31', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '0bff0bb6-1d74-b1de-2a54-7838224d34e5', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2021-01-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '1a92d458-43ec-ca27-9176-beb40356cf04', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2021-01-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'b4ca6914-ccb1-7c43-f183-02717e0f4fb9', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2021-01-03', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'ab2b8856-e5e0-1275-2fc7-85fce2d69456', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2021-01-04', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '1f94c424-6f9e-c5e5-4dab-5e319bd1f623', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2021-01-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'dc51eb37-e8c2-7885-29d5-2fd4da9c728f', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2021-01-06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'd5356c0c-c5a3-7994-f25e-359829f1aa66', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2021-01-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'b8091be1-686e-2fd3-012b-1f6759e2c4a3', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2021-01-08', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '3f340dbd-06ec-a55e-8e6b-3955b1047d66', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2021-01-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'f0f4bdc2-9b8b-fd90-52fb-97371ddbc321', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2021-01-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '4c987b3b-cbf9-e08b-8da0-60a6fe370692', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2021-01-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '9529b1f2-7bed-bd59-b25d-d6a744036650', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2021-01-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '2db97c6e-ad34-3e2f-6b98-338a90bf1e60', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2021-01-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '5c347037-c329-8720-5836-ffc5b767b932', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2021-01-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', 'f2ff8391-9587-12e5-d9de-8c25ef8d79d9', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2021-01-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '3e961b52-a415-ae51-cc80-d506ff51a20f', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2021-01-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '81a64900-0f9f-18e7-acc9-f2b905f352b5', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2021-01-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, '9b93bd90-2325-fe28-4bff-852203fc99ce', '00:00:00', NULL, '00:00:00', '06:40:00', '9d443b7c-ba65-3132-4854-5d3b9a20eea2', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-10-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '659e88ec-5a88-d172-108d-11945e3f60cf', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-10-06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'abba9927-96a1-899c-011e-fe59df21b93c', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-10-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '3f51fda0-d9de-7280-e8f1-d45751980e58', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-10-08', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '0ea202c5-7554-b692-9422-ad61be65c0f7', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-10-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '407dd785-60a8-b3e6-66cf-0100fbcce5c7', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-10-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'ce1644dc-6538-871b-00c5-a058182f90eb', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-10-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'f86af124-4131-6f52-f26c-d0de765793e5', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-10-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'bb545869-844c-ffbd-0f53-2020e9b85002', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-10-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '6f00e397-1f80-f6b5-c4c4-7db37d4d0dc6', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-10-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '3da0900c-0cee-ed8a-259d-8c3eb130ef3d', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-10-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'e5f4ddfc-4929-f72a-87d0-848846b1b8ab', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-10-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '872c8345-4713-3c3b-83df-76d066123744', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-10-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '3c28a711-7957-19cb-d1bb-51438e0356bc', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-10-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '5b727864-30a9-13e8-55b2-e46287300863', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-10-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '00fe4cd1-b121-b43d-83d7-9a61a82448eb', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-10-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '519f16f4-92e9-7f04-eeeb-d42fc6417697', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-10-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'debfac03-fad5-cb79-7bf5-72b8cc7f4ff8', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-10-22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '958c2d04-f779-fe99-ca9b-85f6907ca6d3', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-10-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'b9666241-e7d8-3a65-2a48-556425ffc8b3', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-10-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'f4a1ba3e-0280-ac8e-a832-5db3120bd636', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-10-25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '3347715b-62a8-3224-1deb-79c83ec4e727', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-10-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '41b31f5a-5707-4b05-af56-84c0c3350294', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-10-27', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'd15b50f0-118f-de19-6cb9-1ef18732af88', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-10-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'a45ece2a-fd14-caae-c26d-e4975c471aa4', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-10-29', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'cb8dcfc7-455e-8014-cc8b-9ff1a42078f9', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-10-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '6df3895a-cd3e-f7b6-e13f-fe447499c0b6', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-10-31', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '920ecf59-9299-0544-8a46-8cda237ddd6c', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-11-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '06aa8182-c6ae-8b13-d69b-3d55ef08cb83', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-11-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '656bea6d-3e7f-95f7-313b-98f959fc6fac', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-11-03', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '4a49f5f0-30b4-7f44-e8e5-abf8f7fcb545', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-11-04', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '31ee1b5f-d710-ef8d-dfa6-36945e5f8b6f', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-11-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '0deb984c-2ea5-ec65-c927-e154fe8d5db2', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-11-06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'fb109cf4-792f-168b-59c1-c90eafd2f996', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-11-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'e01acdee-e117-f74a-ee45-08c58ed451c2', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-11-08', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'de99f588-9080-0f06-64f7-f26889e4ff3b', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-11-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'dad91d83-635d-fa69-23c9-e6330dc037d8', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-11-10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '1eb70ece-dc6b-51ca-4318-42d431821d44', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-11-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'bef44a03-55e0-1a32-0340-4af2d12bfd46', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-11-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'cd8925da-e3de-5994-ad31-6bfbfe291ea0', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-11-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'fa8b97c9-87d7-b470-110b-800aa6d459ea', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-11-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '11e464d0-8d95-51a7-ba21-9081fe822979', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-11-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '832f5fe7-6c00-bf2d-a98d-fb8f7aba3312', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-11-16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '9e44aebf-0aee-cc57-b58b-0262c072c886', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-11-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '7ec2b47d-fbb7-55ff-3235-d61697b8fe6d', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-11-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'fc54f879-7e48-b66d-903a-8f0bd6b669ad', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-11-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'd047d04b-6440-8b2e-9ec1-4bbd902f0371', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-11-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'a4053747-3b81-b305-98b0-e05cf8ac0d59', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-11-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'f6096633-ecd8-f751-3e31-43ad23edc3a8', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-11-22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '4cdd784d-e80a-9999-dbcf-e8a20709b031', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-11-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '036e81e2-ff50-ff62-bf02-ab285db143dd', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-11-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '139ec32a-1bee-fa26-cb39-640e8c7146d2', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-11-25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '3d27fa62-29b7-1279-557f-f23e287a91fc', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-11-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '9a3889bc-78bf-f7e2-d17b-cdc3b10a8245', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-11-27', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '0a62609b-2596-5c1d-4c82-a71f65281ed8', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-11-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', 'd9e49832-f3d2-a24f-f0fb-c9e65eec2e22', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2020-11-29', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00:00:00', NULL, NULL, 'e3e85c3e-1afa-768e-7938-f0c9996c618a', '00:00:00', NULL, '00:00:00', '06:40:00', '4454f098-7aaf-01ca-f863-6cf597176274', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); -- -- Data for Name: staffreportperiodweeks; Type: TABLE DATA; Schema: portanova; Owner: - -- -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 34, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-17', NULL, '00:00:00', 0, NULL, NULL, 'a88f93cc-9802-13b8-007a-79e8691251da', '2020-07-30 13:52:55.62355', '2020-07-30 13:52:55.62355'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 39, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-09-21', NULL, '00:00:00', 0, NULL, NULL, '4d35f916-6220-e342-0d8d-ee9ee7396a33', '2020-07-30 13:52:55.62355', '2020-07-30 13:52:55.62355'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 38, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-09-14', NULL, '00:00:00', 0, NULL, NULL, '2271cec7-b060-04cf-528a-592bafbd98b3', '2020-07-30 13:52:55.62355', '2020-07-30 13:52:55.62355'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 36, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-31', NULL, '00:00:00', 0, NULL, NULL, '648f09c3-f4cc-643d-ee2b-a9801056d7c6', '2020-07-30 13:52:55.62355', '2020-07-30 13:52:55.62355'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 37, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-09-07', NULL, '00:00:00', 0, NULL, NULL, 'd532de1e-39eb-1907-c21e-b79b7e27647f', '2020-07-30 13:52:55.62355', '2020-07-30 13:52:55.62355'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 35, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-24', NULL, '00:00:00', 0, NULL, NULL, '0069607b-34a1-9b36-4296-155fc185c795', '2020-07-30 13:52:55.62355', '2020-07-30 13:52:55.62355'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 33, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-10', NULL, '00:00:00', 0, NULL, NULL, '6ec2593e-2821-6b5d-689c-923672e711cb', '2020-07-30 13:52:55.62355', '2020-07-30 13:52:55.62355'); -INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 40, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-09-28', NULL, '00:00:00', 0, NULL, NULL, '071b1383-ee15-1d01-523d-3af2037d6957', '2020-07-30 13:52:55.62355', '2020-07-30 13:52:55.62355'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 33, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-10', NULL, '40:00:00', 0, NULL, 6, '6ec2593e-2821-6b5d-689c-923672e711cb', '2020-08-05 08:46:48.014325', '2020-07-30 13:52:55.62355'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 34, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-17', NULL, '40:00:00', 0, NULL, 6, 'a88f93cc-9802-13b8-007a-79e8691251da', '2020-08-05 08:46:48.014325', '2020-07-30 13:52:55.62355'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 35, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-24', NULL, '40:00:00', 0, NULL, 6, '0069607b-34a1-9b36-4296-155fc185c795', '2020-08-05 08:46:48.014325', '2020-07-30 13:52:55.62355'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 36, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-31', NULL, '40:00:00', 0, NULL, 6, '648f09c3-f4cc-643d-ee2b-a9801056d7c6', '2020-08-05 08:46:48.014325', '2020-07-30 13:52:55.62355'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 37, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-07', NULL, '40:00:00', 0, NULL, 6, 'd532de1e-39eb-1907-c21e-b79b7e27647f', '2020-08-05 08:46:48.014325', '2020-07-30 13:52:55.62355'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 38, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-14', NULL, '40:00:00', 0, NULL, 6, '2271cec7-b060-04cf-528a-592bafbd98b3', '2020-08-05 08:46:48.014325', '2020-07-30 13:52:55.62355'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 39, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-21', NULL, '40:00:00', 0, NULL, 6, '4d35f916-6220-e342-0d8d-ee9ee7396a33', '2020-08-05 08:46:48.014325', '2020-07-30 13:52:55.62355'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 40, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-28', NULL, '40:00:00', 0, NULL, 6, '071b1383-ee15-1d01-523d-3af2037d6957', '2020-08-05 08:46:48.014325', '2020-07-30 13:52:55.62355'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 33, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-10', NULL, '00:00:00', NULL, NULL, 0, '85180a51-c992-c3d4-c263-4f1bd35c71d9', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 34, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-17', NULL, '00:00:00', NULL, NULL, 0, '57290bd2-6eed-bc3e-e814-552fdaae5cf5', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 35, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-24', NULL, '00:00:00', NULL, NULL, 0, '8499720f-1dda-a01a-5ed8-4c20879f2e61', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 36, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-31', NULL, '00:00:00', NULL, NULL, 0, '2638a4ed-04ac-7ad5-09a0-f462429ed509', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 37, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-07', NULL, '00:00:00', NULL, NULL, 0, 'bb149c1d-3c32-4f16-6410-9a89c051e209', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 35, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-24', NULL, '40:00:00', NULL, NULL, 6, '999b5f68-67c3-62ad-4670-7ba2041b057c', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 38, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-14', NULL, '00:00:00', NULL, NULL, 0, 'a3b82097-67f4-8058-783c-ded9c94fc6f2', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 39, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-21', NULL, '00:00:00', NULL, NULL, 0, '1b7b66f9-a5f8-dc0f-2053-4c178d0295de', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 40, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-28', NULL, '00:00:00', NULL, NULL, 0, '7c05fb10-69a6-e377-ec49-d06626ccf783', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 33, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-10', NULL, '00:00:00', NULL, NULL, 0, '939784f3-7c92-40b6-11c3-a7a474247448', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 34, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-17', NULL, '00:00:00', NULL, NULL, 0, 'd699ae52-d590-20ed-4fff-a219456ba441', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 35, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-24', NULL, '00:00:00', NULL, NULL, 0, 'c04bb259-9821-839a-b31e-1f8abad986c5', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 36, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-31', NULL, '00:00:00', NULL, NULL, 0, '354942b9-1f83-f9c9-1763-5eae4a0743e1', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 37, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-07', NULL, '00:00:00', NULL, NULL, 0, 'ba42f62b-d7c8-d04d-854c-a7ba6f5ee647', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 38, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-14', NULL, '00:00:00', NULL, NULL, 0, 'b6d18bb4-aed9-7875-7718-fefdbcbd5f10', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 39, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-21', NULL, '00:00:00', NULL, NULL, 0, 'bc507f4d-8096-ce27-565b-f890e3164a51', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 40, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-28', NULL, '00:00:00', NULL, NULL, 0, 'b846b527-2adc-f602-f5af-33e354c7a11b', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 34, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-17', NULL, '40:00:00', NULL, NULL, 6, '4929c451-55db-3dc2-0f03-0552f0924372', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 40, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-28', NULL, '40:00:00', NULL, NULL, 6, '59f8c881-3dc0-479f-418d-eb9a944d4bd7', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 38, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-14', NULL, '40:00:00', NULL, NULL, 6, '4e7e5a3e-546d-a6fa-5dce-36a6624fc4b2', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 33, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-10', NULL, '40:00:00', NULL, NULL, 6, '8ef0205d-5df6-be5a-c38a-c99b597aa055', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 37, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-07', NULL, '40:00:00', NULL, NULL, 6, '1ff88ecf-56ae-5d4e-0e35-4c0b70a4380f', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 39, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-21', NULL, '40:00:00', NULL, NULL, 6, '10c4e207-295b-305f-e70b-38655e911b5d', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 35, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-24', NULL, '40:00:00', NULL, NULL, 6, '741c77e4-c752-0869-77d6-2cc016949f5d', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 36, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-31', NULL, '40:00:00', NULL, NULL, 6, '72f85a45-6a7e-0efc-9d73-bbcbafd55e01', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 36, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-31', NULL, '40:00:00', NULL, NULL, 6, '3d0d3f2c-6fde-17ac-8d6a-65cea55f3486', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 40, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-09-28', NULL, '40:00:00', NULL, NULL, 6, '9480f19f-0cda-845e-069c-4179aed88163', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 49, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-30', NULL, '00:00:00', NULL, NULL, 0, '3c2624d8-5132-45d4-2124-a46c6dc4876c', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 50, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-07', NULL, '00:00:00', NULL, NULL, 0, '2f5653e8-399d-f71d-89f2-1f09b0ab794a', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 51, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-14', NULL, '00:00:00', NULL, NULL, 0, '8a8b6dc2-3d47-da92-0725-f0381bb9c22d', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 52, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-21', NULL, '00:00:00', NULL, NULL, 0, '4c4d7327-a579-139a-13cd-86730b7e518c', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 53, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-28', NULL, '00:00:00', NULL, NULL, 0, 'f7ae69e8-d0e1-aa7e-2a24-b256475aac3f', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 1, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-04', NULL, '00:00:00', NULL, NULL, 0, '79a3afc4-3ddd-614d-17ed-3791eec587a0', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 2, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-11', NULL, '00:00:00', NULL, NULL, 0, '76905ca8-17fe-c76d-8c3d-6433bb8df9eb', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 3, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-18', NULL, '00:00:00', NULL, NULL, 0, 'da77d389-8665-e613-18ee-00922523c11e', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 38, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-09-14', NULL, '40:00:00', NULL, NULL, 6, '6612dbf9-c114-a7a9-4cd2-fd4984b1c5e4', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 33, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-10', NULL, '40:00:00', NULL, NULL, 6, '11a66ae3-870d-c5a3-e64c-2b6bd24cbbdf', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 34, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-17', NULL, '40:00:00', NULL, NULL, 6, '10201a3c-6c34-df8a-aa23-966a99cea4f4', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 37, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-09-07', NULL, '40:00:00', NULL, NULL, 6, '6774d93a-eaef-fad8-d95f-91ed27357ae3', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 39, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-09-21', NULL, '40:00:00', NULL, NULL, 6, '87582198-1f10-2007-2181-d62ca4fd7ad7', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 39, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-21', NULL, '40:00:00', NULL, NULL, 6, 'eb2db0c9-2106-5224-59c3-76855bf658d9', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 34, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-17', NULL, '40:00:00', NULL, NULL, 6, '90bbcb82-f653-0fa2-10da-9e1db3399cff', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 37, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-07', NULL, '40:00:00', NULL, NULL, 6, '4c9e70de-18b5-f4d0-9ee3-2b1ee53cf2b1', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 35, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-24', NULL, '40:00:00', NULL, NULL, 6, 'd592fd63-0df6-46fb-5903-3fa59656796f', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 38, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-14', NULL, '40:00:00', NULL, NULL, 6, '1c51fb59-5aa0-e41d-0a78-ec0778b777e1', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 33, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-10', NULL, '40:00:00', NULL, NULL, 6, '64648b58-895d-266a-ed8b-b8872dcc5d59', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 40, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-28', NULL, '40:00:00', NULL, NULL, 6, '2d47e0ae-5cb0-1615-2aee-7af677a2c1d4', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 36, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-31', NULL, '40:00:00', NULL, NULL, 6, 'f0e408a9-4c6d-34a6-3543-2ffed280406b', '2020-08-04 08:17:38.03811', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 49, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-30', NULL, '00:00:00', NULL, NULL, 0, 'd4b81c50-0bf4-1412-d258-ff91fa0203aa', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 50, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-07', NULL, '00:00:00', NULL, NULL, 0, '06e71229-7a42-cce0-f82a-cd6bf38ca27a', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 51, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-14', NULL, '00:00:00', NULL, NULL, 0, 'b1173062-72f4-af8d-979b-e5e3fcda8ffd', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 52, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-21', NULL, '00:00:00', NULL, NULL, 0, '9849ec93-04b8-a800-245e-e8a0c4fa2360', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 53, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-28', NULL, '00:00:00', NULL, NULL, 0, '078b90f5-1ded-cc4f-2ce6-05e7143e3c19', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 1, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-04', NULL, '00:00:00', NULL, NULL, 0, '5791c0e1-f55e-4a93-40d4-1b949549fcd8', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 2, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-11', NULL, '00:00:00', NULL, NULL, 0, 'd05f9dae-7ae7-39f9-c37e-e8553fefc8e2', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 41, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-05', NULL, '00:00:00', NULL, NULL, 0, '09493b4b-9244-08bb-3767-3acdef560ba8', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 42, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-12', NULL, '00:00:00', NULL, NULL, 0, '542d6123-3562-485f-9f82-efac73057710', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 43, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-19', NULL, '00:00:00', NULL, NULL, 0, 'd2e2f9fa-70f6-9132-ce9a-235ba9791003', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 44, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-26', NULL, '00:00:00', NULL, NULL, 0, 'eea5d131-a5ed-28b1-c450-9efbf0a2b34a', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 45, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-02', NULL, '00:00:00', NULL, NULL, 0, 'a7917f85-c028-adf5-9a14-e9137034cf5c', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 46, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-09', NULL, '00:00:00', NULL, NULL, 0, '327e35cc-c500-29b4-8f55-895fb89953b4', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 47, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-16', NULL, '00:00:00', NULL, NULL, 0, 'f0a945f5-ed53-106a-8a8f-a24b2300d90a', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('3c463353-f763-c72c-0007-e6b4926befee', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 48, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-23', NULL, '00:00:00', NULL, NULL, 0, '4f63e754-5e2b-4a76-c11f-3e6775b96263', '2020-08-04 08:02:30.157867', '2020-08-04 08:02:30.157867'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 3, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-18', NULL, '00:00:00', NULL, NULL, 0, '1250d2be-cd8f-8423-002c-abed6f37de78', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 53, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-28', NULL, '00:00:00', NULL, NULL, 0, '56a54ba1-b2cd-70ba-8cfb-86fe38677f48', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 2, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-11', NULL, '00:00:00', NULL, NULL, 0, 'f36d72c2-95b4-cd2f-b9f7-778e75377aa2', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 51, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-14', NULL, '00:00:00', NULL, NULL, 0, '2bc10655-880c-734c-ff08-516f7a21ca1c', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 3, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-18', NULL, '00:00:00', NULL, NULL, 0, '56e5fee9-96e5-69a4-546a-25c035f21b51', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 49, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-30', NULL, '00:00:00', NULL, NULL, 0, '2467313e-fe03-3c46-dee5-5ae4af227a8a', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 1, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-04', NULL, '00:00:00', NULL, NULL, 0, 'b180ea27-1765-de62-3e21-173bdc903d1f', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 52, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-21', NULL, '00:00:00', NULL, NULL, 0, '7057e7f9-3c65-5c3f-315e-d79ccfdc263f', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 50, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-07', NULL, '00:00:00', NULL, NULL, 0, 'ac294e86-480e-bcb3-8cc4-89a651b128f2', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 41, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-05', NULL, '00:00:00', NULL, NULL, 0, '9b5151b5-9634-ef27-5c07-ba531de22d2c', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 2, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-11', NULL, '40:00:00', NULL, NULL, 6, '389e6e7f-4752-f68c-4dd6-6f291a503193', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 49, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-30', NULL, '40:00:00', NULL, NULL, 6, 'b234169a-863a-9497-11e1-46a1ae6f5339', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 1, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-04', NULL, '40:00:00', NULL, NULL, 6, 'db681e4e-d0a2-d18a-4391-fff41197541e', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 49, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-30', NULL, '00:00:00', NULL, NULL, 0, '95eefd41-47f3-b69e-41ef-285dd3bf9021', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 2, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-11', NULL, '00:00:00', NULL, NULL, 0, 'd2a736fb-058d-4dd1-43c7-097dcfee6a6f', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 51, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-14', NULL, '00:00:00', NULL, NULL, 0, '70fb043f-2f10-c83e-2079-5e0e8e55e489', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 52, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-21', NULL, '00:00:00', NULL, NULL, 0, '66ca6ee1-88b5-c29c-a0ca-1475743d15d5', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 1, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-04', NULL, '00:00:00', NULL, NULL, 0, '8d685fbe-582f-6489-572e-40f0376af8a1', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 3, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-18', NULL, '00:00:00', NULL, NULL, 0, '33a0fad1-b2e6-052e-54f8-30da62088c58', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 50, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-07', NULL, '00:00:00', NULL, NULL, 0, '8c60c0ca-1fca-8b91-736e-a7705dbabbc0', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 53, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-28', NULL, '40:00:00', NULL, NULL, 6, 'a27525e6-f480-ff59-e6d5-20f27b33e6b9', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 3, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-18', NULL, '40:00:00', NULL, NULL, 6, '44041cf8-b0b7-016a-ab48-730c20ec9fb7', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 52, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-21', NULL, '40:00:00', NULL, NULL, 6, '363901f8-c819-a554-1775-ea30dddce6c6', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 50, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-07', NULL, '40:00:00', NULL, NULL, 6, '40ff87fc-b78d-3e86-43b3-b8b2920a6a30', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 51, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-14', NULL, '40:00:00', NULL, NULL, 6, 'e6232724-75f4-1068-63e1-d925eaac235d', '2020-08-04 08:18:19.097979', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 41, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-05', NULL, '00:00:00', NULL, NULL, 0, '7503bf3a-c1a5-35f2-c0da-f19bb0c7ddd8', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 42, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-12', NULL, '00:00:00', NULL, NULL, 0, '8836410a-64e3-de4d-42d4-b1e6d9ae6d3b', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 43, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-19', NULL, '00:00:00', NULL, NULL, 0, '932dbb1a-749e-55cf-57a4-3a4c95e55e80', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 44, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-26', NULL, '00:00:00', NULL, NULL, 0, '92ab0ffe-67e5-6ef2-8a4d-fbbe1fe089bc', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 45, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-02', NULL, '00:00:00', NULL, NULL, 0, '551651b2-a92b-84e3-52f7-105b06bef9c6', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 46, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-09', NULL, '00:00:00', NULL, NULL, 0, '763e6d82-b733-40e9-8eda-934c224601e8', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 47, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-16', NULL, '00:00:00', NULL, NULL, 0, '1d3551b6-3eb3-c832-4e60-52052144f6c6', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 53, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-28', NULL, '00:00:00', NULL, NULL, 0, '9f77c01e-e2bf-0313-5d21-4118819df5db', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('8aa08f14-7976-baca-c214-b1131263ea5d', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 48, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-23', NULL, '00:00:00', NULL, NULL, 0, '7256a5a4-048c-0b88-b512-14c476517040', '2020-08-04 08:48:02.295624', '2020-08-04 08:48:02.295624'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 40, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-09-28', NULL, '40:00:00', NULL, NULL, 6, '7aff8a58-0572-1983-612c-1d43dde65c28', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 38, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-09-14', NULL, '40:00:00', NULL, NULL, 6, 'c9cf917b-8c6b-e909-3120-8544d975d421', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 36, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-31', NULL, '40:00:00', NULL, NULL, 6, '72c7014c-8b9e-b5d5-b92d-d5c577e1d1ee', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 35, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-24', NULL, '40:00:00', NULL, NULL, 6, '5bcd0875-d60c-5012-bd57-5248dc5696f7', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 37, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-09-07', NULL, '40:00:00', NULL, NULL, 6, 'fe54c0c0-afe1-852d-258a-9f1ccc8a7493', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 34, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-08-17', NULL, '40:00:00', NULL, NULL, 6, 'd6931909-b9c9-1c3f-4f70-676c4d76e05d', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 33, '40:00:00', '36:00:00', '00:00:00', '00:00:00', '08:00:00', '-12:00:00', '2020-08-10', NULL, '28:00:00', NULL, NULL, 6, '03cefb5b-3fa8-c8c2-acff-1938345c4506', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 39, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-09-21', NULL, '40:00:00', NULL, NULL, 6, '042d1b82-630b-d1b9-63da-35120771322c', '2020-08-09 17:21:00.084336', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 41, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-05', NULL, '40:00:00', NULL, NULL, 6, 'c0318476-becd-68d0-3e11-bf85b1666f8f', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 47, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-16', NULL, '40:00:00', NULL, NULL, 6, '9863cb37-aea2-b45c-b82f-975cde052a73', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 44, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-26', NULL, '40:00:00', NULL, NULL, 6, '53bb59bc-a296-0e86-6302-21c230be88b8', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 42, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-12', NULL, '40:00:00', NULL, NULL, 6, 'cb8ed656-613b-9261-55aa-d9f78402cdc0', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 45, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-02', NULL, '40:00:00', NULL, NULL, 6, '745bbf58-07a0-654d-1a65-5d4349063833', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 42, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-12', NULL, '00:00:00', NULL, NULL, 0, 'b633ebf3-5cd2-5b83-c7f0-8bfe57a8a013', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 48, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-23', NULL, '00:00:00', NULL, NULL, 0, 'cb2b6ded-7ef2-cb9c-f930-42fc5c9c6ae9', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 41, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-05', NULL, '00:00:00', NULL, NULL, 0, 'effcf244-746a-d662-cf87-a633ece560a2', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 48, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-23', NULL, '40:00:00', NULL, NULL, 6, 'b37935ef-bc8d-436b-5691-d3fbb717d493', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 46, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-09', NULL, '40:00:00', NULL, NULL, 6, 'c6610cde-b1d8-811a-3f1d-de6c4df56ae4', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('1898317d-07d3-c9b8-c29c-a5aa60c28c27', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 43, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-19', NULL, '40:00:00', NULL, NULL, 6, '7d2667f2-c1ff-3a55-d0c3-b554e0d9c47e', '2020-08-04 08:18:04.803619', '2020-08-04 08:12:22.443771'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 46, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-09', NULL, '00:00:00', NULL, NULL, 0, '4458b82e-caf1-e886-1b33-6bdd6c666d72', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 43, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-19', NULL, '00:00:00', NULL, NULL, 0, 'd0bd791c-466b-4dde-ee3a-ce48f2def331', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 44, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-26', NULL, '00:00:00', NULL, NULL, 0, '55d42aca-695e-b900-22b7-b4c0ce0b5776', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 47, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-16', NULL, '00:00:00', NULL, NULL, 0, '370772c8-45b6-696b-c6b0-f948cf4061e5', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('cc63023b-4892-c29c-787d-088392d58b88', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 45, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-02', NULL, '00:00:00', NULL, NULL, 0, '65d9d2b4-ec83-71de-ea3e-d20e7624899c', '2020-08-09 17:30:46.037748', '2020-08-04 09:03:04.740487'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 42, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-12', NULL, '40:00:00', NULL, NULL, 6, '2c69af3b-da54-416f-6ce8-a23342f3143f', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 48, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-23', NULL, '40:00:00', NULL, NULL, 6, 'e9590724-60b0-9cdf-8efa-5655ceb7cc38', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 44, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-26', NULL, '40:00:00', NULL, NULL, 6, '00e8a37c-03a5-3345-a453-9c9dbc44ece9', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 45, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-02', NULL, '40:00:00', NULL, NULL, 6, '50d5f7f6-1fce-1665-7876-9893031223d9', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 47, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-16', NULL, '40:00:00', NULL, NULL, 6, 'bc3f15ef-a640-ddd0-61f8-30b73aac5097', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 41, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-05', NULL, '40:00:00', NULL, NULL, 6, 'c1477774-15d0-312e-11e1-59d54ab68074', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 43, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-19', NULL, '40:00:00', NULL, NULL, 6, 'cad0e3a5-08dd-6040-ee76-69264ce4419a', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('a77618bc-86f2-800f-b26d-6d641147ab7c', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 46, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-09', NULL, '40:00:00', NULL, NULL, 6, '78a39aca-4e23-e837-fa80-d42d3ca1dcc0', '2020-08-04 08:46:46.705638', '2020-08-03 15:43:26.11842'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 2, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-11', NULL, '40:00:00', NULL, NULL, 6, 'a21da5e1-0b38-1cd3-556b-fc9bddfffbdb', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 51, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-14', NULL, '40:00:00', NULL, NULL, 6, 'a1627aaa-220c-9ece-99cf-a05d9ae13e54', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 3, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-18', NULL, '40:00:00', NULL, NULL, 6, 'f627c2c7-fa84-7a2a-ac56-be724ee4a6f4', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 49, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-30', NULL, '40:00:00', NULL, NULL, 6, '09318c38-7d02-fe13-08e8-bb899a7e133b', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 53, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-28', NULL, '40:00:00', NULL, NULL, 6, 'ae08c0ec-b589-144a-03f4-e10b05642b65', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 1, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-04', NULL, '40:00:00', NULL, NULL, 6, '0f0c3761-21b1-798a-88f6-c25cb861c30c', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 52, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-21', NULL, '40:00:00', NULL, NULL, 6, '9232773b-0f77-89df-3a38-d2afdd80ad0a', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 50, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-07', NULL, '40:00:00', NULL, NULL, 6, '9d10c302-d37d-d69a-1fea-0caa755d9086', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 36, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-31', NULL, '00:00:00', NULL, NULL, 0, 'fa264bbc-5a60-46bc-8d5e-45803ed3837f', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 39, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-21', NULL, '00:00:00', NULL, NULL, 0, 'ee38c0a6-1c04-ea11-face-7c2e859c632a', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 40, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-28', NULL, '00:00:00', NULL, NULL, 0, '644651aa-612f-96d8-9f82-e6edb6725ede', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 37, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-07', NULL, '00:00:00', NULL, NULL, 0, '1299af5f-3ded-a52e-12e3-255770bc94a5', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 33, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-10', NULL, '00:00:00', NULL, NULL, 0, '7af0a654-6fee-3234-2c30-928ded3387a0', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 35, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-24', NULL, '00:00:00', NULL, NULL, 0, '8b8f18d8-9493-f628-322a-70be57c5ed76', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 38, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-09-14', NULL, '00:00:00', NULL, NULL, 0, '1ff4dde2-5549-3aa5-0630-95325987e045', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '2583c916-2d07-f42d-9c85-18ee42959317', 2020, 34, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-08-17', NULL, '00:00:00', NULL, NULL, 0, 'caf1fcaa-66f8-abdd-04b3-caa3fe7cd234', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 47, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-16', NULL, '40:00:00', NULL, NULL, 6, '4ca5cc30-caf8-1e33-5c36-9b6aa2d325b2', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 45, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-02', NULL, '40:00:00', NULL, NULL, 6, '376d0e39-0a07-94d1-4089-0c889348db1a', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 41, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-05', NULL, '40:00:00', NULL, NULL, 6, '7d3bd1d6-dc29-2a8e-1f9a-4255e1451e33', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 42, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-12', NULL, '40:00:00', NULL, NULL, 6, 'df70e4fd-cbdf-d10a-e612-ccb0dffb48b7', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 48, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-23', NULL, '40:00:00', NULL, NULL, 6, '6737056e-d0bc-f32e-f493-ee52340237c9', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 49, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-30', NULL, '00:00:00', NULL, NULL, 0, '07a20dda-7249-33f8-b3bd-94ece0a1dc39', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 50, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-07', NULL, '00:00:00', NULL, NULL, 0, '094f8c94-541f-4435-e37f-6110fdf74d1f', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 52, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-21', NULL, '00:00:00', NULL, NULL, 0, 'bc73ee15-c005-1b1c-7959-08069a52a2ee', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 2, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-11', NULL, '00:00:00', NULL, NULL, 0, '4d846580-0e9f-01e7-b779-d20270cb3c9b', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 51, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-14', NULL, '00:00:00', NULL, NULL, 0, '9a54f24c-6bd6-571b-5e34-35e10833f902', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 3, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-18', NULL, '00:00:00', NULL, NULL, 0, 'bd5c8522-7941-c5dd-e2da-768b64a22886', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2020, 53, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-12-28', NULL, '00:00:00', NULL, NULL, 0, '976c8ba4-d06e-7459-b7be-18c990898fdc', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', '9b93bd90-2325-fe28-4bff-852203fc99ce', 2021, 1, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2021-01-04', NULL, '00:00:00', NULL, NULL, 0, '99c8f1f5-e4ac-6379-14ae-1f2cbce80707', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 44, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-26', NULL, '00:00:00', NULL, NULL, 0, 'bf9f464e-d5aa-021c-6c34-0717bf871f10', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 45, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-02', NULL, '00:00:00', NULL, NULL, 0, '08588236-e0bd-63ac-97c5-58ed1fd24f7e', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 43, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-19', NULL, '00:00:00', NULL, NULL, 0, 'efe9c374-13a1-7eeb-ccc2-933b6951560f', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 47, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-16', NULL, '00:00:00', NULL, NULL, 0, 'e2b2befd-1707-dc37-84e5-17faf56554a7', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 48, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-23', NULL, '00:00:00', NULL, NULL, 0, '32ce44f1-8045-8219-c463-d0c15fbcf4d7', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 46, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-09', NULL, '00:00:00', NULL, NULL, 0, '71d77a11-3347-941b-c104-421272f17d4c', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('63204f0b-afae-1380-b655-a6247b129af0', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 42, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-12', NULL, '00:00:00', NULL, NULL, 0, '53678e81-40f4-8a8e-7a9d-456aa3083026', '2020-08-04 08:47:14.423046', '2020-08-04 08:20:31.82353'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 44, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-26', NULL, '40:00:00', NULL, NULL, 6, '907bfec2-6da2-24d9-70ff-4e0adbbfb4ee', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 43, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-10-19', NULL, '40:00:00', NULL, NULL, 6, '527bd64a-6a3b-920f-eecf-f86e2073bb60', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); +INSERT INTO portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) VALUES ('e4cc11c3-dc5c-fb32-9de0-3ce9ac721507', 'e3e85c3e-1afa-768e-7938-f0c9996c618a', 2020, 46, '00:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', NULL, '2020-11-09', NULL, '40:00:00', NULL, NULL, 6, '3cb51a89-5100-3486-d9c7-a52175adf74b', '2020-08-09 16:51:22.105001', '2020-08-03 15:42:16.28754'); -- @@ -302,28 +1671,33 @@ INSERT INTO portanova.vacancytypes (vacancyname, isworktime, isfreetime, color, -- Data for Name: workplans; Type: TABLE DATA; Schema: portanova; Owner: - -- +INSERT INTO portanova.workplans (workplan, weekhours, weekdays, freeweekdayslist, id, modified, created, isdefault) VALUES ('Horaire Dario', '40:00:00', 6, '["3"]', 'f0e63e3e-e55e-c80d-99fc-b4bfe6fa3312', '2020-08-04 08:36:32.000204', '2020-08-04 08:31:44.522208', NULL); +INSERT INTO portanova.workplans (workplan, weekhours, weekdays, freeweekdayslist, id, modified, created, isdefault) VALUES ('Horaire Christian', '40:00:00', 6, '["1"]', 'c2e086cf-32d7-7f1c-cff1-09c13172ade3', '2020-08-04 07:57:55.113324', '2020-08-04 07:54:51.907014', NULL); INSERT INTO portanova.workplans (workplan, weekhours, weekdays, freeweekdayslist, id, modified, created, isdefault) VALUES ('Horaire Maria', '40:00:00', 6, '["1"]', 'f8666bc6-abed-a3ab-35d5-b6df495a0eea', '2020-07-28 16:52:33.308504', '2020-07-23 12:27:10.908142', NULL); INSERT INTO portanova.workplans (workplan, weekhours, weekdays, freeweekdayslist, id, modified, created, isdefault) VALUES ('Horaire Josiane', '40:00:00', 6, '["1"]', 'e14fcef9-5c90-e979-0ba8-86d86d29fbe2', '2020-07-28 16:52:45.894425', '2020-07-23 12:27:10.908142', NULL); INSERT INTO portanova.workplans (workplan, weekhours, weekdays, freeweekdayslist, id, modified, created, isdefault) VALUES ('Horaire Karim', '40:00:00', 6, '["4"]', 'a0fbbf10-ac5e-7cd8-0be0-a3bb2c9bdb58', '2020-07-28 16:52:56.111965', '2020-07-23 12:27:10.908142', NULL); INSERT INTO portanova.workplans (workplan, weekhours, weekdays, freeweekdayslist, id, modified, created, isdefault) VALUES ('Horaire Marco', '39:50:00', 6, '["3"]', 'fde8026f-b370-af76-1026-0dc638348a7e', '2020-07-28 16:53:12.236836', '2020-07-23 12:27:10.908142', NULL); +INSERT INTO portanova.workplans (workplan, weekhours, weekdays, freeweekdayslist, id, modified, created, isdefault) VALUES ('Horaire Tiffany', '40:00:00', 6, '["7"]', '267f424d-9716-cf98-3bd0-c6715257c3a0', '2020-08-04 08:40:10.724376', '2020-08-04 08:38:34.053308', NULL); +INSERT INTO portanova.workplans (workplan, weekhours, weekdays, freeweekdayslist, id, modified, created, isdefault) VALUES ('Horaire Joao', '40:00:00', 6, '["2"]', '6299c4b9-50e4-dffd-5560-eb13a4281882', '2020-08-04 08:25:31.729214', '2020-08-04 08:23:14.656775', NULL); INSERT INTO portanova.workplans (workplan, weekhours, weekdays, freeweekdayslist, id, modified, created, isdefault) VALUES ('Horaire Francesco', '40:00:00', 6, '["2"]', '3ff4557c-b9c6-a2ff-eec3-89ad034b6556', '2020-07-28 16:57:16.392618', '2020-07-24 08:22:07.805921', NULL); INSERT INTO portanova.workplans (workplan, weekhours, weekdays, freeweekdayslist, id, modified, created, isdefault) VALUES ('Horaire Nicolas', '40:00:00', 6, '["3"]', '6870aaaa-ebe1-811e-b52c-fb19525ffe08', '2020-07-28 17:00:19.534882', '2020-07-28 16:58:13.722864', NULL); +INSERT INTO portanova.workplans (workplan, weekhours, weekdays, freeweekdayslist, id, modified, created, isdefault) VALUES ('Horaire Lilly', '12:30:00', 3, '["4","5","6","7"]', 'ae74b950-9b80-caa6-3ffd-38c7a465552b', '2020-08-04 08:40:27.604222', '2020-08-04 08:29:36.26574', NULL); INSERT INTO portanova.workplans (workplan, weekhours, weekdays, freeweekdayslist, id, modified, created, isdefault) VALUES ('Horaire Vagos', '40:00:00', 6, '["3"]', 'ec796603-0d87-8457-b92d-1a792e5f5acb', '2020-07-29 09:35:41.665448', '2020-07-28 17:00:52.682848', NULL); -INSERT INTO portanova.workplans (workplan, weekhours, weekdays, freeweekdayslist, id, modified, created, isdefault) VALUES ('Horaire Catia', '41:00:00', 7, NULL, 'fbd5ac24-becf-c358-45c4-65518415ebb8', '2020-07-30 11:23:56.510242', '2020-07-23 12:27:10.908142', NULL); INSERT INTO portanova.workplans (workplan, weekhours, weekdays, freeweekdayslist, id, modified, created, isdefault) VALUES ('Standard', '00:00:00', 0, '["1","2","3","4","5","6","7"]', 'a57742b1-b03c-21d1-54b1-bd0259375d89', '2020-07-30 11:42:45.867982', '2020-07-30 10:31:05.577147', true); +INSERT INTO portanova.workplans (workplan, weekhours, weekdays, freeweekdayslist, id, modified, created, isdefault) VALUES ('Horaire Francesca', '40:00:00', 6, '["1"]', '7172f97b-38d0-ae8e-3a38-1d893e34b56f', '2020-08-04 08:45:23.784369', '2020-08-04 08:41:02.137229', NULL); +INSERT INTO portanova.workplans (workplan, weekhours, weekdays, freeweekdayslist, id, modified, created, isdefault) VALUES ('Horaire Catia', '40:00:00', 6, '["4"]', 'fbd5ac24-becf-c358-45c4-65518415ebb8', '2020-08-04 09:02:36.160395', '2020-07-23 12:27:10.908142', NULL); -- -- Data for Name: workplandays; Type: TABLE DATA; Schema: portanova; Owner: - -- -INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('fbd5ac24-becf-c358-45c4-65518415ebb8', 1, '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', 'd33cbba0-9602-54e1-98b8-401ab199dc5a', 1, '2020-07-23 11:59:40.886617', '2020-07-23 12:27:10.908142'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('fbd5ac24-becf-c358-45c4-65518415ebb8', 3, '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', 'f39ad346-e714-7876-5689-2994e1312b36', 1, '2020-08-04 09:02:14.817684', '2020-07-23 12:27:10.908142'); INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('fde8026f-b370-af76-1026-0dc638348a7e', 1, '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', '7511ca51-4a5a-87e1-896b-c6dbb4e70fb9', 1, '2020-07-23 11:59:40.886617', '2020-07-23 12:27:10.908142'); INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('fde8026f-b370-af76-1026-0dc638348a7e', 2, '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', '4fd4a501-4591-2c35-d2fb-a96fada984af', 1, '2020-07-23 11:59:40.886617', '2020-07-23 12:27:10.908142'); INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('fde8026f-b370-af76-1026-0dc638348a7e', 3, NULL, NULL, NULL, NULL, NULL, 'cc10f61d-6027-fb62-9ad4-d929d593c15e', 1, '2020-07-23 11:59:40.886617', '2020-07-23 12:27:10.908142'); INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('f8666bc6-abed-a3ab-35d5-b6df495a0eea', 5, '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', 'bc0bd37b-233c-7311-b352-0aa40779cb7c', 1, '2020-07-23 11:59:40.886617', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('fbd5ac24-becf-c358-45c4-65518415ebb8', 2, '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', 'c7957c42-81f9-96f8-0f5d-ad7515503674', 1, '2020-07-23 11:59:40.886617', '2020-07-23 12:27:10.908142'); -INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('fbd5ac24-becf-c358-45c4-65518415ebb8', 3, '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', 'f39ad346-e714-7876-5689-2994e1312b36', 1, '2020-07-23 11:59:40.886617', '2020-07-23 12:27:10.908142'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('fbd5ac24-becf-c358-45c4-65518415ebb8', 4, NULL, NULL, NULL, NULL, NULL, '2616bad1-9854-3fce-885b-5ceaa63d0f15', 1, '2020-08-04 09:02:36.160395', '2020-07-23 12:27:10.908142'); INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('fbd5ac24-becf-c358-45c4-65518415ebb8', 5, '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', 'c59edca6-4e4f-39a9-0427-5a7aeaec58cc', 1, '2020-07-23 11:59:40.886617', '2020-07-23 12:27:10.908142'); INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('a0fbbf10-ac5e-7cd8-0be0-a3bb2c9bdb58', 1, '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', '301be505-5ba5-c9be-9d71-f3883008c0e7', 1, '2020-07-23 11:59:40.886617', '2020-07-23 12:27:10.908142'); INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('a0fbbf10-ac5e-7cd8-0be0-a3bb2c9bdb58', 2, '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', '73ee417e-09a1-9e54-8ce9-f2505a67b46b', 1, '2020-07-23 11:59:40.886617', '2020-07-23 12:27:10.908142'); @@ -357,7 +1731,8 @@ INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('3ff4557c-b9c6-a2ff-eec3-89ad034b6556', 5, '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', '20119c23-e7e3-5783-843c-a0e1635df425', 1, '2020-07-24 08:22:07.805921', '2020-07-24 08:22:07.805921'); INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('3ff4557c-b9c6-a2ff-eec3-89ad034b6556', 6, '17:30:00', '22:00:00', NULL, NULL, NULL, '30b2e2f4-ab22-793f-7a7b-8f238d3d6f5e', 1, '2020-07-24 08:22:07.805921', '2020-07-24 08:22:07.805921'); INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('3ff4557c-b9c6-a2ff-eec3-89ad034b6556', 4, '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', '4de91c61-dbe6-3119-ab99-766a2039a298', 1, '2020-07-28 16:57:16.392618', '2020-07-24 08:22:07.805921'); -INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('fbd5ac24-becf-c358-45c4-65518415ebb8', 4, '12:00:00', '13:00:00', NULL, NULL, NULL, '2616bad1-9854-3fce-885b-5ceaa63d0f15', 1, '2020-07-30 11:23:56.510242', '2020-07-23 12:27:10.908142'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('fbd5ac24-becf-c358-45c4-65518415ebb8', 1, '10:30:00', '14:30:00', '18:00:00', '23:00:00', '01:00:00', 'd33cbba0-9602-54e1-98b8-401ab199dc5a', 1, '2020-08-04 09:01:16.204226', '2020-07-23 12:27:10.908142'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('fbd5ac24-becf-c358-45c4-65518415ebb8', 2, '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', 'c7957c42-81f9-96f8-0f5d-ad7515503674', 1, '2020-08-04 09:01:34.953432', '2020-07-23 12:27:10.908142'); INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('3ff4557c-b9c6-a2ff-eec3-89ad034b6556', 7, '11:00:00', '14:30:00', NULL, NULL, NULL, '15a4fece-963d-ae1e-137c-a572dd39c929', 1, '2020-07-24 08:22:07.805921', '2020-07-24 08:22:07.805921'); INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('6870aaaa-ebe1-811e-b52c-fb19525ffe08', 5, '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', '82edf976-3e27-7cef-d5d4-f12aa7b5b4b4', 1, '2020-07-28 16:58:13.722864', '2020-07-28 16:58:13.722864'); INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('6870aaaa-ebe1-811e-b52c-fb19525ffe08', 6, '17:30:00', '22:00:00', NULL, NULL, NULL, 'a2634a59-5aef-dd59-252d-e39a64dbba0c', 1, '2020-07-28 16:58:13.722864', '2020-07-28 16:58:13.722864'); @@ -371,6 +1746,7 @@ INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('ec796603-0d87-8457-b92d-1a792e5f5acb', 7, '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', '39bd146c-cf01-184a-627c-576197f01d78', 1, '2020-07-28 17:00:52.682848', '2020-07-28 17:00:52.682848'); INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('ec796603-0d87-8457-b92d-1a792e5f5acb', 5, '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', '6f7ede21-5507-dafd-b759-d07c37e8863a', 1, '2020-07-28 17:00:52.682848', '2020-07-28 17:00:52.682848'); INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('ec796603-0d87-8457-b92d-1a792e5f5acb', 6, '17:30:00', '22:00:00', NULL, NULL, NULL, 'dbbb9e5a-9aa1-aa18-ad59-a77577f2f4ae', 1, '2020-07-28 17:00:52.682848', '2020-07-28 17:00:52.682848'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('6299c4b9-50e4-dffd-5560-eb13a4281882', 3, '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', '09dd78cb-b316-4340-d2c8-0da4e057c669', 1, '2020-08-04 08:24:00.053131', '2020-08-04 08:23:14.656775'); INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('ec796603-0d87-8457-b92d-1a792e5f5acb', 1, '10:30:00', '14:30:00', '19:30:00', '00:30:00', '01:00:00', '27fd3b0c-cad8-0f72-d172-489756ac836e', 1, '2020-07-29 09:09:28.054851', '2020-07-28 17:00:52.682848'); INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('ec796603-0d87-8457-b92d-1a792e5f5acb', 4, '11:00:00', '14:30:00', NULL, NULL, NULL, '6a683a50-7c33-af59-7b32-57c08d124699', 1, '2020-07-29 09:35:41.665448', '2020-07-28 17:00:52.682848'); INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('a57742b1-b03c-21d1-54b1-bd0259375d89', 1, NULL, NULL, NULL, NULL, NULL, 'e1961fc7-b0b8-74ea-c994-38f0893642e0', 1, '2020-07-30 10:31:05.577147', '2020-07-30 10:31:05.577147'); @@ -380,6 +1756,47 @@ INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('a57742b1-b03c-21d1-54b1-bd0259375d89', 5, NULL, NULL, NULL, NULL, NULL, '53c94d57-2480-dbf2-683b-60ab1ce20024', 1, '2020-07-30 10:31:05.577147', '2020-07-30 10:31:05.577147'); INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('a57742b1-b03c-21d1-54b1-bd0259375d89', 6, NULL, NULL, NULL, NULL, NULL, '4c55ddc7-5992-6f6f-350e-c0cae58535fc', 1, '2020-07-30 10:31:05.577147', '2020-07-30 10:31:05.577147'); INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('a57742b1-b03c-21d1-54b1-bd0259375d89', 7, NULL, NULL, NULL, NULL, NULL, '663ec6dd-7d7b-c985-a1a7-6642b1b71cce', 1, '2020-07-30 10:31:05.577147', '2020-07-30 10:31:05.577147'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('c2e086cf-32d7-7f1c-cff1-09c13172ade3', 2, '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', '609d48d3-5bbe-ef10-bbde-78264afa443c', 1, '2020-08-04 07:54:51.907014', '2020-08-04 07:54:51.907014'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('c2e086cf-32d7-7f1c-cff1-09c13172ade3', 1, NULL, NULL, NULL, NULL, NULL, '74f4debd-ce7e-7a9e-bd0c-043506cf950d', 1, '2020-08-04 07:55:56.71347', '2020-08-04 07:54:51.907014'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('c2e086cf-32d7-7f1c-cff1-09c13172ade3', 3, '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', '10f9a7bd-9983-3146-3350-69744e84494b', 1, '2020-08-04 07:56:06.102232', '2020-08-04 07:54:51.907014'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('c2e086cf-32d7-7f1c-cff1-09c13172ade3', 7, '11:00:00', '14:30:00', NULL, NULL, NULL, 'e7a2b080-08dc-0664-2d5e-43b12e12f68a', 1, '2020-08-04 07:57:02.006503', '2020-08-04 07:54:51.907014'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('c2e086cf-32d7-7f1c-cff1-09c13172ade3', 6, '18:30:00', '23:00:00', NULL, NULL, NULL, '4a81c8ef-cc7e-8e33-2436-6b00b95aaaef', 1, '2020-08-04 07:57:27.014463', '2020-08-04 07:54:51.907014'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('c2e086cf-32d7-7f1c-cff1-09c13172ade3', 4, '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', '2a9b6e73-ef35-33eb-32c8-da6f0a27ce09', 1, '2020-08-04 07:57:44.406855', '2020-08-04 07:54:51.907014'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('c2e086cf-32d7-7f1c-cff1-09c13172ade3', 5, '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', '1e7ee49a-6ec4-3bef-33e1-bbadcbc6e175', 1, '2020-08-04 07:57:55.113324', '2020-08-04 07:54:51.907014'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('6299c4b9-50e4-dffd-5560-eb13a4281882', 1, '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', '0284eb69-e56a-dbb6-41d4-f68ee7d51cd8', 1, '2020-08-04 08:23:14.656775', '2020-08-04 08:23:14.656775'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('6299c4b9-50e4-dffd-5560-eb13a4281882', 2, NULL, NULL, NULL, NULL, NULL, 'b9082459-4ca7-eb3b-21e9-f7e2812440dd', 1, '2020-08-04 08:23:14.656775', '2020-08-04 08:23:14.656775'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('6299c4b9-50e4-dffd-5560-eb13a4281882', 5, '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', 'e0abc9c9-707c-3ab6-d950-816105ac4693', 1, '2020-08-04 08:23:14.656775', '2020-08-04 08:23:14.656775'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('6299c4b9-50e4-dffd-5560-eb13a4281882', 6, '17:30:00', '22:00:00', NULL, NULL, NULL, 'c4a09b01-190b-305d-f9e1-b3092d886d26', 1, '2020-08-04 08:25:31.729214', '2020-08-04 08:23:14.656775'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('6299c4b9-50e4-dffd-5560-eb13a4281882', 4, '11:00:00', '14:30:00', NULL, NULL, NULL, 'fd6939ab-842f-1e9d-c516-ae9dbb94d07e', 1, '2020-08-04 08:24:17.530847', '2020-08-04 08:23:14.656775'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('6299c4b9-50e4-dffd-5560-eb13a4281882', 7, '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', '87b98c5a-81bf-967c-b408-8f4ba1d0893a', 1, '2020-08-04 08:24:58.335778', '2020-08-04 08:23:14.656775'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('ae74b950-9b80-caa6-3ffd-38c7a465552b', 4, NULL, NULL, NULL, NULL, NULL, 'ede9e66c-5d0d-c4e5-3811-caad723407fa', 1, '2020-08-04 08:29:36.26574', '2020-08-04 08:29:36.26574'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('ae74b950-9b80-caa6-3ffd-38c7a465552b', 5, NULL, NULL, NULL, NULL, NULL, '4b3e838b-568e-fa34-286c-1839153da775', 1, '2020-08-04 08:29:36.26574', '2020-08-04 08:29:36.26574'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('ae74b950-9b80-caa6-3ffd-38c7a465552b', 6, NULL, NULL, NULL, NULL, NULL, '2a4e4bea-517c-b261-0eb6-93836fbee2ec', 1, '2020-08-04 08:29:36.26574', '2020-08-04 08:29:36.26574'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('ae74b950-9b80-caa6-3ffd-38c7a465552b', 7, NULL, NULL, NULL, NULL, NULL, 'c432f1ba-902e-5e01-d8a2-a271ce586e86', 1, '2020-08-04 08:29:36.26574', '2020-08-04 08:29:36.26574'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('ae74b950-9b80-caa6-3ffd-38c7a465552b', 1, '11:00:00', '15:00:00', NULL, NULL, NULL, '29a69f7d-452f-988b-422a-be33f6012a88', 1, '2020-08-04 08:30:00.648246', '2020-08-04 08:29:36.26574'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('ae74b950-9b80-caa6-3ffd-38c7a465552b', 2, '11:00:00', '15:00:00', NULL, NULL, NULL, '99d95133-1716-a418-2f8d-a236a09f8fa8', 1, '2020-08-04 08:30:21.088603', '2020-08-04 08:29:36.26574'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('ae74b950-9b80-caa6-3ffd-38c7a465552b', 3, '10:30:00', '15:00:00', NULL, NULL, NULL, '88f3d788-0a93-00ac-f684-0f8bcdc70c1e', 1, '2020-08-04 08:30:46.135016', '2020-08-04 08:29:36.26574'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('f0e63e3e-e55e-c80d-99fc-b4bfe6fa3312', 3, NULL, NULL, NULL, NULL, NULL, 'e760ca18-33c2-1bfd-fd07-8d2b83214f25', 1, '2020-08-04 08:31:44.522208', '2020-08-04 08:31:44.522208'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('f0e63e3e-e55e-c80d-99fc-b4bfe6fa3312', 5, '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', '8e51e001-0003-532e-18c6-82114d62de6d', 1, '2020-08-04 08:31:44.522208', '2020-08-04 08:31:44.522208'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('f0e63e3e-e55e-c80d-99fc-b4bfe6fa3312', 6, '17:30:00', '22:00:00', NULL, NULL, NULL, '62f1a5ab-8caa-8c63-508c-1b80ff4c3024', 1, '2020-08-04 08:31:44.522208', '2020-08-04 08:31:44.522208'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('f0e63e3e-e55e-c80d-99fc-b4bfe6fa3312', 1, '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', '7f89b852-27fc-bea3-8c69-b6996b8358a9', 1, '2020-08-04 08:32:54.45253', '2020-08-04 08:31:44.522208'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('7172f97b-38d0-ae8e-3a38-1d893e34b56f', 5, '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', 'c45123f2-9071-7373-060d-2222eef16882', 1, '2020-08-04 08:43:40.873885', '2020-08-04 08:41:02.137229'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('f0e63e3e-e55e-c80d-99fc-b4bfe6fa3312', 2, '11:00:00', '14:30:00', NULL, NULL, NULL, '1a0d876d-3326-3a50-d6e3-7b7c404710cc', 1, '2020-08-04 08:33:40.994994', '2020-08-04 08:31:44.522208'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('f0e63e3e-e55e-c80d-99fc-b4bfe6fa3312', 4, '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', 'a055c4fd-830e-9438-af16-95d891f53971', 1, '2020-08-04 08:34:17.098839', '2020-08-04 08:31:44.522208'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('f0e63e3e-e55e-c80d-99fc-b4bfe6fa3312', 7, '10:30:00', '14:30:00', '18:30:00', '23:30:00', '01:00:00', '55945274-d12e-ba3c-8095-306caafa6cba', 1, '2020-08-04 08:36:32.000204', '2020-08-04 08:31:44.522208'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('267f424d-9716-cf98-3bd0-c6715257c3a0', 1, '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', 'cd14f7d9-9073-2410-a5dc-f366568fee59', 1, '2020-08-04 08:38:34.053308', '2020-08-04 08:38:34.053308'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('267f424d-9716-cf98-3bd0-c6715257c3a0', 2, '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', '486172e4-7975-da75-b255-ebbfe38d59ea', 1, '2020-08-04 08:38:34.053308', '2020-08-04 08:38:34.053308'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('267f424d-9716-cf98-3bd0-c6715257c3a0', 3, '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', '1d3c6a5a-b732-2f45-d69d-61b088e4b234', 1, '2020-08-04 08:38:34.053308', '2020-08-04 08:38:34.053308'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('267f424d-9716-cf98-3bd0-c6715257c3a0', 6, '17:30:00', '22:30:00', NULL, NULL, '00:30:00', '76b202b1-5763-43d8-ff55-b28d2bcc2ed8', 1, '2020-08-04 08:38:34.053308', '2020-08-04 08:38:34.053308'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('267f424d-9716-cf98-3bd0-c6715257c3a0', 4, '11:00:00', '14:30:00', NULL, NULL, NULL, '6fffa25f-a5ea-38e7-7889-b37a7b1ef3ae', 1, '2020-08-04 08:39:33.500741', '2020-08-04 08:38:34.053308'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('267f424d-9716-cf98-3bd0-c6715257c3a0', 5, '10:30:00', '14:30:00', '17:30:00', '22:30:00', '01:00:00', 'f7da87ea-eb44-7979-a160-6a0db8786e8c', 1, '2020-08-04 08:39:50.726572', '2020-08-04 08:38:34.053308'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('267f424d-9716-cf98-3bd0-c6715257c3a0', 7, NULL, NULL, NULL, NULL, NULL, '69e0336f-0dd1-f85a-79cf-f0f01fa7ee2f', 1, '2020-08-04 08:40:10.724376', '2020-08-04 08:38:34.053308'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('7172f97b-38d0-ae8e-3a38-1d893e34b56f', 1, NULL, NULL, NULL, NULL, NULL, '28181259-66c4-029b-8693-add2927650b4', 1, '2020-08-04 08:41:02.137229', '2020-08-04 08:41:02.137229'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('7172f97b-38d0-ae8e-3a38-1d893e34b56f', 3, '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', 'ce3f9d61-5e1a-82e6-79f6-6c070a5d9bf4', 1, '2020-08-04 08:41:02.137229', '2020-08-04 08:41:02.137229'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('7172f97b-38d0-ae8e-3a38-1d893e34b56f', 4, '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', '7d134bbb-a7b1-39a1-6dda-ee06d422987e', 1, '2020-08-04 08:41:02.137229', '2020-08-04 08:41:02.137229'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('7172f97b-38d0-ae8e-3a38-1d893e34b56f', 2, '10:30:00', '14:30:00', '17:00:00', '22:00:00', '01:00:00', 'fa4d25f7-7f4a-2029-aeac-a49f24027936', 1, '2020-08-04 08:42:45.911468', '2020-08-04 08:41:02.137229'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('7172f97b-38d0-ae8e-3a38-1d893e34b56f', 6, '17:30:00', '22:00:00', NULL, NULL, NULL, '42d89643-e447-ee4c-07a8-5a0b54ad14ea', 1, '2020-08-04 08:44:45.080048', '2020-08-04 08:41:02.137229'); +INSERT INTO portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) VALUES ('7172f97b-38d0-ae8e-3a38-1d893e34b56f', 7, '11:00:00', '14:30:00', NULL, NULL, NULL, '20cd0b95-1c0e-dbe7-f39b-c3a282a22b7f', 1, '2020-08-04 08:45:23.784369', '2020-08-04 08:41:02.137229'); -- diff --git a/dev/db/potlu_db.portanova.pg.full.sql b/dev/db/potlu_db.portanova.pg.full.sql index f4c3f3da..84bb5b8d 100644 --- a/dev/db/potlu_db.portanova.pg.full.sql +++ b/dev/db/potlu_db.portanova.pg.full.sql @@ -68,14 +68,16 @@ CREATE FUNCTION portanova.add_staff() RETURNS text AS $$ declare newuuid text; - stgrid text; + stgrid text; + iddef_workplan text; begin + select id into iddef_workplan from portanova.workplans where isdefault = true; select id into stgrid from portanova.staffgroups where isdefault is null; if (stgrid is null) then select id into stgrid from portanova.staffgroups limit 1; end if; insert into portanova.staff (id_staffgroup) values (stgrid) returning id into newuuid; - insert into portanova.staffcontract (id_staff,startdate ) values (newuuid,CURRENT_DATE); + insert into portanova.staffcontract (id_staff,startdate,id_contractworkplan) values (newuuid,CURRENT_DATE,iddef_workplan); return newuuid; end; $$; @@ -93,8 +95,10 @@ CREATE FUNCTION portanova.add_workplan(pwkname text) RETURNS text declare newuuid text; begin - insert into portanova.workplans (workplan) values (pwkname) returning id into newuuid; - perform portanova.add_workplanweek(newuuid); + insert into portanova.workplans (workplan) values (pwkname) returning id into newuuid; + for cntwd in 1..7 LOOP + insert into portanova.workplandays (id_workplan,weeknum,weekday) values (newuuid,1,cntwd); + end loop; return newuuid; end; $$; @@ -102,33 +106,6 @@ $$; ALTER FUNCTION portanova.add_workplan(pwkname text) OWNER TO potlu_user; --- --- Name: add_workplanweek(text); Type: FUNCTION; Schema: portanova; Owner: potlu_user --- - -CREATE FUNCTION portanova.add_workplanweek(pid_workplan text) RETURNS boolean - LANGUAGE plpgsql - AS $$ -declare - maxweeknum int4; - cntwd int4; -begin - select max(weeknum) into maxweeknum from portanova.workplandays where id_workplan=pid_workplan; - if maxweeknum is null then - maxweeknum := 1; - else - maxweeknum := maxweeknum + 1; - end if; - for cntwd in 1..7 LOOP - insert into portanova.workplandays (id_workplan,weeknum,weekday) values (pid_workplan,maxweeknum,cntwd); - end loop; - return true; -end; -$$; - - -ALTER FUNCTION portanova.add_workplanweek(pid_workplan text) OWNER TO potlu_user; - -- -- Name: clean_staffperiodday(json); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- @@ -194,6 +171,46 @@ $$; ALTER FUNCTION portanova.clone_staffperiodweekdayhours(vcopyid text, vpasteids json) OWNER TO potlu_user; +-- +-- Name: del_staff(text); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.del_staff(pid_staff text) RETURNS boolean + LANGUAGE plpgsql + AS $$ +begin + update portanova.staff set isdeleted = true; + return true; +end; +$$; + + +ALTER FUNCTION portanova.del_staff(pid_staff text) OWNER TO potlu_user; + +-- +-- Name: del_staffcontract(text); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.del_staffcontract(pid_staffcontract text) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + idstaff text; + rps record; +begin + select id_staff into idstaff from portanova.staffcontract where id=pid_staffcontract; + delete from portanova.staffcontract where id=pid_staffcontract; + for rps in select id from portanova.reportperiod + loop + perform portanova.set_staffperioddays(rps.id, idstaff); + end loop; + return true; +end; +$$; + + +ALTER FUNCTION portanova.del_staffcontract(pid_staffcontract text) OWNER TO potlu_user; + -- -- Name: delete_workplan(text); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- @@ -204,7 +221,7 @@ CREATE FUNCTION portanova.delete_workplan(pid_workplan text) RETURNS boolean declare begin delete from portanova.workplandays where id_workplan=pid_workplan; - update portanova.staffcontract set id_worplan=null where id_workplan=pid_workplan; + --update portanova.staffcontract set id_worplan=null where id_workplan=pid_workplan; delete from portanova.workplans where id=pid_workplan; return true; end; @@ -248,7 +265,7 @@ CREATE FUNCTION portanova.getperiod_staffcontract(pid text) RETURNS TABLE(id tex begin select prd.startdate as prdstart,prd.enddate as prdend into pstart,pend from portanova.reportperiod prd where prd.id=pid; return QUERY -select sc.id,sc.id_staff, +select sc.id,sc.id_staff,sc.weekdays,sc.weekhours, sc.weekhours/sc.weekdays as wdcontracthours, case when sc.startdate < pstart then pstart else sc.startdate end as startdate, case when sc.enddate is null then pend when sc.enddate > pend then pend else sc.enddate end as enddate from portanova.staffcontract sc @@ -262,46 +279,31 @@ $$; ALTER FUNCTION portanova.getperiod_staffcontract(pid text) OWNER TO potlu_user; -- --- Name: getperiod_staffcontract(date, date); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- Name: getperiod_staffcontractdata(text); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- -CREATE FUNCTION portanova.getperiod_staffcontract(pstart date, pend date) RETURNS TABLE(id text, id_staff text, startdate date, enddate date) +CREATE FUNCTION portanova.getperiod_staffcontractdata(pid text) RETURNS TABLE(id text, id_staff text, startdate date, enddate date, weekdays integer, weekhours interval, wdcontracthours interval) LANGUAGE plpgsql AS $$ - BEGIN + declare + pstart date; + pend date; + begin + select prd.startdate as prdstart,prd.enddate as prdend into pstart,pend from portanova.reportperiod prd where prd.id=pid; return QUERY -select id,id_staff,case when startdate < pstart then pstart else startdate end as startdate,case when enddate is null then pend when enddate > pend then pend else enddate end as enddate -from portanova.staffcontract where startdate<= pend and (enddate is null or enddate >= pstart) order by id_staff,startdate,enddate; +select sc.id,sc.id_staff, +case when sc.startdate < pstart then pstart else sc.startdate end as startdate, +case when sc.enddate is null then pend when sc.enddate > pend then pend else sc.enddate end as enddate +,sc.weekdays,sc.weekhours, sc.weekhours/case when sc.weekdays = 0 or sc.weekdays is null then 7 else sc.weekdays end as wdcontracthours +from portanova.staffcontract sc +join portanova.staff st on st.id=sc.id_staff +where sc.startdate<= pend and (sc.enddate is null or sc.enddate >= pstart) and st.isdeleted is null +order by sc.id_staff,sc.startdate,sc.enddate; END; $$; -ALTER FUNCTION portanova.getperiod_staffcontract(pstart date, pend date) OWNER TO potlu_user; - --- --- Name: onchange_reportperiod(text); Type: FUNCTION; Schema: portanova; Owner: potlu_user --- - -CREATE FUNCTION portanova.onchange_reportperiod(pid_period text) RETURNS boolean - LANGUAGE plpgsql - AS $$ -declare - prdstart date; - prdend date; - strec record; -begin - select startdate,enddate into prdstart,prdend from portanova.reportperiod where id=pid_period; - for strec in select id_staff,startdate,enddate from portanova.staffcontract where startdate <= prdend and (enddate is null or enddate >= prdstart) group by id_staff - loop - --raise notice 'Start Update period % staffworkplan for % from % to %',pid_period,strec.id_staff,strec.startdate,strec.enddate; - perform portanova.update_staffworkplan(pid_period,strec.id_staff); - end loop; - return true; -end; -$$; - - -ALTER FUNCTION portanova.onchange_reportperiod(pid_period text) OWNER TO potlu_user; +ALTER FUNCTION portanova.getperiod_staffcontractdata(pid text) OWNER TO potlu_user; -- -- Name: refresh_periods(); Type: FUNCTION; Schema: portanova; Owner: potlu_user @@ -333,7 +335,7 @@ CREATE FUNCTION portanova.replace_staffperiodweekdayhours(vworkplanid text, vkee AS $$ declare rcopy record; - rupd record; + begin for rcopy in select * from portanova.workplandays w where id_workplan=vworkplanid loop @@ -347,11 +349,8 @@ CREATE FUNCTION portanova.replace_staffperiodweekdayhours(vworkplanid text, vkee update portanova.staffreportperioddays set recuperationhours=null,id_recuperationtype=null where id in (select value from json_array_elements_text(vreplaceids) aa) and date_part('isodow',daydate)::INT4=rcopy.weekday; end if; - end loop; - for rupd in select id_reportperiod,id_staff from portanova.staffreportperioddays where id in (select value from json_array_elements_text(vreplaceids) aa) group by id_reportperiod, id_staff - loop - perform portanova.update_staff_in_period(rupd.id_reportperiod, rupd.id_staff); - end loop; + end loop; + perform portanova.update_periodsums_byid(vreplaceids); RETURN true; END; $$; @@ -359,63 +358,6 @@ $$; ALTER FUNCTION portanova.replace_staffperiodweekdayhours(vworkplanid text, vkeepvac boolean, vkeeprec boolean, vreplaceids json) OWNER TO potlu_user; --- --- Name: set_periodday_sums(text); Type: FUNCTION; Schema: portanova; Owner: potlu_user --- - -CREATE FUNCTION portanova.set_periodday_sums(pid_periodday text) RETURNS text - LANGUAGE plpgsql - AS $$ -declare - stw record; - dt1 interval := '00:00:00'::interval; - dt2 interval := '00:00:00'::interval; - dp interval := '00:00:00'::interval; - cworkhours interval := '00:00:00'::interval; - cvacancyhours interval := '00:00:00'::interval; - crecuperationhours interval := '00:00:00'::interval; - cdayhours interval := '00:00:00'::interval; - cinterruptionhours interval := '00:00:00'::interval; -begin - - select * into stw from portanova.staffreportperioddays where id=pid_periodday; - if stw.timestart1 is not null and stw.timeend1 is not null then - dt1 := stw.timeend1-stw.timestart1; - end if; - if stw.timestart2 is not null and stw.timeend2 is not null then - dt2 := stw.timeend2-stw.timestart2; - end if; - if stw.timepause is not null then - dp := stw.timepause; - end if; - cworkhours := (dt1+dt2)-dp; - if (dt1 > '00:00:00'::interval and dt2 > '00:00:00'::interval) then - cinterruptionhours := stw.timestart2 -stw.timeend1; - end if; - if stw.vacancyhours is not null then - if stw.vacancyhours <= stw.contracthours then - cvacancyhours := stw.vacancyhours; - else - cvacancyhours := stw.contracthours; - end if; - end if; - if stw.recuperationhours is not null then - if stw.recuperationhours <= stw.contracthours then - crecuperationhours := stw.recuperationhours; - else - crecuperationhours := stw.contracthours; - end if; - end if; - cdayhours := cworkhours+cvacancyhours+crecuperationhours; - - update portanova.staffreportperioddays set workhours=cworkhours,interruptionhours=cinterruptionhours,dayhours=cdayhours,vacancyhours=cvacancyhours,recuperationhours=crecuperationhours where id=pid_periodday; - return pid_periodday; -end; -$$; - - -ALTER FUNCTION portanova.set_periodday_sums(pid_periodday text) OWNER TO potlu_user; - -- -- Name: set_staffperiod(text, text); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- @@ -464,12 +406,12 @@ CREATE FUNCTION portanova.set_staffperiod_sums(pid_period text, pid_staff text) weekrec record; BEGIN for weekrec in select id_staff,id_reportperiod, -sum(contracthours) as contracthours, -sum(workhours) as workhours, -sum(vacancyhours) as vacancyhours, -sum(recuperationhours) as recuperationhours, -sum(diffhours) as hoursdiff, -sum(totalhours) as totalhours +sum(case when contracthours is not null then contracthours else '00:00:00'::interval end) as contracthours, +sum(case when workhours is not null then workhours else '00:00:00'::interval end) as workhours, +sum(case when vacancyhours is not null then vacancyhours else '00:00:00'::interval end) as vacancyhours, +sum(case when recuperationhours is not null then recuperationhours else '00:00:00'::interval end) as recuperationhours, +sum(case when diffhours is not null then diffhours else '00:00:00'::interval end) as hoursdiff, +sum(case when totalhours is not null then totalhours else '00:00:00'::interval end) as totalhours from portanova.staffreportperiodweeks where id_staff=pid_staff and id_reportperiod=pid_period group by id_reportperiod,id_staff loop update portanova.staffreportperiod set contracthours=weekrec.contracthours, @@ -489,6 +431,74 @@ $$; ALTER FUNCTION portanova.set_staffperiod_sums(pid_period text, pid_staff text) OWNER TO potlu_user; +-- +-- Name: set_staffperiodday_sums(text); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.set_staffperiodday_sums(pid_periodday text) RETURNS text + LANGUAGE plpgsql + AS $$ +declare + stw record; + dt1 interval := '00:00:00'::interval; + dt2 interval := '00:00:00'::interval; + dp interval := '00:00:00'::interval; + cworkhours interval := '00:00:00'::interval; + --cvacancyhours interval := '00:00:00'::interval; + --crecuperationhours interval := '00:00:00'::interval; + cdayhours interval := '00:00:00'::interval; + cinterruptionhours interval := '00:00:00'::interval; + ccontracthours interval := '00:00:00'::interval; +begin + --raise notice 'set Period Day: %s', pid_periodday; + select * into stw from portanova.staffreportperioddays where id=pid_periodday; + if stw.timestart1 is not null and stw.timeend1 is not null then + if stw.timeend1 < stw.timestart1 then + dt1 := '24:00:00'::interval + stw.timeend1::interval - stw.timestart1::interval; + else + dt1 := stw.timeend1-stw.timestart1; + end if; + end if; + if stw.timestart2 is not null and stw.timeend2 is not null then + if stw.timeend2 < stw.timestart2 then + dt2 := '24:00:00'::interval + stw.timeend2::interval - stw.timestart2::interval; + else + dt2 := stw.timeend2-stw.timestart2; + end if; + end if; + if stw.timepause is not null then + dp := stw.timepause; + end if; + cworkhours := (dt1+dt2)-dp; + if (dt1 > '00:00:00'::interval and dt2 > '00:00:00'::interval) then + cinterruptionhours := stw.timestart2 - stw.timeend1; + end if; + /*if stw.vacancyhours is not null then + if stw.vacancyhours <= stw.contracthours then + cvacancyhours := stw.vacancyhours; + else + cvacancyhours := stw.contracthours; + end if; + end if;*/ + /*if stw.recuperationhours is not null then + if stw.recuperationhours <= stw.contracthours then + crecuperationhours := stw.recuperationhours; + else + crecuperationhours := stw.contracthours; + end if; + end if;*/ + cdayhours := cworkhours::interval+coalesce(stw.vacancyhours::interval,'00:00:00'::interval)-coalesce(stw.recuperationhours::interval,'00:00:00'::interval); + if cdayhours > '00:00:00'::interval then + ccontracthours := stw.wdcontracthours; + end if; + update portanova.staffreportperioddays set workhours=cworkhours,interruptionhours=cinterruptionhours,dayhours=cdayhours,contracthours=ccontracthours where id=pid_periodday; + return pid_periodday; +end; +$$; + + +ALTER FUNCTION portanova.set_staffperiodday_sums(pid_periodday text) OWNER TO potlu_user; + -- -- Name: set_staffperioddays(text, text); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- @@ -498,25 +508,34 @@ CREATE FUNCTION portanova.set_staffperioddays(pid_period text, pid_staff text) R AS $$ declare cont record; - prd record; + prd record; + pday record; cdate date; cid_staffworkplan text; begin select * into prd from portanova.reportperiod where id= pid_period; - for cont in select * from portanova.getperiod_staffcontract(pid_period) where id_staff=pid_staff + for cont in select * from portanova.getperiod_staffcontractdata(pid_period) where id_staff=pid_staff loop - cdate := cont.startdate; - while cdate <= cont.enddate loop - if cdate between prd.startdate and prd.enddate then - insert into portanova.staffreportperioddays (id_staff,daydate,id_reportperiod) values ( pid_staff , cdate , pid_period) - on conflict on constraint uniq_staffworplan_staffday do nothing; + cdate := cont.startdate; + + while cdate <= cont.enddate loop + --raise notice 'cdate %: % <=> %',cdate, prd.startdate,prd.enddate; + if cdate between prd.startdate and prd.enddate then + --raise notice 'insert %: % <=> %',cdate, prd.startdate,prd.enddate; + insert into portanova.staffreportperioddays (id_staff,daydate,id_reportperiod,wdcontracthours ) values ( pid_staff , cdate , pid_period,cont.wdcontracthours) + on conflict on constraint uniq_staffworplan_staffday do update set wdcontracthours=cont.wdcontracthours; end if; cdate = cdate + interval '1 day'; end loop; end loop; perform portanova.verify_perioddays(pid_period,pid_staff); - perform portanova.set_setstaffperiodweeks(pid_period,pid_staff); + for pday in select id from portanova.staffreportperioddays where id_staff=pid_staff and pid_period=pid_period + loop + perform portanova.set_staffperiodday_sums(pday.id); + end loop; + raise notice 'start set_staffperiodweeks % % ',pid_period,pid_staff; + perform portanova.set_staffperiodweeks(pid_period,pid_staff); return true; end; $$; @@ -532,27 +551,48 @@ CREATE FUNCTION portanova.set_staffperiodweek_sums(pid_reportperiod text, pid_st LANGUAGE plpgsql AS $$ declare - wkcon record; + sweek record; tmpcontrhours interval; freedays int4 := 0; begin - -- INSERT Contract data into Week -for wkcon in select srpw.id,srpw.calweek,srpw.weekstart,srpw.calyear,rp.startdate as periodstart,psc.startdate,rp.enddate as periodend,psc.enddate,psc.weekhours,psc.weekdays,srpw.contractdays,srpw.caldays,srpw.diffhours,srpw.contracthours,srpw.totalhours,psc.defaultfreedays -from portanova.staffreportperiodweeks srpw -left join (select xa.id_staff,xa.startdate,xa.enddate,xa.weekhours,xa.weekdays,xa.defaultfreedays from portanova.getperiod_staffcontract(pid_reportperiod) xa where xa.id_staff=pid_staff) psc -on (srpw.weekstart between date_trunc('week',psc.startdate) and psc.enddate) -left join portanova.reportperiod rp on (srpw.id_reportperiod =rp.id) -where srpw.id_reportperiod=pid_reportperiod and srpw.id_staff=pid_staff -loop - --raise notice 'id=%',wkcon; - if wkcon.defaultfreedays is not null then + +for sweek in +select srpd.id_staff,srpd.id_reportperiod,date(date_trunc('week',srpd.daydate)) as weekstart,date_part('week',srpd.daydate) as calweek, +date_part('isoyear',srpd.daydate) as calyear, +sum(case when srpd.workhours is null then '00:00:00'::interval else srpd.workhours::interval end) as workhours, +'00:00:00'::interval as trackedhours, +sum(case when srpd.vacancyhours is null then '00:00:00'::interval else srpd.vacancyhours::interval end ) as vacancyhours, +sum(case when srpd.recuperationhours is null then '00:00:00'::interval else srpd.recuperationhours::interval end) as recuperationhours, +sum(case when srpd.dayhours is null then '00:00:00'::interval else srpd.dayhours::interval end) as totalhours, +sum(case when srpd.workhours != '00:00:00'::time then 1 else 0 end) as workdays, +sum(case when srpd.contracthours is null then '00:00:00'::interval else srpd.contracthours::interval end) as contracthours +from portanova.staffreportperioddays srpd +join portanova.reportperiod rp on (rp.id=srpd.id_reportperiod) +where srpd.id_reportperiod =pid_reportperiod and srpd.id_staff=pid_staff +group by weekstart,calweek,calyear,srpd.id_staff,srpd.id_reportperiod +loop + update portanova.staffreportperiodweeks set + workhours=sweek.workhours, + trackedhours=sweek.trackedhours, + vacancyhours=sweek.vacancyhours, + recuperationhours=sweek.recuperationhours, + diffhours=case when sweek.contracthours is null or sweek.contracthours::interval='00:00:00'::interval then null else sweek.totalhours-sweek.contracthours end, + totalhours=sweek.totalhours, + workdays=sweek.workdays, + contracthours=sweek.contracthours + where id_staff=sweek.id_staff and id_reportperiod=sweek.id_reportperiod and weekstart=sweek.weekstart; +end loop; + --raise notice 'UPDATE WEEK SUMS %',sweek; + /**/ + /*if wkcon.defaultfreedays is not null then freedays = json_array_length(wkcon.defaultfreedays); end if; wkcon.contracthours=wkcon.weekhours; wkcon.contractdays=wkcon.weekdays; if wkcon.calweek= date_part('week',wkcon.periodstart)::int4 and wkcon.calyear= date_part('isoyear',wkcon.periodstart)::int4 then wkcon.contracthours = wkcon.contracthours - ((wkcon.weekhours/wkcon.weekdays) * (wkcon.startdate-wkcon.periodstart)::int4); - end if; + end if;*/ + --if wkcon.startdate > wkcon.periodstart then -- wkcon.contractdays = wkcon.contractdays-(wkcon.startdate-wkcon.periodstart)::int4; -- wkcon.contracthours = (wkcon.weekhours/wkcon.weekdays) * wkcon.contractdays; @@ -563,12 +603,12 @@ loop --end if; - wkcon.diffhours = wkcon.totalhours-wkcon.contracthours; - raise notice 'contractdays: % contracthours: % totalhours: % diffhours: %',wkcon.contractdays,wkcon.contracthours,wkcon.totalhours,wkcon.diffhours; + /*wkcon.diffhours = wkcon.totalhours-wkcon.contracthours; + raise notice 'contractdays: % contracthours: % totalhours: % diffhours: %',wkcon.contractdays,wkcon.contracthours,wkcon.totalhours,wkcon.diffhours;*/ --raise notice 'id=% cdays=% chours=% diffhours=%',wkcon.id,wkcon.contractdays,wkcon.contracthours,wkcon.diffhours; - update portanova.staffreportperiodweeks set contracthours=wkcon.contracthours,contractdays=wkcon.contractdays,diffhours=wkcon.diffhours where id=wkcon.id; -end loop; + + return true; end; @@ -589,31 +629,26 @@ declare wkcon record; begin --INSERT DAY DATA into WEEK - for wkpd in select id_staff,id_reportperiod,calyear,calweek,weekstart, -coalesce(sum(workhours),'00:00:00') as workhours , -coalesce(sum(vacancyhours),'00:00:00') as vacancyhours , -coalesce(sum(recuperationhours) ,'00:00:00' ) as recuperationhours , -coalesce(sum(dayhours),'00:00:00') as totalhours, -coalesce(sum(contracthours),'00:00:00') as contracthours, -count(wdcontracthours) as caldays -from ( -select swp.id,swp.id_reportperiod,swp.id_staff, -date_part('isoyear',swp.daydate) as calyear, -date_part('week',swp.daydate) as calweek, -date(date_trunc('week',swp.daydate)) as weekstart, -swp.workhours, -swp.contracthours, -swp.recuperationhours, -swp.dayhours, -swp.vacancyhours, -swp.wdcontracthours -from portanova.staffreportperioddays swp -where swp.id_reportperiod= pid_reportperiod and swp.id_staff=pid_staff) wkwp group by id_staff,id_reportperiod,calyear,calweek,weekstart - loop + for wkpd in select srpd.id_staff,srpd.id_reportperiod,date(date_trunc('week',srpd.daydate)) as weekstart,date_part('week',srpd.daydate) as calweek, +date_part('isoyear',srpd.daydate) as calyear, +coalesce(sum(srpd.workhours::interval),'00:00:00'::interval) as workhours, +coalesce(sum('00:00:00'::interval),'00:00:00'::interval) as trackedhours, +coalesce(sum(srpd.vacancyhours::interval),'00:00:00'::interval) as vacancyhours, +coalesce(sum(srpd.recuperationhours::interval),'00:00:00'::interval) as recuperationhours, +coalesce(sum(srpd.dayhours::interval),'00:00:00'::interval) as totalhours, +sum(case when srpd.workhours != '00:00:00'::time then 1 else 0 end) as workdays, +coalesce(sum(contracthours::interval),'00:00:00'::interval) as contracthours +from portanova.staffreportperioddays srpd +join portanova.reportperiod rp on (rp.id=srpd.id_reportperiod) +where srpd.id_reportperiod =pid_reportperiod and srpd.id_staff=pid_staff +group by weekstart,calweek,calyear,srpd.id_staff,srpd.id_reportperiod + loop + raise notice 'CHECK WEEK % % ',wkpd.calweek,wkpd.calyear; --raise notice 'id_staff: % id_period: % calweek: % calyear: %',pid_staff,pid_reportperiod,wkpd.calweek,wkpd.calyear; - insert into portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, workhours,vacancyhours, recuperationhours, weekstart,totalhours,caldays,contracthours,diffhours) - VALUES(wkpd.id_staff, wkpd.id_reportperiod, wkpd.calyear, wkpd.calweek, wkpd.workhours, wkpd.vacancyhours, wkpd.recuperationhours, wkpd.weekstart,wkpd.totalhours,wkpd.caldays,wkpd.contracthours,wkpd.contracthours-wkpd.totalhours) - on conflict on constraint uniq_staffweekplan_cal do update set workhours=wkpd.workhours, vacancyhours=wkpd.vacancyhours, recuperationhours=wkpd.recuperationhours,totalhours=wkpd.totalhours,caldays=wkpd.caldays,contracthours=wkpd.contracthours,diffhours=wkpd.contracthours-wkpd.totalhours; + insert into portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, workhours,vacancyhours, recuperationhours, weekstart,totalhours,workdays,contracthours,diffhours) + VALUES(wkpd.id_staff, wkpd.id_reportperiod, wkpd.calyear, wkpd.calweek, wkpd.workhours, wkpd.vacancyhours, wkpd.recuperationhours, wkpd.weekstart,wkpd.totalhours,wkpd.workdays,wkpd.contracthours,wkpd.contracthours-wkpd.totalhours) + on conflict on constraint uniq_staffweekplan_cal do nothing; + perform portanova.set_staffperiodweek_sums(wkpd.id_reportperiod,wkpd.id_staff); end loop; perform portanova.set_staffperiod(pid_reportperiod, pid_staff); @@ -624,40 +659,6 @@ $$; ALTER FUNCTION portanova.set_staffperiodweeks(pid_reportperiod text, pid_staff text) OWNER TO potlu_user; --- --- Name: set_stafftoperioddays(text, text); Type: FUNCTION; Schema: portanova; Owner: potlu_user --- - -CREATE FUNCTION portanova.set_stafftoperioddays(pid_period text, pid_staff text) RETURNS boolean - LANGUAGE plpgsql - AS $$ -declare - cont record; - prd record; - cdate date; - cid_staffworkplan text; -begin - select * into prd from portanova.reportperiod where id= pid_period; - for cont in select * from portanova.getperiod_staffcontract(pid_period) where id_staff=pid_staff - loop - cdate := cont.startdate; - while cdate <= cont.enddate loop - if cdate between prd.startdate and prd.enddate then - insert into portanova.staffreportperioddays (id_staff,daydate,id_reportperiods) values ( pid_staff , cdate , pid_period) - on conflict on constraint uniq_staffworplan_staffday do nothing; - end if; - cdate = cdate + interval '1 day'; - end loop; - - end loop; - perform portanova.verify_perioddays(pid_period,pid_staff); - return true; -end; -$$; - - -ALTER FUNCTION portanova.set_stafftoperioddays(pid_period text, pid_staff text) OWNER TO potlu_user; - -- -- Name: set_stafftoperiodweeks(text, text); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- @@ -727,7 +728,7 @@ begin coalesce(CASE WHEN start2 > end2 and start1 is not null THEN '24:00:00'::time without time zone - (start2 - end2)::time without time zone ELSE end2 - start2 end,'00:00:00'::interval) - coalesce(pause,'00:00:00'::time without time zone)) into xweekhours FROM portanova.workplandays where id_workplan=pid_workplan group by id_workplan ; update portanova.workplans set weekhours = xweekhours, weekdays = wdcnt, freeweekdayslist = freedays::JSON where id=pid_workplan; - update portanova.staffcontract set weekdays= wdcnt, weekhours= xweekhours, defaultfreedays= freedays::JSON where id_contractworkplan=pid_workplan; + --update portanova.staffcontract set weekdays= wdcnt, weekhours= xweekhours, defaultfreedays= freedays::JSON where id_contractworkplan=pid_workplan; return true; end; $$; @@ -748,10 +749,9 @@ CREATE FUNCTION portanova.trg_after_upd_staffcontract() RETURNS trigger dateend date; rp record; begin - raise notice 'After update exec %',new.id; - select id_staff,startdate,enddate from portanova.staffcontract into idstaff,datestart,dateend where id=new.id; - --UPDATE portanova.staffcontract sc SET weekdays = wp.weekdays , weekhours = wp.weekhours,defaultfreedays= wp.freeweekdayslist from portanova.workplans wp where wp.id =sc.id_contractworkplan and sc.id=new.id - --returning id_staff,startdate,enddate into idstaff,datestart,dateend; + raise notice 'After update exec %',new.id; + UPDATE portanova.staffcontract sc SET weekdays = wp.weekdays , weekhours = wp.weekhours,defaultfreedays= wp.freeweekdayslist from portanova.workplans wp where wp.id =sc.id_contractworkplan and sc.id=new.id + returning id_staff,startdate,enddate into idstaff,datestart,dateend; raise notice 'idstaff % startdate % enddate %',idstaff,datestart,dateend; if datestart is not null and dateend is null then for rp in select id from portanova.reportperiod where datestart between startdate and enddate or startdate > datestart @@ -828,6 +828,34 @@ $$; ALTER FUNCTION portanova.update_all_staff_in_period(pid_period text) OWNER TO potlu_user; +-- +-- Name: update_periodsums_byid(json); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.update_periodsums_byid(vdayids json) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + rday record; + rweek record; + rperiod record; +BEGIN + for rday in select id from portanova.staffreportperioddays where id in (select value from json_array_elements_text(vdayids) aa) group by id + loop + perform portanova.set_staffperiodday_sums(rday.id); + end loop; + for rweek in select id_staff,id_reportperiod from portanova.staffreportperioddays where id in (select value from json_array_elements_text(vdayids) aa) group by id_reportperiod,id_staff + loop + perform portanova.set_staffperiodweek_sums(rweek.id_reportperiod,rweek.id_staff); + perform portanova.set_staffperiod_sums(rweek.id_reportperiod,rweek.id_staff); + end loop; + return true; + END; +$$; + + +ALTER FUNCTION portanova.update_periodsums_byid(vdayids json) OWNER TO potlu_user; + -- -- Name: update_staff_in_period(text, text); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- @@ -836,14 +864,16 @@ CREATE FUNCTION portanova.update_staff_in_period(pid_period text, pid_staff text LANGUAGE plpgsql AS $$ declare - staffreportid text; + staffreportid text; + rdays record; begin raise notice 'update staff in period called rp: % st: %',pid_period,pid_staff; if (pid_period is not null and pid_staff is not null) then - insert into portanova.staffreportperiod (id_reportperiod,id_staff) values (pid_period,pid_staff) - on conflict on constraint uniq_staffreportperiod_cal do nothing returning id into staffreportid; - perform portanova.set_stafftoperioddays(pid_period,pid_staff); - perform portanova.set_stafftoperiodweeks(pid_period,pid_staff); + for rdays in select id from portanova.staffreportperioddays where id_staff=pid_staff and id_reportperiod=pid_period + loop + perform portanova.set_staffperiodday_sums(rdays.id); + end loop; + perform portanova.set_staffperiodweek_sums(pid_period,pid_staff); perform portanova.set_staffperiod_sums(pid_period,pid_staff); end if; return true; @@ -877,86 +907,6 @@ $$; ALTER FUNCTION portanova.update_staffreportperiod(pid_reportperiod text, pid_staff text) OWNER TO potlu_user; --- --- Name: update_staffweeksums(text); Type: FUNCTION; Schema: portanova; Owner: potlu_user --- - -CREATE FUNCTION portanova.update_staffweeksums(pid_staffworkplan text) RETURNS void - LANGUAGE plpgsql - AS $$ -declare - wkpl_record record; - wkpltt time without time zone := '00:00:00'::interval; -begin - select - case WHEN timestart1 > timeend1 THEN '24:00:00'::time without time zone - (timestart1 - timeend1)::time without time zone ELSE timeend1 - timestart1 END AS time1, - CASE WHEN timestart2 > timeend2 THEN '24:00:00'::time without time zone - (timestart2 - timeend2)::time without time zone ELSE timeend2 - timestart2 END AS time2, - timepause - into wkpl_record - from portanova.staffworkplan where id= pid_staffworkplan; - - wkpltt := wkpl_record.time1 + wkpl_record.time2 - wkpl_record.timepause::interval; - update portanova.staffworkplan set totaltime=wkpltt where id=pid_staffworkplan; -end; -$$; - - -ALTER FUNCTION portanova.update_staffweeksums(pid_staffworkplan text) OWNER TO potlu_user; - --- --- Name: update_staffworkplan(text, text); Type: FUNCTION; Schema: portanova; Owner: potlu_user --- - -CREATE FUNCTION portanova.update_staffworkplan(pid_period text, pid_staff text) RETURNS boolean - LANGUAGE plpgsql - AS $$ -declare - cont record; - prd record; - cdl record; - cdate date; - edate date; - wday text; - wdayplan record; - cid_staffworkplan text; -begin - select * into prd from portanova.reportperiod where id= pid_period; - for cont in select * from portanova.staffcontract where id_staff= pid_staff and (enddate >= prd.startdate or (enddate is null and startdate <= prd.enddate)) /*order by startdate,enddate nulls last*/ - loop - if cont.enddate is null then - cont.enddate := prd.enddate; - end if; - cdate := cont.startdate; - while cdate <= cont.enddate loop - if cdate between prd.startdate and prd.enddate then - if (cont.id_workplan is not null) then - wday := substr(to_char(cdate,'day'),1,3); - execute 'select ' || wday || '_timestart1 as ts1,' || wday || '_timeend1 as te1,' || wday || '_timestart2 as ts2,' || wday ||'_timeend2 as te2,'|| wday ||'_timepause as tp from portanova.workplans where id=' || cont.id_workplan || ';' into wdayplan; - insert into portanova.staffworkplan (id_staff,daydate,id_reportperiod,timestart1,timeend1,timestart2,timeend2,timepause,contracthours,id_staffgroup,fullweeksplithours) - values (pid_staff,cdate,pid_period,wdayplan.ts1,wdayplan.te1,wdayplan.ts2,wdayplan.te2,wdayplan.tp,cont.weekhours/cont.weekdays,cont.id_staffgroup,cont.weekhours/7) - on conflict on constraint uniq_staffworplan_staffday do update set id_reportperiod = pid_period,contracthours=cont.weekhours/cont.weekdays,id_staffgroup=cont.id_staffgroup,fullweeksplithours=cont.weekhours/7 - returning id into cid_staffworkplan; - else - insert into portanova.staffworkplan (id_staff,daydate,id_reportperiod,contracthours,id_staffgrou) values ( pid_staff , cdate , pid_period,cont.weekhours/cont.weekdays,cont.id_staffgroup,fullweeksplithours) - on conflict on constraint uniq_staffworplan_staffday do update set id_reportperiod = pid_period,contracthours=cont.weekhours/cont.weekdays,id_staffgroup=cont.id_staffgroup,fullweeksplithours=cont.weekhours/7 - returning id into cid_staffworkplan; - end if; - end if; - perform portanova.update_staffworkplan_sums(cid_staffworkplan); - cdate = cdate + interval '1 day'; - end loop; - - end loop; - perform portanova.verify_staffworplan_with_contractdates(pid_period,pid_staff); - --perform portanova.update_staffweekplan(pid_period,pid_staff); - --perform portanova.set_staffperiod_data(pid_period,pid_staff); - return true; -end; -$$; - - -ALTER FUNCTION portanova.update_staffworkplan(pid_period text, pid_staff text) OWNER TO potlu_user; - -- -- Name: verify_perioddays(text, text); Type: FUNCTION; Schema: portanova; Owner: potlu_user -- @@ -974,23 +924,10 @@ begin select startdate,enddate into rpstart,rpend from portanova.reportperiod where id=pid_period; for wkpd in select id_staff,case when startdate <= rpstart then rpstart else startdate end as startdate,case when enddate is null then rpend else enddate end as enddate from portanova.staffcontract where id_staff=pid_staff and startdate <= rpend and (enddate is null or enddate >= rpstart) loop - --raise notice '%: % => % ',wkpd.id_staff,wkpd.startdate,wkpd.enddate; qlnotin := qlnotin || ' and daydate not between date(''' || wkpd.startdate || ''') AND date(''' || wkpd.enddate || ''')'; - --raise notice 'xx: %',qlnotin; end loop; sqlcheck := 'delete from portanova.staffreportperioddays where id in (select id from portanova.staffreportperioddays where id_staff=''' || pid_staff || ''' and id_reportperiod=''' || pid_period || ''' ' || qlnotin || ');'; - --raise notice 'SQL: %',sqlcheck; execute sqlcheck; - /*update portanova.staffworkplan - set contracthours=(select weekhours2/weekdays as contracthours - from portanova.staffcontract where id_staff=pid_staff - and ((portanova.staffworkplan.daydate between startdate and enddate) or - (startdate <= portanova.staffworkplan.daydate and enddate is null))), - id_staffgroup=(select id_staffgroup - from portanova.staffcontract where id_staff=pid_staff - and ((portanova.staffworkplan.daydate between startdate and enddate) or - (startdate <= portanova.staffworkplan.daydate and enddate is null))) - where id_staff=pid_staff and id_reportperiod=pid_period; */ return true; end; $$; @@ -1017,60 +954,6 @@ $$; ALTER FUNCTION portanova.workplan_replaceday(pid_copy text, pid_paste text) OWNER TO potlu_user; --- --- Name: zzold_onchange_reportperiod(text); Type: FUNCTION; Schema: portanova; Owner: potlu_user --- - -CREATE FUNCTION portanova.zzold_onchange_reportperiod(pid_period text) RETURNS boolean - LANGUAGE plpgsql - AS $$ -declare - prdstart date; - prdend date; - strec record; -begin - select startdate,enddate into prdstart,prdend from portanova.reportperiod where id=pid_period; - for strec in select id_staff,startdate,enddate from portanova.staffcontract where startdate <= prdend and (enddate is null or enddate >= prdstart) group by id_staff - loop - raise notice 'Start Update period % staffworkplan for % from % to %',pid_period,strec.id_staff,strec.startdate,strec.enddate; - perform portanova.update_staffworkplan(pid_period,strec.id_staff); - end loop; - return true; -end; -$$; - - -ALTER FUNCTION portanova.zzold_onchange_reportperiod(pid_period text) OWNER TO potlu_user; - --- --- Name: zzold_set_staffperiod(text); Type: FUNCTION; Schema: portanova; Owner: potlu_user --- - -CREATE FUNCTION portanova.zzold_set_staffperiod(pid_period text) RETURNS boolean - LANGUAGE plpgsql - AS $$ - declare - periodstart date; - periodend date; - staffrec record; - staffreportid int4; - BEGIN - select startdate,enddate into periodstart,periodend from portanova.reportperiod where id= pid_period; - for staffrec in select id_staff from portanova.staffcontract where (enddate >= periodstart or (enddate is null and startdate <= periodend)) group by id_staff - loop - insert into portanova.staffreportperiod (id_reportperiod,id_staff) values (pid_period,staffrec.id_staff) - on conflict on constraint uniq_staffreportperiod_cal do nothing returning id into staffreportid; - raise notice 'staffreport ID: %',staffreportid; - perform portanova.set_staffperioddays(pid_period,staffrec.id_staff); - perform portanova.set_staffperiodweeks(pid_period,staffrec.id_staff); - end loop; - return true; - END; -$$; - - -ALTER FUNCTION portanova.zzold_set_staffperiod(pid_period text) OWNER TO potlu_user; - SET default_tablespace = ''; SET default_with_oids = false; @@ -1157,7 +1040,11 @@ CREATE TABLE portanova.staffcontract ( enddate date, id text DEFAULT public.getuuid() NOT NULL, modified timestamp without time zone DEFAULT now(), - created timestamp without time zone DEFAULT now() + created timestamp without time zone DEFAULT now(), + weekdays integer, + weekhours interval, + defaultfreedays json, + id_contractworkplan text ); @@ -1373,7 +1260,11 @@ CREATE VIEW portanova.vw_staffcontractdata AS sc.id_staff, sc.startdate, sc.enddate, - sc.id AS id_staffcontract + sc.id AS id_staffcontract, + sc.weekdays, + sc.weekhours, + sc.id_contractworkplan, + sc.defaultfreedays FROM (portanova.staffcontract sc JOIN portanova.staff st ON ((st.id = sc.id_staff))) WHERE (st.isdeleted IS NULL); @@ -1381,6 +1272,24 @@ CREATE VIEW portanova.vw_staffcontractdata AS ALTER TABLE portanova.vw_staffcontractdata OWNER TO potlu_user; +-- +-- Name: workplans; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.workplans ( + workplan text, + weekhours interval, + weekdays integer, + freeweekdayslist json, + id text DEFAULT public.getuuid() NOT NULL, + modified timestamp without time zone DEFAULT now(), + created timestamp without time zone DEFAULT now(), + isdefault boolean +); + + +ALTER TABLE portanova.workplans OWNER TO potlu_user; + -- -- Name: vw_staffcontractlist; Type: VIEW; Schema: portanova; Owner: potlu_user -- @@ -1389,9 +1298,18 @@ CREATE VIEW portanova.vw_staffcontractlist AS SELECT sc.id, sc.id_staff, sc.startdate, - sc.enddate - FROM (portanova.staffcontract sc - JOIN portanova.staff st ON ((st.id = sc.id_staff))); + sc.enddate, + sc.weekdays, + sc.weekhours, + sc.id_contractworkplan, + ( SELECT string_agg(ww.wday, ','::text) AS string_agg + FROM ( SELECT public.day_name(json_array_elements_text(sc.defaultfreedays)) AS wday) ww) AS defaultfreedays, + wp.workplan + FROM ((portanova.staffcontract sc + JOIN portanova.staff st ON ((st.id = sc.id_staff))) + LEFT JOIN portanova.workplans wp ON ((sc.id_contractworkplan = wp.id))) + WHERE (st.isdeleted IS NULL) + ORDER BY sc.startdate DESC, sc.enddate DESC; ALTER TABLE portanova.vw_staffcontractlist OWNER TO potlu_user; @@ -1657,24 +1575,6 @@ SELECT ALTER TABLE portanova.vw_workplandayslist OWNER TO potlu_user; --- --- Name: workplans; Type: TABLE; Schema: portanova; Owner: potlu_user --- - -CREATE TABLE portanova.workplans ( - workplan text, - weekhours interval, - weekdays integer, - freeweekdayslist json, - id text DEFAULT public.getuuid() NOT NULL, - modified timestamp without time zone DEFAULT now(), - created timestamp without time zone DEFAULT now(), - isdefault boolean -); - - -ALTER TABLE portanova.workplans OWNER TO potlu_user; - -- -- Name: vw_workplanlist; Type: VIEW; Schema: portanova; Owner: potlu_user -- @@ -1758,6 +1658,8 @@ COPY portanova.reports (id, report, pdftop, pdfbottom, pdfleft, pdfright, pdfuni -- COPY portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup, id, isdeleted, modified, created) FROM stdin; + \N Nicolas \N \N \N \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a 3c463353-f763-c72c-0007-e6b4926befee \N 2020-08-04 08:11:47.316594 2020-08-04 08:02:30.157867 + Christian \N \N \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 \N 2020-08-04 08:46:23.304616 2020-07-23 12:27:10.908142 3200 MULLER RICA secrétaire de direction 1966-12-02 \N \N \N \N \N \N \N 4d35cbc6-f52d-c977-9e10-c0467da3e672 c587005b-cabe-dce9-1e35-d37603b3bf8f t 2020-07-23 11:59:14.295687 2020-07-23 12:27:10.908142 1320 BRUCCOLERI SARAH attachée de direction 1984-11-01 \N \N \N \N \N \N \N 4d35cbc6-f52d-c977-9e10-c0467da3e672 cb44dc10-da71-0483-6903-e53c7903bea8 t 2020-07-23 11:59:14.295687 2020-07-23 12:27:10.908142 8775 ZAKLAN ZORAN cuisinier 1959-05-25 \N \N \N \N \N \N \N 65e8c55c-da17-3199-1b3c-8e39706157f7 0a21b428-5d19-9f5a-dbe9-a3b992313b01 t 2020-07-23 11:59:14.295687 2020-07-23 12:27:10.908142 @@ -1770,10 +1672,10 @@ COPY portanova.staff (staffnumber, surname, prename, job, birthdate, matricule, 5514 DAGGIANO GREGORIO serveur/Barman \N \N \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a 53b2bf62-98ce-a92a-9586-1b04fb122b8b t 2020-07-23 11:59:14.295687 2020-07-23 12:27:10.908142 5140 ARMOCIDA DOMENICO serveur/Barman \N \N \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a 1954ca0c-cc94-2792-1ae5-6ed2796186be t 2020-07-23 11:59:14.295687 2020-07-23 12:27:10.908142 5020 ALIF DIDIER serveur 1975-01-26 \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a 008a8ece-5109-4f33-d072-d1463ed42d4c t 2020-07-23 11:59:14.295687 2020-07-23 12:27:10.908142 -5502 COPPOLA CHRISTIAN chef de salle \N \N \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 \N 2020-07-23 11:59:14.295687 2020-07-23 12:27:10.908142 -5585 DO ROSARIO TIFFANY APPRENTI EN SALLE \N \N \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a 63204f0b-afae-1380-b655-a6247b129af0 \N 2020-07-23 11:59:14.295687 2020-07-23 12:27:10.908142 -7178 MORHTASSI KARIM serveur/Barman \N \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a 50ff28ff-8b39-52b5-03e7-fecab8706021 \N 2020-07-23 11:59:14.295687 2020-07-23 12:27:10.908142 -8050 JOSE SILVERIO BARROSO MARIA serveuse 1968-04-05 \N \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a 8aa08f14-7976-baca-c214-b1131263ea5d \N 2020-07-23 11:59:14.295687 2020-07-23 12:27:10.908142 + Liliane 1958-04-21 \N \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a 5d606bb6-4c9c-24ea-20da-d8f2da9eb597 \N 2020-08-04 08:51:11.724652 2020-07-23 12:27:10.908142 + Tiffany \N \N \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a 63204f0b-afae-1380-b655-a6247b129af0 \N 2020-08-04 08:47:00.788959 2020-07-23 12:27:10.908142 +\N Vagos \N \N \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a 1898317d-07d3-c9b8-c29c-a5aa60c28c27 \N 2020-08-04 08:17:05.4599 2020-08-04 08:12:22.443771 + Josiane serveuse 1968-04-14 \N \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a 6332f4fa-2b55-e230-4015-095bf5ed1c13 \N 2020-08-04 08:50:20.670315 2020-07-23 12:27:10.908142 100 PRESTI ADRIANO gérant \N \N \N \N \N \N \N \N 4d35cbc6-f52d-c977-9e10-c0467da3e672 b82c5c49-c814-c68f-03ec-17ee24e765bb t 2020-07-23 11:59:14.295687 2020-07-23 12:27:10.908142 AA1 Mustermann Max \N \N \N \N \N \N \N \N \N 4d35cbc6-f52d-c977-9e10-c0467da3e672 1f33232f-fc8b-71ca-584f-83a8336ff667 t 2020-07-23 11:59:14.295687 2020-07-23 12:27:10.908142 5270 BIGOS Grzegorz serveur/barman \N \N \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a 62623682-202d-7f16-58bd-3ea6641d9d3b t 2020-07-23 11:59:14.295687 2020-07-23 12:27:10.908142 @@ -1801,14 +1703,14 @@ AA1 Mustermann Max \N \N \N \N \N \N \N \N \N 4d35cbc6-f52d-c977-9e10-c0467da3e6 6770 KARATHANASIS Evangelos serveur/barman \N \N \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a cf43bc15-cbc5-c426-3c3b-de43c8329731 t 2020-07-23 11:59:14.295687 2020-07-23 12:27:10.908142 5697 EMBAREK BEN MOHAMED Francoise Responsable experimente \N \N \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a d1e5548e-a91e-5132-4a47-0dbdb5c58257 t 2020-07-23 11:59:14.295687 2020-07-23 12:27:10.908142 5506 COSTA Giovanni RESPONSABLE DU BAR \N \N \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a 2fc94c84-5af1-6010-f5c9-9a3020d04fa2 t 2020-07-23 11:59:14.295687 2020-07-23 12:27:10.908142 -6600 JOURDAN JOSIANE serveuse 1968-04-14 \N \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a 6332f4fa-2b55-e230-4015-095bf5ed1c13 \N 2020-07-23 11:59:14.295687 2020-07-23 12:27:10.908142 -5550 DISTANTE FRANCESCO serveur \N \N \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a a77618bc-86f2-800f-b26d-6d641147ab7c \N 2020-07-23 11:59:14.295687 2020-07-23 12:27:10.908142 -6895 LIMA PERREIRA CATIA INES serveuse 1995-06-06 \N \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a cc63023b-4892-c29c-787d-088392d58b88 \N 2020-07-23 11:59:14.295687 2020-07-23 12:27:10.908142 -7052 MASTRINI MARCO serveur/Barman \N \N \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a af9f604b-fcf9-0161-da20-1e3d7b1e4111 \N 2020-07-23 11:59:14.295687 2020-07-23 12:27:10.908142 -7950 SANTORO DARIO Hôtesse d'accueil/serveuse \N \N \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a 28527822-7e9e-baa4-e825-684d015eed40 \N 2020-07-23 11:59:14.295687 2020-07-23 12:27:10.908142 -8155 TAVARES LOPES JOAO serveur/Barman \N \N \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a eef01d53-ac8f-de1d-4073-2e7c8f3e8f9c \N 2020-07-23 11:59:14.295687 2020-07-23 12:27:10.908142 -2701 WEILER KIEFFER LILIANNE hôtesse d'accueil 1958-04-21 \N \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a 5d606bb6-4c9c-24ea-20da-d8f2da9eb597 \N 2020-07-23 11:59:14.295687 2020-07-23 12:27:10.908142 - Test Test \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a 71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a \N 2020-07-29 15:52:36.983908 2020-07-29 15:28:35.037208 + Dario \N \N \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a 28527822-7e9e-baa4-e825-684d015eed40 \N 2020-08-04 08:50:46.716797 2020-07-23 12:27:10.908142 + Maria 1968-04-05 \N \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a 8aa08f14-7976-baca-c214-b1131263ea5d \N 2020-08-04 08:47:49.593839 2020-07-23 12:27:10.908142 + Francesco \N \N \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a a77618bc-86f2-800f-b26d-6d641147ab7c \N 2020-08-04 08:46:38.04952 2020-07-23 12:27:10.908142 + Catia 1995-06-06 \N \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a cc63023b-4892-c29c-787d-088392d58b88 \N 2020-08-04 08:50:31.282394 2020-07-23 12:27:10.908142 + Francesca \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a 71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a \N 2020-08-04 08:52:11.733603 2020-07-29 15:28:35.037208 + Karim \N \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a 50ff28ff-8b39-52b5-03e7-fecab8706021 \N 2020-08-04 08:50:13.066624 2020-07-23 12:27:10.908142 + Joao \N \N \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a eef01d53-ac8f-de1d-4073-2e7c8f3e8f9c \N 2020-08-04 08:50:53.156701 2020-07-23 12:27:10.908142 + Marco \N \N \N \N \N \N \N \N 8396f3e4-7a90-bd3a-ce16-98748482318a af9f604b-fcf9-0161-da20-1e3d7b1e4111 \N 2020-08-04 08:50:40.697013 2020-07-23 12:27:10.908142 \. @@ -1816,60 +1718,62 @@ AA1 Mustermann Max \N \N \N \N \N \N \N \N \N 4d35cbc6-f52d-c977-9e10-c0467da3e6 -- Data for Name: staffcontract; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- -COPY portanova.staffcontract (id_staff, startdate, enddate, id, modified, created) FROM stdin; -53b2bf62-98ce-a92a-9586-1b04fb122b8b 2020-05-01 \N 115c3d75-267a-d7cb-f12d-3f9e88479cb2 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-07-01 \N e7717a14-736d-1cfa-61bc-e3174f6d3c2e 2020-07-30 10:23:45.827895 2020-07-29 15:28:35.037208 -008a8ece-5109-4f33-d072-d1463ed42d4c 2005-04-19 \N 45bd4507-3f10-015b-cc41-2b8224d85ac8 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -28527822-7e9e-baa4-e825-684d015eed40 2020-01-01 2019-07-31 dccb56a1-bea4-b22e-3a7b-f8af3aa404a8 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -eef01d53-ac8f-de1d-4073-2e7c8f3e8f9c 2020-01-01 2017-03-31 1fef8144-55e7-ef57-4fca-824bc6c804a9 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -2fc94c84-5af1-6010-f5c9-9a3020d04fa2 2020-01-01 \N 30b33355-69ec-7036-71ce-e089fbe511fd 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -d1e5548e-a91e-5132-4a47-0dbdb5c58257 2020-01-01 2020-08-31 5d19fff3-df46-70b3-7b76-398a17824291 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -cf43bc15-cbc5-c426-3c3b-de43c8329731 2020-01-01 \N ecc7b94f-8843-9b55-ae57-401baee8030f 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -c34e33ba-8c53-33cb-36f3-0dad48c88184 2020-01-01 \N 519aca63-a0f8-a82a-6474-d3bcb374837b 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -a9484bae-dbf9-8b4b-b2e8-37d3f540022d 2020-01-01 2019-07-31 3cbd3a99-e2ff-328e-f71a-9e31262107c2 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -521427be-daf9-59ae-6e6f-d952e89891d5 2016-04-01 2019-05-31 e80c7476-0c2a-08b1-dd0f-c4ffc783346f 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -5d606bb6-4c9c-24ea-20da-d8f2da9eb597 2015-07-01 \N 3e9a9073-d977-f62c-e392-b4bad6752898 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -51345c10-2931-e287-6e1c-d3d0d05b5d81 2003-10-01 \N 0bf38949-6133-fdab-9a6f-5a535d35585a 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -f1b7b3f9-b1ef-d01d-c1e2-98919f4e8ae3 2005-01-08 \N 1b4e9535-1072-bc8e-1c8a-ca8fec680595 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -f3d30ece-099a-434b-41cf-e9fab08a77f2 2020-01-01 2020-01-15 fcb5082a-fb0d-04ec-d167-ef4b330947ee 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -eccbcb08-bd45-7885-b5b2-49f480eec5d0 2013-01-07 \N e087212f-18b9-7b4e-2d6a-71888aee8604 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -63204f0b-afae-1380-b655-a6247b129af0 2020-01-01 2020-07-31 95ed73eb-dfbd-37b8-6131-64f259c76b3d 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-01-06 \N f35400b0-6d27-ad19-630b-7b934d304643 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -af2cba13-8e7b-c0ae-2ce2-f1ce3c059129 2019-07-15 \N 84e5f590-9e76-dff3-45ce-0c39ce924ff7 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -9e036202-beb3-498d-60b2-afed7021db25 2006-10-23 \N 318fbb35-1c6c-4223-0ab3-65057a6db4f8 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -11180e90-e972-cbca-cb32-9bff1a0bdc25 1992-03-15 \N 9f811a33-0be7-9c18-75aa-4d01aecc977d 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -608e9219-b30f-43f5-79c5-c17d921297cc 2020-01-01 2019-07-31 875babd8-ac9c-7bb7-3691-d888932fcb21 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -cb44dc10-da71-0483-6903-e53c7903bea8 2014-03-01 \N 28303690-8f8e-14a5-94d6-b0a97c2be8e7 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -ba6c36fb-1812-53a1-4b77-171a92ef1c2c 2016-05-19 \N 9b9cf076-aaff-7987-18c4-03f439a509de 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -6332f4fa-2b55-e230-4015-095bf5ed1c13 2007-08-14 \N 2c9423d6-f10c-8920-d430-b976eed35297 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -fd1178bd-5578-bc8c-68e6-0caabb7a17fa 2020-01-01 2019-05-31 966517c4-a5ae-6293-1f5c-8523458c847a 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -f2084bf3-3ecc-9b24-c3d7-78d365c45f8e 2020-01-01 \N 045b9fd8-f9a6-ca7c-dd83-911badc20e35 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -9e408ee6-827f-94f1-2f20-ec4a9e36f5df 2020-01-01 \N b872bde4-7960-6e3f-2501-c68b409d7004 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -0962ec1c-81bb-8e8d-3c4e-d5b45377afb8 2020-01-01 \N 014f39e3-445d-4124-0968-edf2bdb706d3 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -2dcafaf1-c1e3-1bd2-6598-bb356d297168 2020-01-01 2020-09-30 9d9ba9db-b826-e2c8-b9f4-ad8559a23b31 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -72650671-1f42-9ed1-2f4f-be0e2c5344a4 2020-01-01 2020-01-31 9d79d138-8f97-bb1b-9405-e470b96ed5bd 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -8f4790a4-8be9-5e8e-59b3-2d053376fd0c 2014-04-15 \N f69d00b6-05c5-763d-a49f-367314c5a298 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -c126d60c-e088-8b92-ac83-47dfa231e926 2020-01-01 \N 282adea5-8744-691f-7c71-22836577951d 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -05222b12-533d-97fa-6252-2ba03b87d057 2020-01-01 2020-03-31 48f08f4f-815e-7330-2e90-ca150727ac3f 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -8aa08f14-7976-baca-c214-b1131263ea5d 2013-05-01 \N dfe192ed-3041-920a-41a5-cb7cef91a92f 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -b82c5c49-c814-c68f-03ec-17ee24e765bb 2020-01-01 \N 797aa17d-d5d1-e509-9973-d48406a3ca46 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -a77618bc-86f2-800f-b26d-6d641147ab7c 2020-01-01 \N 7c857a6c-8417-dc5b-7218-24e6b696d076 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -b1843e04-9761-8838-5007-15262f59af56 2020-01-01 2020-05-31 079ff258-bbc9-5606-dd76-34290e8a784b 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -016c1cbd-5197-572a-832b-e44f1c9de181 2020-01-01 2022-08-31 1c4b07c0-28b4-9c68-89b0-4bc71bc03530 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -af9f604b-fcf9-0161-da20-1e3d7b1e4111 2020-01-01 \N 8cfcfb06-1669-1f04-529c-f81a0bab1004 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -cc63023b-4892-c29c-787d-088392d58b88 2018-02-12 \N bb915d87-2a78-76de-1490-019cb411c0b3 2020-07-30 11:23:56.510242 2020-07-23 12:27:10.908142 -50ff28ff-8b39-52b5-03e7-fecab8706021 2020-01-01 \N df69d20b-e89d-f53d-c8ce-4487ea2d6388 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -24de156c-6869-d29b-387a-f0a477c33b96 2020-01-01 2019-03-31 afccbaca-f939-bc55-10b4-21773bf2b4d4 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -c587005b-cabe-dce9-1e35-d37603b3bf8f 2015-11-15 \N c7815a50-90f1-c703-20cb-b3b75c353268 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -e250843a-4ea6-00d4-7b47-cf2590e6e7ec 2015-10-15 \N e31d06e4-60d4-8f04-acc8-6efcc83fc740 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -0a21b428-5d19-9f5a-dbe9-a3b992313b01 1995-07-01 \N 1e653f45-7352-7543-b625-51c8c1944a90 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -1954ca0c-cc94-2792-1ae5-6ed2796186be 2020-04-01 \N 76855ccf-9461-ac5b-84e2-e070cacdfc03 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -1954ca0c-cc94-2792-1ae5-6ed2796186be 2020-01-01 2020-03-31 13f9edc2-9ac9-684d-45c6-a0d5a5840fb4 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -a4edc404-a9f7-37e9-25be-0aaa5a3d76dd 2020-01-01 2020-06-30 a65f335b-1967-3378-f40c-c6f62606d9b3 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -62623682-202d-7f16-58bd-3ea6641d9d3b 2020-01-01 \N b0dff783-0c13-314d-2601-30d21f6c2f5c 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -661bf7d4-7a53-14ff-8566-7382172f65b6 2011-10-01 \N 265ab14a-b44b-f1e7-ba80-0cf9ce00dc16 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -1f33232f-fc8b-71ca-584f-83a8336ff667 2020-02-01 \N e2718bfb-929f-7106-94bc-68cdc02ae75b 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 -af2cba13-8e7b-c0ae-2ce2-f1ce3c059129 2018-11-15 2019-06-15 a0c765c4-faee-5776-2eca-5630191392a6 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 +COPY portanova.staffcontract (id_staff, startdate, enddate, id, modified, created, weekdays, weekhours, defaultfreedays, id_contractworkplan) FROM stdin; +53b2bf62-98ce-a92a-9586-1b04fb122b8b 2020-05-01 \N 115c3d75-267a-d7cb-f12d-3f9e88479cb2 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +28527822-7e9e-baa4-e825-684d015eed40 2020-01-01 2019-07-31 dccb56a1-bea4-b22e-3a7b-f8af3aa404a8 2020-07-31 09:12:15.492552 2020-07-23 12:27:10.908142 6 40:00:00 \N \N +eef01d53-ac8f-de1d-4073-2e7c8f3e8f9c 2020-01-01 2017-03-31 1fef8144-55e7-ef57-4fca-824bc6c804a9 2020-07-31 09:12:15.49837 2020-07-23 12:27:10.908142 6 40:00:00 \N \N +5d606bb6-4c9c-24ea-20da-d8f2da9eb597 2015-07-01 \N 3e9a9073-d977-f62c-e392-b4bad6752898 2020-07-31 09:12:15.5052 2020-07-23 12:27:10.908142 6 40:00:00 \N \N +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-07-01 \N e7717a14-736d-1cfa-61bc-e3174f6d3c2e 2020-07-31 12:16:48.61792 2020-07-29 15:28:35.037208 0 00:00:00 ["1","2","3","4","5","6","7"] a57742b1-b03c-21d1-54b1-bd0259375d89 +008a8ece-5109-4f33-d072-d1463ed42d4c 2005-04-19 \N 45bd4507-3f10-015b-cc41-2b8224d85ac8 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +2fc94c84-5af1-6010-f5c9-9a3020d04fa2 2020-01-01 \N 30b33355-69ec-7036-71ce-e089fbe511fd 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +d1e5548e-a91e-5132-4a47-0dbdb5c58257 2020-01-01 2020-08-31 5d19fff3-df46-70b3-7b76-398a17824291 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +cf43bc15-cbc5-c426-3c3b-de43c8329731 2020-01-01 \N ecc7b94f-8843-9b55-ae57-401baee8030f 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +c34e33ba-8c53-33cb-36f3-0dad48c88184 2020-01-01 \N 519aca63-a0f8-a82a-6474-d3bcb374837b 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +a9484bae-dbf9-8b4b-b2e8-37d3f540022d 2020-01-01 2019-07-31 3cbd3a99-e2ff-328e-f71a-9e31262107c2 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +521427be-daf9-59ae-6e6f-d952e89891d5 2016-04-01 2019-05-31 e80c7476-0c2a-08b1-dd0f-c4ffc783346f 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +51345c10-2931-e287-6e1c-d3d0d05b5d81 2003-10-01 \N 0bf38949-6133-fdab-9a6f-5a535d35585a 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +f1b7b3f9-b1ef-d01d-c1e2-98919f4e8ae3 2005-01-08 \N 1b4e9535-1072-bc8e-1c8a-ca8fec680595 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +6332f4fa-2b55-e230-4015-095bf5ed1c13 2007-08-14 \N 2c9423d6-f10c-8920-d430-b976eed35297 2020-07-31 09:12:15.526014 2020-07-23 12:27:10.908142 6 40:00:00 \N \N +f3d30ece-099a-434b-41cf-e9fab08a77f2 2020-01-01 2020-01-15 fcb5082a-fb0d-04ec-d167-ef4b330947ee 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +eccbcb08-bd45-7885-b5b2-49f480eec5d0 2013-01-07 \N e087212f-18b9-7b4e-2d6a-71888aee8604 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +af2cba13-8e7b-c0ae-2ce2-f1ce3c059129 2019-07-15 \N 84e5f590-9e76-dff3-45ce-0c39ce924ff7 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +9e036202-beb3-498d-60b2-afed7021db25 2006-10-23 \N 318fbb35-1c6c-4223-0ab3-65057a6db4f8 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +11180e90-e972-cbca-cb32-9bff1a0bdc25 1992-03-15 \N 9f811a33-0be7-9c18-75aa-4d01aecc977d 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +608e9219-b30f-43f5-79c5-c17d921297cc 2020-01-01 2019-07-31 875babd8-ac9c-7bb7-3691-d888932fcb21 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +cb44dc10-da71-0483-6903-e53c7903bea8 2014-03-01 \N 28303690-8f8e-14a5-94d6-b0a97c2be8e7 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +ba6c36fb-1812-53a1-4b77-171a92ef1c2c 2016-05-19 \N 9b9cf076-aaff-7987-18c4-03f439a509de 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-01-06 \N f35400b0-6d27-ad19-630b-7b934d304643 2020-08-09 16:51:22.105001 2020-07-23 12:27:10.908142 6 40:00:00 ["1"] c2e086cf-32d7-7f1c-cff1-09c13172ade3 +fd1178bd-5578-bc8c-68e6-0caabb7a17fa 2020-01-01 2019-05-31 966517c4-a5ae-6293-1f5c-8523458c847a 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +f2084bf3-3ecc-9b24-c3d7-78d365c45f8e 2020-01-01 \N 045b9fd8-f9a6-ca7c-dd83-911badc20e35 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +9e408ee6-827f-94f1-2f20-ec4a9e36f5df 2020-01-01 \N b872bde4-7960-6e3f-2501-c68b409d7004 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +0962ec1c-81bb-8e8d-3c4e-d5b45377afb8 2020-01-01 \N 014f39e3-445d-4124-0968-edf2bdb706d3 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +2dcafaf1-c1e3-1bd2-6598-bb356d297168 2020-01-01 2020-09-30 9d9ba9db-b826-e2c8-b9f4-ad8559a23b31 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +72650671-1f42-9ed1-2f4f-be0e2c5344a4 2020-01-01 2020-01-31 9d79d138-8f97-bb1b-9405-e470b96ed5bd 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +8f4790a4-8be9-5e8e-59b3-2d053376fd0c 2014-04-15 \N f69d00b6-05c5-763d-a49f-367314c5a298 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +c126d60c-e088-8b92-ac83-47dfa231e926 2020-01-01 \N 282adea5-8744-691f-7c71-22836577951d 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +05222b12-533d-97fa-6252-2ba03b87d057 2020-01-01 2020-03-31 48f08f4f-815e-7330-2e90-ca150727ac3f 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +63204f0b-afae-1380-b655-a6247b129af0 2020-01-01 \N 95ed73eb-dfbd-37b8-6131-64f259c76b3d 2020-08-04 08:47:14.423046 2020-07-23 12:27:10.908142 6 40:00:00 ["7"] 267f424d-9716-cf98-3bd0-c6715257c3a0 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-01-01 \N 7c857a6c-8417-dc5b-7218-24e6b696d076 2020-08-04 08:46:46.705638 2020-07-23 12:27:10.908142 6 40:00:00 ["2"] 3ff4557c-b9c6-a2ff-eec3-89ad034b6556 +8aa08f14-7976-baca-c214-b1131263ea5d 2013-05-01 \N dfe192ed-3041-920a-41a5-cb7cef91a92f 2020-08-04 08:48:02.295624 2020-07-23 12:27:10.908142 6 40:00:00 ["1"] f8666bc6-abed-a3ab-35d5-b6df495a0eea +b82c5c49-c814-c68f-03ec-17ee24e765bb 2020-01-01 \N 797aa17d-d5d1-e509-9973-d48406a3ca46 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +b1843e04-9761-8838-5007-15262f59af56 2020-01-01 2020-05-31 079ff258-bbc9-5606-dd76-34290e8a784b 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +016c1cbd-5197-572a-832b-e44f1c9de181 2020-01-01 2022-08-31 1c4b07c0-28b4-9c68-89b0-4bc71bc03530 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +af9f604b-fcf9-0161-da20-1e3d7b1e4111 2020-01-01 \N 8cfcfb06-1669-1f04-529c-f81a0bab1004 2020-07-31 09:12:15.54278 2020-07-23 12:27:10.908142 6 40:00:00 \N \N +cc63023b-4892-c29c-787d-088392d58b88 2018-02-12 \N bb915d87-2a78-76de-1490-019cb411c0b3 2020-08-09 17:30:46.037748 2020-07-23 12:27:10.908142 6 40:00:00 ["4"] fbd5ac24-becf-c358-45c4-65518415ebb8 +50ff28ff-8b39-52b5-03e7-fecab8706021 2020-01-01 \N df69d20b-e89d-f53d-c8ce-4487ea2d6388 2020-07-31 09:12:15.55329 2020-07-23 12:27:10.908142 6 40:00:00 \N \N +24de156c-6869-d29b-387a-f0a477c33b96 2020-01-01 2019-03-31 afccbaca-f939-bc55-10b4-21773bf2b4d4 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +c587005b-cabe-dce9-1e35-d37603b3bf8f 2015-11-15 \N c7815a50-90f1-c703-20cb-b3b75c353268 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +e250843a-4ea6-00d4-7b47-cf2590e6e7ec 2015-10-15 \N e31d06e4-60d4-8f04-acc8-6efcc83fc740 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +0a21b428-5d19-9f5a-dbe9-a3b992313b01 1995-07-01 \N 1e653f45-7352-7543-b625-51c8c1944a90 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +1954ca0c-cc94-2792-1ae5-6ed2796186be 2020-04-01 \N 76855ccf-9461-ac5b-84e2-e070cacdfc03 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +1954ca0c-cc94-2792-1ae5-6ed2796186be 2020-01-01 2020-03-31 13f9edc2-9ac9-684d-45c6-a0d5a5840fb4 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +a4edc404-a9f7-37e9-25be-0aaa5a3d76dd 2020-01-01 2020-06-30 a65f335b-1967-3378-f40c-c6f62606d9b3 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +62623682-202d-7f16-58bd-3ea6641d9d3b 2020-01-01 \N b0dff783-0c13-314d-2601-30d21f6c2f5c 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +661bf7d4-7a53-14ff-8566-7382172f65b6 2011-10-01 \N 265ab14a-b44b-f1e7-ba80-0cf9ce00dc16 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +1f33232f-fc8b-71ca-584f-83a8336ff667 2020-02-01 \N e2718bfb-929f-7106-94bc-68cdc02ae75b 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +af2cba13-8e7b-c0ae-2ce2-f1ce3c059129 2018-11-15 2019-06-15 a0c765c4-faee-5776-2eca-5630191392a6 2020-07-23 11:59:17.082874 2020-07-23 12:27:10.908142 \N \N \N \N +3c463353-f763-c72c-0007-e6b4926befee 2020-08-04 \N 7b866b6e-62ef-c354-5d8b-756d34c6f3cd 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 0 00:00:00 ["1","2","3","4","5","6","7"] a57742b1-b03c-21d1-54b1-bd0259375d89 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-08-04 \N e35e3264-b571-65cb-86a3-e84a9ef65041 2020-08-04 08:17:12.572606 2020-08-04 08:12:22.443771 6 40:00:00 ["3"] ec796603-0d87-8457-b92d-1a792e5f5acb \. @@ -1889,7 +1793,28 @@ Administration \N ["2","4"] t 4d35cbc6-f52d-c977-9e10-c0467da3e672 2020-07-23 11 -- COPY portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, payedhours, diffhourspayed, id, modified, created) FROM stdin; -2583c916-2d07-f42d-9c85-18ee42959317 71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N \N 10c5760c-3c1e-2d81-7253-06c3d326a3a8 2020-07-30 14:15:17.796308 2020-07-30 14:15:17.796308 +2583c916-2d07-f42d-9c85-18ee42959317 1898317d-07d3-c9b8-c29c-a5aa60c28c27 320:00:00 00:00:00 320:00:00 00:00:00 00:00:00 \N \N \N 0553af62-8cf0-fa5f-6597-7f5777f79047 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +e3e85c3e-1afa-768e-7938-f0c9996c618a 1898317d-07d3-c9b8-c29c-a5aa60c28c27 320:00:00 00:00:00 320:00:00 00:00:00 00:00:00 \N \N \N 45fdb65e-68fb-d55e-e2ab-952a65a4735c 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +9b93bd90-2325-fe28-4bff-852203fc99ce 1898317d-07d3-c9b8-c29c-a5aa60c28c27 320:00:00 00:00:00 320:00:00 00:00:00 00:00:00 \N \N \N db572221-e032-6cff-d3fc-0d78d5e7572a 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +2583c916-2d07-f42d-9c85-18ee42959317 a77618bc-86f2-800f-b26d-6d641147ab7c 320:00:00 00:00:00 320:00:00 00:00:00 00:00:00 \N \N \N a214cefc-def7-b373-cfda-eadace856f6c 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +9b93bd90-2325-fe28-4bff-852203fc99ce a77618bc-86f2-800f-b26d-6d641147ab7c 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N \N \N 93afc058-a92b-b412-be4b-516596e263e8 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +9b93bd90-2325-fe28-4bff-852203fc99ce e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 320:00:00 00:00:00 320:00:00 00:00:00 00:00:00 \N \N \N 054e1f88-f4a4-4ab2-7e9e-e8ab01517a92 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +2583c916-2d07-f42d-9c85-18ee42959317 3c463353-f763-c72c-0007-e6b4926befee 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N \N \N 81e7bb68-ebe0-4903-56db-0e84c9d7b369 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +9b93bd90-2325-fe28-4bff-852203fc99ce 3c463353-f763-c72c-0007-e6b4926befee 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N \N \N 835119a5-dad5-5cbd-cc29-26ab3b5c7af1 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +e3e85c3e-1afa-768e-7938-f0c9996c618a 3c463353-f763-c72c-0007-e6b4926befee 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N \N \N a1d4b04b-719b-e336-af1d-3c53e4d27042 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +2583c916-2d07-f42d-9c85-18ee42959317 71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 320:00:00 00:00:00 320:00:00 00:00:00 00:00:00 \N \N \N 10c5760c-3c1e-2d81-7253-06c3d326a3a8 2020-08-05 08:46:48.014325 2020-07-30 14:15:17.796308 +e3e85c3e-1afa-768e-7938-f0c9996c618a e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 320:00:00 00:00:00 320:00:00 00:00:00 00:00:00 \N 01:00:00 \N 346964ca-29b7-a452-d8b3-32c7db60c9be 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e3e85c3e-1afa-768e-7938-f0c9996c618a a77618bc-86f2-800f-b26d-6d641147ab7c 320:00:00 00:00:00 320:00:00 00:00:00 00:00:00 \N \N \N 4c757d37-1f8a-a82c-2be8-62c5db6c6544 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +2583c916-2d07-f42d-9c85-18ee42959317 63204f0b-afae-1380-b655-a6247b129af0 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N \N \N 5876d7d6-0db7-1cb2-2458-e6be0e80958c 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +9b93bd90-2325-fe28-4bff-852203fc99ce 63204f0b-afae-1380-b655-a6247b129af0 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N \N \N bd698833-782d-85eb-172e-5bab32b2a02a 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +e3e85c3e-1afa-768e-7938-f0c9996c618a 63204f0b-afae-1380-b655-a6247b129af0 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N \N \N bbe9ed09-21ed-a377-a067-b2c69b850cce 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +2583c916-2d07-f42d-9c85-18ee42959317 8aa08f14-7976-baca-c214-b1131263ea5d 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N \N \N 8d343a7c-5cf9-6bfc-9f85-f42c21b2f9d9 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +9b93bd90-2325-fe28-4bff-852203fc99ce 8aa08f14-7976-baca-c214-b1131263ea5d 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N \N \N a741ac9f-d7e2-7221-e407-d3fa781c5c0e 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +e3e85c3e-1afa-768e-7938-f0c9996c618a 8aa08f14-7976-baca-c214-b1131263ea5d 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N \N \N a56aa1ae-4706-d996-adb8-617f18184a28 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +9b93bd90-2325-fe28-4bff-852203fc99ce cc63023b-4892-c29c-787d-088392d58b88 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N \N \N 3c970df3-cd24-2ab9-3531-c2c8fd39b56e 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +e3e85c3e-1afa-768e-7938-f0c9996c618a cc63023b-4892-c29c-787d-088392d58b88 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N \N \N 408079c3-c057-3647-7f80-c46d58d71634 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +2583c916-2d07-f42d-9c85-18ee42959317 e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 316:00:00 320:00:00 308:00:00 00:00:00 08:00:00 -12:00:00 \N \N 563f17f1-a2e4-c355-1ab2-74bec731c3d7 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +2583c916-2d07-f42d-9c85-18ee42959317 cc63023b-4892-c29c-787d-088392d58b88 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 01:00:00 \N 66419e71-b74b-ae41-ee31-2f5f1c3a38d0 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 \. @@ -1898,62 +1823,1238 @@ COPY portanova.staffreportperiod (id_reportperiod, id_staff, workhours, contract -- COPY portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours, wdcontracthours, id, modified, created) FROM stdin; -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-10 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 7fbaf43d-e2f0-b7c2-e098-1a60f9f78c6c 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-11 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N ca2c3947-3eb6-cbee-22ed-78df58f0b370 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-12 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 6fcfb642-9684-36af-c898-1688da15643b 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-13 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 1fa9c5b8-3de4-4a4c-33a2-6d1ae2091957 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-14 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 8f25d2b0-34f9-2bcb-7a92-a6a9016196c8 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-15 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 06ff8830-7a3d-220a-2529-22228bade512 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-16 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N a27c45f4-57aa-82f8-6876-025958ed3f47 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-17 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 9a7e2e47-4e38-b8dd-b3ab-ac82bba78404 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-18 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 24b3ba74-5c9c-af51-2baa-ac79402cc147 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-19 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 3a7ce744-7a56-6c9a-4cdc-01310f84fef8 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-20 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 26e64577-991e-5e68-31e2-9d01b0ba6afe 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-21 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 7f3da7e3-855a-cff0-a068-f8c026447e09 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-22 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 7b559764-5e5e-6411-d835-77ff8cf7c3fe 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-23 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 20d0e733-aea1-a0a7-48b1-eb6d5546716c 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-24 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N c4d1f11f-e887-0f23-f933-78626c3f0728 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-25 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N e622c6d3-82a7-d345-05dd-ccfa0448f499 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-26 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 973f8ba2-391a-83e4-cde5-d0a4eacf4267 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-27 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N f4902e70-ad97-af0f-66fc-b24e4a1da138 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-28 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 78dcc23a-97c1-d550-447e-49a5a40377f6 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-29 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 9a70cbf5-d4ed-7c96-f19e-6201f4140890 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-30 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 607b403f-cb51-a72c-de58-90b49f12f8b8 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-31 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N cc117fe9-0958-3c25-bc48-28c2c0c4dd05 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-01 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 332fd795-42bc-1603-92ef-8dad38b857f7 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-02 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 62eca5bd-9788-7ad7-dbdf-da582c18bfc0 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-03 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 4b7610cc-81a4-6080-0b8e-defac51730e2 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-04 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 60e74220-67d6-e1be-9865-ca5675e3d626 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-05 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 0edc4443-51e9-8e35-6000-86192e9f724b 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-06 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N f618f025-0c62-2e2a-6560-2ec7835f3b0c 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-07 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 3145fd44-e08f-7819-d172-d1d0d64a3d38 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-08 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 8926ebd7-195d-d118-efaf-c8967e28845e 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-09 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 7db277ae-320e-ca83-ce2b-6f3a6d2c4aad 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-10 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N c659484b-d815-3848-c184-7f7d910e97e8 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-11 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 741261ea-0256-bbf8-9185-1a70a328075d 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-12 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 2f025e80-834e-579b-4ef5-a04e20ca9b3f 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-13 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N b81dd0bb-cee1-2a90-1420-d1aef612f6db 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-14 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 0ded3220-9db7-6490-857e-9e31defcca3b 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-15 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N aa90d97f-93fa-e193-77fd-edcb91e90430 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-16 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 97dfdbff-f636-9c75-2927-d977bc5ef85f 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-17 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 67c6cc06-2583-8907-1f39-fe8e3d6ac456 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-18 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 5d4f091d-66a8-c3b1-1b69-756c53451635 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-19 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N a2dd15cf-900b-f4d0-3d46-cf6b0907dda2 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-20 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 64041cd9-489e-7b3d-7a9a-2c042c074d25 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-21 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N db8ea35c-3b63-54ba-fae7-538168e2e7d0 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-22 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 33d74a9a-4ac4-6df2-7713-04b5aca08b74 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-23 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 881ffc2c-f56d-08c5-fce2-145d23d31ca7 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-24 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 4c9dbf82-14a4-63fd-0848-a0364a72e41c 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-25 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 5b40473d-b699-a022-174d-b642989b4cfd 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-26 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 1af047d2-6ae7-711f-35c8-3512c048397d 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-27 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N fe62c09a-a626-c021-a5ce-bb2d44fba8ab 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-28 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N aa30f154-5870-c990-3686-af6a520b5f7e 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-29 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N dd6dc113-3889-be09-b9c2-1cbc1eda18ed 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-30 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 7e4d4a1e-3d42-f58d-9f99-84e782467caa 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-10-01 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N a9aaa078-914d-83b2-63a0-176b7eb745c5 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-10-02 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N b93dba15-40c5-0493-4d85-a618b84addd9 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-10-03 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N 46513d93-f29b-a87e-b5ec-cd79c6cbca27 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-10-04 \N \N \N \N \N \N \N \N \N \N \N \N \N 2583c916-2d07-f42d-9c85-18ee42959317 \N \N \N \N e845bd46-e252-2f6c-93f0-40a3d00b4570 2020-07-30 13:43:01.660018 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-18 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 24b3ba74-5c9c-af51-2baa-ac79402cc147 2020-08-05 08:46:22.644638 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 9a7e2e47-4e38-b8dd-b3ab-ac82bba78404 2020-08-05 08:46:22.644638 2020-07-30 13:43:01.660018 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-04 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 6044e5ef-0c26-dc0b-e5ec-656cee397530 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-06 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 294eefbe-1fbf-11b0-18ce-64daa474c908 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 694a7fe1-f3a9-cf7e-6a07-c07b698d7e66 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-10 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 00:00:00 \N \N \N \N 08:00:00 00:00:00 \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 00:00:00 7fbaf43d-e2f0-b7c2-e098-1a60f9f78c6c 2020-07-31 14:39:46.223624 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-11 \N \N \N \N \N 00:00:00 \N \N \N \N 00:00:00 00:00:00 \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 ca2c3947-3eb6-cbee-22ed-78df58f0b370 2020-07-31 14:39:46.223624 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-12 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 00:00:00 \N \N \N \N 08:00:00 00:00:00 \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 00:00:00 6fcfb642-9684-36af-c898-1688da15643b 2020-07-31 14:39:46.223624 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-13 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 00:00:00 \N \N \N \N 08:00:00 00:00:00 \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 00:00:00 1fa9c5b8-3de4-4a4c-33a2-6d1ae2091957 2020-07-31 14:39:46.223624 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-14 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 00:00:00 \N \N \N \N 08:00:00 00:00:00 \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 00:00:00 8f25d2b0-34f9-2bcb-7a92-a6a9016196c8 2020-07-31 14:39:46.223624 2020-07-30 13:43:01.660018 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-30 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 a84ae25b-43e0-567f-2dde-ebfdef96340a 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-07 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 d87c2c4b-d311-f599-a4bb-4670ed0e4498 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 68af56d5-7db1-b1a4-39a0-802eacc7c906 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 3a97f329-3f54-f74c-4d04-06f6d3f3c5e3 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-28 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 78cba873-f8fd-0fed-6d5f-f05b585372b2 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 8b02d7b2-c3e4-f18e-0254-daa7778e3694 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 904602ae-0d36-398e-60c2-db4c04238a68 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-05 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 00a9115b-959b-a4ca-aa9d-c419de85093e 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-12 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 1b67622e-1ecd-d4e6-384d-ec1f469a85e5 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-19 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 6f8182f0-379b-1c58-0595-cd8f850fd0b6 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-26 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 a920dc81-dd5a-af67-65d0-96167885e190 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-02 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 27d16e7d-99e4-92fc-4208-5b39e59e280b 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 4d0392de-3a3b-d1c3-b72f-63dccb88b3eb 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-31 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 beecf864-2602-8168-3910-2a2ef084d9a1 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 994a49d2-70dc-b6d9-515b-88dfc33b7031 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-10 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 6938d127-fb0c-ef59-652f-49bdcca34cf1 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 4dc11a5e-ec12-9a58-589e-24056f9485f2 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-09 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 266f1b53-edfe-1111-1189-400e9bf64e6e 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-12 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 00:00:00 2f025e80-834e-579b-4ef5-a04e20ca9b3f 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 0182f7d5-2c82-e0b8-6770-03ff75ca082c 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-28 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 02dd3850-83b9-699f-5b4b-b9eed01555f8 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-14 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 8d37a1e1-020b-9d03-acfe-44c0c747422f 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-15 18:30:00 23:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 04:00:00 \N 2583c916-2d07-f42d-9c85-18ee42959317 00:30:00 reposition 00:00:00 06:40:00 b910e083-9fa5-fcf2-71fa-62a40720ea3c 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-16 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 33ff9aa9-677b-0f6a-af18-b331c85f8657 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-29 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 81c0efe4-e630-d93f-d153-92641647b85b 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-30 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 0cc5175b-97ca-e0b5-87f0-a1fa693883b0 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-29 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 dd6dc113-3889-be09-b9c2-1cbc1eda18ed 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-06 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 00:00:00 f618f025-0c62-2e2a-6560-2ec7835f3b0c 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-18 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 5d4f091d-66a8-c3b1-1b69-756c53451635 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-20 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 26e64577-991e-5e68-31e2-9d01b0ba6afe 2020-08-05 08:46:22.644638 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-19 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 3a7ce744-7a56-6c9a-4cdc-01310f84fef8 2020-08-05 08:46:22.644638 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-21 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 7f3da7e3-855a-cff0-a068-f8c026447e09 2020-08-05 08:46:22.644638 2020-07-30 13:43:01.660018 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-29 18:30:00 23:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 82a86d99-205e-0cff-7184-37d7740e57a2 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-28 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 eb811b61-8114-3007-d86b-abb0a010be54 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-30 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 ca0f188d-2fd2-dce4-18d5-9a825c0b0994 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-01 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 cd1ec279-8a92-d8af-e347-05f5a0764d9f 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-02 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 3cf38d19-b3c2-0e9c-89e8-09e72f1805f1 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-03 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 6e77eb11-4538-b191-fe07-b863519eb4b5 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-04 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 dd345189-3984-5bdc-08c1-e25b468be30d 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 0ded3220-9db7-6490-857e-9e31defcca3b 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-10-01 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 a9aaa078-914d-83b2-63a0-176b7eb745c5 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-26 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 00:00:00 1af047d2-6ae7-711f-35c8-3512c048397d 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-05 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 00:00:00 0edc4443-51e9-8e35-6000-86192e9f724b 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-04 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 60e74220-67d6-e1be-9865-ca5675e3d626 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-17 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 67c6cc06-2583-8907-1f39-fe8e3d6ac456 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-01 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 332fd795-42bc-1603-92ef-8dad38b857f7 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-30 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 7e4d4a1e-3d42-f58d-9f99-84e782467caa 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-27 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 00:00:00 fe62c09a-a626-c021-a5ce-bb2d44fba8ab 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-10-02 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 b93dba15-40c5-0493-4d85-a618b84addd9 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-16 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 97dfdbff-f636-9c75-2927-d977bc5ef85f 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-13 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 00:00:00 b81dd0bb-cee1-2a90-1420-d1aef612f6db 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-05 18:30:00 23:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 b28ec6a6-1077-6750-6c50-e882b9604000 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-06 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 745cad31-18a9-2dda-46fe-be02e6d3c592 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-08 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 fc854114-0c0e-e08d-0adc-320d6d78321b 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-09 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 055b9820-8fb1-6753-2da7-db743f517227 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-10 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 6070df19-9a72-a066-0020-cd3def00ceb5 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-11 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 e37df37f-d03d-4e23-77f6-2c84a53400b6 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-12 18:30:00 23:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 4901de65-0682-05f1-4852-d67672baa086 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-13 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 1b71a776-0d31-4f3d-3c2a-605cc593fad7 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-19 18:30:00 23:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 041deca6-fbbc-b978-3029-13b0defc308e 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-20 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 f572a199-449a-3aa6-e67f-e3b3c9802a4c 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-22 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 748ef77b-7f9e-dc78-612a-553acba3d4bf 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-23 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 8b4984ab-dcc0-ce8d-eb43-91206551066e 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-24 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 23da2358-153f-7f44-6738-fb356652b859 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-25 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 c8e3f690-ecb1-12f6-922a-c2d6cca04916 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-26 18:30:00 23:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 4e7d93a8-46b4-1ad3-1699-7c7d646129fa 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-27 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 537027d5-e08c-801a-3030-29ce2023898c 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-01 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 9328bc91-ce7a-ddbc-a306-87fb99d1100e 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-02 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 7bf68994-ba3a-7ff7-e216-d6c10fc81766 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-03 18:30:00 23:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 aa5d538a-9a16-fac4-84ce-d047ef33c367 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-04 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 c335a092-dbea-a4d9-8bee-4401cc242e1b 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-24 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 dd2093a7-a680-51d1-d577-31be5ee75abb 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-03 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 4b7610cc-81a4-6080-0b8e-defac51730e2 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-08-20 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 a4d0dacd-a70e-e407-fca3-4dd01d392cd7 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-29 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 ff4868b2-dfec-a669-2efa-22b54b04f26f 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-08-23 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 95d158ae-2a39-f538-6bd7-3fa3ad60c65c 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-10-02 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 f8dfdfe4-956c-9370-b628-0dee93f09d32 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-08-18 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 0ad35720-f02a-8a12-8aaa-c051d8a1bdbd 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-22 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 723f4617-a651-1c47-0ce7-fe62032e0fe0 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-08-14 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 6b857425-3df3-3ffd-d1d6-2bfda9bf6fa6 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-11 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 741261ea-0256-bbf8-9185-1a70a328075d 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-07 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 3145fd44-e08f-7819-d172-d1d0d64a3d38 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-22 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 33d74a9a-4ac4-6df2-7713-04b5aca08b74 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-25 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 5b40473d-b699-a022-174d-b642989b4cfd 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-10 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 c659484b-d815-3848-c184-7f7d910e97e8 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-24 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 4c9dbf82-14a4-63fd-0848-a0364a72e41c 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-09 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 7db277ae-320e-ca83-ce2b-6f3a6d2c4aad 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-23 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 881ffc2c-f56d-08c5-fce2-145d23d31ca7 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-10-03 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 43b413c4-85c9-04d2-3a8a-0110018312f1 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-12 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 bc6d5bb9-7deb-8afe-d03d-2cc084eccd8e 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-08-30 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 1ca59f10-f1c0-7094-18c8-4fb3a12dc0bf 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-20 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 00:00:00 64041cd9-489e-7b3d-7a9a-2c042c074d25 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-08 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 8926ebd7-195d-d118-efaf-c8967e28845e 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-28 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 aa30f154-5870-c990-3686-af6a520b5f7e 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-10-04 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 00:00:00 e845bd46-e252-2f6c-93f0-40a3d00b4570 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-15 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 aa90d97f-93fa-e193-77fd-edcb91e90430 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-02 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 62eca5bd-9788-7ad7-dbdf-da582c18bfc0 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-19 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 00:00:00 a2dd15cf-900b-f4d0-3d46-cf6b0907dda2 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-10-03 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 00:00:00 46513d93-f29b-a87e-b5ec-cd79c6cbca27 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-09-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 db8ea35c-3b63-54ba-fae7-538168e2e7d0 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-17 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 02f42dfb-5883-bd53-49d3-76a6be8632c6 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-23 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 00:00:00 20d0e733-aea1-a0a7-48b1-eb6d5546716c 2020-08-05 08:46:22.644638 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-22 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 00:00:00 7b559764-5e5e-6411-d835-77ff8cf7c3fe 2020-08-05 08:46:22.644638 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 c4d1f11f-e887-0f23-f933-78626c3f0728 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-26 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 973f8ba2-391a-83e4-cde5-d0a4eacf4267 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-29 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 00:00:00 9a70cbf5-d4ed-7c96-f19e-6201f4140890 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-25 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 e622c6d3-82a7-d345-05dd-ccfa0448f499 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-27 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 f4902e70-ad97-af0f-66fc-b24e4a1da138 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-30 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 00:00:00 607b403f-cb51-a72c-de58-90b49f12f8b8 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-28 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 00:00:00 78dcc23a-97c1-d550-447e-49a5a40377f6 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-15 17:30:00 22:00:00 \N \N \N 00:00:00 \N \N \N \N 04:30:00 00:00:00 \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 00:00:00 06ff8830-7a3d-220a-2529-22228bade512 2020-07-31 14:39:46.223624 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-16 11:00:00 14:30:00 \N \N \N 00:00:00 \N \N \N \N 03:30:00 00:00:00 \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 00:00:00 a27c45f4-57aa-82f8-6876-025958ed3f47 2020-07-31 14:39:46.223624 2020-07-30 13:43:01.660018 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2020-08-31 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 cc117fe9-0958-3c25-bc48-28c2c0c4dd05 2020-08-05 08:46:48.014325 2020-07-30 13:43:01.660018 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-05 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 1af80872-add6-9791-6a66-2ba68c6cf321 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-06 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 685f4c92-5ee7-4059-9e08-8866201cfb61 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-28 10:30:00 14:30:00 19:30:00 00:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 05:00:00 06:40:00 7af41774-d11c-0b6c-351c-c3e6a36b1d6e 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-08-24 10:30:00 14:30:00 19:30:00 00:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 05:00:00 06:40:00 2265504c-50cd-dab2-9c69-d1fc9c94d417 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-10-04 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 b8b599fa-5957-e3a6-9a76-42865c32d34e 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-08-28 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 cd73b3b3-b863-5ef0-8a03-4af2fe339230 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-21 10:30:00 14:30:00 19:30:00 00:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 05:00:00 06:40:00 03e40c7b-ee49-2ecb-1a7d-ef8ab6b57795 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-10 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 8e72186f-3e43-a861-71a1-92c33227fac5 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-08-29 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 fce8fc78-b618-568e-69d3-0071ad4b7b52 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-02 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 db169d4e-b95a-d078-4a2c-82959e4e71c6 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-08-13 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 37098af0-bdf7-c705-43ab-e74b7b6b6155 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-08-26 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 8634c1b2-7094-9433-084d-905f6b950981 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-10-01 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 0d89dc9b-854a-b98a-7261-bdccfd00bff9 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-08-25 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 88e6c77b-22ca-eecb-848b-43273373e229 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-26 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 38b8bf87-f00b-503c-61a8-d7ccb3bfac19 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-08-12 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 66be1077-286b-cc57-d7ef-f19c55508a78 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-16 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 a994d6e6-7667-e2fe-9acf-664a86bfd115 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-18 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 20f8953d-8e3b-768d-2c4f-7eed2c4bc47c 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-08-27 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 5d37a859-0184-365e-a65c-16d183aafebb 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-08-10 10:30:00 14:30:00 19:30:00 00:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 05:00:00 06:40:00 a760014b-ac94-f7e1-9641-118727f8073a 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-01 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 7fa07df6-bb7c-5931-56ab-013b0fad37f2 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-08-31 10:30:00 14:30:00 19:30:00 00:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 05:00:00 06:40:00 e6e08cbc-cb55-d674-b416-313c69eb123d 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-04 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 be7530e4-3154-b366-7914-d347bce36fc4 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-27 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 eade2fdf-f9b6-40d0-fdb3-81dc991b6dc0 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 dde44d30-8cde-d8c2-7eae-83d9b72b6dc1 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-08-22 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 41134d3f-dd5c-50a2-1fde-7e9a0ec2fadd 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-08-21 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 c2ddb234-9bbf-41ad-0067-490607813615 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-08 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 8dda6322-3b40-17cc-fec1-9d86f1aac7f3 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-08-11 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 c2eb8b2e-a8c1-19d5-18f1-c3991b1fd0f6 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-08-17 10:30:00 14:30:00 19:30:00 00:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 05:00:00 06:40:00 dc407dc6-0cc3-65ff-de30-292e05200960 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-08-15 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 890d3ab9-4b0e-43fa-4bff-9d75d0d4a184 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-08-16 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 ed4e35c2-142e-bcbc-ddc5-ead36da2df6c 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-03 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 3d6a812e-b913-b5d6-69f1-a7a3a4233229 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-30 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 08930711-c66d-1913-57f5-9e30361875e1 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-15 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 da58f918-7d71-acb8-3ed1-ee120d8ee17a 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-19 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 2e5174d4-2487-e99b-5d2d-f4ad399f8e7f 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-25 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 ced9fd17-74f1-ab3d-f3ef-abe0f94cc7e7 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-13 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 dc17e572-d6d4-418c-44f5-a1affe62c1fd 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-07 10:30:00 14:30:00 19:30:00 00:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 05:00:00 06:40:00 fcc8472f-086d-a74f-f802-6ad3a410bfcd 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-20 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 ff01dd7f-c4a7-77c0-3387-c3dfba49d0c3 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-24 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 910505cc-8eb0-aa84-08a5-e9b0b0d1810f 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-14 10:30:00 14:30:00 19:30:00 00:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 05:00:00 06:40:00 67aa4eb2-2d30-5526-a746-03b4972e3230 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-08-19 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 e9015303-fade-8a75-83ed-830b3af5ae06 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-09-11 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 f39ecb1a-53ec-f5e0-db76-78216a56f60f 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-10-31 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 579d25f0-52eb-4073-2f2c-49fe684abad8 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-10-23 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 e19c0060-fdef-8d82-80cf-06dccec53b15 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-11-05 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 42508999-922f-ed29-c08f-464a89da2fcf 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-11-03 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 cb7c7ea1-3ecd-81c9-24a3-dc082058a0da 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-10-07 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 3a77e71f-cc59-b5e6-bab0-99f17de793f7 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-10-13 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 145bb35c-e43e-4813-1d26-666337de4ae7 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-11-27 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 9b451e04-bb2c-9fee-2ad7-45a16f76bb15 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-11-04 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 e3284175-0939-e3dd-bb52-4e92bad7b00c 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-11-07 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 3b52260d-cdea-f7d3-8c23-3334baa907be 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-11-23 10:30:00 14:30:00 19:30:00 00:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 05:00:00 06:40:00 f49ceaa2-473c-bd09-7cba-6838b7ce6e45 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-10-26 10:30:00 14:30:00 19:30:00 00:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 05:00:00 06:40:00 9f834b6f-fb3b-b3de-f9e9-e32829f3320f 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-11-17 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 9d03974f-da61-2f46-72f7-0800f1772ca8 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-11-25 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 0e72368b-13bf-f5fa-d1cb-3d318608d36b 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-11-21 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 7139e8af-49b2-ba73-e143-194229cb1513 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-10-27 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 9f18d28c-bda1-39a6-441d-93cad30c5fab 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-11-19 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 17f74b3b-7b4e-8280-9ccf-11cc108c3647 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-11-16 10:30:00 14:30:00 19:30:00 00:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 05:00:00 06:40:00 9faf0c18-4799-8189-99fa-bb2ad187eec7 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-10-10 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 750001cf-53a4-7238-9445-250799395c43 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-11-22 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 cd3a25cc-ec7d-f3ab-3183-2182439c4cdd 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-11-01 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 e2b24534-9182-4b62-c14d-2a5ec69e92b1 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-10-22 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 a5703366-f4f4-59bb-84ab-bf64ac906cd9 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-10-11 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 73ff5ea1-a654-5c3a-b9d3-f05ba7798f8e 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-10-09 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 c9bb53dd-5356-ee2e-3f16-a228a0171e87 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-11-29 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 9143d866-d328-ab93-9793-2daf3d5babf0 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-10-29 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 2bb5dd38-3a75-1bd1-9e32-834e58a173ea 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-10-28 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 b8278cb6-fdcd-3ad5-d266-65037fca985b 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-10-05 10:30:00 14:30:00 19:30:00 00:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 05:00:00 06:40:00 09fa1e84-70e9-b892-2f53-b12549a47512 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-10-20 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 dc432815-ca05-69b3-300a-5275adc8a7b8 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-11-08 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 3cf493b9-c9b0-c7da-613e-d2b7df1bf530 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-10-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 1d336b1d-563d-4255-de11-7c1e683782b5 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-10-16 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 dd405912-d7d6-aed2-14f9-5d45922e0a73 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-11-24 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 58e0b2b6-8e3d-708a-bb94-02700975f7ac 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-10-19 10:30:00 14:30:00 19:30:00 00:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 05:00:00 06:40:00 12dbd610-ac06-74e6-4b5e-452399bc1c70 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-11-10 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 291024af-a268-1d18-31e6-28a3f18c07e4 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-10-25 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 a1c9f897-5c27-ca45-2e88-b84debd4a015 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-10-12 10:30:00 14:30:00 19:30:00 00:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 05:00:00 06:40:00 d1dce27b-271c-c817-2627-da17cb014056 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-10-30 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 90cf3dba-2652-e48a-61c1-69ab904e94c9 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-11-13 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 ca84e6f8-0b62-034f-80a5-08ad13551e2d 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-11-28 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 a0a9f0fa-8276-8ec9-2c3e-a6e95254a264 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-11-09 10:30:00 14:30:00 19:30:00 00:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 05:00:00 06:40:00 b12e2e43-2541-016f-e50b-c86569e6e929 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-10-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 ea979bf9-508c-1759-7a27-c8c7e25882bf 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-10-06 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 fc6c2789-9fa4-0292-c712-4c5457255794 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-11-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 d455cf0f-c94a-301c-a8c1-ea46321bb55f 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-11-02 10:30:00 14:30:00 19:30:00 00:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 05:00:00 06:40:00 2dac3b34-19ec-6f28-e257-4d2d51c4ccc9 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-10-08 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 6248809e-012f-8326-0613-1a04f55a3108 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-11-26 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 a5955cde-d535-7b0a-b0c6-75b41c088e72 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-10-24 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 76c5cd8d-b57d-3f6a-945b-bbb77a05fb80 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-11-06 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 442dfc94-a148-f722-f787-6a24e5367289 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-11-12 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 44165e9c-68ae-f553-5868-15834682c906 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-11-20 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 448a0182-fb89-ecec-4f9a-6e88112883c7 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-10-18 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 a7ca0cba-8728-34b9-6c93-fd44836975b9 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-11-14 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 16a3a707-4fc6-3899-07c6-4184b28fab51 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-10-17 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 9674a45d-8fc5-0794-4898-d42d7958ea5a 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-10-15 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 aa78819a-961f-895c-aa3d-e8a8dada0759 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-11-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 c93c607d-d037-dc0a-a0b4-8dfc37e5953f 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-11-15 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 57310bb8-2985-664c-343e-d756d3a95c7b 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-25 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 ebbc7005-91ed-c41e-7547-1d7079ef0cda 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-20 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 2ce13302-3dc9-1db1-d46d-6d68d3722a44 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-30 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 d2f223bd-534b-81aa-b1ee-aa33b1a9ffe3 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-09 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 980939db-15c2-ae86-4683-e43533328d07 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-15 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 4d2ad9d4-edb8-d8c3-ff99-061f71c5bc52 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-19 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 e91173bf-0d2f-37ce-1a66-b72e3b292f19 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-26 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 af965465-872a-97d7-fe5a-2cff55b180e3 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2021-01-10 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 30d68d2d-c68f-b8b2-5428-1f1bd745eae6 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-11 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 a056257d-a08e-f954-1cac-e5dac694b000 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-14 10:30:00 14:30:00 19:30:00 00:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 05:00:00 06:40:00 7dd6061a-d3e6-90ee-c460-ffb2bd9e302a 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-17 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 7df12d18-3c6d-b951-41d3-d06a0878d31e 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2021-01-02 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 0d161849-f673-95fe-caeb-09a71b8efc74 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2021-01-08 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 ad854151-0024-dc44-73df-cd83a15cc035 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-31 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 954927af-4441-308d-21c6-3e65d9c2bbc7 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-28 10:30:00 14:30:00 19:30:00 00:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 05:00:00 06:40:00 52850e96-04a4-4787-6057-c0e1b7418cee 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2021-01-05 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 0a5a6143-e91b-18fc-4427-1eb298175af4 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-27 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 1cc6ba5a-e8a7-0fa9-d59d-50a97021909d 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2021-01-09 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 6814ea1b-3908-d374-fd25-275b8e0d68f1 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-18 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 badfbbde-1ad4-b46c-2a7e-4945b6b8b555 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +3c463353-f763-c72c-0007-e6b4926befee 2020-08-10 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 5fecb19d-6201-67fd-6bdf-f07ffa057bfa 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-08-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 6b60c5e9-a917-266b-6f1f-cf04a69ca865 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-08-12 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 72c0e8af-05ed-82bb-17ed-ea987f041a69 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-08-10 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 a124faf5-a464-240e-2636-bf2cfb00c2e4 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-08-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 2a7b3616-ea63-4de7-aa4b-6ed50a172c32 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-08-12 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 173a0120-69f2-1016-12db-f71d0ebc9e52 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-08-13 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 00a48a4b-08d0-b9e3-2e77-727fd420b764 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-08-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 101cd8af-c09f-94ea-4b07-dcea76770731 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-08-15 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 56877d67-7b9e-8928-e000-af66bd19b4be 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-08-16 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 3d39e8a8-ca3d-e03e-1077-f6f6324a7256 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-08-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 1ff1668f-1daa-02ed-627b-a2ae600729fd 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-08-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 46435604-abf7-84f3-9599-89503abcaf7f 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-08-19 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 8a6d9145-8c8e-6f9b-131d-0bdd53d19454 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-08-20 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 cd89f5f4-bdbf-622a-c349-98c869e98d59 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-08-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 eac906e3-1729-7b59-7204-275053f64c1b 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-08-22 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 1f9455d0-8810-49cb-9328-5264c4a05926 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-08-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 c5977305-1b4e-d114-080c-5c30428ff851 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-08-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 860f3a75-072c-01b2-d957-9143e9959e45 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-08-25 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 6386d95e-4eb5-7073-9637-c07a4175d89f 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-08-26 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 d08489ac-fa6e-ab62-491d-a499c2419907 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-08-27 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 53d505f1-d3e9-77ad-bb36-fe490a80a8bd 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-08-28 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 25485fbb-c1c9-fbcc-2c65-a1756d8df1bf 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-08-29 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 bba08b5a-1444-0ab0-c95c-6ab232b12239 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-08-30 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 0b7560ec-a3b0-017c-ddda-686fc9bee346 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-08-31 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 e8420e43-d1d2-a357-a96a-a7e35e981107 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-09-01 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 8de2528b-a27b-0083-77a9-f97b491524cb 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-09-02 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 58ba022b-b231-4812-fe2f-afe6c1d42df8 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-09-03 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 55e2d665-fc03-c3fc-769f-095eb45fe296 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-09-04 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 812a88ae-5f8c-3e7c-1239-1b00893970f5 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-09-05 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 90d1036d-7ed9-039d-373a-feb55ee843a8 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +3c463353-f763-c72c-0007-e6b4926befee 2020-08-13 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 f68a3c2c-7631-1dc0-ee15-371948b8051c 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-08-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 4003c9c5-fd42-c3f5-6772-cb28446ceb03 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-08-15 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 187fbec1-5b6f-9bbd-4d94-077d278c244f 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-08-16 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 35b6610b-cfee-d960-e5e9-726fe01bb987 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-08-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 18d5a3a0-b309-9d9d-b1ab-cd7933171910 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-08-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 ef731574-50bf-fde0-b890-83c5f687852a 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-08-19 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 c3573fcf-1f52-95a0-a5fa-a5d5502ce29a 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-08-20 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 cd37d6be-c384-4cea-c316-a15e1e62cba4 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-08-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 b6e67af2-0dd7-c8c4-9ea2-8d86a48752db 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-08-22 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 44ac3f81-de49-d09f-e7c0-d72bfbbb0494 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-08-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 c4278330-16bf-8c1b-05e0-b9c2333076eb 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-08-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 67a064c5-08bd-ac0d-d9f4-9742f965ec26 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-08-25 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 fbf73184-a97c-2e4d-8984-4f532af77148 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-08-26 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 7c5ac028-8274-5077-eb93-edafeba0a661 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-08-27 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 d56abb0f-2d85-abdd-70ea-165f95099432 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-08-28 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 fd7fa732-9550-6743-e308-fcfb5b45ecd0 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-08-29 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 1c427d15-47bf-1c55-6b83-72d28b14161c 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-08-30 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 a8620b08-b43f-58a5-269a-82b1bf92b4c8 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-08-31 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 ee535d65-58d7-74f0-6cb7-dacea9693bf9 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-09-01 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 b3a1a33b-8a38-f18e-3322-d20b687c80ad 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-09-02 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 ee6504d3-08ae-f247-10e4-b53409849835 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-09-03 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 41297e7e-4d79-1817-bb0a-0a1d4b688ca2 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-09-04 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 d30006fd-fdb3-2e3e-d918-a7dd4917cae1 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-09-05 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 abd24a34-12cf-e24a-70c9-3ffea617f199 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-09-06 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 39b644aa-5135-eaea-6487-719e178cc5bf 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-09-07 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 67a1bf08-f859-0e3a-66e5-372076a53070 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-09-08 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 582e3079-e24d-4cef-00bc-cfa7d2976c9e 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-09-09 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 8b81f2cf-97cb-f34c-085e-0672d52f12c1 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-09-10 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 e61cc78c-07ed-9830-f2d3-71ed03cfef9a 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-09-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 887a65d1-9cf3-c78e-80a4-5f01fac71bdd 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-09-12 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 3dc754e1-f4cb-081d-5c73-635aed5d5ed5 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-09-13 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 3dbbc976-6e3a-b9bb-323d-5c74f7e8f8fe 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-09-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 5fd31578-2cb4-2c4f-36a7-decfe970a5e8 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-09-15 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 67653192-f921-fe03-dc05-4796c65f73a6 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-09-16 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 8f142bd4-24a5-7380-0d7d-2f5f00516e9c 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-09-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 cf25b96e-bf98-6cd5-2464-0066c63aa0d7 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-09-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 79ea9378-0ebb-81ed-9633-1f2d1adc3b76 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-09-19 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 99a0e6d6-5f02-21fd-2d9d-d3bf1cae8fcb 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-09-20 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 eb538159-6733-cfb9-4965-f58c8db5d275 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-09-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 410fa46a-8f62-ba15-2fdb-ff2a074e08c5 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-09-22 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 d72216bd-ca97-4c9d-544c-10f78dd4c52e 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-09-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 f172e070-d158-713c-2f9f-76de883dbc7d 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-09-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 cfa1dfea-7116-fd5b-76d0-58c6578bc9cd 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-09-25 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 404feff9-4682-c471-d81e-084b05bee8c2 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-09-26 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 a9cedc20-1674-691b-a12d-14f65fe2e8c0 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-09-27 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 55704216-4803-cc98-4e1c-3802fe24c064 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-09-28 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 7237038a-8ad7-89bf-d108-8cbbab9f6069 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-09-29 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 c6957776-808c-71d5-9b04-9a9442b38681 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-09-30 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 4fef351b-13d9-ff8a-d23b-6ff047ade59f 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-10-01 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 3bce4c51-4cfa-cf72-87b8-69db4581d533 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-10-02 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 7f95c94e-01e1-16db-93c1-e5d2874492f4 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-10-03 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 c87c169a-8a4e-2ff4-8760-3c18153f983c 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-10-04 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 00:00:00 9aa0cd1d-6896-cd08-e34a-3ad092dda6f6 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-10-05 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 294b7c94-64c2-b8f8-d468-c0b110978960 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-10-06 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 638ca73e-c1d0-3442-65e3-49767fed4fb3 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-10-07 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 5140a1a9-db1b-b95c-4760-836626159289 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-10-08 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 ebc30682-f19a-9a30-8243-4d02b748612e 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-10-09 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 f74937fb-b07e-a3f6-c999-95b6d4870ad2 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-10-10 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 1ebae3b8-9d20-3439-e0d6-bbd5b45de133 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-10-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 ba58825b-f46f-14f6-5ca4-145fc94add2b 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-10-12 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 f7b95bfd-0a54-66cb-ea70-709cac7dbee7 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-10-13 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 df7a8c07-15a3-a07a-00cc-4bed883b02f8 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-10-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 6d32e0ac-0061-8e95-2fa5-158c6eeefc70 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-10-15 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 65dc405b-9b86-c747-dfe8-a3d2af2bda5e 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-10-16 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 fffeed39-b6c0-520e-7ec0-8790d1116e60 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-10-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 c7b389ce-7fe1-2845-93da-29f30f702d05 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-10-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 dc6508bf-0492-bc54-df75-93d79a6e96b2 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-10-19 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 3cf97371-315d-b7e7-eb4c-4b6239a520f8 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-10-20 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 e3d3e2f6-6bf6-b734-6a27-197d38dbb2c2 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-10-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 63afea67-0cf9-55f8-4131-6337d9fa2db0 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-10-22 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 a296fa71-88b3-2d38-2479-90435d9c462d 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-10-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 9b95408a-f541-4b8b-81cb-4cd6ca9e81ef 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-10-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 da750332-b6ca-5109-f981-267e515b2666 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-10-25 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 26507ba6-ac8e-9640-a6be-6370939cba57 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-10-26 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 17f34198-b3ee-f3fa-0635-bb0d17a03233 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-10-27 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 49d42f98-ede6-61f2-6d07-f2120ec32517 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-10-28 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 9f4fc242-7de2-ddc3-3416-bd92f7397e9a 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-10-29 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 7c8c9ade-426d-3c9e-bfcb-85481e8029ad 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-10-30 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 a365fa06-1e59-e7bb-109f-5ded4c5a0de4 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-10-31 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 1f1938d5-581e-d034-6d86-4f6c0e92aa94 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-11-01 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 0ac6c933-7c4b-b23b-64b9-e79c1e00a4e3 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-11-02 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 f432630b-daab-7ca9-ece8-10507bb4da90 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-11-03 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 75a7971a-c0a1-f89d-3d05-742d528c11ae 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-11-04 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 1ec8ad50-b338-e5ec-4d43-2179952cf0dd 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-11-05 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 83586a77-c097-f6dc-e725-a231844a53ed 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-11-06 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 a3eedc02-38b5-d356-5235-34b86b443098 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-11-07 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 744af9fc-de08-5998-c31e-df01e8628bc9 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-11-08 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 fd650147-00f8-659f-0597-0c7a8c80ace9 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-11-09 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 1b44a57b-11df-d16c-05ca-2e3b8aea6297 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-11-10 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 19180613-ec5f-57c1-2c5f-85652205622d 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-11-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 7947714e-5485-8dda-43d5-bbf024e04144 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-11-12 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 c4030361-a1a3-81e9-43a9-fdfa2daa0ef1 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-11-13 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 8d78a56f-fec8-3838-0aeb-c995ede66ca3 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-11-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 e724a7d5-8762-da94-648b-3b95ed16085f 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-11-15 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 0587d349-5c64-8f36-04c9-b1168188bc7b 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-11-16 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 f65324f3-8b2a-f3ef-e25e-7ae0faf67997 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-11-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 a63883e3-7df3-e590-fb17-0e7a0a25f954 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-11-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 72c85b91-2b96-fed8-beb5-5768f6cdbde5 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-11-19 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 50622888-657a-5d15-a2f0-631d30c80b8d 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-11-20 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 0f17cf54-6805-30a3-dc6c-480cdd3a29a3 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-11-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 ae91665e-aa4c-f421-f8ee-6c4f95b58a35 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-11-22 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 0b55b4de-7e5d-410c-fe8f-f01b790916ca 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-11-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 699066cd-298c-7a35-26cc-c86174a330fd 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-11-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 14a6f971-bceb-eb95-00b0-8292728d671f 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-11-25 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 3be950f4-a717-bfee-76b7-1d51041c628f 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-11-26 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 24e07232-6f12-0637-40c9-d8a6c7bfb71e 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-11-27 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 2a3b1e34-4fd7-3eee-0bdd-0c3f4b1aed27 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-11-28 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 4876b6f2-aeee-42a4-c44d-b7649a74e66c 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-11-29 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 00:00:00 10ecf4fe-67e9-4569-33ad-88d856398296 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-11-30 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 fc8bbb24-830e-d396-6f06-439561874f11 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-12-01 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 a8ed40fe-fc07-582c-823f-9a421fd734de 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-12-02 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 80a6bd3d-cc8e-9316-125d-57df5a9e2de5 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-12-03 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 409720d7-2f22-9c68-9dea-e664491a760e 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-12-04 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 3a42beff-3f27-3f89-4b7a-1e6631d642fb 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-12-05 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 a91801af-ee25-a601-bb4f-72c0f9d226bb 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-12-06 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 4498ffc4-655b-6ba1-00d9-279106076f4d 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-12-07 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 e8d709bc-e17f-4086-705d-a82fa4350b81 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-12-08 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 af6456cc-31df-a1e9-bf30-7ec744f22eba 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-12-09 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 026f87af-8917-55cc-5280-21826034ec2f 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-12-10 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 ccde47e7-d86f-3efc-bd73-388907b193b1 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-12-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 28d48cec-a186-64a0-0777-5bdf2a0df2fe 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-12-12 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 a32a82d7-7193-ff7d-8217-b730b86575be 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-12-13 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 21007133-757c-95b3-4df1-d2b7a25d81a8 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-12-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 acaf8883-0cb0-3c25-083a-ae03bbade008 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-12-15 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 b9a54a4e-f5a3-ccfd-08a3-56eee54329b4 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-12-16 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 b63419db-c2c6-2ca0-652f-0a6123fe7f44 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-12-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 30337f63-6a4f-c1d1-c6f8-86ea08e74a14 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-12-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 29d164ae-94d0-3a0c-f9fc-7b3eda914332 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-12-19 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 a0e7febc-28ea-6c89-c634-5326dd13016e 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-12-20 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 2d21e0ee-2965-bdd6-faf6-c9d7f9db2b99 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-12-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 16252256-1ed0-f9a1-4222-053a8921e308 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-12-22 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 fa20e9b2-48a8-cd87-ecb7-ebca9620564e 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-12-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 94d6e882-d008-be44-e8be-f289ee3a0d82 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-12-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 eb900490-41f2-dc42-d56a-8df69eeec082 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-12-25 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 6ca2e885-0914-487b-ae2d-ba25903e8bb6 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-12-26 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 23e6442c-3df9-2dab-cb40-8949818ee366 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-12-27 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 d0e33bdf-90f8-21ab-a3fb-3d953e02ec2c 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-12-28 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 05b91681-0b5e-b654-57fd-ebd94753bcb4 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-12-29 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 30dc6c55-6cb4-4091-2add-88ee321f9e40 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-12-30 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 7d459597-189a-239b-8201-ed6b3bf00bc5 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2020-12-31 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 390ab613-d9cc-55dd-a77e-d11511e26327 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2021-01-01 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 72e2a6f0-a5d0-96c6-a736-f1f930066d29 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2021-01-02 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 4e710dc7-2b3c-8d17-f1be-408db60f02e2 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2021-01-03 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 390a67d4-cd97-5eee-d91e-3e2b7201800a 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2021-01-04 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 39b34310-944d-90ef-4f50-06ca34658e47 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2021-01-05 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 b63d106d-8057-4bc1-b779-3e9df8e3b03c 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2021-01-06 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 9cceb7ec-b68e-574b-83e7-cb6a9a8de25e 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2021-01-07 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 a645e9b9-5859-ebc3-5748-55e079027605 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2021-01-08 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 e725de5d-d112-bb5c-71ef-88bbd35a8f9d 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2021-01-09 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 6be42697-ba54-326f-9608-640025a4adf1 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2021-01-10 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 73bdfe80-4ca4-5e11-f7da-02692d271aed 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2021-01-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 1b7235a1-fca2-39e1-8077-f9d0990b3fcc 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2021-01-12 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 0bd7c31c-4474-4cc6-1132-e4e6108a3e5b 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2021-01-13 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 45bb556a-9ea1-c1a5-7c29-5c189848a5ad 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2021-01-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 8c009de5-7bbe-bbbc-29d3-54d3b8370ba5 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2021-01-15 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 d72eb031-9d4d-0193-56bf-7ff5e9526092 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2021-01-16 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 5a6d0bfa-f4bb-5a6e-e14e-46567a5efaaf 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2021-01-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 40983734-13ff-14b4-9f58-69c8bf998fd2 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2021-01-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 d8353796-3a15-b988-37ec-dae2bcd138ab 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2021-01-19 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 87238370-1628-ccf7-f91b-160c6d16c615 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2021-01-20 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 63a5a7fe-b5b6-0800-6327-836915ba2da9 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2021-01-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 e557a730-559f-ef17-a68b-8b334d2c0901 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2021-01-22 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 25fb6fd8-8218-ecff-00a1-f4958d52afe6 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2021-01-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 e1084f65-576e-bb2d-f9fe-fa428ea409ca 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2021-01-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 00:00:00 24e7e8f0-726d-6ce0-4330-4c646ed58bd8 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 188d37ea-6e35-a117-51bb-92d0286ff48a 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2021-01-21 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 0272028e-7ece-095a-b774-b1ecd4589f2b 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2021-01-07 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 a620dc5d-5f60-2180-b81a-0643da0acd66 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-12 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 fdfd6b05-8b39-7e03-dcbd-70de948e1f82 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-10 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 e315bcb2-d32f-2f09-1333-b4e84dc3199b 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-16 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 3bcef980-b863-4515-93bc-e4c0d5e86c3d 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2021-01-04 10:30:00 14:30:00 19:30:00 00:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 05:00:00 06:40:00 61f11a6d-7ad0-c311-5f08-3e626a38532e 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-22 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 92ab2c92-24be-8a40-c192-0755b47919cd 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-07 10:30:00 14:30:00 19:30:00 00:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 05:00:00 06:40:00 81771dff-ac96-f718-d937-efed26ec511a 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2021-01-22 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 e9908524-50b8-5725-626f-0a4710dbc095 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-29 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 1f3d26d6-bddc-3b66-b794-103db11c9cca 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-24 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 9fbc8443-b6ec-711a-c333-febe0d0fa3bd 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-21 10:30:00 14:30:00 19:30:00 00:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 05:00:00 06:40:00 586718d9-f506-eabe-c7c8-280e406d7006 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-06 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 bcb594f2-9b92-dd0a-4da5-755dbb2a9092 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2021-01-03 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 daa2a364-8b36-cf71-5acc-8d1bec8985d5 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2021-01-06 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 ef0686e2-5912-ba16-5c8a-a205a5099276 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2021-01-23 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 b4ecc6df-7d82-c42b-3fcf-8c7a0fcae0db 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-13 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 5bf40b28-eb08-37b2-08d9-2fb8200326b4 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-08 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 f3b4af95-80af-232f-3bb4-d58d67e14eb0 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2021-01-01 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 f8dd92a0-049c-d965-caa9-8590407c4102 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-09-06 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 73534c87-e6d3-c1e0-b3f7-3b84e05de40d 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-09-07 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 74103015-0b40-be6f-b7cc-f94c64349597 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-09-08 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 43e6bdf4-6458-3f1e-5ca9-cc9325450ff3 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-09-09 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 c80f5a7d-df6e-ef96-65d2-9cbbe0776155 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-09-10 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 61e79093-6e44-7baa-8cf4-61ca63f984f7 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-09-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 c2362aee-1f92-7fcb-4c71-4e5f9157451e 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-09-12 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 4b3f8678-8c66-f308-d1cc-68968060c70e 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-09-13 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 50f53371-78ac-5a28-d3eb-c2e6a251de93 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-09-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 68c0b6c8-0246-12bb-3610-aebb94944832 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-09-15 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 30918a94-be6d-ea22-b2ae-2972d1bb22eb 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-09-16 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 b31f915b-142a-d81c-118f-44a1f4160665 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-09-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 87c17ad3-5fa4-a414-fdb6-32da663f3511 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-09-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 497e6fb8-6304-c0d6-2b84-86228972578a 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-09-19 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 09877049-ac60-a13b-4057-2629aa5e827d 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-09-20 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 3e3d4f52-78a9-58f4-530d-eeddb06cbf45 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-09-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 36dfda52-3a54-3a60-f363-333ff71cb5f8 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-09-22 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 ef958b3f-a41b-f457-b87a-8440c7a10fb1 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-09-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 1d87354e-d3d4-8e26-b459-b04592538580 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-09-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 aeb6b697-80cd-2f73-d95e-e7d6dfac618c 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-09-25 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 02b4482d-adfd-807f-83cd-8f24b9889307 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-09-26 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 22f62744-81cc-375c-9e16-0d6661230be4 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-09-27 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 599f45c9-ec11-307c-897d-7f82756d204a 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-09-28 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 e667f092-d7b4-7149-1148-bc3ca7634e31 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-09-29 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 d3b6550f-96e4-2b1d-430d-162c0fc243fd 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-09-30 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 7fc1f9aa-a032-de31-1ad0-b7fdf3bdb7b0 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-10-01 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 5327a023-ba66-b82c-f59b-f2f36eb25ef2 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-10-02 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 68bcd9a4-8bc9-6d66-9bef-84b5a0f15c40 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-10-03 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 0ff6f589-db7e-2d66-376a-6f7bbe8ad187 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-10-04 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 082fee79-fc73-4791-1bc8-4581acf1c170 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-10-05 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 7d6eb689-d834-fb89-4302-c6f3b60b491b 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-10-06 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 2612bd4e-3757-99d1-a0cb-42370c94f484 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-10-07 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 7ac2bf17-7418-c189-20df-0ec1230a067e 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-10-08 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 38fcfa3d-d74f-d556-a4fc-3b8fabd9f8fa 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-10-09 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 70637e5f-8c98-ba56-f6dd-4244a79aeb25 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-10-10 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 93068fc5-0fa0-8f9d-9411-e9cb27e1e802 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-10-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 0b638602-41e3-127e-ec20-5b9e778bcf18 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-10-12 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 9801a7fe-3ce4-bfd0-c62b-ee309f78128c 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-10-13 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 74f5b31b-d66a-0089-6a3f-2f272cb1e4c8 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-10-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 4b90a75b-56bb-6b42-2e8a-a8241d1b7d6b 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-10-15 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 27648572-60b5-b0af-5401-8277f80298b0 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-10-16 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 6c53fa9a-2367-30bf-fb14-c3bc1fb13792 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-10-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 29ebec63-bca5-cdb0-897d-ff8462e09b3b 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-10-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 55707a4f-0a6c-71c3-1519-da2b5b4dd175 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-10-19 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 4c8fd10b-0c29-d9aa-7656-463c889739e6 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-10-20 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 605c096e-9f59-e014-68d3-9bc91b40b325 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-10-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 3f7d7e74-fe68-d796-8394-033a01397b47 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-10-22 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 c3a137bf-0df5-0530-6d5d-1ae73f6488ef 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-10-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 44986788-286d-a382-4e92-a6a567444e0d 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-10-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 755b1710-73e2-b253-8af2-ab7ff2b92f3c 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-10-25 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 b2872d09-3932-68d4-1d6a-ce32fba06701 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-10-26 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 b0e0ee1f-d7f4-4e1e-79ea-add359da867e 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-10-27 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 1407208f-5c11-377c-6270-c2790679d98a 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-10-28 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 7daafce7-b51d-52f5-2fdf-f43339f3222e 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-10-29 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 68698764-18f1-d808-0c07-b56539152fce 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-10-30 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 638cc907-3806-0502-8a14-4c817c97b352 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-10-31 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 562b7f1e-43d5-f8a6-7c48-4a3dac222c1f 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-11-01 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 0ecc33fb-59f7-93fe-2fdf-c182fd9e0da8 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-11-02 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 b893a278-ed89-bc9f-ad1e-e7fadec18fed 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-11-03 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 40fbea37-8338-6ad8-9697-6186d16c63e8 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-11-04 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 3defa9a8-99af-761e-54ab-f83548c23f30 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-11-05 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 1bfed972-89fc-2b48-ea59-13167fc18d76 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-11-06 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 cb371a0c-6134-80e6-2f20-74abf3058c8a 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-11-07 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 9dd178f4-b702-5a79-1a92-fff55845ec67 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-11-08 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 d9ff7d2c-61b1-2bbe-8528-135609e138df 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-11-09 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 91c81f1a-5855-0d3f-225b-f2e0499d315e 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-11-10 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 5543eb4a-db91-57b6-bbf9-c47aad059594 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-11-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 29004857-b549-80be-5dcd-a25fea71268f 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-11-12 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 8c0953be-990c-7069-8677-00045c6245a9 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-11-13 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 36458cc1-4ff5-f4de-a0c1-1f2dd697fb74 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-11-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 49fcacef-cb04-232b-3113-1d3b7b180697 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-11-15 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 0a6f009d-0733-9ca3-42be-3ecaaea4d7f2 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-11-16 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 17101a77-77fb-f2b2-56aa-15b0e7e10623 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-11-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 c50255a6-5704-d806-e067-37ab54cb332c 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-11-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 6570a952-efbd-928a-34da-a9774b679c04 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-11-19 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 d7b3d39d-7c71-83da-b5ad-f87db91a8b1a 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-11-20 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 84f98cdf-c9be-a6b3-f3f9-f2f95282b9ac 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-11-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 c938e9ee-7638-f092-44ce-37bc3933d552 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-11-22 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 3cb718b6-8ed7-88ba-b126-f150f644cd8d 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-11-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 5dc41fc6-8d38-60df-b07d-2080d99f41ce 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-11-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 4ee05e08-f686-707e-b457-a65132ff28e5 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-11-25 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 8d23f69a-45f4-2c7e-2b3a-3c19956fe954 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-11-26 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 b44e17f6-7f2f-d06f-b8b5-75ed63332bdf 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-11-27 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 ed05dc4b-ed68-e9e1-1352-a7c8c9701d4a 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-11-28 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 dfaa6777-2e5a-1978-f72b-909ea0996dd4 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-11-29 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 eace6510-8612-51e8-8adc-41ea02231d1f 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-11-30 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 e51e73c2-2fa1-160e-28bf-d7b916c1fe95 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-12-01 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 a4eec078-a6b5-a20f-aaae-e653a133ca4d 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-12-02 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 9bfe2ecc-5dde-1aff-9fb3-872f2f4f5224 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-12-03 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 c5637f67-290d-7cf3-123e-9be2fbb61678 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-12-04 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 c1b13174-c731-9af1-b5ca-1dc36e9e0f14 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-12-05 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 d6704184-fe3e-b79c-f027-9b35671c8d69 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-12-06 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 2dc56343-81d4-1297-a5ef-7d98ea332d30 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-12-07 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 0f8ddeac-acdd-a23d-cb9c-970406e7e04d 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-12-08 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 6d0e8ed8-1eb7-dc20-a20c-14a428a422e0 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-12-09 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 e8f2f2b1-c614-2e50-204c-0315c1e3fbc7 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-12-10 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 2a7f7f29-92ec-c69b-a66f-1a4cc493c649 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-12-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 e83bc98d-b386-b14e-9c1f-0fa753f0e56d 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-12-12 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 a2168ba9-4c6f-66f7-cd8f-a7bf098d9970 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-12-13 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 89b39003-a56f-a0ff-5ae6-6904bdcd9afe 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-12-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 02aa62b6-bb44-c18b-f027-118e598dd428 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-12-15 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 c7050a59-e9db-bd10-219e-9cbcb56f961d 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-12-16 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 17ac8b63-a20a-84b3-f39f-14654d85c5c1 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-12-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 136f4013-2b77-5685-300b-68ee53def2a8 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-12-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 ce0ac52a-b965-5af5-8d7f-86f28d3ff340 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-12-19 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 724293f8-66db-f3ad-8f7e-1126b6fa8386 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-12-20 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 c06a37e5-c940-96e3-345e-65a8b3ddbd95 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-12-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 572c6c96-72a2-3f9f-40fd-51cb929cbed3 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-12-22 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 57ae26a5-9439-8869-0a87-85ef83b612ea 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-12-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 c9245f51-aa66-085a-7cc5-f6deb8157a8a 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-12-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 b2644b9c-8cb8-462f-6828-c7f856584347 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-12-25 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 d21a8829-7673-3079-8414-c5a0bf9e414b 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-12-26 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 8080a929-21b1-e5af-41db-ab5e40b50267 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-12-27 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 d776d2c8-3a4b-de52-ca4e-a78000bc3322 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-12-28 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 5e4708cd-eba6-a51d-e8da-b51039816845 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-12-29 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 257a8d09-970d-fa49-8917-7a1a748f01b2 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-12-30 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 195e7c12-0c29-f08c-e25f-3c65f6eeee66 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2020-12-31 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 0157e001-ad4c-31ec-7221-4d1e0f6d7c69 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2021-01-01 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 9679f8e1-ff1a-11ed-0f42-ecbaaac01535 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2021-01-02 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 dc41e2b3-35a1-daae-52ad-4b8bf5f393f3 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2021-01-03 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 1646bd13-0bb7-6ecd-7871-a5b2f0768828 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2021-01-04 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 075d6292-86e7-c7c0-8c1d-a2ac05c86107 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2021-01-05 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 53504206-83f2-868f-1358-2363657a4f6b 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2021-01-06 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 87182c19-98e5-3622-23d7-eeda5d101fbd 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2021-01-07 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 2a963e04-d458-46cc-dd18-965be1ada46b 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2021-01-08 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 20888d84-9550-2986-50a3-be0b27ef3cf4 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2021-01-09 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 666cc000-7a81-161e-068a-5801f717368d 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2021-01-10 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 bc935197-f952-2274-51b1-0dc953e63e16 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2021-01-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 55676b23-4b73-375b-e21d-055e61284bde 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2021-01-12 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 6878bc28-19a6-221d-9269-b632e244299a 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2021-01-13 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 29b4cf96-2cd4-4234-2867-97d3c130ad5b 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2021-01-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 184a9efe-fad9-08bd-fed5-e6a10be170aa 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2021-01-15 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 93be0ddc-d5e8-b949-4016-0281728523d9 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2021-01-16 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 c563ce1d-011a-3f31-e247-e0131d29d3cc 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2021-01-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 91b7ccae-2fa8-333b-b9ad-0f23510d3ac0 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2021-01-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 930447d3-3070-d5c0-5b90-da2829e11fc8 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2021-01-19 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 53794153-bfc6-603f-6f7d-b3b72520e47a 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2021-01-20 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 a67e46ec-3056-128f-edac-ccaf57a0450c 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2021-01-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 0753f70c-92f1-ced6-3fbe-e27d0eb0bfbe 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2021-01-22 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 02433392-231a-6437-55a3-00208be86eb1 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2021-01-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 ac3dd5cd-cb1e-b76d-1af4-108ed46d8817 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2021-01-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 2610a142-1a7b-9e96-25fd-2a08220e5639 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-19 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 9e555497-d77f-d51d-8172-34a85222a412 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-22 17:30:00 22:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 9fc9c24f-81eb-cba0-b066-f4ad18b1ae97 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-25 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 ac612255-e004-7742-fe4f-f5cbc1987dee 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-30 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 4a05e133-134a-37c8-8fe1-4692fd4252c7 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-04 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 ce5127ee-6d48-d507-031d-4bb61fb71093 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-09 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 ae3e7492-6ba1-39d2-3e84-ae53358ae17b 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-10 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 32d07a78-e665-bcb3-d2f8-3cd13ef74f57 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-12 17:30:00 22:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 96d91e20-744b-16b3-c519-f04689e0fe06 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-17 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 eee28dae-6abc-ac92-ef5d-ed07389f57de 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-20 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 ea415cbf-b194-b8af-1392-2854505555fb 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-18 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 6f00ec4d-9d41-40cb-f30a-e44ad12f6005 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-27 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 00a81705-a479-57d1-b507-90fdb32ca6e9 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-17 10:30:00 14:30:00 18:00:00 23:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:30:00 06:40:00 a3ba6b33-3d97-b751-89a5-e7f0838e2303 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-18 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 4664ae45-fec3-cd50-c2d7-5b0151860c2c 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-20 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 331e0359-d219-1d58-3ec4-b7ef4eb44e36 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-21 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 a426f7d1-6696-834c-7760-498dbdf344e0 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-24 10:30:00 14:30:00 18:00:00 23:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:30:00 06:40:00 eaf31ba7-f528-6b43-0d92-cdf78fb08863 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-28 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 7b3a40d7-7b1d-3709-79b2-699bf586a0db 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-29 17:30:00 22:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 82c192b4-48c2-dac4-52fc-2f57c7bffeee 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-01 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 b200e39d-93f8-ce76-fa7d-9e0dce2a7a66 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-02 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 b8e2f479-fdd7-55e5-b335-dbdf3dd80d00 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-03 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 d781606c-1aac-baef-2445-2fa70b714b74 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-07 10:30:00 14:30:00 18:00:00 23:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:30:00 06:40:00 700b845e-4ce9-0065-3ee1-907a38d17368 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-08 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 dea90e44-7b32-4642-4615-89dec323f765 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-13 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 db38d142-2bec-723b-1067-bdc2edc7074d 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-22 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 2e860c94-e6de-9316-f0e2-7c376228a216 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-23 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 55aa7c0d-f162-a483-d5e0-c2161c4f6012 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-25 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 acf9e9d6-c62e-434a-d08f-c2aa02bbe1cc 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-26 17:30:00 22:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 a39e4a06-4fb9-af5e-311f-fc2c05dbb274 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-29 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 53285579-8a56-8952-93af-f0b8f32efc03 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-30 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 664a328e-0254-2527-2466-a17b9aa06735 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-02 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 a992b7a5-49a5-72b4-fbe8-2ca5f0dad73d 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-04 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 721e3617-3855-2456-5a91-ff6747f3bc8d 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-26 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 2b06618a-5be7-7f69-d623-fc10ad140310 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-27 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 6885484b-ed08-303c-5b7e-b1872e496704 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-31 10:30:00 14:30:00 18:00:00 23:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:30:00 06:40:00 8dde55e4-8f66-f561-24bb-06336598ea36 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-06 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 113dfefd-da5b-8e0d-3d15-b3a190b27051 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-14 10:30:00 14:30:00 18:00:00 23:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:30:00 06:40:00 30d50f41-d4de-ab70-875c-009a8e00e00e 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-15 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 54639988-8ff0-dec2-bb0b-f0df21c9538d 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-16 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 12886148-35a0-f1e5-7fe4-54e8ff78a603 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-21 10:30:00 14:30:00 18:00:00 23:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:30:00 06:40:00 fec17a01-129f-2853-932b-33433f1000de 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-01 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 bad1c8cf-0f3d-263f-ae0c-b4d98024d627 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-03 17:30:00 22:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 4d474a99-94a8-1230-440f-17600b592e3e 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-03 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 cdb58645-a4fa-6b3e-c340-12328b1f12c7 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-04 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 fa35a81e-0f28-9a6e-af1d-6d05f917bdec 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-05 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 c8a3f12c-9d6b-f053-b3a7-0398b1d206a4 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-06 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 23686a17-c296-783b-5fd1-db158d1b26c7 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-07 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 7878a1e2-48b3-9f26-18c9-ba793492eecb 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-08 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 8e889823-c2e5-0c5c-3126-9052309a2e04 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-09 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 8fc87785-70e6-ccdf-a6b6-7fc99cf5e751 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-10 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 8e1f21d3-817b-2e90-e6f6-433d1dc80b42 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-11 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 cf48a312-4055-50e7-33a7-cdd2fb449722 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-12 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 acdf8814-cfe0-6184-8c08-fd5f658b6520 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-13 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 355b9f56-a0cc-f8ce-1981-21c23f78e971 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-14 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 85d834c3-68b9-c430-0122-464ef132e2cc 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-15 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 529c008a-1c0c-6bb3-57fc-2b3952d8b3f6 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-16 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 26aaa919-a641-f176-49d4-7c6e64dd8ac7 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-17 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 60ebf8c4-2dd6-6388-99f4-36f536896ce7 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-18 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 743f36e1-157f-4613-7be7-e93a8a757582 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-19 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 360c263a-4c5e-4899-8690-38351cde55f9 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-20 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 4de66729-15a2-acc4-2ed8-57a1f84b4fa7 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-21 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 13752499-a979-385c-c5ed-b1e96b085dd6 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-22 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 b2f6da1e-e5ff-2fe0-a705-ee76a8b43b2e 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-23 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 a16860d1-21dc-68b8-e0ef-248643868cc0 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-24 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 9d9cc711-74b7-1b10-6f7d-47124d2b90dc 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-25 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 0b6863a6-bff2-756a-2bc0-0a1083ee150e 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-26 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 85685d17-a31c-2bd9-b2e4-3ef9787f12ba 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-27 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 4d535968-3163-aec2-0fa1-2458f8e16466 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-28 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 26f263b5-8601-cf53-82ab-e91992a3f912 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-29 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 6b209d57-cb73-95a2-48e0-1a116131bde8 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-30 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 8a8091af-5b9e-f026-6e32-f65580d75b69 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-31 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 bb89ce8d-d63c-8c7d-4d96-cb8d8c503348 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-01 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 a6298ebd-8f61-9006-5f68-528148844ec7 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-02 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 7a283b04-fe7b-d884-b85b-ebfa48bf1af9 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-03 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 add80b02-4bf4-a070-2a59-32970a952ab4 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-04 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 dfb6fd3a-ab9b-85a4-4cf0-8d8edff7484c 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-05 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 5af39fa8-6344-ef94-5fdf-5bdc389cb6b5 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-06 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 ce7f988c-2cb9-5d56-d8fd-382e3221cb14 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-07 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 e57643c6-01b7-8d13-5b24-76be7578ae4e 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-08 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 a0f8f89b-800d-b51b-911c-51da89fdea71 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-09 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 21361dd3-ba73-c8a4-2e03-6001d4a93549 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-10 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 71fc2e75-cbbb-fff7-1118-47987f39b051 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-11 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 27e388f4-95d9-4990-94cb-9dff95973fde 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-12 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 daa33163-363b-67c5-36b2-b88b45eeb53a 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-13 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 d3605bc2-c2f6-b15e-0dec-d762aa4e812d 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-14 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 69cd16a2-f62b-2dd2-ca31-254865a4334b 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-15 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 5acd2783-0e46-5516-1464-a82c4cd451e6 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-16 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 375910dc-fc9b-0a59-1d3c-bde2bba62271 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-17 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 ae565df3-d163-5c5c-d2eb-e182ab9fae3d 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-18 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 bf4854f5-4fd2-8f08-f269-d7415644a54e 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-19 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 b0e18881-3d97-00c3-6176-0792b2ded6ef 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-20 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 f55d1df6-1f6f-2d88-915a-77cbc5987b07 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-21 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 996c02a3-7799-1a56-c4f1-8ac207aad61c 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-22 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 937cb857-3842-37c3-b59e-63e0f43d1788 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-23 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 3ce6a02a-fa8e-444c-1563-72bce95339a4 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2021-01-24 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 f8e4ecd4-d138-ac89-d780-7ba963907aff 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-30 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 73134755-e873-f3c7-3dc3-67de17e63edb 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-01 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 0dadf608-1e23-e867-c08a-62b451c5fd0f 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-12-02 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 470b76e5-bd23-61ef-99e6-fec25c8f0c1e 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-23 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 5a40ab8c-6c83-fa16-5c9d-c029556fd496 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-05 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 a6266dee-5134-b547-260d-1e7afdd722a9 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-06 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 5c7db677-9a13-b923-a85e-31788934c13b 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-07 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 f194b2fb-a472-553c-6bf6-1f58bb2eb0a4 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-08 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 af5db094-5437-33d1-3773-390376205342 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-09 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 e80fe375-1734-babd-091e-fad85fd3e6c7 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-10 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 6f5842ba-f529-5242-ff57-692761c059e6 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-11 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 8130b9c0-8a64-f8ba-90b5-a973a55f8865 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-12 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 54c785cf-9d08-9d32-00a6-b20a14c5dc39 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-13 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 dbb9d284-8164-962d-5e40-e93d2d2fb035 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-14 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 ade84686-4fe2-8386-0b9b-9f500508b885 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-15 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 0c751cde-5af8-7811-2402-43bd6a1709cb 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-16 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 1baac61f-d72d-00a7-4b6f-c43699b13839 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-17 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 5f42f0b1-4b01-1830-97ce-187f58c261b8 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-18 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 0a9ae934-7085-44e4-c5f2-5e0c7d795912 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-19 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 2ba1305b-35b9-0175-f8b0-988be98ee1f8 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-20 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 e36fd2b0-1992-a483-00f8-fa0630456a36 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-21 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 f34d889e-1ced-9a6f-58a9-5f65bffaf4de 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-22 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 8ed9c52f-b2b7-6fd3-9c1e-126f1028a9c3 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-23 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 3a0546fa-77c5-d9b0-1337-5367b0ea1103 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-24 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 537407f1-95cd-1a0d-58be-f2af47482964 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-25 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 1b3eb1ee-2468-0c30-8b81-108f7018a7e2 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-26 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 7f87b42d-b41c-bacb-cb49-7a374c739ae1 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-27 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 4866e0da-8f9a-fd8d-4f88-b8a107d97966 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-28 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 9a72dd08-89fe-c33c-c457-efffeffbca01 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-29 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 570386e9-91aa-7ce0-f8ae-6c5ce0b31dbf 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-30 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 b9c55ed7-89bf-f5fa-4bb8-6dc35182e2bf 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-10-31 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 d00d8b24-1073-330d-8c2f-dc92d6cde364 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-01 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 38490da1-7fee-b59d-a563-6884ceeb9b33 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-02 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 fbef2e1e-e3be-ebfa-8d68-0359b1b1bd1c 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-03 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 543e49e4-11ff-db40-3f6a-0f2c95bde334 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-04 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 d672ceb0-da6c-94d2-4f05-4b57c46fd48a 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-05 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 1e56b72d-ef98-08d1-39a2-8947cec4f137 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-06 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 aaab1fb7-c85c-26c3-5f80-5a7f8bc5f229 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-07 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 7b1e7f59-38f0-bfeb-9fb7-c5da26d179ef 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-08 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 086aab14-8c40-f92e-9501-d8db0dd99c13 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-09 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 994571c3-a804-e58d-0504-20b7fa79074a 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-10 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 ce9dac6a-aed7-68e5-76be-28aa8094c926 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-11 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 970c3563-0ffd-67bd-d84d-cbd10a195251 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-12 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 dcf719c8-3993-d484-ba69-d54d0c2c31d5 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-13 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 1b355d23-1e98-e3e0-ce3b-f1b4450c9120 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-14 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 8fefaeca-8e45-7ebc-4615-5a17a73de4ad 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-01 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 ba6084bc-fd98-b1fe-db20-5fa795d99b95 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-04 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 b4dbe264-1148-d294-0732-268261999eb2 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-03 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 eb8ce779-1d92-02d6-b594-6fb3205f4fc1 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-11-30 10:30:00 14:30:00 19:30:00 00:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 05:00:00 06:40:00 6bcb6815-1dee-2ca1-704c-4556b362fe75 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-05 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 a8dce91e-9e64-16b7-e2f3-333e98ab8360 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2020-12-02 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 6e15ee78-1177-9b9d-bda2-a1f77f39088d 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-15 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 f6ba0af5-d754-a445-810e-08af41068c2f 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-16 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 cb6b30a5-69cb-deb2-2b2a-aa16de2a78fc 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-17 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 b55ba9ea-37b2-12d3-2ef4-aa4a648027e7 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-18 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 93dc8050-e2ad-4bc4-d0d2-724b53fe9aec 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-19 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 f2db15e5-8b1e-c94d-fbe2-6f64b8fa025c 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-20 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 585702dd-7134-e1d6-b710-f3eca09ae13e 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-21 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 b5be8df9-b20e-c7c2-5655-e7fab0005467 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-22 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 367746e9-361e-227b-1782-32ff7f59238b 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-23 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 5b331907-8e7d-7671-8dea-d90a6936f30e 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-24 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 308073ed-14cb-1b80-b95d-f11b6ebfb687 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-25 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 cefbef57-1b6a-3b29-1519-87c71602d08b 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-26 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 d87deaf3-e13c-7f45-0157-482e2d8c0e1d 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-27 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 53c1d11b-6f54-0c2c-8bf3-6f9be700d926 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-28 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 a7e2f70e-49fe-33e1-ea75-0ec1c4b9627d 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-11-29 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 b0dc1618-651f-deab-7424-eeefb0996b87 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-10 10:30:00 14:30:00 18:00:00 23:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:30:00 06:40:00 f0a6c021-7338-26c2-dd85-abb816d14af7 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-11 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 621069b7-487f-28d7-6f7f-dbfc8ded195d 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-12 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 02:30:00 06:40:00 d726d23d-e678-00a6-2ee0-a8826a50676a 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-13 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 a914420a-5625-7d87-b072-0d5b9452ca6a 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2021-01-12 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 868ef8e0-d3fd-dd85-b3b9-006d26603305 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2021-01-20 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 e0727fc9-5f6d-d2a7-0370-ffd9c86e078a 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2021-01-13 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 48c066f9-c6ba-38dd-9bf2-13d5032425aa 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2021-01-18 10:30:00 14:30:00 19:30:00 00:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 05:00:00 06:40:00 f8d1b65c-57af-be5d-54f6-0a2306fb44b5 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2021-01-24 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 20d9d400-6fc0-bd28-d2bc-5491e36c78d8 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2021-01-11 10:30:00 14:30:00 19:30:00 00:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 05:00:00 06:40:00 34e6df3d-d013-be16-a6d1-6777b5e93b71 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2021-01-19 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 5814e1f1-85a0-7e91-5f9d-61688268afa5 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2021-01-15 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 e6752e3a-c3ac-b9ff-3afe-bbec40ef4f32 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2021-01-17 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 b8a2c4bc-53d6-142e-d4fb-956fc11bbce9 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2021-01-16 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 845d37e5-2f54-571d-c2d1-5af4bf0ab840 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2021-01-14 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 369aac17-3c90-b222-08d3-394d9894d7c1 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-09-01 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 cf664f29-f089-ec95-680e-78dc95f438a3 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-08-17 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 afdefac3-c6b9-8c76-c900-313284f5085b 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-08-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 f66c7e3b-96b1-5df8-c375-ddf9fd95f14e 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-08-19 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 734bf81c-8e6d-4b24-aa09-d6d50edb04fe 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-08-20 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 f8094156-46dd-cdb5-1f5d-77a813886551 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-08-21 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 86b2e47c-13aa-cd37-4728-55d0b5b829a2 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-08-22 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 588a03ca-d106-b1d7-c58a-0f5b122e7ccf 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-08-23 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 0d61780a-5370-1cc6-0c85-5d202d1fc15f 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-08-24 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 6b827acb-96d2-9d4d-3ea0-77e911b0e807 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-08-25 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 0724411c-4d9a-008f-01dd-5550af029ef2 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-08-26 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 63e21830-0e01-f8ce-0557-b2a42e13d9fc 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-08-27 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 cf3b24bf-ceec-da0b-eddf-0d9788f847a1 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-08-28 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 fbe3112a-5191-8ffb-737e-6a7068a4a008 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-08-29 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 f040de2f-2aca-f578-24a7-5acfebd20bca 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-08-31 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 ff8acb83-f4e7-91d2-d7e7-afb8de4bd4b5 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-09-02 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 dadaa790-60fd-c046-06f6-a78085524bb1 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-09-03 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 84471ba3-d385-be8d-8725-72d5831dea85 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-09-04 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 f60d4d5e-27b3-73c6-698e-4baaf0066199 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-09-05 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 9f9c2c9a-37f8-f308-7dda-54909c67806b 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-09-06 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 f0a5d8bd-6240-68af-5e93-92b7085e1870 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-09-07 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 56f8347a-1ee6-3d72-6282-73f63ffb8dac 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-09-08 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 05df5f99-f8f7-0412-2bf4-2436f438886e 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-09-09 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 4249e7dc-88a2-bdd7-50d1-cf10211e5d24 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-09-10 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 03a3f483-ae7d-ac0c-abe5-8663fe8b1a0d 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-09-11 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 fb7994aa-e5a3-9f0d-13ab-c137522a29bc 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-09-12 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 babc8c9a-243f-6af8-1ff0-b59f386e04b5 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-09-13 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 9c6d4d27-1c2a-2be5-ca5c-7f41568466f8 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-09-14 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 d7b79022-2484-399a-207c-8737a0f95edd 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-09-15 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 8408ca16-9fd6-7e7a-4460-449668d8ce6b 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-09-16 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 d33a5922-454b-698d-8141-d670bd212b8c 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-09-17 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 06320563-6ddf-ee59-43c3-c9ea65f1dbf3 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-09-18 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 23d5a890-2696-4495-0bf4-e96862692d19 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-09-19 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 9064b3ac-b4fe-9c88-6c82-62ccc19f16f5 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-09-20 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 c9fad76a-6949-8cfa-63ff-903b59cbcb2d 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-09-21 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 2e2cf313-7ede-3295-8efd-0e5500014ec3 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-09-22 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 7e0945af-d57a-572e-776c-49b86813dd4b 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-09-23 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 c3cac33c-8a99-f2b5-e116-4cd005dc628d 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-08-10 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 b3e1281e-ec78-bb23-0dfa-dd1acd748107 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-08-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 f6d9e9ca-bfcd-2936-7f63-62ba93ea0346 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-08-12 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 a3fd60d0-b835-d5c9-da77-37612502bec6 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-08-13 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 f708d39f-d9d9-d849-f067-626238790e90 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-08-14 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 74a07c5d-3c83-2e06-168d-2afe97e35381 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-08-15 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 19f8369b-9054-d629-c438-8b2130601a1f 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-08-16 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 8ccc5123-5566-bc54-452c-af6daafa20f4 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-09-24 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 9c004b5b-af17-b7fa-858b-daa966eb18da 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-09-25 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 4d169656-3064-f4cb-adc1-c3098b9b5727 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-09-26 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 32911478-9c88-2bbb-081e-e1a0ea1dd444 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-09-27 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 ef71a7e9-a460-9bab-fa57-aa9373529fbd 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-09-28 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 f55646dd-6951-8913-f11b-cd5690641c09 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2021-01-22 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 e421854f-d01d-74d2-38eb-b1e030b8866c 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-09-29 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 55f13c51-123d-b74c-80bd-5c9ebbe7b96f 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-09-30 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 a96c379d-4033-a97f-9daa-5d70957e5e20 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-10-01 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 faf5031a-a6bb-32e5-ceeb-a264d733bb0b 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-10-02 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 b3dc4669-a872-0694-1cd9-b861363606b1 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-10-03 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 ecd09d4d-490e-4561-9d76-53a76f163f3f 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-08-30 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 3b333751-d062-a8d4-5af5-774e906218d4 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-10-04 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 8f50c2cb-2efa-e040-4793-d70b758d4520 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-30 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 39aa6b19-5d67-1c3a-4cab-fb3e672cf65a 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-12-01 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 e0a25dc9-cc28-c049-1d30-2367ad2024bd 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-12-02 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 ac50b0db-ae06-1f37-6650-ffa5769cb5ed 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-12-03 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 0ec6c1d0-1bf0-4fb6-6a9b-7745be9b7eaa 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-12-04 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 c638187d-06b0-00b3-4aba-39a7a04bd589 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-12-05 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 42bab0fc-d23c-cb59-c600-bd08a475c142 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-12-06 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 26022e21-318b-1cde-05b3-535898d30cba 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-12-07 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 1b521001-b8b3-accd-0c61-180e404af3a7 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-12-08 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 7181f400-3aea-3907-b37f-d383d85d504c 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-12-09 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 14e4ace7-9b54-785e-1cf0-61d030046eae 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-12-10 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 4ee962bd-8cca-272f-7dc6-5ba64245fadc 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-12-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 b87d55fb-396f-1855-712e-f19d1f930e90 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-12-12 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 10c68c44-c8de-844f-e518-e7c8a899821d 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-12-13 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 60e5c811-432d-ba94-e432-42f264c4e1be 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-12-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 ab980f68-e64c-f3f0-88b2-eb063775826e 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-12-15 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 d5f44f8f-4184-ca07-d770-7be7b364a23a 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-12-16 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 5b00e15f-6a1b-4ecc-a98a-70d6b13515f4 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-12-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 f3b41da8-03f8-dda0-10e2-c1ae21287579 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-12-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 3c87011c-320f-824f-21e8-5aadaef12ee4 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-12-19 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 c859ef26-d9f3-2844-c73d-ff298bdee071 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-12-20 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 6a29d4e3-7d9f-63f7-4118-b3e9d153490d 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-12-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 a9cee4e2-4c9f-f9eb-07ef-2e022b62e82f 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-12-22 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 10fb6fbb-0dcf-2c0f-dbc5-7edccccd0830 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-12-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 b430ba69-e181-3a84-1806-bdd5fe075fe3 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-12-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 9e0e6f54-8602-aaa5-be59-f747c2c620b7 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-12-25 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 917d6220-d594-6d3d-dd39-349608a8d297 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-12-26 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 33922a26-64fd-93b7-1c70-29983cede226 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-12-27 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 4823d724-807a-1f01-b3b3-4e046074c6d2 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-12-28 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 fcd182fc-ef99-ae5a-b3e1-f9b997c566d3 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-12-29 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 8cd6376d-df9d-7b7f-5620-62685cc8f7d3 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-12-30 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 1ceb3f22-a23b-037b-e011-e8e93af694bf 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-12-31 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 32477d32-f3de-e5b2-cdc7-66ef494c1083 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2021-01-01 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 fa970bad-30c8-6f42-fa3d-6c53a4661de0 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2021-01-02 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 65decba2-f8c7-d696-18bb-ef6bc4c41fc7 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2021-01-03 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 5462127c-d45a-92e3-a654-0635bdef30e9 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2021-01-04 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 3cff62ea-ecf8-1020-4892-fc022e2e07c9 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2021-01-05 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 8eddb550-c0ed-b016-6802-1352169a6454 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2021-01-06 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 a1054b3e-34f7-6106-8383-80d93a151e82 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2021-01-07 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 21d94762-a0c8-23fa-8555-740105969e28 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2021-01-08 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 f339ba92-aa64-7e93-5d30-bdcd041aa8ec 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2021-01-09 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 1fed406c-a780-4d84-e434-50a9e4fa5fc7 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2021-01-10 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 8f6933a1-21ac-4351-41cd-09f4a5db15b2 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2021-01-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 a45424b7-c928-fb50-baf3-bb88e8e80bfe 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2021-01-12 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 1b229e8e-b29f-20d5-d69b-ecb38bc36cd3 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2021-01-13 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 e8fbfbdb-a94b-bed7-d897-94b75ebc6b2a 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2021-01-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 62b78d92-d0d3-d0b7-cedd-7c76e72efc2e 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2021-01-15 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 b9b41d2c-dc00-410b-407d-65244a9fb787 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2021-01-16 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 dde8b0ed-aab6-43a3-2505-963c588bfa0d 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2021-01-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 50858fd2-f757-b433-bac1-ae43a994a71b 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2021-01-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 1367fced-b354-7043-d8ce-f65a2b851195 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2021-01-19 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 6e57d60e-d84c-e9e4-f0a4-7496cb100755 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2021-01-20 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 04832459-75c0-87c9-1f1d-91b2b2d6477c 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2021-01-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 8acdc46e-b71e-87c1-d50b-0c812a990f6d 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2021-01-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 fc652e74-9da7-b870-d374-3f6bc16da094 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2021-01-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 b20bbf92-5d1b-28b8-773d-1881b891435a 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-10-05 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 6a7e64b5-4924-1884-a656-39efa73de048 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-10-06 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 b06b0f63-278d-e64e-81ae-326ac466fc9d 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-10-07 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 4e234eb0-e931-36ff-88b5-38e1c5806c24 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-10-08 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 c07a315f-8b26-8b4b-f2cf-2468ac1a603a 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-10-09 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 b947eb69-3ba0-eca0-1824-bc232e2866c5 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-10-10 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 e04a33c0-0109-0965-e53a-8d48368d9987 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-10-11 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 7baf642e-18ff-4a5b-6bec-6fba2d372a17 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-10-12 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 75d5aaf1-667f-9f84-3e20-56f1a96bdc68 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-10-13 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 7a2c56b5-1b5f-79ad-e2be-0b5b25d37ba2 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-10-14 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 80148d2f-e364-8f8d-8b86-7f3939902ff0 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-10-15 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 434c5269-758b-d8a8-1a0f-1b91b7d623f5 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-10-16 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 9059b4c9-088d-24e3-f1bb-33de36d7d407 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-10-17 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 25ef3e9c-eac7-4820-250b-508fe4671cba 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-10-18 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 31807bd7-f074-5f18-6f11-796a88df6261 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-10-19 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 332b2dfa-c3fe-8ddc-43e5-5ffb41b5f039 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-10-20 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 6d0c12fc-57d1-ce23-8a8d-f18f8eaa45eb 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-10-21 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 761fb548-3c67-7059-0d8b-a898414e0734 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-10-22 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 d235193a-5d45-b52d-0412-351f1ab5fce1 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-10-23 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 a68bff60-304f-fb79-38c8-3c1deaae90f2 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-10-24 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 ac6f9038-2c59-f00c-55cd-a34011257888 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-10-25 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 a4fdf96b-41da-f821-16f3-6dc9ea28ee60 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-10-26 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 1d7b6994-ac27-cc6d-254f-6b08d86505a0 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-10-27 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 eff20831-552f-a0c4-6817-d8599c7dde98 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-10-28 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 8f03226f-12be-2dbd-287e-b1dffa8bc65d 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-10-29 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 f12da513-b4c3-8eb7-ee4e-963f335bec9d 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-10-30 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 74c44902-ea6a-ab37-d343-f8add6ca78e3 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-10-31 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 1158ff88-1fb9-fb88-e52a-6fc530619425 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-01 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 3250ced9-23cc-8f5d-b515-7ca96bb25fd3 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-02 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 bb2af118-b603-c5b0-ee83-b0fb2bdd8c3e 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-03 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 3a9c9243-e90f-aafd-fa3b-acd688c10b79 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-04 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 0df984e0-d765-c350-4bf8-c32a5c806c88 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-05 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 aa9ad55c-e1df-ada4-8334-cdae3961a791 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-06 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 a512a801-d9bd-4870-673a-cdb59149ed84 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-07 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 4efc0e95-4b4b-a1d2-0ff7-1c2aa45d3375 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-08 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 76680bec-3a80-ae4c-f295-9c28aa4d9241 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-09 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 0bf7c1e9-6c7e-c93c-8726-d11ecfa2a4ad 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-10 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 85b9c34a-934f-186a-bf9e-8c379d5c0ac9 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-11 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 45864f61-7217-80ee-b18f-62fe6d8c6647 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-12 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 a936635a-3ce9-6cf3-88e1-9ce962cc2baa 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-13 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 10b65b5a-4edf-441a-5cf9-18e73919be54 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-14 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 0b1ae518-00b7-fec9-7222-1ad445f76cd5 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-15 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 c0688fa2-7663-dd75-8258-420da2281fec 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-16 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 c7deb505-5c1a-4679-a6fe-58c671fcab5d 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 26be04ee-7a77-f85c-07f1-fcfe735d276e 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-18 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 438146a1-20f3-ec1e-cb7f-da547c3af8de 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-19 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 d47145a0-dbfb-81ac-0d8d-0c4007ca52b3 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-20 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 a3e61910-77cb-6db9-2da3-06144a37e424 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-21 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 d3541889-c04f-ce7d-62dd-cce7c10d754c 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-22 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 ae7ecdc8-5498-7729-8799-d341f9b4935d 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-23 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 59f096c7-f9c2-bc01-a9de-df050c463b54 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 b2c3759f-e3ae-a4f7-0608-087f645f566c 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-25 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 12dd3bef-48be-8dc1-4e14-57ff2f20ce36 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-26 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 1bcc6b89-36c4-5758-e0f0-9eae95a6fbd1 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-27 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 ed30d5f6-2f55-e2a5-a100-9397c4812641 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-28 17:30:00 22:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 73de3eaa-62ab-b514-4bcb-3652548327ca 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2020-11-29 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 5969cf20-fe87-28e0-e607-a3c1fa585d4d 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-09 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 9dbd5ce4-2fd5-bcca-53af-554453ed96a3 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-14 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 d31116e5-7f7f-f71c-d5f4-c0e6fabd1145 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-15 17:30:00 22:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 41fbed8f-bb6f-e5bd-0de0-4d5543a630c9 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-08-16 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 5286fb98-d7cb-b0ee-adaf-ddabf5bcd9c8 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-07 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 4e49e45a-a30d-ccd9-2b03-314bc0e85099 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-11 \N \N 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 04:00:00 04:00:00 \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 reposition 00:00:00 06:40:00 4aa15f9b-e387-d6ab-7323-3b9192cf5da1 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-18 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 650b95f1-19bb-0d68-273e-28b2e0cdd077 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-19 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 a993d0aa-b004-ac48-9494-fd2a6d1b2d98 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-20 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 044eee57-53d4-b5c3-3458-f37f89b105a9 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-21 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 c1b354a1-1c7c-3b95-b491-be34708b000f 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-22 18:30:00 23:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 f254709b-0e5d-673e-6c2f-f8f5b76038a2 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-27 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 3c242edd-27ad-1314-0046-2bd8d8a1c8db 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-28 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 99068117-e2a7-2f03-b692-befd39ccb59f 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-29 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 147669f2-68a3-75bf-f107-08159314569a 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-23 11:00:00 14:30:00 \N \N \N \N 06:40:00 \N \N \N 03:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 03:30:00 \N 00:00:00 06:40:00 6ce4b7cb-6fd3-7a57-25e2-b4d74f17a4ca 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-25 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 02ccfc69-9697-ae32-bb2c-b3808df91111 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-26 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 e52ce627-264a-0009-24f7-a1124fd3f228 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-27 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 9822bac6-146e-b4ae-d0bb-ba22a76b08ae 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-12 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 7e268ff6-e8ea-c0b4-08df-1c73567de3db 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-08-13 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 4fb47ab5-c8de-3eaf-181f-b5e39c2a8ca8 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-01 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 b4b00c8c-7ba8-02fd-950e-831ac0c913a0 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-02 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 c752ed1e-c78f-6e84-24f0-8492e6cfee1a 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-03 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 7241adc7-8589-68ae-b692-22db6d50a187 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-04 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 cc60eaf6-d53d-e8cb-2d5f-b33d50cb3073 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-05 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 4c451523-b7fc-3b85-c44d-06c0a2ce5f78 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-06 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 195e199e-712e-8603-41ae-204b206c4daa 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-08 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 c81f21e9-9929-8626-52fa-6078f3e75dad 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-09 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 d2ca8372-bebe-f8bf-f192-eb45cfa19ac6 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-10 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 ccaee6ed-730f-7580-5167-ed5f43fcb16f 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-11 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 dacf1943-c022-99fd-5ab9-bc5e16fac4c5 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-12 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 0f3d322f-9657-2445-a6ef-ca36a56194e9 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-13 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 11b1268c-f782-a5bd-7432-e4c816a87f8a 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-15 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 ab99efd4-4b6c-a208-47d4-c9c32a7e792a 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-16 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 ccedd3d8-5226-c7fe-7f92-624d4fef7694 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-17 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 d91bb7d5-542c-f6c8-0f47-cec9c67c28be 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-09-18 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 04:00:00 06:40:00 68508a4a-067e-a84e-880e-c4b05e61cc2c 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-15 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 aa9d76f8-f265-14b4-cdb5-cd999fa75e41 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-16 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 476ce341-df4a-24ec-3bc1-b8030994e2d4 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-17 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 b71b9bde-77e3-aadf-9a98-071533b5bef8 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-18 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 c1570ca2-e810-2962-02ae-e13381c7c40c 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-19 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 477b97cd-3532-517c-e48d-ff6d2a50fb5f 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-20 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 f379a23d-8e79-ad72-256a-ceda5f3f7ca6 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-22 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 a55c1e11-990b-e330-aeba-c09ecab233c2 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-23 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 ab64b6fd-0630-9cec-4e67-e77dd34d1676 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-24 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 738958ae-6b0a-16cc-c3de-2c2d071a9149 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-25 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 acd0e3c8-e2cf-f23c-1a1f-5031e6c192f3 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-26 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 1e88d057-92c1-a4b7-1f16-99dab21733e2 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-27 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 7fac269f-9980-1173-3e68-1da77c1b0ac3 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-29 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 f8eee20e-7666-a90c-e18b-b0e74aee9057 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-30 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 8a4a673b-c0aa-6f84-98c3-552c21dbbb49 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-12-31 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 baae0828-7f32-f3c4-3ac6-17547d67cfef 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-01 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 6f73497c-7b03-49f9-7166-8429b5de923a 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-02 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 46dff1c6-fc53-5869-9b1b-ed553f954b66 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-03 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 42278bf9-9a45-7af1-e127-7cc3f1b78e8a 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-05 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 f2f0d826-afa3-600a-16d6-b038d3bf6607 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-06 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 8420e9af-ccf9-7115-39ac-b4a1546d5d04 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-07 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 4b25b712-ee82-de83-798b-ecd83e21584b 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-08 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 cd79a0e6-3294-5441-3ee8-05ba146b275b 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-10 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 9cb3f608-2fbd-0eb9-01e2-6d1305291d42 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-12 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 4d136133-0e4a-ee0b-252f-352ea87e98ab 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-13 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 bc68f7fa-b316-b005-ede9-47608c56d041 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-14 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 607897b5-3008-0358-510d-596180cf6fd2 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-15 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 7d7e4a2f-e00d-d5fc-ee40-101a30f49685 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-16 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 12ea75fc-017d-1d84-1dc8-014ac3d7d27c 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-17 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 9130f052-0136-9c8c-00d9-eac60ed8d7cf 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-19 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 f50ad63e-cbd2-79db-3177-9ca35f373dd9 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-20 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 82e4f538-7d54-b955-f964-5fa620b90240 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-21 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 03:00:00 06:40:00 c33c0f1a-26f0-b8c7-fc86-91e74660bf75 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-22 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 08:00:00 \N 04:00:00 06:40:00 725a1f7b-b9a4-6b08-8386-339b93f311df 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-23 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 04:30:00 \N 00:00:00 06:40:00 7e7c9315-74a7-d1cd-ad5b-678c3b624cdc 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2021-01-24 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 03:30:00 \N 00:00:00 06:40:00 69305be0-206f-4544-4391-f72d7f2a8d24 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-08 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 b200abcb-c514-74ea-3460-74617a139b80 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-09 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 4e23e656-e732-e0a9-5737-6f3e0efba13a 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-10 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 80f81359-c787-cd4f-c293-2ef8d0d3ae97 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-11 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 37f74c3d-7303-bcc1-eba9-254284143d27 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-13 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 d7cb539a-18af-adf2-5d14-4281e3be1d15 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-14 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 fd772ad8-90e8-f998-f233-56ec23049fd8 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-15 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 57fd3eeb-3f1e-ebe1-4c26-951f2545ee69 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-16 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 34704bdd-3aeb-e7b5-cdda-86f37e8f28f0 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-17 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 9ab7268b-755c-af8b-dca6-16afe2009bdb 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-18 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 1a42a09f-1d34-6301-7a18-68eacdfdece0 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-20 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 f3cb5e62-d1c2-2399-d385-7793f08d4a8d 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-21 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 76ecd943-3fdf-771f-4d6e-31f57ac2fb99 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-22 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 e391284a-fa89-061a-30c5-bc6b70771981 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-23 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 866e9b78-c5fb-ce1f-19f5-20bb019dc025 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-25 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 5108a384-232a-f1e3-9b80-1083c789be52 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-27 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 f69285bd-0c5f-0de6-05d8-d8330d9b7a97 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-28 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 7abbe91f-cacc-4aff-84ce-29d48cac6eb6 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-29 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 7deb0793-4f05-f3fd-e60e-90358e48c45f 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-30 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 94885a90-38c1-caff-3324-b4ef97daa652 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-31 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 e0477b82-5c38-8786-b2a2-b514912a74ac 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-01 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 3b21cf44-48c7-7ed2-4391-d1dcb5591494 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-03 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 066d8839-e40b-1da2-a3a2-f5ef534af42e 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-05 17:30:00 22:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 cdf8dfaf-1560-30ec-9400-530a8922f08d 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-11 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:00:00 06:40:00 7f7670b4-6db9-6f1e-c90f-e086dfe23a3c 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-19 17:30:00 22:00:00 \N \N \N \N 06:40:00 \N \N \N 04:30:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 04:30:00 \N 00:00:00 06:40:00 7c4f3b7d-cb62-41e6-2fa1-4098bd622410 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-24 \N \N \N \N \N \N 00:00:00 \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 9ad97518-2a27-043f-ffe8-d6cd9c661ea6 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2020-09-28 10:30:00 14:30:00 18:00:00 23:00:00 01:00:00 \N 06:40:00 \N \N \N 08:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 08:00:00 \N 03:30:00 06:40:00 0dd7a49e-3253-9467-c5ff-d6a32c6bc86c 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-10-07 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 1307d3ec-edfd-dbf1-d9b7-68c30005dcd9 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-04 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 cb4df9df-c78e-a5e5-eb3b-b7d923143ce5 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-05 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 2a1d711f-e1ec-dc3a-eb41-a54d94e56e51 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-06 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 59c4bb8b-760a-600b-19e3-5a7f91512768 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-07 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 9be5484a-0aad-98db-0395-997f30ea8f9f 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-08 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 7f8ba55f-1152-b6f7-49cd-f248a9f9c4a0 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-10 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 96ea94a2-66e4-480a-e547-2f2f5ef04dee 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-11 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 3e1ede60-1dad-e3cb-ce3d-060e6effa782 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-12 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 caa35de7-1adf-0f01-e322-2c0baa95c265 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-13 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 cff05a0e-99d4-7910-4580-422a1e6ff3e3 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-14 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 8d4981e9-80ee-774b-3229-3248b78e84c6 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-15 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 8c42aca1-8eea-143b-2a53-bf634494c352 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-17 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 59127855-f780-d6e0-4911-edcdfb61a097 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-18 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 0d421d78-cf0c-4a92-6a80-58ea6aacb3aa 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-19 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 602ed804-2caa-c1c7-c8d1-b04601ca3561 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-20 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 af1476bf-aa5b-1dda-73ce-97280d645256 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-21 18:30:00 23:00:00 \N \N \N \N \N \N \N \N 04:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 04:30:00 \N 00:00:00 06:40:00 de84b3f9-4b36-ced9-59bc-e705b1dbfda9 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-22 11:00:00 14:30:00 \N \N \N \N \N \N \N \N 03:30:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 03:30:00 \N 00:00:00 06:40:00 b76b29b1-f578-af15-f5b3-f5a73bf1ff47 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-24 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 6c979ff2-d10c-7269-ac16-ec67a0af2506 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-25 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 04:00:00 06:40:00 54bcd89f-7d54-3c5d-3914-51fed804ff95 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-26 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 \N \N \N \N \N 08:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 08:00:00 \N 03:00:00 06:40:00 94149223-6c26-cfa6-bf6c-8854ab0c8956 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-09 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 ce89b090-9cd9-a143-fe65-80e3f8ba9708 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2020-11-16 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 c0b17801-dd69-aed2-77bb-5db2f28bf779 2020-08-09 16:55:07.693226 2020-08-03 15:42:16.28754 +63204f0b-afae-1380-b655-a6247b129af0 2020-08-10 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 59c83015-13c9-832f-224b-df55382e667f 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-08-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 60adcf53-1fa2-58ad-c466-8b741ea39b93 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-08-12 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 567d6dbc-da2e-290a-227d-895b142f195f 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-08-13 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 27729c74-1e21-e2cb-d43e-4ef14f200afb 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-08-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 b2470a81-7b44-8bee-2d4a-0d2b28ce598c 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-08-15 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 c38cc8bd-44ac-126e-5131-6a475e3e676d 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-08-16 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 3c44623f-e885-b41c-f6a1-0671f092004a 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-08-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 70161c8b-0187-96ad-dcae-a8dec52025c2 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-08-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 11018a87-6591-3309-38b8-d53bbd31629e 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-08-19 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 b5dfef8f-840c-7824-dbd0-8a81f5bb4c17 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2021-01-16 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 498d8036-6130-b93a-8be6-7dc969059449 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2021-01-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 1209c37f-0406-5739-7103-7f96727f96a2 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2021-01-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 c9199856-afa7-b0b9-4544-aa4f7204cd4c 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2021-01-19 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 812caf2e-c505-9a2e-07a2-4d280f14c520 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2021-01-20 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 d900bd71-71fe-b252-054b-53d01788aafc 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2021-01-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 e58fb966-9403-b964-2298-ea0561ecbf7e 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2021-01-22 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 062aa93a-cdbf-45a4-9f5b-695f9332e436 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-08-20 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 6f8e9172-5f2f-e862-1b9c-7bd26e18707c 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-08-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 263c9ff3-9729-d7d0-e0cd-7baa7c32e8af 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-08-22 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 e8ab0ba7-a3c2-91df-e025-094b7b6f4443 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-08-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 c6d94da2-0c1a-5826-3e8d-9d3af3d7a052 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-08-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 c655a939-57e5-5bee-69c2-3a9bef6c101e 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-08-25 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 cd5253eb-5798-5880-5bef-d2d6da78db66 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-08-26 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 970f7ed5-e027-6f86-ccd3-7cc81c0076fd 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-08-27 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 77c73500-838d-871e-7d25-bcfc2323ba2a 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-08-28 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 96642ef3-c7b1-5f83-c2fc-bed86f045991 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-08-29 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 8ea34c0a-05c7-c042-ba42-365acc8eaeea 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-08-30 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 01818ddc-24dd-a7b0-273e-48a07a41451e 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-08-31 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 e91ec6b8-76ed-f128-025b-8b9a477d3c30 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-09-01 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 de247f41-eb17-a0a9-602e-4b12787b5c55 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-09-02 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 f2b36b98-0220-5c4d-89ee-c6f8872b6eda 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-09-03 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 09af81d8-50b8-3dc8-7a2c-90bc9b7738a9 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-09-04 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 c088f9f2-5d7f-add7-26bb-280d07d2c2ef 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-09-05 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 0dbf0487-b18b-f02b-692e-d472a4404a15 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-09-06 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 ad7a21c2-aa08-1a23-9ee4-35a726a57b85 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-09-07 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 8dfbf465-76dd-0138-451a-38846add570c 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-09-08 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 7cd6894d-5d9a-6f25-ff12-250ec665f8ca 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-09-09 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 55c0a6c8-1fbc-489b-769b-d7deb5104e32 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-09-10 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 a03336aa-7c70-4708-97f9-2e4ebb54f16b 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-09-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 0a37d5a8-b959-9417-4b37-f74caf476c36 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-09-12 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 393c07ea-2cc5-f927-cb51-36bfd83c8759 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-09-13 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 f139fd1a-43c6-1381-2d8f-a27133605ace 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-09-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 5fac42b1-b802-427d-e781-5ae580e6593f 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-09-15 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 ba772c61-f91d-2ccf-eced-7300ac31d714 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-09-16 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 fd6d319c-ce50-611f-b560-1d97adeab895 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-09-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 bceccb5a-6178-8734-1840-8eeb3789495d 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-09-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 44fec951-4fc3-421e-493e-4f554390b0b1 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-09-19 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 11862861-bf47-9946-49da-7bb1e773a65f 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-09-20 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 59e55f89-90d5-f9cf-dff8-7d81d8aba845 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-09-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 046e9817-9526-bcd9-ad0d-f21748730cab 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-09-22 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 af4279f6-69c7-d29d-e098-ac0f521e9a8c 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-09-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 4adb9525-c115-5e91-7b77-23996be68b78 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-09-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 7f6a45a1-7d67-b30d-d39f-608ba6426bc7 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-09-25 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 e09b7cdf-9570-598d-8e07-afab92cae7d1 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-09-26 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 afdf1f62-9f19-eea7-bc1f-a30a090640e7 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-09-27 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 02688815-2904-d1e3-cd1a-2179bfcdc644 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-09-28 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 04faeeb0-b963-e636-c111-714ea0a4c24a 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-09-29 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 77118b78-3a4c-f4ac-3327-ce91f136b193 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-09-30 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 54cb742c-e1c5-c90f-9d1a-8770f3ca56cd 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-10-01 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 355d8527-5854-dad7-f073-32a13d21c508 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-10-02 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 defdc370-b5dc-0718-fbe8-4c69027830ea 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-10-03 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 ddda791f-6ec7-efdb-72fd-5f6b3496aac1 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-10-04 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 2583c916-2d07-f42d-9c85-18ee42959317 00:00:00 \N 00:00:00 06:40:00 500da86d-47bb-6d12-7985-4fb7b1560947 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-11-30 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 1f1ce7bf-4a92-2fc3-883c-1170b1364854 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-12-01 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 3a280ef8-0b9a-3b43-5bd8-f3a84409c9db 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-12-02 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 753b5c99-73d0-188d-95ff-c9bc1e167cac 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-12-03 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 463bcc86-d076-1741-b4c0-3758b1cafecc 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-12-04 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 1a6a0439-2e44-d60c-d98d-ab7bdcf12ddb 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-12-05 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 0149bc87-542b-d4b6-b1b0-f31633ff3d27 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-12-06 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 a7af7ff5-a9c7-f623-b9be-c74d0ae22669 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-12-07 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 0f5632f3-f57f-a397-6d14-fb81aa6cd044 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-12-08 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 da6f6662-5bc1-9a71-bd63-580a8c917a0b 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-12-09 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 af1cb010-32c1-ffe2-294e-dbd0aaa1cdf7 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-12-10 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 95a49455-1e30-6d81-3fac-37f4d645e091 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-12-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 275eec6f-4965-4928-8f74-ec1b97196fb4 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-12-12 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 9d72eeb6-cf38-f553-b630-f24a9155f633 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-12-13 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 3df9da0c-e2ab-3706-1be4-5b7d29e1f0fa 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-12-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 bddd8601-8e63-03c2-3102-1eef59b1a1cf 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-12-15 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 402d2ddc-dd17-5e76-0dd2-787dd7c3d942 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-12-16 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 a4358212-3a4e-dfa0-d6e7-8de9dbfee999 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-12-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 7bd541af-3659-84b4-7cb6-0373b4d9867b 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-12-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 20168a2c-38b7-0bc6-5f7a-212efccdb0f9 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-12-19 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 75332c71-22c7-7681-4a5f-425954b1c999 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-12-20 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 586e0885-b428-719d-25ac-fdfae251a573 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-12-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 c2d402eb-ad8c-27b8-7e75-63b7ecb41e2a 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-12-22 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 778f675a-fd1c-8242-edda-a08ab3af5a2a 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-12-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 b373a4cd-fe68-40cf-959b-75cd87c4bf0c 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-12-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 f1ca21f4-c6a0-e9ec-a003-86e0bb8320c9 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-12-25 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 5870ea75-5d23-197e-585e-e89fd02dc894 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-12-26 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 7f33d505-b5af-d0cd-fc54-c14fe91f19ea 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-12-27 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 a5e6a841-7987-a55f-df9d-20e42148bbf3 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-12-28 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 35d33ffb-b4ae-e86a-cdcd-7e2c3fc02acb 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-12-29 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 290fdcab-d3da-43b0-e5a8-bbbe1e64bd66 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-12-30 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 c87f50a8-6bf6-2e87-319d-b8191b39e256 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-12-31 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 0bff0bb6-1d74-b1de-2a54-7838224d34e5 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2021-01-01 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 1a92d458-43ec-ca27-9176-beb40356cf04 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2021-01-02 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 b4ca6914-ccb1-7c43-f183-02717e0f4fb9 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2021-01-03 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 ab2b8856-e5e0-1275-2fc7-85fce2d69456 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2021-01-04 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 1f94c424-6f9e-c5e5-4dab-5e319bd1f623 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2021-01-05 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 dc51eb37-e8c2-7885-29d5-2fd4da9c728f 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2021-01-06 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 d5356c0c-c5a3-7994-f25e-359829f1aa66 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2021-01-07 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 b8091be1-686e-2fd3-012b-1f6759e2c4a3 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2021-01-08 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 3f340dbd-06ec-a55e-8e6b-3955b1047d66 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2021-01-09 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 f0f4bdc2-9b8b-fd90-52fb-97371ddbc321 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2021-01-10 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 4c987b3b-cbf9-e08b-8da0-60a6fe370692 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2021-01-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 9529b1f2-7bed-bd59-b25d-d6a744036650 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2021-01-12 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 2db97c6e-ad34-3e2f-6b98-338a90bf1e60 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2021-01-13 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 5c347037-c329-8720-5836-ffc5b767b932 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2021-01-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 f2ff8391-9587-12e5-d9de-8c25ef8d79d9 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2021-01-15 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 3e961b52-a415-ae51-cc80-d506ff51a20f 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2021-01-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 81a64900-0f9f-18e7-acc9-f2b905f352b5 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2021-01-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N 9b93bd90-2325-fe28-4bff-852203fc99ce 00:00:00 \N 00:00:00 06:40:00 9d443b7c-ba65-3132-4854-5d3b9a20eea2 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-10-05 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 659e88ec-5a88-d172-108d-11945e3f60cf 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-10-06 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 abba9927-96a1-899c-011e-fe59df21b93c 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-10-07 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 3f51fda0-d9de-7280-e8f1-d45751980e58 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-10-08 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 0ea202c5-7554-b692-9422-ad61be65c0f7 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-10-09 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 407dd785-60a8-b3e6-66cf-0100fbcce5c7 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-10-10 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 ce1644dc-6538-871b-00c5-a058182f90eb 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-10-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 f86af124-4131-6f52-f26c-d0de765793e5 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-10-12 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 bb545869-844c-ffbd-0f53-2020e9b85002 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-10-13 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 6f00e397-1f80-f6b5-c4c4-7db37d4d0dc6 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-10-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 3da0900c-0cee-ed8a-259d-8c3eb130ef3d 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-10-15 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 e5f4ddfc-4929-f72a-87d0-848846b1b8ab 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-10-16 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 872c8345-4713-3c3b-83df-76d066123744 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-10-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 3c28a711-7957-19cb-d1bb-51438e0356bc 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-10-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 5b727864-30a9-13e8-55b2-e46287300863 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-10-19 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 00fe4cd1-b121-b43d-83d7-9a61a82448eb 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-10-20 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 519f16f4-92e9-7f04-eeeb-d42fc6417697 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-10-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 debfac03-fad5-cb79-7bf5-72b8cc7f4ff8 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-10-22 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 958c2d04-f779-fe99-ca9b-85f6907ca6d3 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-10-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 b9666241-e7d8-3a65-2a48-556425ffc8b3 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-10-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 f4a1ba3e-0280-ac8e-a832-5db3120bd636 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-10-25 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 3347715b-62a8-3224-1deb-79c83ec4e727 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-10-26 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 41b31f5a-5707-4b05-af56-84c0c3350294 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-10-27 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 d15b50f0-118f-de19-6cb9-1ef18732af88 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-10-28 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 a45ece2a-fd14-caae-c26d-e4975c471aa4 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-10-29 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 cb8dcfc7-455e-8014-cc8b-9ff1a42078f9 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-10-30 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 6df3895a-cd3e-f7b6-e13f-fe447499c0b6 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-10-31 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 920ecf59-9299-0544-8a46-8cda237ddd6c 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-11-01 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 06aa8182-c6ae-8b13-d69b-3d55ef08cb83 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-11-02 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 656bea6d-3e7f-95f7-313b-98f959fc6fac 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-11-03 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 4a49f5f0-30b4-7f44-e8e5-abf8f7fcb545 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-11-04 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 31ee1b5f-d710-ef8d-dfa6-36945e5f8b6f 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-11-05 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 0deb984c-2ea5-ec65-c927-e154fe8d5db2 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-11-06 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 fb109cf4-792f-168b-59c1-c90eafd2f996 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-11-07 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 e01acdee-e117-f74a-ee45-08c58ed451c2 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-11-08 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 de99f588-9080-0f06-64f7-f26889e4ff3b 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-11-09 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 dad91d83-635d-fa69-23c9-e6330dc037d8 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-11-10 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 1eb70ece-dc6b-51ca-4318-42d431821d44 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-11-11 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 bef44a03-55e0-1a32-0340-4af2d12bfd46 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-11-12 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 cd8925da-e3de-5994-ad31-6bfbfe291ea0 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-11-13 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 fa8b97c9-87d7-b470-110b-800aa6d459ea 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-11-14 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 11e464d0-8d95-51a7-ba21-9081fe822979 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-11-15 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 832f5fe7-6c00-bf2d-a98d-fb8f7aba3312 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-11-16 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 9e44aebf-0aee-cc57-b58b-0262c072c886 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-11-17 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 7ec2b47d-fbb7-55ff-3235-d61697b8fe6d 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-11-18 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 fc54f879-7e48-b66d-903a-8f0bd6b669ad 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-11-19 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 d047d04b-6440-8b2e-9ec1-4bbd902f0371 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-11-20 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 a4053747-3b81-b305-98b0-e05cf8ac0d59 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-11-21 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 f6096633-ecd8-f751-3e31-43ad23edc3a8 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-11-22 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 4cdd784d-e80a-9999-dbcf-e8a20709b031 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-11-23 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 036e81e2-ff50-ff62-bf02-ab285db143dd 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-11-24 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 139ec32a-1bee-fa26-cb39-640e8c7146d2 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-11-25 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 3d27fa62-29b7-1279-557f-f23e287a91fc 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-11-26 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 9a3889bc-78bf-f7e2-d17b-cdc3b10a8245 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-11-27 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 0a62609b-2596-5c1d-4c82-a71f65281ed8 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-11-28 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 d9e49832-f3d2-a24f-f0fb-c9e65eec2e22 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2020-11-29 \N \N \N \N \N \N \N \N \N \N 00:00:00 \N \N e3e85c3e-1afa-768e-7938-f0c9996c618a 00:00:00 \N 00:00:00 06:40:00 4454f098-7aaf-01ca-f863-6cf597176274 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 \. @@ -1962,14 +3063,182 @@ COPY portanova.staffreportperioddays (id_staff, daydate, timestart1, timeend1, t -- COPY portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays, id, modified, created) FROM stdin; -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2583c916-2d07-f42d-9c85-18ee42959317 2020 34 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-17 \N 00:00:00 0 \N \N a88f93cc-9802-13b8-007a-79e8691251da 2020-07-30 13:52:55.62355 2020-07-30 13:52:55.62355 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2583c916-2d07-f42d-9c85-18ee42959317 2020 39 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-09-21 \N 00:00:00 0 \N \N 4d35f916-6220-e342-0d8d-ee9ee7396a33 2020-07-30 13:52:55.62355 2020-07-30 13:52:55.62355 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2583c916-2d07-f42d-9c85-18ee42959317 2020 38 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-09-14 \N 00:00:00 0 \N \N 2271cec7-b060-04cf-528a-592bafbd98b3 2020-07-30 13:52:55.62355 2020-07-30 13:52:55.62355 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2583c916-2d07-f42d-9c85-18ee42959317 2020 36 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-31 \N 00:00:00 0 \N \N 648f09c3-f4cc-643d-ee2b-a9801056d7c6 2020-07-30 13:52:55.62355 2020-07-30 13:52:55.62355 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2583c916-2d07-f42d-9c85-18ee42959317 2020 37 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-09-07 \N 00:00:00 0 \N \N d532de1e-39eb-1907-c21e-b79b7e27647f 2020-07-30 13:52:55.62355 2020-07-30 13:52:55.62355 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2583c916-2d07-f42d-9c85-18ee42959317 2020 35 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-24 \N 00:00:00 0 \N \N 0069607b-34a1-9b36-4296-155fc185c795 2020-07-30 13:52:55.62355 2020-07-30 13:52:55.62355 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2583c916-2d07-f42d-9c85-18ee42959317 2020 33 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-10 \N 00:00:00 0 \N \N 6ec2593e-2821-6b5d-689c-923672e711cb 2020-07-30 13:52:55.62355 2020-07-30 13:52:55.62355 -71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2583c916-2d07-f42d-9c85-18ee42959317 2020 40 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-09-28 \N 00:00:00 0 \N \N 071b1383-ee15-1d01-523d-3af2037d6957 2020-07-30 13:52:55.62355 2020-07-30 13:52:55.62355 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2583c916-2d07-f42d-9c85-18ee42959317 2020 33 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-10 \N 40:00:00 0 \N 6 6ec2593e-2821-6b5d-689c-923672e711cb 2020-08-05 08:46:48.014325 2020-07-30 13:52:55.62355 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2583c916-2d07-f42d-9c85-18ee42959317 2020 34 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-17 \N 40:00:00 0 \N 6 a88f93cc-9802-13b8-007a-79e8691251da 2020-08-05 08:46:48.014325 2020-07-30 13:52:55.62355 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2583c916-2d07-f42d-9c85-18ee42959317 2020 35 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-24 \N 40:00:00 0 \N 6 0069607b-34a1-9b36-4296-155fc185c795 2020-08-05 08:46:48.014325 2020-07-30 13:52:55.62355 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2583c916-2d07-f42d-9c85-18ee42959317 2020 36 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-31 \N 40:00:00 0 \N 6 648f09c3-f4cc-643d-ee2b-a9801056d7c6 2020-08-05 08:46:48.014325 2020-07-30 13:52:55.62355 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2583c916-2d07-f42d-9c85-18ee42959317 2020 37 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-07 \N 40:00:00 0 \N 6 d532de1e-39eb-1907-c21e-b79b7e27647f 2020-08-05 08:46:48.014325 2020-07-30 13:52:55.62355 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2583c916-2d07-f42d-9c85-18ee42959317 2020 38 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-14 \N 40:00:00 0 \N 6 2271cec7-b060-04cf-528a-592bafbd98b3 2020-08-05 08:46:48.014325 2020-07-30 13:52:55.62355 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2583c916-2d07-f42d-9c85-18ee42959317 2020 39 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-21 \N 40:00:00 0 \N 6 4d35f916-6220-e342-0d8d-ee9ee7396a33 2020-08-05 08:46:48.014325 2020-07-30 13:52:55.62355 +71e60e4b-3d51-ccf9-1f0b-9b2f8b80d08a 2583c916-2d07-f42d-9c85-18ee42959317 2020 40 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-28 \N 40:00:00 0 \N 6 071b1383-ee15-1d01-523d-3af2037d6957 2020-08-05 08:46:48.014325 2020-07-30 13:52:55.62355 +3c463353-f763-c72c-0007-e6b4926befee 2583c916-2d07-f42d-9c85-18ee42959317 2020 33 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-10 \N 00:00:00 \N \N 0 85180a51-c992-c3d4-c263-4f1bd35c71d9 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2583c916-2d07-f42d-9c85-18ee42959317 2020 34 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-17 \N 00:00:00 \N \N 0 57290bd2-6eed-bc3e-e814-552fdaae5cf5 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2583c916-2d07-f42d-9c85-18ee42959317 2020 35 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-24 \N 00:00:00 \N \N 0 8499720f-1dda-a01a-5ed8-4c20879f2e61 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2583c916-2d07-f42d-9c85-18ee42959317 2020 36 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-31 \N 00:00:00 \N \N 0 2638a4ed-04ac-7ad5-09a0-f462429ed509 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2583c916-2d07-f42d-9c85-18ee42959317 2020 37 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-07 \N 00:00:00 \N \N 0 bb149c1d-3c32-4f16-6410-9a89c051e209 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +cc63023b-4892-c29c-787d-088392d58b88 2583c916-2d07-f42d-9c85-18ee42959317 2020 35 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-24 \N 40:00:00 \N \N 6 999b5f68-67c3-62ad-4670-7ba2041b057c 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +3c463353-f763-c72c-0007-e6b4926befee 2583c916-2d07-f42d-9c85-18ee42959317 2020 38 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-14 \N 00:00:00 \N \N 0 a3b82097-67f4-8058-783c-ded9c94fc6f2 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2583c916-2d07-f42d-9c85-18ee42959317 2020 39 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-21 \N 00:00:00 \N \N 0 1b7b66f9-a5f8-dc0f-2053-4c178d0295de 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 2583c916-2d07-f42d-9c85-18ee42959317 2020 40 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-28 \N 00:00:00 \N \N 0 7c05fb10-69a6-e377-ec49-d06626ccf783 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +8aa08f14-7976-baca-c214-b1131263ea5d 2583c916-2d07-f42d-9c85-18ee42959317 2020 33 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-10 \N 00:00:00 \N \N 0 939784f3-7c92-40b6-11c3-a7a474247448 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2583c916-2d07-f42d-9c85-18ee42959317 2020 34 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-17 \N 00:00:00 \N \N 0 d699ae52-d590-20ed-4fff-a219456ba441 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2583c916-2d07-f42d-9c85-18ee42959317 2020 35 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-24 \N 00:00:00 \N \N 0 c04bb259-9821-839a-b31e-1f8abad986c5 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2583c916-2d07-f42d-9c85-18ee42959317 2020 36 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-31 \N 00:00:00 \N \N 0 354942b9-1f83-f9c9-1763-5eae4a0743e1 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2583c916-2d07-f42d-9c85-18ee42959317 2020 37 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-07 \N 00:00:00 \N \N 0 ba42f62b-d7c8-d04d-854c-a7ba6f5ee647 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2583c916-2d07-f42d-9c85-18ee42959317 2020 38 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-14 \N 00:00:00 \N \N 0 b6d18bb4-aed9-7875-7718-fefdbcbd5f10 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2583c916-2d07-f42d-9c85-18ee42959317 2020 39 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-21 \N 00:00:00 \N \N 0 bc507f4d-8096-ce27-565b-f890e3164a51 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 2583c916-2d07-f42d-9c85-18ee42959317 2020 40 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-28 \N 00:00:00 \N \N 0 b846b527-2adc-f602-f5af-33e354c7a11b 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +a77618bc-86f2-800f-b26d-6d641147ab7c 2583c916-2d07-f42d-9c85-18ee42959317 2020 34 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-17 \N 40:00:00 \N \N 6 4929c451-55db-3dc2-0f03-0552f0924372 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2583c916-2d07-f42d-9c85-18ee42959317 2020 40 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-28 \N 40:00:00 \N \N 6 59f8c881-3dc0-479f-418d-eb9a944d4bd7 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2583c916-2d07-f42d-9c85-18ee42959317 2020 38 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-14 \N 40:00:00 \N \N 6 4e7e5a3e-546d-a6fa-5dce-36a6624fc4b2 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2583c916-2d07-f42d-9c85-18ee42959317 2020 33 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-10 \N 40:00:00 \N \N 6 8ef0205d-5df6-be5a-c38a-c99b597aa055 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2583c916-2d07-f42d-9c85-18ee42959317 2020 37 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-07 \N 40:00:00 \N \N 6 1ff88ecf-56ae-5d4e-0e35-4c0b70a4380f 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2583c916-2d07-f42d-9c85-18ee42959317 2020 39 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-21 \N 40:00:00 \N \N 6 10c4e207-295b-305f-e70b-38655e911b5d 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2583c916-2d07-f42d-9c85-18ee42959317 2020 35 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-24 \N 40:00:00 \N \N 6 741c77e4-c752-0869-77d6-2cc016949f5d 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 2583c916-2d07-f42d-9c85-18ee42959317 2020 36 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-31 \N 40:00:00 \N \N 6 72f85a45-6a7e-0efc-9d73-bbcbafd55e01 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +cc63023b-4892-c29c-787d-088392d58b88 2583c916-2d07-f42d-9c85-18ee42959317 2020 36 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-31 \N 40:00:00 \N \N 6 3d0d3f2c-6fde-17ac-8d6a-65cea55f3486 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2583c916-2d07-f42d-9c85-18ee42959317 2020 40 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-09-28 \N 40:00:00 \N \N 6 9480f19f-0cda-845e-069c-4179aed88163 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +3c463353-f763-c72c-0007-e6b4926befee 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 49 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-30 \N 00:00:00 \N \N 0 3c2624d8-5132-45d4-2124-a46c6dc4876c 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 50 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-07 \N 00:00:00 \N \N 0 2f5653e8-399d-f71d-89f2-1f09b0ab794a 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 51 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-14 \N 00:00:00 \N \N 0 8a8b6dc2-3d47-da92-0725-f0381bb9c22d 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 52 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-21 \N 00:00:00 \N \N 0 4c4d7327-a579-139a-13cd-86730b7e518c 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 53 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-28 \N 00:00:00 \N \N 0 f7ae69e8-d0e1-aa7e-2a24-b256475aac3f 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 1 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-04 \N 00:00:00 \N \N 0 79a3afc4-3ddd-614d-17ed-3791eec587a0 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 2 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-11 \N 00:00:00 \N \N 0 76905ca8-17fe-c76d-8c3d-6433bb8df9eb 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 3 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-18 \N 00:00:00 \N \N 0 da77d389-8665-e613-18ee-00922523c11e 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +cc63023b-4892-c29c-787d-088392d58b88 2583c916-2d07-f42d-9c85-18ee42959317 2020 38 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-09-14 \N 40:00:00 \N \N 6 6612dbf9-c114-a7a9-4cd2-fd4984b1c5e4 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2583c916-2d07-f42d-9c85-18ee42959317 2020 33 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-10 \N 40:00:00 \N \N 6 11a66ae3-870d-c5a3-e64c-2b6bd24cbbdf 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2583c916-2d07-f42d-9c85-18ee42959317 2020 34 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-17 \N 40:00:00 \N \N 6 10201a3c-6c34-df8a-aa23-966a99cea4f4 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2583c916-2d07-f42d-9c85-18ee42959317 2020 37 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-09-07 \N 40:00:00 \N \N 6 6774d93a-eaef-fad8-d95f-91ed27357ae3 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 2583c916-2d07-f42d-9c85-18ee42959317 2020 39 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-09-21 \N 40:00:00 \N \N 6 87582198-1f10-2007-2181-d62ca4fd7ad7 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2583c916-2d07-f42d-9c85-18ee42959317 2020 39 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-21 \N 40:00:00 \N \N 6 eb2db0c9-2106-5224-59c3-76855bf658d9 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2583c916-2d07-f42d-9c85-18ee42959317 2020 34 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-17 \N 40:00:00 \N \N 6 90bbcb82-f653-0fa2-10da-9e1db3399cff 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2583c916-2d07-f42d-9c85-18ee42959317 2020 37 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-07 \N 40:00:00 \N \N 6 4c9e70de-18b5-f4d0-9ee3-2b1ee53cf2b1 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2583c916-2d07-f42d-9c85-18ee42959317 2020 35 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-24 \N 40:00:00 \N \N 6 d592fd63-0df6-46fb-5903-3fa59656796f 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2583c916-2d07-f42d-9c85-18ee42959317 2020 38 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-14 \N 40:00:00 \N \N 6 1c51fb59-5aa0-e41d-0a78-ec0778b777e1 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2583c916-2d07-f42d-9c85-18ee42959317 2020 33 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-10 \N 40:00:00 \N \N 6 64648b58-895d-266a-ed8b-b8872dcc5d59 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2583c916-2d07-f42d-9c85-18ee42959317 2020 40 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-28 \N 40:00:00 \N \N 6 2d47e0ae-5cb0-1615-2aee-7af677a2c1d4 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 2583c916-2d07-f42d-9c85-18ee42959317 2020 36 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-31 \N 40:00:00 \N \N 6 f0e408a9-4c6d-34a6-3543-2ffed280406b 2020-08-04 08:17:38.03811 2020-08-04 08:12:22.443771 +8aa08f14-7976-baca-c214-b1131263ea5d 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 49 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-30 \N 00:00:00 \N \N 0 d4b81c50-0bf4-1412-d258-ff91fa0203aa 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 50 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-07 \N 00:00:00 \N \N 0 06e71229-7a42-cce0-f82a-cd6bf38ca27a 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 51 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-14 \N 00:00:00 \N \N 0 b1173062-72f4-af8d-979b-e5e3fcda8ffd 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 52 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-21 \N 00:00:00 \N \N 0 9849ec93-04b8-a800-245e-e8a0c4fa2360 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 53 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-28 \N 00:00:00 \N \N 0 078b90f5-1ded-cc4f-2ce6-05e7143e3c19 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 1 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-04 \N 00:00:00 \N \N 0 5791c0e1-f55e-4a93-40d4-1b949549fcd8 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 2 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-11 \N 00:00:00 \N \N 0 d05f9dae-7ae7-39f9-c37e-e8553fefc8e2 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +3c463353-f763-c72c-0007-e6b4926befee e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 41 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-05 \N 00:00:00 \N \N 0 09493b4b-9244-08bb-3767-3acdef560ba8 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 42 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-12 \N 00:00:00 \N \N 0 542d6123-3562-485f-9f82-efac73057710 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 43 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-19 \N 00:00:00 \N \N 0 d2e2f9fa-70f6-9132-ce9a-235ba9791003 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 44 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-26 \N 00:00:00 \N \N 0 eea5d131-a5ed-28b1-c450-9efbf0a2b34a 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 45 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-02 \N 00:00:00 \N \N 0 a7917f85-c028-adf5-9a14-e9137034cf5c 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 46 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-09 \N 00:00:00 \N \N 0 327e35cc-c500-29b4-8f55-895fb89953b4 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 47 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-16 \N 00:00:00 \N \N 0 f0a945f5-ed53-106a-8a8f-a24b2300d90a 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +3c463353-f763-c72c-0007-e6b4926befee e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 48 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-23 \N 00:00:00 \N \N 0 4f63e754-5e2b-4a76-c11f-3e6775b96263 2020-08-04 08:02:30.157867 2020-08-04 08:02:30.157867 +8aa08f14-7976-baca-c214-b1131263ea5d 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 3 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-18 \N 00:00:00 \N \N 0 1250d2be-cd8f-8423-002c-abed6f37de78 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +cc63023b-4892-c29c-787d-088392d58b88 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 53 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-28 \N 00:00:00 \N \N 0 56a54ba1-b2cd-70ba-8cfb-86fe38677f48 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 2 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-11 \N 00:00:00 \N \N 0 f36d72c2-95b4-cd2f-b9f7-778e75377aa2 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 51 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-14 \N 00:00:00 \N \N 0 2bc10655-880c-734c-ff08-516f7a21ca1c 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 3 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-18 \N 00:00:00 \N \N 0 56e5fee9-96e5-69a4-546a-25c035f21b51 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 49 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-30 \N 00:00:00 \N \N 0 2467313e-fe03-3c46-dee5-5ae4af227a8a 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 1 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-04 \N 00:00:00 \N \N 0 b180ea27-1765-de62-3e21-173bdc903d1f 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 52 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-21 \N 00:00:00 \N \N 0 7057e7f9-3c65-5c3f-315e-d79ccfdc263f 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 50 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-07 \N 00:00:00 \N \N 0 ac294e86-480e-bcb3-8cc4-89a651b128f2 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +63204f0b-afae-1380-b655-a6247b129af0 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 41 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-05 \N 00:00:00 \N \N 0 9b5151b5-9634-ef27-5c07-ba531de22d2c 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 2 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-11 \N 40:00:00 \N \N 6 389e6e7f-4752-f68c-4dd6-6f291a503193 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 49 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-30 \N 40:00:00 \N \N 6 b234169a-863a-9497-11e1-46a1ae6f5339 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 1 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-04 \N 40:00:00 \N \N 6 db681e4e-d0a2-d18a-4391-fff41197541e 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +a77618bc-86f2-800f-b26d-6d641147ab7c 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 49 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-30 \N 00:00:00 \N \N 0 95eefd41-47f3-b69e-41ef-285dd3bf9021 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 2 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-11 \N 00:00:00 \N \N 0 d2a736fb-058d-4dd1-43c7-097dcfee6a6f 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 51 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-14 \N 00:00:00 \N \N 0 70fb043f-2f10-c83e-2079-5e0e8e55e489 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 52 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-21 \N 00:00:00 \N \N 0 66ca6ee1-88b5-c29c-a0ca-1475743d15d5 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 1 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-04 \N 00:00:00 \N \N 0 8d685fbe-582f-6489-572e-40f0376af8a1 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 3 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-18 \N 00:00:00 \N \N 0 33a0fad1-b2e6-052e-54f8-30da62088c58 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 50 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-07 \N 00:00:00 \N \N 0 8c60c0ca-1fca-8b91-736e-a7705dbabbc0 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 53 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-28 \N 40:00:00 \N \N 6 a27525e6-f480-ff59-e6d5-20f27b33e6b9 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 3 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-18 \N 40:00:00 \N \N 6 44041cf8-b0b7-016a-ab48-730c20ec9fb7 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 52 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-21 \N 40:00:00 \N \N 6 363901f8-c819-a554-1775-ea30dddce6c6 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 50 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-07 \N 40:00:00 \N \N 6 40ff87fc-b78d-3e86-43b3-b8b2920a6a30 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 51 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-14 \N 40:00:00 \N \N 6 e6232724-75f4-1068-63e1-d925eaac235d 2020-08-04 08:18:19.097979 2020-08-04 08:12:22.443771 +8aa08f14-7976-baca-c214-b1131263ea5d e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 41 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-05 \N 00:00:00 \N \N 0 7503bf3a-c1a5-35f2-c0da-f19bb0c7ddd8 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 42 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-12 \N 00:00:00 \N \N 0 8836410a-64e3-de4d-42d4-b1e6d9ae6d3b 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 43 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-19 \N 00:00:00 \N \N 0 932dbb1a-749e-55cf-57a4-3a4c95e55e80 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 44 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-26 \N 00:00:00 \N \N 0 92ab0ffe-67e5-6ef2-8a4d-fbbe1fe089bc 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 45 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-02 \N 00:00:00 \N \N 0 551651b2-a92b-84e3-52f7-105b06bef9c6 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 46 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-09 \N 00:00:00 \N \N 0 763e6d82-b733-40e9-8eda-934c224601e8 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +8aa08f14-7976-baca-c214-b1131263ea5d e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 47 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-16 \N 00:00:00 \N \N 0 1d3551b6-3eb3-c832-4e60-52052144f6c6 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +a77618bc-86f2-800f-b26d-6d641147ab7c 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 53 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-28 \N 00:00:00 \N \N 0 9f77c01e-e2bf-0313-5d21-4118819df5db 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +8aa08f14-7976-baca-c214-b1131263ea5d e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 48 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-23 \N 00:00:00 \N \N 0 7256a5a4-048c-0b88-b512-14c476517040 2020-08-04 08:48:02.295624 2020-08-04 08:48:02.295624 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2583c916-2d07-f42d-9c85-18ee42959317 2020 40 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-09-28 \N 40:00:00 \N \N 6 7aff8a58-0572-1983-612c-1d43dde65c28 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2583c916-2d07-f42d-9c85-18ee42959317 2020 38 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-09-14 \N 40:00:00 \N \N 6 c9cf917b-8c6b-e909-3120-8544d975d421 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2583c916-2d07-f42d-9c85-18ee42959317 2020 36 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-31 \N 40:00:00 \N \N 6 72c7014c-8b9e-b5d5-b92d-d5c577e1d1ee 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2583c916-2d07-f42d-9c85-18ee42959317 2020 35 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-24 \N 40:00:00 \N \N 6 5bcd0875-d60c-5012-bd57-5248dc5696f7 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2583c916-2d07-f42d-9c85-18ee42959317 2020 37 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-09-07 \N 40:00:00 \N \N 6 fe54c0c0-afe1-852d-258a-9f1ccc8a7493 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2583c916-2d07-f42d-9c85-18ee42959317 2020 34 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-08-17 \N 40:00:00 \N \N 6 d6931909-b9c9-1c3f-4f70-676c4d76e05d 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2583c916-2d07-f42d-9c85-18ee42959317 2020 33 40:00:00 36:00:00 00:00:00 00:00:00 08:00:00 -12:00:00 2020-08-10 \N 28:00:00 \N \N 6 03cefb5b-3fa8-c8c2-acff-1938345c4506 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 2583c916-2d07-f42d-9c85-18ee42959317 2020 39 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-09-21 \N 40:00:00 \N \N 6 042d1b82-630b-d1b9-63da-35120771322c 2020-08-09 17:21:00.084336 2020-08-03 15:42:16.28754 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 41 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-05 \N 40:00:00 \N \N 6 c0318476-becd-68d0-3e11-bf85b1666f8f 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 47 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-16 \N 40:00:00 \N \N 6 9863cb37-aea2-b45c-b82f-975cde052a73 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 44 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-26 \N 40:00:00 \N \N 6 53bb59bc-a296-0e86-6302-21c230be88b8 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 42 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-12 \N 40:00:00 \N \N 6 cb8ed656-613b-9261-55aa-d9f78402cdc0 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 45 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-02 \N 40:00:00 \N \N 6 745bbf58-07a0-654d-1a65-5d4349063833 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +cc63023b-4892-c29c-787d-088392d58b88 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 42 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-12 \N 00:00:00 \N \N 0 b633ebf3-5cd2-5b83-c7f0-8bfe57a8a013 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 48 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-23 \N 00:00:00 \N \N 0 cb2b6ded-7ef2-cb9c-f930-42fc5c9c6ae9 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 41 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-05 \N 00:00:00 \N \N 0 effcf244-746a-d662-cf87-a633ece560a2 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 48 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-23 \N 40:00:00 \N \N 6 b37935ef-bc8d-436b-5691-d3fbb717d493 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 46 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-09 \N 40:00:00 \N \N 6 c6610cde-b1d8-811a-3f1d-de6c4df56ae4 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +1898317d-07d3-c9b8-c29c-a5aa60c28c27 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 43 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-19 \N 40:00:00 \N \N 6 7d2667f2-c1ff-3a55-d0c3-b554e0d9c47e 2020-08-04 08:18:04.803619 2020-08-04 08:12:22.443771 +cc63023b-4892-c29c-787d-088392d58b88 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 46 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-09 \N 00:00:00 \N \N 0 4458b82e-caf1-e886-1b33-6bdd6c666d72 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 43 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-19 \N 00:00:00 \N \N 0 d0bd791c-466b-4dde-ee3a-ce48f2def331 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 44 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-26 \N 00:00:00 \N \N 0 55d42aca-695e-b900-22b7-b4c0ce0b5776 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 47 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-16 \N 00:00:00 \N \N 0 370772c8-45b6-696b-c6b0-f948cf4061e5 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +cc63023b-4892-c29c-787d-088392d58b88 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 45 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-02 \N 00:00:00 \N \N 0 65d9d2b4-ec83-71de-ea3e-d20e7624899c 2020-08-09 17:30:46.037748 2020-08-04 09:03:04.740487 +a77618bc-86f2-800f-b26d-6d641147ab7c e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 42 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-12 \N 40:00:00 \N \N 6 2c69af3b-da54-416f-6ce8-a23342f3143f 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 48 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-23 \N 40:00:00 \N \N 6 e9590724-60b0-9cdf-8efa-5655ceb7cc38 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 44 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-26 \N 40:00:00 \N \N 6 00e8a37c-03a5-3345-a453-9c9dbc44ece9 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 45 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-02 \N 40:00:00 \N \N 6 50d5f7f6-1fce-1665-7876-9893031223d9 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 47 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-16 \N 40:00:00 \N \N 6 bc3f15ef-a640-ddd0-61f8-30b73aac5097 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 41 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-05 \N 40:00:00 \N \N 6 c1477774-15d0-312e-11e1-59d54ab68074 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 43 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-19 \N 40:00:00 \N \N 6 cad0e3a5-08dd-6040-ee76-69264ce4419a 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +a77618bc-86f2-800f-b26d-6d641147ab7c e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 46 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-09 \N 40:00:00 \N \N 6 78a39aca-4e23-e837-fa80-d42d3ca1dcc0 2020-08-04 08:46:46.705638 2020-08-03 15:43:26.11842 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 2 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-11 \N 40:00:00 \N \N 6 a21da5e1-0b38-1cd3-556b-fc9bddfffbdb 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 51 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-14 \N 40:00:00 \N \N 6 a1627aaa-220c-9ece-99cf-a05d9ae13e54 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 3 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-18 \N 40:00:00 \N \N 6 f627c2c7-fa84-7a2a-ac56-be724ee4a6f4 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 49 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-30 \N 40:00:00 \N \N 6 09318c38-7d02-fe13-08e8-bb899a7e133b 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 53 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-28 \N 40:00:00 \N \N 6 ae08c0ec-b589-144a-03f4-e10b05642b65 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 1 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-04 \N 40:00:00 \N \N 6 0f0c3761-21b1-798a-88f6-c25cb861c30c 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 52 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-21 \N 40:00:00 \N \N 6 9232773b-0f77-89df-3a38-d2afdd80ad0a 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 50 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-07 \N 40:00:00 \N \N 6 9d10c302-d37d-d69a-1fea-0caa755d9086 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +63204f0b-afae-1380-b655-a6247b129af0 2583c916-2d07-f42d-9c85-18ee42959317 2020 36 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-31 \N 00:00:00 \N \N 0 fa264bbc-5a60-46bc-8d5e-45803ed3837f 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2583c916-2d07-f42d-9c85-18ee42959317 2020 39 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-21 \N 00:00:00 \N \N 0 ee38c0a6-1c04-ea11-face-7c2e859c632a 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2583c916-2d07-f42d-9c85-18ee42959317 2020 40 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-28 \N 00:00:00 \N \N 0 644651aa-612f-96d8-9f82-e6edb6725ede 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2583c916-2d07-f42d-9c85-18ee42959317 2020 37 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-07 \N 00:00:00 \N \N 0 1299af5f-3ded-a52e-12e3-255770bc94a5 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2583c916-2d07-f42d-9c85-18ee42959317 2020 33 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-10 \N 00:00:00 \N \N 0 7af0a654-6fee-3234-2c30-928ded3387a0 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2583c916-2d07-f42d-9c85-18ee42959317 2020 35 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-24 \N 00:00:00 \N \N 0 8b8f18d8-9493-f628-322a-70be57c5ed76 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2583c916-2d07-f42d-9c85-18ee42959317 2020 38 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-09-14 \N 00:00:00 \N \N 0 1ff4dde2-5549-3aa5-0630-95325987e045 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 2583c916-2d07-f42d-9c85-18ee42959317 2020 34 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-08-17 \N 00:00:00 \N \N 0 caf1fcaa-66f8-abdd-04b3-caa3fe7cd234 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 47 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-16 \N 40:00:00 \N \N 6 4ca5cc30-caf8-1e33-5c36-9b6aa2d325b2 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 45 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-02 \N 40:00:00 \N \N 6 376d0e39-0a07-94d1-4089-0c889348db1a 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 41 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-05 \N 40:00:00 \N \N 6 7d3bd1d6-dc29-2a8e-1f9a-4255e1451e33 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 42 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-12 \N 40:00:00 \N \N 6 df70e4fd-cbdf-d10a-e612-ccb0dffb48b7 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 48 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-23 \N 40:00:00 \N \N 6 6737056e-d0bc-f32e-f493-ee52340237c9 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +63204f0b-afae-1380-b655-a6247b129af0 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 49 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-30 \N 00:00:00 \N \N 0 07a20dda-7249-33f8-b3bd-94ece0a1dc39 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 50 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-07 \N 00:00:00 \N \N 0 094f8c94-541f-4435-e37f-6110fdf74d1f 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 52 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-21 \N 00:00:00 \N \N 0 bc73ee15-c005-1b1c-7959-08069a52a2ee 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 2 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-11 \N 00:00:00 \N \N 0 4d846580-0e9f-01e7-b779-d20270cb3c9b 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 51 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-14 \N 00:00:00 \N \N 0 9a54f24c-6bd6-571b-5e34-35e10833f902 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 3 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-18 \N 00:00:00 \N \N 0 bd5c8522-7941-c5dd-e2da-768b64a22886 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 9b93bd90-2325-fe28-4bff-852203fc99ce 2020 53 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-12-28 \N 00:00:00 \N \N 0 976c8ba4-d06e-7459-b7be-18c990898fdc 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 9b93bd90-2325-fe28-4bff-852203fc99ce 2021 1 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2021-01-04 \N 00:00:00 \N \N 0 99c8f1f5-e4ac-6379-14ae-1f2cbce80707 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 44 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-26 \N 00:00:00 \N \N 0 bf9f464e-d5aa-021c-6c34-0717bf871f10 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 45 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-02 \N 00:00:00 \N \N 0 08588236-e0bd-63ac-97c5-58ed1fd24f7e 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 43 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-19 \N 00:00:00 \N \N 0 efe9c374-13a1-7eeb-ccc2-933b6951560f 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 47 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-16 \N 00:00:00 \N \N 0 e2b2befd-1707-dc37-84e5-17faf56554a7 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 48 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-23 \N 00:00:00 \N \N 0 32ce44f1-8045-8219-c463-d0c15fbcf4d7 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 46 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-09 \N 00:00:00 \N \N 0 71d77a11-3347-941b-c104-421272f17d4c 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +63204f0b-afae-1380-b655-a6247b129af0 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 42 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-12 \N 00:00:00 \N \N 0 53678e81-40f4-8a8e-7a9d-456aa3083026 2020-08-04 08:47:14.423046 2020-08-04 08:20:31.82353 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 44 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-26 \N 40:00:00 \N \N 6 907bfec2-6da2-24d9-70ff-4e0adbbfb4ee 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 43 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-10-19 \N 40:00:00 \N \N 6 527bd64a-6a3b-920f-eecf-f86e2073bb60 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 +e4cc11c3-dc5c-fb32-9de0-3ce9ac721507 e3e85c3e-1afa-768e-7938-f0c9996c618a 2020 46 00:00:00 40:00:00 00:00:00 00:00:00 00:00:00 \N 2020-11-09 \N 40:00:00 \N \N 6 3cb51a89-5100-3486-d9c7-a52175adf74b 2020-08-09 16:51:22.105001 2020-08-03 15:42:16.28754 \. @@ -2042,13 +3311,12 @@ normal t t #1b92bb normal 2020-07-23 11:59:38.23885 2020-07-23 12:27:10.908142 -- COPY portanova.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, id, weeknum, modified, created) FROM stdin; -fbd5ac24-becf-c358-45c4-65518415ebb8 1 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 d33cbba0-9602-54e1-98b8-401ab199dc5a 1 2020-07-23 11:59:40.886617 2020-07-23 12:27:10.908142 +fbd5ac24-becf-c358-45c4-65518415ebb8 3 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 f39ad346-e714-7876-5689-2994e1312b36 1 2020-08-04 09:02:14.817684 2020-07-23 12:27:10.908142 fde8026f-b370-af76-1026-0dc638348a7e 1 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 7511ca51-4a5a-87e1-896b-c6dbb4e70fb9 1 2020-07-23 11:59:40.886617 2020-07-23 12:27:10.908142 fde8026f-b370-af76-1026-0dc638348a7e 2 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 4fd4a501-4591-2c35-d2fb-a96fada984af 1 2020-07-23 11:59:40.886617 2020-07-23 12:27:10.908142 fde8026f-b370-af76-1026-0dc638348a7e 3 \N \N \N \N \N cc10f61d-6027-fb62-9ad4-d929d593c15e 1 2020-07-23 11:59:40.886617 2020-07-23 12:27:10.908142 f8666bc6-abed-a3ab-35d5-b6df495a0eea 5 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 bc0bd37b-233c-7311-b352-0aa40779cb7c 1 2020-07-23 11:59:40.886617 2020-07-23 12:27:10.908142 -fbd5ac24-becf-c358-45c4-65518415ebb8 2 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 c7957c42-81f9-96f8-0f5d-ad7515503674 1 2020-07-23 11:59:40.886617 2020-07-23 12:27:10.908142 -fbd5ac24-becf-c358-45c4-65518415ebb8 3 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 f39ad346-e714-7876-5689-2994e1312b36 1 2020-07-23 11:59:40.886617 2020-07-23 12:27:10.908142 +fbd5ac24-becf-c358-45c4-65518415ebb8 4 \N \N \N \N \N 2616bad1-9854-3fce-885b-5ceaa63d0f15 1 2020-08-04 09:02:36.160395 2020-07-23 12:27:10.908142 fbd5ac24-becf-c358-45c4-65518415ebb8 5 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 c59edca6-4e4f-39a9-0427-5a7aeaec58cc 1 2020-07-23 11:59:40.886617 2020-07-23 12:27:10.908142 a0fbbf10-ac5e-7cd8-0be0-a3bb2c9bdb58 1 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 301be505-5ba5-c9be-9d71-f3883008c0e7 1 2020-07-23 11:59:40.886617 2020-07-23 12:27:10.908142 a0fbbf10-ac5e-7cd8-0be0-a3bb2c9bdb58 2 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 73ee417e-09a1-9e54-8ce9-f2505a67b46b 1 2020-07-23 11:59:40.886617 2020-07-23 12:27:10.908142 @@ -2082,7 +3350,8 @@ fbd5ac24-becf-c358-45c4-65518415ebb8 7 11:00:00 14:30:00 \N \N \N 1bb66fbd-9051- 3ff4557c-b9c6-a2ff-eec3-89ad034b6556 5 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 20119c23-e7e3-5783-843c-a0e1635df425 1 2020-07-24 08:22:07.805921 2020-07-24 08:22:07.805921 3ff4557c-b9c6-a2ff-eec3-89ad034b6556 6 17:30:00 22:00:00 \N \N \N 30b2e2f4-ab22-793f-7a7b-8f238d3d6f5e 1 2020-07-24 08:22:07.805921 2020-07-24 08:22:07.805921 3ff4557c-b9c6-a2ff-eec3-89ad034b6556 4 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 4de91c61-dbe6-3119-ab99-766a2039a298 1 2020-07-28 16:57:16.392618 2020-07-24 08:22:07.805921 -fbd5ac24-becf-c358-45c4-65518415ebb8 4 12:00:00 13:00:00 \N \N \N 2616bad1-9854-3fce-885b-5ceaa63d0f15 1 2020-07-30 11:23:56.510242 2020-07-23 12:27:10.908142 +fbd5ac24-becf-c358-45c4-65518415ebb8 1 10:30:00 14:30:00 18:00:00 23:00:00 01:00:00 d33cbba0-9602-54e1-98b8-401ab199dc5a 1 2020-08-04 09:01:16.204226 2020-07-23 12:27:10.908142 +fbd5ac24-becf-c358-45c4-65518415ebb8 2 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 c7957c42-81f9-96f8-0f5d-ad7515503674 1 2020-08-04 09:01:34.953432 2020-07-23 12:27:10.908142 3ff4557c-b9c6-a2ff-eec3-89ad034b6556 7 11:00:00 14:30:00 \N \N \N 15a4fece-963d-ae1e-137c-a572dd39c929 1 2020-07-24 08:22:07.805921 2020-07-24 08:22:07.805921 6870aaaa-ebe1-811e-b52c-fb19525ffe08 5 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 82edf976-3e27-7cef-d5d4-f12aa7b5b4b4 1 2020-07-28 16:58:13.722864 2020-07-28 16:58:13.722864 6870aaaa-ebe1-811e-b52c-fb19525ffe08 6 17:30:00 22:00:00 \N \N \N a2634a59-5aef-dd59-252d-e39a64dbba0c 1 2020-07-28 16:58:13.722864 2020-07-28 16:58:13.722864 @@ -2096,6 +3365,7 @@ ec796603-0d87-8457-b92d-1a792e5f5acb 3 \N \N \N \N \N 83bb20aa-3da7-dcb0-31f3-19 ec796603-0d87-8457-b92d-1a792e5f5acb 7 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 39bd146c-cf01-184a-627c-576197f01d78 1 2020-07-28 17:00:52.682848 2020-07-28 17:00:52.682848 ec796603-0d87-8457-b92d-1a792e5f5acb 5 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 6f7ede21-5507-dafd-b759-d07c37e8863a 1 2020-07-28 17:00:52.682848 2020-07-28 17:00:52.682848 ec796603-0d87-8457-b92d-1a792e5f5acb 6 17:30:00 22:00:00 \N \N \N dbbb9e5a-9aa1-aa18-ad59-a77577f2f4ae 1 2020-07-28 17:00:52.682848 2020-07-28 17:00:52.682848 +6299c4b9-50e4-dffd-5560-eb13a4281882 3 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 09dd78cb-b316-4340-d2c8-0da4e057c669 1 2020-08-04 08:24:00.053131 2020-08-04 08:23:14.656775 ec796603-0d87-8457-b92d-1a792e5f5acb 1 10:30:00 14:30:00 19:30:00 00:30:00 01:00:00 27fd3b0c-cad8-0f72-d172-489756ac836e 1 2020-07-29 09:09:28.054851 2020-07-28 17:00:52.682848 ec796603-0d87-8457-b92d-1a792e5f5acb 4 11:00:00 14:30:00 \N \N \N 6a683a50-7c33-af59-7b32-57c08d124699 1 2020-07-29 09:35:41.665448 2020-07-28 17:00:52.682848 a57742b1-b03c-21d1-54b1-bd0259375d89 1 \N \N \N \N \N e1961fc7-b0b8-74ea-c994-38f0893642e0 1 2020-07-30 10:31:05.577147 2020-07-30 10:31:05.577147 @@ -2105,6 +3375,47 @@ a57742b1-b03c-21d1-54b1-bd0259375d89 4 \N \N \N \N \N 043f3227-0bb4-6c5f-3e9f-a4 a57742b1-b03c-21d1-54b1-bd0259375d89 5 \N \N \N \N \N 53c94d57-2480-dbf2-683b-60ab1ce20024 1 2020-07-30 10:31:05.577147 2020-07-30 10:31:05.577147 a57742b1-b03c-21d1-54b1-bd0259375d89 6 \N \N \N \N \N 4c55ddc7-5992-6f6f-350e-c0cae58535fc 1 2020-07-30 10:31:05.577147 2020-07-30 10:31:05.577147 a57742b1-b03c-21d1-54b1-bd0259375d89 7 \N \N \N \N \N 663ec6dd-7d7b-c985-a1a7-6642b1b71cce 1 2020-07-30 10:31:05.577147 2020-07-30 10:31:05.577147 +c2e086cf-32d7-7f1c-cff1-09c13172ade3 2 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 609d48d3-5bbe-ef10-bbde-78264afa443c 1 2020-08-04 07:54:51.907014 2020-08-04 07:54:51.907014 +c2e086cf-32d7-7f1c-cff1-09c13172ade3 1 \N \N \N \N \N 74f4debd-ce7e-7a9e-bd0c-043506cf950d 1 2020-08-04 07:55:56.71347 2020-08-04 07:54:51.907014 +c2e086cf-32d7-7f1c-cff1-09c13172ade3 3 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 10f9a7bd-9983-3146-3350-69744e84494b 1 2020-08-04 07:56:06.102232 2020-08-04 07:54:51.907014 +c2e086cf-32d7-7f1c-cff1-09c13172ade3 7 11:00:00 14:30:00 \N \N \N e7a2b080-08dc-0664-2d5e-43b12e12f68a 1 2020-08-04 07:57:02.006503 2020-08-04 07:54:51.907014 +c2e086cf-32d7-7f1c-cff1-09c13172ade3 6 18:30:00 23:00:00 \N \N \N 4a81c8ef-cc7e-8e33-2436-6b00b95aaaef 1 2020-08-04 07:57:27.014463 2020-08-04 07:54:51.907014 +c2e086cf-32d7-7f1c-cff1-09c13172ade3 4 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 2a9b6e73-ef35-33eb-32c8-da6f0a27ce09 1 2020-08-04 07:57:44.406855 2020-08-04 07:54:51.907014 +c2e086cf-32d7-7f1c-cff1-09c13172ade3 5 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 1e7ee49a-6ec4-3bef-33e1-bbadcbc6e175 1 2020-08-04 07:57:55.113324 2020-08-04 07:54:51.907014 +6299c4b9-50e4-dffd-5560-eb13a4281882 1 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 0284eb69-e56a-dbb6-41d4-f68ee7d51cd8 1 2020-08-04 08:23:14.656775 2020-08-04 08:23:14.656775 +6299c4b9-50e4-dffd-5560-eb13a4281882 2 \N \N \N \N \N b9082459-4ca7-eb3b-21e9-f7e2812440dd 1 2020-08-04 08:23:14.656775 2020-08-04 08:23:14.656775 +6299c4b9-50e4-dffd-5560-eb13a4281882 5 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 e0abc9c9-707c-3ab6-d950-816105ac4693 1 2020-08-04 08:23:14.656775 2020-08-04 08:23:14.656775 +6299c4b9-50e4-dffd-5560-eb13a4281882 6 17:30:00 22:00:00 \N \N \N c4a09b01-190b-305d-f9e1-b3092d886d26 1 2020-08-04 08:25:31.729214 2020-08-04 08:23:14.656775 +6299c4b9-50e4-dffd-5560-eb13a4281882 4 11:00:00 14:30:00 \N \N \N fd6939ab-842f-1e9d-c516-ae9dbb94d07e 1 2020-08-04 08:24:17.530847 2020-08-04 08:23:14.656775 +6299c4b9-50e4-dffd-5560-eb13a4281882 7 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 87b98c5a-81bf-967c-b408-8f4ba1d0893a 1 2020-08-04 08:24:58.335778 2020-08-04 08:23:14.656775 +ae74b950-9b80-caa6-3ffd-38c7a465552b 4 \N \N \N \N \N ede9e66c-5d0d-c4e5-3811-caad723407fa 1 2020-08-04 08:29:36.26574 2020-08-04 08:29:36.26574 +ae74b950-9b80-caa6-3ffd-38c7a465552b 5 \N \N \N \N \N 4b3e838b-568e-fa34-286c-1839153da775 1 2020-08-04 08:29:36.26574 2020-08-04 08:29:36.26574 +ae74b950-9b80-caa6-3ffd-38c7a465552b 6 \N \N \N \N \N 2a4e4bea-517c-b261-0eb6-93836fbee2ec 1 2020-08-04 08:29:36.26574 2020-08-04 08:29:36.26574 +ae74b950-9b80-caa6-3ffd-38c7a465552b 7 \N \N \N \N \N c432f1ba-902e-5e01-d8a2-a271ce586e86 1 2020-08-04 08:29:36.26574 2020-08-04 08:29:36.26574 +ae74b950-9b80-caa6-3ffd-38c7a465552b 1 11:00:00 15:00:00 \N \N \N 29a69f7d-452f-988b-422a-be33f6012a88 1 2020-08-04 08:30:00.648246 2020-08-04 08:29:36.26574 +ae74b950-9b80-caa6-3ffd-38c7a465552b 2 11:00:00 15:00:00 \N \N \N 99d95133-1716-a418-2f8d-a236a09f8fa8 1 2020-08-04 08:30:21.088603 2020-08-04 08:29:36.26574 +ae74b950-9b80-caa6-3ffd-38c7a465552b 3 10:30:00 15:00:00 \N \N \N 88f3d788-0a93-00ac-f684-0f8bcdc70c1e 1 2020-08-04 08:30:46.135016 2020-08-04 08:29:36.26574 +f0e63e3e-e55e-c80d-99fc-b4bfe6fa3312 3 \N \N \N \N \N e760ca18-33c2-1bfd-fd07-8d2b83214f25 1 2020-08-04 08:31:44.522208 2020-08-04 08:31:44.522208 +f0e63e3e-e55e-c80d-99fc-b4bfe6fa3312 5 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 8e51e001-0003-532e-18c6-82114d62de6d 1 2020-08-04 08:31:44.522208 2020-08-04 08:31:44.522208 +f0e63e3e-e55e-c80d-99fc-b4bfe6fa3312 6 17:30:00 22:00:00 \N \N \N 62f1a5ab-8caa-8c63-508c-1b80ff4c3024 1 2020-08-04 08:31:44.522208 2020-08-04 08:31:44.522208 +f0e63e3e-e55e-c80d-99fc-b4bfe6fa3312 1 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 7f89b852-27fc-bea3-8c69-b6996b8358a9 1 2020-08-04 08:32:54.45253 2020-08-04 08:31:44.522208 +7172f97b-38d0-ae8e-3a38-1d893e34b56f 5 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 c45123f2-9071-7373-060d-2222eef16882 1 2020-08-04 08:43:40.873885 2020-08-04 08:41:02.137229 +f0e63e3e-e55e-c80d-99fc-b4bfe6fa3312 2 11:00:00 14:30:00 \N \N \N 1a0d876d-3326-3a50-d6e3-7b7c404710cc 1 2020-08-04 08:33:40.994994 2020-08-04 08:31:44.522208 +f0e63e3e-e55e-c80d-99fc-b4bfe6fa3312 4 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 a055c4fd-830e-9438-af16-95d891f53971 1 2020-08-04 08:34:17.098839 2020-08-04 08:31:44.522208 +f0e63e3e-e55e-c80d-99fc-b4bfe6fa3312 7 10:30:00 14:30:00 18:30:00 23:30:00 01:00:00 55945274-d12e-ba3c-8095-306caafa6cba 1 2020-08-04 08:36:32.000204 2020-08-04 08:31:44.522208 +267f424d-9716-cf98-3bd0-c6715257c3a0 1 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 cd14f7d9-9073-2410-a5dc-f366568fee59 1 2020-08-04 08:38:34.053308 2020-08-04 08:38:34.053308 +267f424d-9716-cf98-3bd0-c6715257c3a0 2 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 486172e4-7975-da75-b255-ebbfe38d59ea 1 2020-08-04 08:38:34.053308 2020-08-04 08:38:34.053308 +267f424d-9716-cf98-3bd0-c6715257c3a0 3 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 1d3c6a5a-b732-2f45-d69d-61b088e4b234 1 2020-08-04 08:38:34.053308 2020-08-04 08:38:34.053308 +267f424d-9716-cf98-3bd0-c6715257c3a0 6 17:30:00 22:30:00 \N \N 00:30:00 76b202b1-5763-43d8-ff55-b28d2bcc2ed8 1 2020-08-04 08:38:34.053308 2020-08-04 08:38:34.053308 +267f424d-9716-cf98-3bd0-c6715257c3a0 4 11:00:00 14:30:00 \N \N \N 6fffa25f-a5ea-38e7-7889-b37a7b1ef3ae 1 2020-08-04 08:39:33.500741 2020-08-04 08:38:34.053308 +267f424d-9716-cf98-3bd0-c6715257c3a0 5 10:30:00 14:30:00 17:30:00 22:30:00 01:00:00 f7da87ea-eb44-7979-a160-6a0db8786e8c 1 2020-08-04 08:39:50.726572 2020-08-04 08:38:34.053308 +267f424d-9716-cf98-3bd0-c6715257c3a0 7 \N \N \N \N \N 69e0336f-0dd1-f85a-79cf-f0f01fa7ee2f 1 2020-08-04 08:40:10.724376 2020-08-04 08:38:34.053308 +7172f97b-38d0-ae8e-3a38-1d893e34b56f 1 \N \N \N \N \N 28181259-66c4-029b-8693-add2927650b4 1 2020-08-04 08:41:02.137229 2020-08-04 08:41:02.137229 +7172f97b-38d0-ae8e-3a38-1d893e34b56f 3 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 ce3f9d61-5e1a-82e6-79f6-6c070a5d9bf4 1 2020-08-04 08:41:02.137229 2020-08-04 08:41:02.137229 +7172f97b-38d0-ae8e-3a38-1d893e34b56f 4 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 7d134bbb-a7b1-39a1-6dda-ee06d422987e 1 2020-08-04 08:41:02.137229 2020-08-04 08:41:02.137229 +7172f97b-38d0-ae8e-3a38-1d893e34b56f 2 10:30:00 14:30:00 17:00:00 22:00:00 01:00:00 fa4d25f7-7f4a-2029-aeac-a49f24027936 1 2020-08-04 08:42:45.911468 2020-08-04 08:41:02.137229 +7172f97b-38d0-ae8e-3a38-1d893e34b56f 6 17:30:00 22:00:00 \N \N \N 42d89643-e447-ee4c-07a8-5a0b54ad14ea 1 2020-08-04 08:44:45.080048 2020-08-04 08:41:02.137229 +7172f97b-38d0-ae8e-3a38-1d893e34b56f 7 11:00:00 14:30:00 \N \N \N 20cd0b95-1c0e-dbe7-f39b-c3a282a22b7f 1 2020-08-04 08:45:23.784369 2020-08-04 08:41:02.137229 \. @@ -2113,15 +3424,21 @@ a57742b1-b03c-21d1-54b1-bd0259375d89 7 \N \N \N \N \N 663ec6dd-7d7b-c985-a1a7-66 -- COPY portanova.workplans (workplan, weekhours, weekdays, freeweekdayslist, id, modified, created, isdefault) FROM stdin; +Horaire Dario 40:00:00 6 ["3"] f0e63e3e-e55e-c80d-99fc-b4bfe6fa3312 2020-08-04 08:36:32.000204 2020-08-04 08:31:44.522208 \N +Horaire Christian 40:00:00 6 ["1"] c2e086cf-32d7-7f1c-cff1-09c13172ade3 2020-08-04 07:57:55.113324 2020-08-04 07:54:51.907014 \N Horaire Maria 40:00:00 6 ["1"] f8666bc6-abed-a3ab-35d5-b6df495a0eea 2020-07-28 16:52:33.308504 2020-07-23 12:27:10.908142 \N Horaire Josiane 40:00:00 6 ["1"] e14fcef9-5c90-e979-0ba8-86d86d29fbe2 2020-07-28 16:52:45.894425 2020-07-23 12:27:10.908142 \N Horaire Karim 40:00:00 6 ["4"] a0fbbf10-ac5e-7cd8-0be0-a3bb2c9bdb58 2020-07-28 16:52:56.111965 2020-07-23 12:27:10.908142 \N Horaire Marco 39:50:00 6 ["3"] fde8026f-b370-af76-1026-0dc638348a7e 2020-07-28 16:53:12.236836 2020-07-23 12:27:10.908142 \N +Horaire Tiffany 40:00:00 6 ["7"] 267f424d-9716-cf98-3bd0-c6715257c3a0 2020-08-04 08:40:10.724376 2020-08-04 08:38:34.053308 \N +Horaire Joao 40:00:00 6 ["2"] 6299c4b9-50e4-dffd-5560-eb13a4281882 2020-08-04 08:25:31.729214 2020-08-04 08:23:14.656775 \N Horaire Francesco 40:00:00 6 ["2"] 3ff4557c-b9c6-a2ff-eec3-89ad034b6556 2020-07-28 16:57:16.392618 2020-07-24 08:22:07.805921 \N Horaire Nicolas 40:00:00 6 ["3"] 6870aaaa-ebe1-811e-b52c-fb19525ffe08 2020-07-28 17:00:19.534882 2020-07-28 16:58:13.722864 \N +Horaire Lilly 12:30:00 3 ["4","5","6","7"] ae74b950-9b80-caa6-3ffd-38c7a465552b 2020-08-04 08:40:27.604222 2020-08-04 08:29:36.26574 \N Horaire Vagos 40:00:00 6 ["3"] ec796603-0d87-8457-b92d-1a792e5f5acb 2020-07-29 09:35:41.665448 2020-07-28 17:00:52.682848 \N -Horaire Catia 41:00:00 7 \N fbd5ac24-becf-c358-45c4-65518415ebb8 2020-07-30 11:23:56.510242 2020-07-23 12:27:10.908142 \N Standard 00:00:00 0 ["1","2","3","4","5","6","7"] a57742b1-b03c-21d1-54b1-bd0259375d89 2020-07-30 11:42:45.867982 2020-07-30 10:31:05.577147 t +Horaire Francesca 40:00:00 6 ["1"] 7172f97b-38d0-ae8e-3a38-1d893e34b56f 2020-08-04 08:45:23.784369 2020-08-04 08:41:02.137229 \N +Horaire Catia 40:00:00 6 ["4"] fbd5ac24-becf-c358-45c4-65518415ebb8 2020-08-04 09:02:36.160395 2020-07-23 12:27:10.908142 \N \. @@ -2351,24 +3668,31 @@ CREATE OR REPLACE VIEW portanova.vw_workplandayslist AS -- --- Name: workplandays trg_dks_after_ins_workplandays; Type: TRIGGER; Schema: portanova; Owner: potlu_user +-- Name: staffcontract trg_after_insert_staffcontract; Type: TRIGGER; Schema: portanova; Owner: potlu_user -- -CREATE TRIGGER trg_dks_after_ins_workplandays AFTER INSERT ON portanova.workplandays FOR EACH ROW EXECUTE PROCEDURE portanova.trg_after_upd_worplanday(); +CREATE TRIGGER trg_after_insert_staffcontract AFTER INSERT ON portanova.staffcontract FOR EACH ROW EXECUTE PROCEDURE portanova.trg_after_upd_staffcontract(); -- --- Name: workplandays trg_dks_after_upd_workplandays; Type: TRIGGER; Schema: portanova; Owner: potlu_user +-- Name: staffcontract trg_after_update_staffcontract; Type: TRIGGER; Schema: portanova; Owner: potlu_user -- -CREATE TRIGGER trg_dks_after_upd_workplandays AFTER UPDATE OF start1, end1, start2, end2, pause ON portanova.workplandays FOR EACH ROW EXECUTE PROCEDURE portanova.trg_after_upd_worplanday(); +CREATE TRIGGER trg_after_update_staffcontract AFTER UPDATE OF id_contractworkplan, startdate, enddate ON portanova.staffcontract FOR EACH ROW EXECUTE PROCEDURE portanova.trg_after_upd_staffcontract(); -- --- Name: staffcontract trg_portanova_after_upsert_staffcontract; Type: TRIGGER; Schema: portanova; Owner: potlu_user +-- Name: workplandays trg_dks_after_ins_workplandays; Type: TRIGGER; Schema: portanova; Owner: potlu_user -- -CREATE TRIGGER trg_portanova_after_upsert_staffcontract AFTER INSERT OR UPDATE ON portanova.staffcontract FOR EACH ROW EXECUTE PROCEDURE portanova.trg_after_upd_staffcontract(); +CREATE TRIGGER trg_dks_after_ins_workplandays AFTER INSERT ON portanova.workplandays FOR EACH ROW EXECUTE PROCEDURE portanova.trg_after_upd_worplanday(); + + +-- +-- Name: workplandays trg_dks_after_upd_workplandays; Type: TRIGGER; Schema: portanova; Owner: potlu_user +-- + +CREATE TRIGGER trg_dks_after_upd_workplandays AFTER UPDATE OF start1, end1, start2, end2, pause ON portanova.workplandays FOR EACH ROW EXECUTE PROCEDURE portanova.trg_after_upd_worplanday(); -- diff --git a/dev/db/potlu_db.portanova.pg.schema.sql b/dev/db/potlu_db.portanova.pg.schema.sql index 44eb26ff..5a5efbe6 100644 --- a/dev/db/potlu_db.portanova.pg.schema.sql +++ b/dev/db/potlu_db.portanova.pg.schema.sql @@ -1,9 +1,9 @@ +-- +-- PostgreSQL database dump +-- - - - - - +-- Dumped from database version 11.7 (Debian 11.7-0+deb10u1) +-- Dumped by pg_dump version 11.7 (Debian 11.7-0+deb10u1) SET statement_timeout = 0; SET lock_timeout = 0; @@ -16,16 +16,16 @@ SET xmloption = content; SET client_min_messages = warning; SET row_security = off; - - - +-- +-- Name: portanova; Type: SCHEMA; Schema: -; Owner: - +-- CREATE SCHEMA portanova; - - - +-- +-- Name: add_reportperiod(); Type: FUNCTION; Schema: portanova; Owner: - +-- CREATE FUNCTION portanova.add_reportperiod() RETURNS text LANGUAGE plpgsql @@ -55,9 +55,9 @@ end; $$; - - - +-- +-- Name: add_staff(); Type: FUNCTION; Schema: portanova; Owner: - +-- CREATE FUNCTION portanova.add_staff() RETURNS text LANGUAGE plpgsql @@ -65,21 +65,23 @@ CREATE FUNCTION portanova.add_staff() RETURNS text declare newuuid text; stgrid text; + iddef_workplan text; begin + select id into iddef_workplan from portanova.workplans where isdefault = true; select id into stgrid from portanova.staffgroups where isdefault is null; if (stgrid is null) then select id into stgrid from portanova.staffgroups limit 1; end if; insert into portanova.staff (id_staffgroup) values (stgrid) returning id into newuuid; - insert into portanova.staffcontract (id_staff,startdate ) values (newuuid,CURRENT_DATE); + insert into portanova.staffcontract (id_staff,startdate,id_contractworkplan) values (newuuid,CURRENT_DATE,iddef_workplan); return newuuid; end; $$; - - - +-- +-- Name: add_workplan(text); Type: FUNCTION; Schema: portanova; Owner: - +-- CREATE FUNCTION portanova.add_workplan(pwkname text) RETURNS text LANGUAGE plpgsql @@ -88,40 +90,17 @@ declare newuuid text; begin insert into portanova.workplans (workplan) values (pwkname) returning id into newuuid; - perform portanova.add_workplanweek(newuuid); - return newuuid; -end; -$$; - - - - - - -CREATE FUNCTION portanova.add_workplanweek(pid_workplan text) RETURNS boolean - LANGUAGE plpgsql - AS $$ -declare - maxweeknum int4; - cntwd int4; -begin - select max(weeknum) into maxweeknum from portanova.workplandays where id_workplan=pid_workplan; - if maxweeknum is null then - maxweeknum := 1; - else - maxweeknum := maxweeknum + 1; - end if; for cntwd in 1..7 LOOP - insert into portanova.workplandays (id_workplan,weeknum,weekday) values (pid_workplan,maxweeknum,cntwd); + insert into portanova.workplandays (id_workplan,weeknum,weekday) values (newuuid,1,cntwd); end loop; - return true; + return newuuid; end; $$; - - - +-- +-- Name: clean_staffperiodday(json); Type: FUNCTION; Schema: portanova; Owner: - +-- CREATE FUNCTION portanova.clean_staffperiodday(vid_staffperioddays json) RETURNS boolean LANGUAGE plpgsql @@ -151,9 +130,9 @@ CREATE FUNCTION portanova.clean_staffperiodday(vid_staffperioddays json) RETURNS $$; - - - +-- +-- Name: clone_staffperiodweekdayhours(text, json); Type: FUNCTION; Schema: portanova; Owner: - +-- CREATE FUNCTION portanova.clone_staffperiodweekdayhours(vcopyid text, vpasteids json) RETURNS boolean LANGUAGE plpgsql @@ -180,26 +159,62 @@ CREATE FUNCTION portanova.clone_staffperiodweekdayhours(vcopyid text, vpasteids $$; +-- +-- Name: del_staff(text); Type: FUNCTION; Schema: portanova; Owner: - +-- +CREATE FUNCTION portanova.del_staff(pid_staff text) RETURNS boolean + LANGUAGE plpgsql + AS $$ +begin + update portanova.staff set isdeleted = true; + return true; +end; +$$; +-- +-- Name: del_staffcontract(text); Type: FUNCTION; Schema: portanova; Owner: - +-- -CREATE FUNCTION portanova.delete_workplan(pid_workplan text) RETURNS boolean +CREATE FUNCTION portanova.del_staffcontract(pid_staffcontract text) RETURNS boolean LANGUAGE plpgsql AS $$ declare + idstaff text; + rps record; begin - delete from portanova.workplandays where id_workplan=pid_workplan; - update portanova.staffcontract set id_worplan=null where id_workplan=pid_workplan; - delete from portanova.workplans where id=pid_workplan; + select id_staff into idstaff from portanova.staffcontract where id=pid_staffcontract; + delete from portanova.staffcontract where id=pid_staffcontract; + for rps in select id from portanova.reportperiod + loop + perform portanova.set_staffperioddays(rps.id, idstaff); + end loop; return true; end; $$; +-- +-- Name: delete_workplan(text); Type: FUNCTION; Schema: portanova; Owner: - +-- +CREATE FUNCTION portanova.delete_workplan(pid_workplan text) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare +begin + delete from portanova.workplandays where id_workplan=pid_workplan; + --update portanova.staffcontract set id_worplan=null where id_workplan=pid_workplan; + delete from portanova.workplans where id=pid_workplan; + return true; +end; +$$; +-- +-- Name: duplicate_workplan(text); Type: FUNCTION; Schema: portanova; Owner: - +-- CREATE FUNCTION portanova.duplicate_workplan(pid_workplan text) RETURNS text LANGUAGE plpgsql @@ -217,9 +232,9 @@ end; $$; - - - +-- +-- Name: getperiod_staffcontract(text); Type: FUNCTION; Schema: portanova; Owner: - +-- CREATE FUNCTION portanova.getperiod_staffcontract(pid text) RETURNS TABLE(id text, id_staff text, startdate date, enddate date) LANGUAGE plpgsql @@ -230,7 +245,7 @@ CREATE FUNCTION portanova.getperiod_staffcontract(pid text) RETURNS TABLE(id tex begin select prd.startdate as prdstart,prd.enddate as prdend into pstart,pend from portanova.reportperiod prd where prd.id=pid; return QUERY -select sc.id,sc.id_staff, +select sc.id,sc.id_staff,sc.weekdays,sc.weekhours, sc.weekhours/sc.weekdays as wdcontracthours, case when sc.startdate < pstart then pstart else sc.startdate end as startdate, case when sc.enddate is null then pend when sc.enddate > pend then pend else sc.enddate end as enddate from portanova.staffcontract sc @@ -241,47 +256,34 @@ END; $$; +-- +-- Name: getperiod_staffcontractdata(text); Type: FUNCTION; Schema: portanova; Owner: - +-- - - - -CREATE FUNCTION portanova.getperiod_staffcontract(pstart date, pend date) RETURNS TABLE(id text, id_staff text, startdate date, enddate date) +CREATE FUNCTION portanova.getperiod_staffcontractdata(pid text) RETURNS TABLE(id text, id_staff text, startdate date, enddate date, weekdays integer, weekhours interval, wdcontracthours interval) LANGUAGE plpgsql AS $$ - BEGIN + declare + pstart date; + pend date; + begin + select prd.startdate as prdstart,prd.enddate as prdend into pstart,pend from portanova.reportperiod prd where prd.id=pid; return QUERY -select id,id_staff,case when startdate < pstart then pstart else startdate end as startdate,case when enddate is null then pend when enddate > pend then pend else enddate end as enddate -from portanova.staffcontract where startdate<= pend and (enddate is null or enddate >= pstart) order by id_staff,startdate,enddate; +select sc.id,sc.id_staff, +case when sc.startdate < pstart then pstart else sc.startdate end as startdate, +case when sc.enddate is null then pend when sc.enddate > pend then pend else sc.enddate end as enddate +,sc.weekdays,sc.weekhours, sc.weekhours/case when sc.weekdays = 0 or sc.weekdays is null then 7 else sc.weekdays end as wdcontracthours +from portanova.staffcontract sc +join portanova.staff st on st.id=sc.id_staff +where sc.startdate<= pend and (sc.enddate is null or sc.enddate >= pstart) and st.isdeleted is null +order by sc.id_staff,sc.startdate,sc.enddate; END; $$; - - - - -CREATE FUNCTION portanova.onchange_reportperiod(pid_period text) RETURNS boolean - LANGUAGE plpgsql - AS $$ -declare - prdstart date; - prdend date; - strec record; -begin - select startdate,enddate into prdstart,prdend from portanova.reportperiod where id=pid_period; - for strec in select id_staff,startdate,enddate from portanova.staffcontract where startdate <= prdend and (enddate is null or enddate >= prdstart) group by id_staff - loop - --raise notice 'Start Update period % staffworkplan for % from % to %',pid_period,strec.id_staff,strec.startdate,strec.enddate; - perform portanova.update_staffworkplan(pid_period,strec.id_staff); - end loop; - return true; -end; -$$; - - - - - +-- +-- Name: refresh_periods(); Type: FUNCTION; Schema: portanova; Owner: - +-- CREATE FUNCTION portanova.refresh_periods() RETURNS boolean LANGUAGE plpgsql @@ -298,16 +300,16 @@ CREATE FUNCTION portanova.refresh_periods() RETURNS boolean $$; - - - +-- +-- Name: replace_staffperiodweekdayhours(text, boolean, boolean, json); Type: FUNCTION; Schema: portanova; Owner: - +-- CREATE FUNCTION portanova.replace_staffperiodweekdayhours(vworkplanid text, vkeepvac boolean, vkeeprec boolean, vreplaceids json) RETURNS boolean LANGUAGE plpgsql AS $$ declare rcopy record; - rupd record; + begin for rcopy in select * from portanova.workplandays w where id_workplan=vworkplanid loop @@ -322,73 +324,15 @@ CREATE FUNCTION portanova.replace_staffperiodweekdayhours(vworkplanid text, vkee where id in (select value from json_array_elements_text(vreplaceids) aa) and date_part('isodow',daydate)::INT4=rcopy.weekday; end if; end loop; - for rupd in select id_reportperiod,id_staff from portanova.staffreportperioddays where id in (select value from json_array_elements_text(vreplaceids) aa) group by id_reportperiod, id_staff - loop - perform portanova.update_staff_in_period(rupd.id_reportperiod, rupd.id_staff); - end loop; + perform portanova.update_periodsums_byid(vreplaceids); RETURN true; END; $$; - - - - -CREATE FUNCTION portanova.set_periodday_sums(pid_periodday text) RETURNS text - LANGUAGE plpgsql - AS $$ -declare - stw record; - dt1 interval := '00:00:00'::interval; - dt2 interval := '00:00:00'::interval; - dp interval := '00:00:00'::interval; - cworkhours interval := '00:00:00'::interval; - cvacancyhours interval := '00:00:00'::interval; - crecuperationhours interval := '00:00:00'::interval; - cdayhours interval := '00:00:00'::interval; - cinterruptionhours interval := '00:00:00'::interval; -begin - - select * into stw from portanova.staffreportperioddays where id=pid_periodday; - if stw.timestart1 is not null and stw.timeend1 is not null then - dt1 := stw.timeend1-stw.timestart1; - end if; - if stw.timestart2 is not null and stw.timeend2 is not null then - dt2 := stw.timeend2-stw.timestart2; - end if; - if stw.timepause is not null then - dp := stw.timepause; - end if; - cworkhours := (dt1+dt2)-dp; - if (dt1 > '00:00:00'::interval and dt2 > '00:00:00'::interval) then - cinterruptionhours := stw.timestart2 -stw.timeend1; - end if; - if stw.vacancyhours is not null then - if stw.vacancyhours <= stw.contracthours then - cvacancyhours := stw.vacancyhours; - else - cvacancyhours := stw.contracthours; - end if; - end if; - if stw.recuperationhours is not null then - if stw.recuperationhours <= stw.contracthours then - crecuperationhours := stw.recuperationhours; - else - crecuperationhours := stw.contracthours; - end if; - end if; - cdayhours := cworkhours+cvacancyhours+crecuperationhours; - - update portanova.staffreportperioddays set workhours=cworkhours,interruptionhours=cinterruptionhours,dayhours=cdayhours,vacancyhours=cvacancyhours,recuperationhours=crecuperationhours where id=pid_periodday; - return pid_periodday; -end; -$$; - - - - - +-- +-- Name: set_staffperiod(text, text); Type: FUNCTION; Schema: portanova; Owner: - +-- CREATE FUNCTION portanova.set_staffperiod(pid_period text, pid_staff text) RETURNS boolean LANGUAGE plpgsql @@ -421,9 +365,9 @@ from portanova.staffreportperiodweeks where id_staff=pid_staff and id_reportperi $$; - - - +-- +-- Name: set_staffperiod_sums(text, text); Type: FUNCTION; Schema: portanova; Owner: - +-- CREATE FUNCTION portanova.set_staffperiod_sums(pid_period text, pid_staff text) RETURNS boolean LANGUAGE plpgsql @@ -432,12 +376,12 @@ CREATE FUNCTION portanova.set_staffperiod_sums(pid_period text, pid_staff text) weekrec record; BEGIN for weekrec in select id_staff,id_reportperiod, -sum(contracthours) as contracthours, -sum(workhours) as workhours, -sum(vacancyhours) as vacancyhours, -sum(recuperationhours) as recuperationhours, -sum(diffhours) as hoursdiff, -sum(totalhours) as totalhours +sum(case when contracthours is not null then contracthours else '00:00:00'::interval end) as contracthours, +sum(case when workhours is not null then workhours else '00:00:00'::interval end) as workhours, +sum(case when vacancyhours is not null then vacancyhours else '00:00:00'::interval end) as vacancyhours, +sum(case when recuperationhours is not null then recuperationhours else '00:00:00'::interval end) as recuperationhours, +sum(case when diffhours is not null then diffhours else '00:00:00'::interval end) as hoursdiff, +sum(case when totalhours is not null then totalhours else '00:00:00'::interval end) as totalhours from portanova.staffreportperiodweeks where id_staff=pid_staff and id_reportperiod=pid_period group by id_reportperiod,id_staff loop update portanova.staffreportperiod set contracthours=weekrec.contracthours, @@ -455,9 +399,75 @@ from portanova.staffreportperiodweeks where id_staff=pid_staff and id_reportperi $$; +-- +-- Name: set_staffperiodday_sums(text); Type: FUNCTION; Schema: portanova; Owner: - +-- +CREATE FUNCTION portanova.set_staffperiodday_sums(pid_periodday text) RETURNS text + LANGUAGE plpgsql + AS $$ +declare + stw record; + dt1 interval := '00:00:00'::interval; + dt2 interval := '00:00:00'::interval; + dp interval := '00:00:00'::interval; + cworkhours interval := '00:00:00'::interval; + --cvacancyhours interval := '00:00:00'::interval; + --crecuperationhours interval := '00:00:00'::interval; + cdayhours interval := '00:00:00'::interval; + cinterruptionhours interval := '00:00:00'::interval; + ccontracthours interval := '00:00:00'::interval; +begin + --raise notice 'set Period Day: %s', pid_periodday; + select * into stw from portanova.staffreportperioddays where id=pid_periodday; + if stw.timestart1 is not null and stw.timeend1 is not null then + if stw.timeend1 < stw.timestart1 then + dt1 := '24:00:00'::interval + stw.timeend1::interval - stw.timestart1::interval; + else + dt1 := stw.timeend1-stw.timestart1; + end if; + end if; + if stw.timestart2 is not null and stw.timeend2 is not null then + if stw.timeend2 < stw.timestart2 then + dt2 := '24:00:00'::interval + stw.timeend2::interval - stw.timestart2::interval; + else + dt2 := stw.timeend2-stw.timestart2; + end if; + end if; + if stw.timepause is not null then + dp := stw.timepause; + end if; + cworkhours := (dt1+dt2)-dp; + if (dt1 > '00:00:00'::interval and dt2 > '00:00:00'::interval) then + cinterruptionhours := stw.timestart2 - stw.timeend1; + end if; + /*if stw.vacancyhours is not null then + if stw.vacancyhours <= stw.contracthours then + cvacancyhours := stw.vacancyhours; + else + cvacancyhours := stw.contracthours; + end if; + end if;*/ + /*if stw.recuperationhours is not null then + if stw.recuperationhours <= stw.contracthours then + crecuperationhours := stw.recuperationhours; + else + crecuperationhours := stw.contracthours; + end if; + end if;*/ + cdayhours := cworkhours::interval+coalesce(stw.vacancyhours::interval,'00:00:00'::interval)-coalesce(stw.recuperationhours::interval,'00:00:00'::interval); + if cdayhours > '00:00:00'::interval then + ccontracthours := stw.wdcontracthours; + end if; + update portanova.staffreportperioddays set workhours=cworkhours,interruptionhours=cinterruptionhours,dayhours=cdayhours,contracthours=ccontracthours where id=pid_periodday; + return pid_periodday; +end; +$$; +-- +-- Name: set_staffperioddays(text, text); Type: FUNCTION; Schema: portanova; Owner: - +-- CREATE FUNCTION portanova.set_staffperioddays(pid_period text, pid_staff text) RETURNS boolean LANGUAGE plpgsql @@ -465,58 +475,88 @@ CREATE FUNCTION portanova.set_staffperioddays(pid_period text, pid_staff text) R declare cont record; prd record; + pday record; cdate date; cid_staffworkplan text; begin select * into prd from portanova.reportperiod where id= pid_period; - for cont in select * from portanova.getperiod_staffcontract(pid_period) where id_staff=pid_staff + for cont in select * from portanova.getperiod_staffcontractdata(pid_period) where id_staff=pid_staff loop cdate := cont.startdate; + while cdate <= cont.enddate loop + --raise notice 'cdate %: % <=> %',cdate, prd.startdate,prd.enddate; if cdate between prd.startdate and prd.enddate then - insert into portanova.staffreportperioddays (id_staff,daydate,id_reportperiod) values ( pid_staff , cdate , pid_period) - on conflict on constraint uniq_staffworplan_staffday do nothing; + --raise notice 'insert %: % <=> %',cdate, prd.startdate,prd.enddate; + insert into portanova.staffreportperioddays (id_staff,daydate,id_reportperiod,wdcontracthours ) values ( pid_staff , cdate , pid_period,cont.wdcontracthours) + on conflict on constraint uniq_staffworplan_staffday do update set wdcontracthours=cont.wdcontracthours; end if; cdate = cdate + interval '1 day'; end loop; end loop; perform portanova.verify_perioddays(pid_period,pid_staff); + for pday in select id from portanova.staffreportperioddays where id_staff=pid_staff and pid_period=pid_period + loop + perform portanova.set_staffperiodday_sums(pday.id); + end loop; + raise notice 'start set_staffperiodweeks % % ',pid_period,pid_staff; perform portanova.set_staffperiodweeks(pid_period,pid_staff); return true; end; $$; - - - +-- +-- Name: set_staffperiodweek_sums(text, text); Type: FUNCTION; Schema: portanova; Owner: - +-- CREATE FUNCTION portanova.set_staffperiodweek_sums(pid_reportperiod text, pid_staff text) RETURNS boolean LANGUAGE plpgsql AS $$ declare - wkcon record; + sweek record; tmpcontrhours interval; freedays int4 := 0; begin - -- INSERT Contract data into Week -for wkcon in select srpw.id,srpw.calweek,srpw.weekstart,srpw.calyear,rp.startdate as periodstart,psc.startdate,rp.enddate as periodend,psc.enddate,psc.weekhours,psc.weekdays,srpw.contractdays,srpw.caldays,srpw.diffhours,srpw.contracthours,srpw.totalhours,psc.defaultfreedays -from portanova.staffreportperiodweeks srpw -left join (select xa.id_staff,xa.startdate,xa.enddate,xa.weekhours,xa.weekdays,xa.defaultfreedays from portanova.getperiod_staffcontract(pid_reportperiod) xa where xa.id_staff=pid_staff) psc -on (srpw.weekstart between date_trunc('week',psc.startdate) and psc.enddate) -left join portanova.reportperiod rp on (srpw.id_reportperiod =rp.id) -where srpw.id_reportperiod=pid_reportperiod and srpw.id_staff=pid_staff + +for sweek in +select srpd.id_staff,srpd.id_reportperiod,date(date_trunc('week',srpd.daydate)) as weekstart,date_part('week',srpd.daydate) as calweek, +date_part('isoyear',srpd.daydate) as calyear, +sum(case when srpd.workhours is null then '00:00:00'::interval else srpd.workhours::interval end) as workhours, +'00:00:00'::interval as trackedhours, +sum(case when srpd.vacancyhours is null then '00:00:00'::interval else srpd.vacancyhours::interval end ) as vacancyhours, +sum(case when srpd.recuperationhours is null then '00:00:00'::interval else srpd.recuperationhours::interval end) as recuperationhours, +sum(case when srpd.dayhours is null then '00:00:00'::interval else srpd.dayhours::interval end) as totalhours, +sum(case when srpd.workhours != '00:00:00'::time then 1 else 0 end) as workdays, +sum(case when srpd.contracthours is null then '00:00:00'::interval else srpd.contracthours::interval end) as contracthours +from portanova.staffreportperioddays srpd +join portanova.reportperiod rp on (rp.id=srpd.id_reportperiod) +where srpd.id_reportperiod =pid_reportperiod and srpd.id_staff=pid_staff +group by weekstart,calweek,calyear,srpd.id_staff,srpd.id_reportperiod loop - --raise notice 'id=%',wkcon; - if wkcon.defaultfreedays is not null then + update portanova.staffreportperiodweeks set + workhours=sweek.workhours, + trackedhours=sweek.trackedhours, + vacancyhours=sweek.vacancyhours, + recuperationhours=sweek.recuperationhours, + diffhours=case when sweek.contracthours is null or sweek.contracthours::interval='00:00:00'::interval then null else sweek.totalhours-sweek.contracthours end, + totalhours=sweek.totalhours, + workdays=sweek.workdays, + contracthours=sweek.contracthours + where id_staff=sweek.id_staff and id_reportperiod=sweek.id_reportperiod and weekstart=sweek.weekstart; +end loop; + --raise notice 'UPDATE WEEK SUMS %',sweek; + /**/ + /*if wkcon.defaultfreedays is not null then freedays = json_array_length(wkcon.defaultfreedays); end if; wkcon.contracthours=wkcon.weekhours; wkcon.contractdays=wkcon.weekdays; if wkcon.calweek= date_part('week',wkcon.periodstart)::int4 and wkcon.calyear= date_part('isoyear',wkcon.periodstart)::int4 then wkcon.contracthours = wkcon.contracthours - ((wkcon.weekhours/wkcon.weekdays) * (wkcon.startdate-wkcon.periodstart)::int4); - end if; + end if;*/ + --if wkcon.startdate > wkcon.periodstart then -- wkcon.contractdays = wkcon.contractdays-(wkcon.startdate-wkcon.periodstart)::int4; -- wkcon.contracthours = (wkcon.weekhours/wkcon.weekdays) * wkcon.contractdays; @@ -527,21 +567,21 @@ loop --end if; - wkcon.diffhours = wkcon.totalhours-wkcon.contracthours; - raise notice 'contractdays: % contracthours: % totalhours: % diffhours: %',wkcon.contractdays,wkcon.contracthours,wkcon.totalhours,wkcon.diffhours; + /*wkcon.diffhours = wkcon.totalhours-wkcon.contracthours; + raise notice 'contractdays: % contracthours: % totalhours: % diffhours: %',wkcon.contractdays,wkcon.contracthours,wkcon.totalhours,wkcon.diffhours;*/ --raise notice 'id=% cdays=% chours=% diffhours=%',wkcon.id,wkcon.contractdays,wkcon.contracthours,wkcon.diffhours; - update portanova.staffreportperiodweeks set contracthours=wkcon.contracthours,contractdays=wkcon.contractdays,diffhours=wkcon.diffhours where id=wkcon.id; -end loop; + + return true; end; $$; - - - +-- +-- Name: set_staffperiodweeks(text, text); Type: FUNCTION; Schema: portanova; Owner: - +-- CREATE FUNCTION portanova.set_staffperiodweeks(pid_reportperiod text, pid_staff text) RETURNS boolean LANGUAGE plpgsql @@ -550,32 +590,27 @@ declare wkpd record; wkcon record; begin - - for wkpd in select id_staff,id_reportperiod,calyear,calweek,weekstart, -coalesce(sum(workhours),'00:00:00') as workhours , -coalesce(sum(vacancyhours),'00:00:00') as vacancyhours , -coalesce(sum(recuperationhours) ,'00:00:00' ) as recuperationhours , -coalesce(sum(dayhours),'00:00:00') as totalhours, -coalesce(sum(contracthours),'00:00:00') as contracthours, -count(wdcontracthours) as caldays -from ( -select swp.id,swp.id_reportperiod,swp.id_staff, -date_part('isoyear',swp.daydate) as calyear, -date_part('week',swp.daydate) as calweek, -date(date_trunc('week',swp.daydate)) as weekstart, -swp.workhours, -swp.contracthours, -swp.recuperationhours, -swp.dayhours, -swp.vacancyhours, -swp.wdcontracthours -from portanova.staffreportperioddays swp -where swp.id_reportperiod= pid_reportperiod and swp.id_staff=pid_staff) wkwp group by id_staff,id_reportperiod,calyear,calweek,weekstart +--INSERT DAY DATA into WEEK + for wkpd in select srpd.id_staff,srpd.id_reportperiod,date(date_trunc('week',srpd.daydate)) as weekstart,date_part('week',srpd.daydate) as calweek, +date_part('isoyear',srpd.daydate) as calyear, +coalesce(sum(srpd.workhours::interval),'00:00:00'::interval) as workhours, +coalesce(sum('00:00:00'::interval),'00:00:00'::interval) as trackedhours, +coalesce(sum(srpd.vacancyhours::interval),'00:00:00'::interval) as vacancyhours, +coalesce(sum(srpd.recuperationhours::interval),'00:00:00'::interval) as recuperationhours, +coalesce(sum(srpd.dayhours::interval),'00:00:00'::interval) as totalhours, +sum(case when srpd.workhours != '00:00:00'::time then 1 else 0 end) as workdays, +coalesce(sum(contracthours::interval),'00:00:00'::interval) as contracthours +from portanova.staffreportperioddays srpd +join portanova.reportperiod rp on (rp.id=srpd.id_reportperiod) +where srpd.id_reportperiod =pid_reportperiod and srpd.id_staff=pid_staff +group by weekstart,calweek,calyear,srpd.id_staff,srpd.id_reportperiod loop + raise notice 'CHECK WEEK % % ',wkpd.calweek,wkpd.calyear; --raise notice 'id_staff: % id_period: % calweek: % calyear: %',pid_staff,pid_reportperiod,wkpd.calweek,wkpd.calyear; - insert into portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, workhours,vacancyhours, recuperationhours, weekstart,totalhours,caldays,contracthours,diffhours) - VALUES(wkpd.id_staff, wkpd.id_reportperiod, wkpd.calyear, wkpd.calweek, wkpd.workhours, wkpd.vacancyhours, wkpd.recuperationhours, wkpd.weekstart,wkpd.totalhours,wkpd.caldays,wkpd.contracthours,wkpd.contracthours-wkpd.totalhours) - on conflict on constraint uniq_staffweekplan_cal do update set workhours=wkpd.workhours, vacancyhours=wkpd.vacancyhours, recuperationhours=wkpd.recuperationhours,totalhours=wkpd.totalhours,caldays=wkpd.caldays,contracthours=wkpd.contracthours,diffhours=wkpd.contracthours-wkpd.totalhours; + insert into portanova.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, workhours,vacancyhours, recuperationhours, weekstart,totalhours,workdays,contracthours,diffhours) + VALUES(wkpd.id_staff, wkpd.id_reportperiod, wkpd.calyear, wkpd.calweek, wkpd.workhours, wkpd.vacancyhours, wkpd.recuperationhours, wkpd.weekstart,wkpd.totalhours,wkpd.workdays,wkpd.contracthours,wkpd.contracthours-wkpd.totalhours) + on conflict on constraint uniq_staffweekplan_cal do nothing; + perform portanova.set_staffperiodweek_sums(wkpd.id_reportperiod,wkpd.id_staff); end loop; perform portanova.set_staffperiod(pid_reportperiod, pid_staff); @@ -584,41 +619,9 @@ end; $$; - - - - -CREATE FUNCTION portanova.set_stafftoperioddays(pid_period text, pid_staff text) RETURNS boolean - LANGUAGE plpgsql - AS $$ -declare - cont record; - prd record; - cdate date; - cid_staffworkplan text; -begin - select * into prd from portanova.reportperiod where id= pid_period; - for cont in select * from portanova.getperiod_staffcontract(pid_period) where id_staff=pid_staff - loop - cdate := cont.startdate; - while cdate <= cont.enddate loop - if cdate between prd.startdate and prd.enddate then - insert into portanova.staffreportperioddays (id_staff,daydate,id_reportperiods) values ( pid_staff , cdate , pid_period) - on conflict on constraint uniq_staffworplan_staffday do nothing; - end if; - cdate = cdate + interval '1 day'; - end loop; - - end loop; - perform portanova.verify_perioddays(pid_period,pid_staff); - return true; -end; -$$; - - - - - +-- +-- Name: set_stafftoperiodweeks(text, text); Type: FUNCTION; Schema: portanova; Owner: - +-- CREATE FUNCTION portanova.set_stafftoperiodweeks(pid_reportperiod text, pid_staff text) RETURNS boolean LANGUAGE plpgsql @@ -627,7 +630,7 @@ declare wkpd record; wkcon record; begin - +--INSERT DAY DATA into WEEK for wkpd in select id_staff,id_reportperiod,calyear,calweek,weekstart, coalesce(sum(workhours),'00:00:00') as workhours , coalesce(sum(vacancyhours),'00:00:00') as vacancyhours , @@ -661,9 +664,9 @@ end; $$; - - - +-- +-- Name: setworkplan_weekdata(text); Type: FUNCTION; Schema: portanova; Owner: - +-- CREATE FUNCTION portanova.setworkplan_weekdata(pid_workplan text) RETURNS boolean LANGUAGE plpgsql @@ -683,15 +686,15 @@ begin coalesce(CASE WHEN start2 > end2 and start1 is not null THEN '24:00:00'::time without time zone - (start2 - end2)::time without time zone ELSE end2 - start2 end,'00:00:00'::interval) - coalesce(pause,'00:00:00'::time without time zone)) into xweekhours FROM portanova.workplandays where id_workplan=pid_workplan group by id_workplan ; update portanova.workplans set weekhours = xweekhours, weekdays = wdcnt, freeweekdayslist = freedays::JSON where id=pid_workplan; - update portanova.staffcontract set weekdays= wdcnt, weekhours= xweekhours, defaultfreedays= freedays::JSON where id_contractworkplan=pid_workplan; + --update portanova.staffcontract set weekdays= wdcnt, weekhours= xweekhours, defaultfreedays= freedays::JSON where id_contractworkplan=pid_workplan; return true; end; $$; - - - +-- +-- Name: trg_after_upd_staffcontract(); Type: FUNCTION; Schema: portanova; Owner: - +-- CREATE FUNCTION portanova.trg_after_upd_staffcontract() RETURNS trigger LANGUAGE plpgsql @@ -703,9 +706,8 @@ CREATE FUNCTION portanova.trg_after_upd_staffcontract() RETURNS trigger rp record; begin raise notice 'After update exec %',new.id; - select id_staff,startdate,enddate from portanova.staffcontract into idstaff,datestart,dateend where id=new.id; - --UPDATE portanova.staffcontract sc SET weekdays = wp.weekdays , weekhours = wp.weekhours,defaultfreedays= wp.freeweekdayslist from portanova.workplans wp where wp.id =sc.id_contractworkplan and sc.id=new.id - --returning id_staff,startdate,enddate into idstaff,datestart,dateend; + UPDATE portanova.staffcontract sc SET weekdays = wp.weekdays , weekhours = wp.weekhours,defaultfreedays= wp.freeweekdayslist from portanova.workplans wp where wp.id =sc.id_contractworkplan and sc.id=new.id + returning id_staff,startdate,enddate into idstaff,datestart,dateend; raise notice 'idstaff % startdate % enddate %',idstaff,datestart,dateend; if datestart is not null and dateend is null then for rp in select id from portanova.reportperiod where datestart between startdate and enddate or startdate > datestart @@ -726,9 +728,9 @@ CREATE FUNCTION portanova.trg_after_upd_staffcontract() RETURNS trigger $$; - - - +-- +-- Name: trg_after_upd_worplanday(); Type: FUNCTION; Schema: portanova; Owner: - +-- CREATE FUNCTION portanova.trg_after_upd_worplanday() RETURNS trigger LANGUAGE plpgsql @@ -740,9 +742,9 @@ CREATE FUNCTION portanova.trg_after_upd_worplanday() RETURNS trigger $$; - - - +-- +-- Name: trg_before_upd_schematable(); Type: FUNCTION; Schema: portanova; Owner: - +-- CREATE FUNCTION portanova.trg_before_upd_schematable() RETURNS trigger LANGUAGE plpgsql @@ -754,9 +756,9 @@ CREATE FUNCTION portanova.trg_before_upd_schematable() RETURNS trigger $$; - - - +-- +-- Name: update_all_staff_in_period(text); Type: FUNCTION; Schema: portanova; Owner: - +-- CREATE FUNCTION portanova.update_all_staff_in_period(pid_period text) RETURNS boolean LANGUAGE plpgsql @@ -774,22 +776,50 @@ CREATE FUNCTION portanova.update_all_staff_in_period(pid_period text) RETURNS bo $$; +-- +-- Name: update_periodsums_byid(json); Type: FUNCTION; Schema: portanova; Owner: - +-- +CREATE FUNCTION portanova.update_periodsums_byid(vdayids json) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + rday record; + rweek record; + rperiod record; +BEGIN + for rday in select id from portanova.staffreportperioddays where id in (select value from json_array_elements_text(vdayids) aa) group by id + loop + perform portanova.set_staffperiodday_sums(rday.id); + end loop; + for rweek in select id_staff,id_reportperiod from portanova.staffreportperioddays where id in (select value from json_array_elements_text(vdayids) aa) group by id_reportperiod,id_staff + loop + perform portanova.set_staffperiodweek_sums(rweek.id_reportperiod,rweek.id_staff); + perform portanova.set_staffperiod_sums(rweek.id_reportperiod,rweek.id_staff); + end loop; + return true; + END; +$$; +-- +-- Name: update_staff_in_period(text, text); Type: FUNCTION; Schema: portanova; Owner: - +-- CREATE FUNCTION portanova.update_staff_in_period(pid_period text, pid_staff text) RETURNS boolean LANGUAGE plpgsql AS $$ declare staffreportid text; + rdays record; begin raise notice 'update staff in period called rp: % st: %',pid_period,pid_staff; if (pid_period is not null and pid_staff is not null) then - insert into portanova.staffreportperiod (id_reportperiod,id_staff) values (pid_period,pid_staff) - on conflict on constraint uniq_staffreportperiod_cal do nothing returning id into staffreportid; - perform portanova.set_stafftoperioddays(pid_period,pid_staff); - perform portanova.set_stafftoperiodweeks(pid_period,pid_staff); + for rdays in select id from portanova.staffreportperioddays where id_staff=pid_staff and id_reportperiod=pid_period + loop + perform portanova.set_staffperiodday_sums(rdays.id); + end loop; + perform portanova.set_staffperiodweek_sums(pid_period,pid_staff); perform portanova.set_staffperiod_sums(pid_period,pid_staff); end if; return true; @@ -797,9 +827,9 @@ CREATE FUNCTION portanova.update_staff_in_period(pid_period text, pid_staff text $$; - - - +-- +-- Name: update_staffreportperiod(text, text); Type: FUNCTION; Schema: portanova; Owner: - +-- CREATE FUNCTION portanova.update_staffreportperiod(pid_reportperiod text, pid_staff text) RETURNS boolean LANGUAGE plpgsql @@ -819,85 +849,9 @@ end; $$; - - - - -CREATE FUNCTION portanova.update_staffweeksums(pid_staffworkplan text) RETURNS void - LANGUAGE plpgsql - AS $$ -declare - wkpl_record record; - wkpltt time without time zone := '00:00:00'::interval; -begin - select - case WHEN timestart1 > timeend1 THEN '24:00:00'::time without time zone - (timestart1 - timeend1)::time without time zone ELSE timeend1 - timestart1 END AS time1, - CASE WHEN timestart2 > timeend2 THEN '24:00:00'::time without time zone - (timestart2 - timeend2)::time without time zone ELSE timeend2 - timestart2 END AS time2, - timepause - into wkpl_record - from portanova.staffworkplan where id= pid_staffworkplan; - - wkpltt := wkpl_record.time1 + wkpl_record.time2 - wkpl_record.timepause::interval; - update portanova.staffworkplan set totaltime=wkpltt where id=pid_staffworkplan; -end; -$$; - - - - - - -CREATE FUNCTION portanova.update_staffworkplan(pid_period text, pid_staff text) RETURNS boolean - LANGUAGE plpgsql - AS $$ -declare - cont record; - prd record; - cdl record; - cdate date; - edate date; - wday text; - wdayplan record; - cid_staffworkplan text; -begin - select * into prd from portanova.reportperiod where id= pid_period; - for cont in select * from portanova.staffcontract where id_staff= pid_staff and (enddate >= prd.startdate or (enddate is null and startdate <= prd.enddate)) /*order by startdate,enddate nulls last*/ - loop - if cont.enddate is null then - cont.enddate := prd.enddate; - end if; - cdate := cont.startdate; - while cdate <= cont.enddate loop - if cdate between prd.startdate and prd.enddate then - if (cont.id_workplan is not null) then - wday := substr(to_char(cdate,'day'),1,3); - execute 'select ' || wday || '_timestart1 as ts1,' || wday || '_timeend1 as te1,' || wday || '_timestart2 as ts2,' || wday ||'_timeend2 as te2,'|| wday ||'_timepause as tp from portanova.workplans where id=' || cont.id_workplan || ';' into wdayplan; - insert into portanova.staffworkplan (id_staff,daydate,id_reportperiod,timestart1,timeend1,timestart2,timeend2,timepause,contracthours,id_staffgroup,fullweeksplithours) - values (pid_staff,cdate,pid_period,wdayplan.ts1,wdayplan.te1,wdayplan.ts2,wdayplan.te2,wdayplan.tp,cont.weekhours/cont.weekdays,cont.id_staffgroup,cont.weekhours/7) - on conflict on constraint uniq_staffworplan_staffday do update set id_reportperiod = pid_period,contracthours=cont.weekhours/cont.weekdays,id_staffgroup=cont.id_staffgroup,fullweeksplithours=cont.weekhours/7 - returning id into cid_staffworkplan; - else - insert into portanova.staffworkplan (id_staff,daydate,id_reportperiod,contracthours,id_staffgrou) values ( pid_staff , cdate , pid_period,cont.weekhours/cont.weekdays,cont.id_staffgroup,fullweeksplithours) - on conflict on constraint uniq_staffworplan_staffday do update set id_reportperiod = pid_period,contracthours=cont.weekhours/cont.weekdays,id_staffgroup=cont.id_staffgroup,fullweeksplithours=cont.weekhours/7 - returning id into cid_staffworkplan; - end if; - end if; - perform portanova.update_staffworkplan_sums(cid_staffworkplan); - cdate = cdate + interval '1 day'; - end loop; - - end loop; - perform portanova.verify_staffworplan_with_contractdates(pid_period,pid_staff); - --perform portanova.update_staffweekplan(pid_period,pid_staff); - --perform portanova.set_staffperiod_data(pid_period,pid_staff); - return true; -end; -$$; - - - - - +-- +-- Name: verify_perioddays(text, text); Type: FUNCTION; Schema: portanova; Owner: - +-- CREATE FUNCTION portanova.verify_perioddays(pid_period text, pid_staff text) RETURNS boolean LANGUAGE plpgsql @@ -912,31 +866,18 @@ begin select startdate,enddate into rpstart,rpend from portanova.reportperiod where id=pid_period; for wkpd in select id_staff,case when startdate <= rpstart then rpstart else startdate end as startdate,case when enddate is null then rpend else enddate end as enddate from portanova.staffcontract where id_staff=pid_staff and startdate <= rpend and (enddate is null or enddate >= rpstart) loop - --raise notice '%: % => % ',wkpd.id_staff,wkpd.startdate,wkpd.enddate; qlnotin := qlnotin || ' and daydate not between date(''' || wkpd.startdate || ''') AND date(''' || wkpd.enddate || ''')'; - --raise notice 'xx: %',qlnotin; end loop; sqlcheck := 'delete from portanova.staffreportperioddays where id in (select id from portanova.staffreportperioddays where id_staff=''' || pid_staff || ''' and id_reportperiod=''' || pid_period || ''' ' || qlnotin || ');'; - --raise notice 'SQL: %',sqlcheck; execute sqlcheck; - /*update portanova.staffworkplan - set contracthours=(select weekhours2/weekdays as contracthours - from portanova.staffcontract where id_staff=pid_staff - and ((portanova.staffworkplan.daydate between startdate and enddate) or - (startdate <= portanova.staffworkplan.daydate and enddate is null))), - id_staffgroup=(select id_staffgroup - from portanova.staffcontract where id_staff=pid_staff - and ((portanova.staffworkplan.daydate between startdate and enddate) or - (startdate <= portanova.staffworkplan.daydate and enddate is null))) - where id_staff=pid_staff and id_reportperiod=pid_period; */ return true; end; $$; - - - +-- +-- Name: workplan_replaceday(text, text); Type: FUNCTION; Schema: portanova; Owner: - +-- CREATE FUNCTION portanova.workplan_replaceday(pid_copy text, pid_paste text) RETURNS boolean LANGUAGE plpgsql @@ -947,57 +888,7 @@ begin select * into rday from portanova.workplandays where id=pid_copy; update portanova.workplandays set start1=rday.start1,end1=rday.end1,start2=rday.start2,end2=rday.end2, pause=rday.pause where id=pid_paste; return true; -end; -$$; - - - - - - -CREATE FUNCTION portanova.zzold_onchange_reportperiod(pid_period text) RETURNS boolean - LANGUAGE plpgsql - AS $$ -declare - prdstart date; - prdend date; - strec record; -begin - select startdate,enddate into prdstart,prdend from portanova.reportperiod where id=pid_period; - for strec in select id_staff,startdate,enddate from portanova.staffcontract where startdate <= prdend and (enddate is null or enddate >= prdstart) group by id_staff - loop - raise notice 'Start Update period % staffworkplan for % from % to %',pid_period,strec.id_staff,strec.startdate,strec.enddate; - perform portanova.update_staffworkplan(pid_period,strec.id_staff); - end loop; - return true; -end; -$$; - - - - - - -CREATE FUNCTION portanova.zzold_set_staffperiod(pid_period text) RETURNS boolean - LANGUAGE plpgsql - AS $$ - declare - periodstart date; - periodend date; - staffrec record; - staffreportid int4; - BEGIN - select startdate,enddate into periodstart,periodend from portanova.reportperiod where id= pid_period; - for staffrec in select id_staff from portanova.staffcontract where (enddate >= periodstart or (enddate is null and startdate <= periodend)) group by id_staff - loop - insert into portanova.staffreportperiod (id_reportperiod,id_staff) values (pid_period,staffrec.id_staff) - on conflict on constraint uniq_staffreportperiod_cal do nothing returning id into staffreportid; - raise notice 'staffreport ID: %',staffreportid; - perform portanova.set_staffperioddays(pid_period,staffrec.id_staff); - perform portanova.set_staffperiodweeks(pid_period,staffrec.id_staff); - end loop; - return true; - END; +end; $$; @@ -1005,9 +896,9 @@ SET default_tablespace = ''; SET default_with_oids = false; - - - +-- +-- Name: reportperiod; Type: TABLE; Schema: portanova; Owner: - +-- CREATE TABLE portanova.reportperiod ( periodname text, @@ -1020,9 +911,9 @@ CREATE TABLE portanova.reportperiod ( ); - - - +-- +-- Name: reports; Type: TABLE; Schema: portanova; Owner: - +-- CREATE TABLE portanova.reports ( id text DEFAULT public.getuuid() NOT NULL, @@ -1046,9 +937,9 @@ CREATE TABLE portanova.reports ( ); - - - +-- +-- Name: staff; Type: TABLE; Schema: portanova; Owner: - +-- CREATE TABLE portanova.staff ( staffnumber text, @@ -1071,9 +962,9 @@ CREATE TABLE portanova.staff ( ); - - - +-- +-- Name: staffcontract; Type: TABLE; Schema: portanova; Owner: - +-- CREATE TABLE portanova.staffcontract ( id_staff text, @@ -1081,13 +972,17 @@ CREATE TABLE portanova.staffcontract ( enddate date, id text DEFAULT public.getuuid() NOT NULL, modified timestamp without time zone DEFAULT now(), - created timestamp without time zone DEFAULT now() + created timestamp without time zone DEFAULT now(), + weekdays integer, + weekhours interval, + defaultfreedays json, + id_contractworkplan text ); - - - +-- +-- Name: staffgroups; Type: TABLE; Schema: portanova; Owner: - +-- CREATE TABLE portanova.staffgroups ( groupname text, @@ -1100,9 +995,9 @@ CREATE TABLE portanova.staffgroups ( ); - - - +-- +-- Name: staffreportperiod; Type: TABLE; Schema: portanova; Owner: - +-- CREATE TABLE portanova.staffreportperiod ( id_reportperiod text, @@ -1121,9 +1016,9 @@ CREATE TABLE portanova.staffreportperiod ( ); - - - +-- +-- Name: staffreportperioddays; Type: TABLE; Schema: portanova; Owner: - +-- CREATE TABLE portanova.staffreportperioddays ( id_staff text NOT NULL, @@ -1152,9 +1047,9 @@ CREATE TABLE portanova.staffreportperioddays ( ); - - - +-- +-- Name: staffreportperiodweeks; Type: TABLE; Schema: portanova; Owner: - +-- CREATE TABLE portanova.staffreportperiodweeks ( id_staff text, @@ -1179,9 +1074,9 @@ CREATE TABLE portanova.staffreportperiodweeks ( ); - - - +-- +-- Name: staffvacancy; Type: TABLE; Schema: portanova; Owner: - +-- CREATE TABLE portanova.staffvacancy ( id_staff integer, @@ -1194,9 +1089,9 @@ CREATE TABLE portanova.staffvacancy ( ); - - - +-- +-- Name: vacancydays; Type: TABLE; Schema: portanova; Owner: - +-- CREATE TABLE portanova.vacancydays ( daydate date, @@ -1207,9 +1102,9 @@ CREATE TABLE portanova.vacancydays ( ); - - - +-- +-- Name: vacancytypes; Type: TABLE; Schema: portanova; Owner: - +-- CREATE TABLE portanova.vacancytypes ( vacancyname text, @@ -1222,9 +1117,9 @@ CREATE TABLE portanova.vacancytypes ( ); - - - +-- +-- Name: vw_reportperioddata; Type: VIEW; Schema: portanova; Owner: - +-- CREATE VIEW portanova.vw_reportperioddata AS SELECT rp.id, @@ -1235,9 +1130,9 @@ CREATE VIEW portanova.vw_reportperioddata AS FROM portanova.reportperiod rp; - - - +-- +-- Name: vw_reportperiodlist; Type: VIEW; Schema: portanova; Owner: - +-- CREATE VIEW portanova.vw_reportperiodlist AS SELECT rp.id, @@ -1248,9 +1143,9 @@ CREATE VIEW portanova.vw_reportperiodlist AS FROM portanova.reportperiod rp; - - - +-- +-- Name: vw_rplbygrpname; Type: VIEW; Schema: portanova; Owner: - +-- CREATE VIEW portanova.vw_rplbygrpname AS SELECT srp.id_reportperiod, @@ -1266,37 +1161,66 @@ CREATE VIEW portanova.vw_rplbygrpname AS ORDER BY sgr.groupname, rp.startdate, rp.enddate; - - - +-- +-- Name: vw_staffcontractdata; Type: VIEW; Schema: portanova; Owner: - +-- CREATE VIEW portanova.vw_staffcontractdata AS SELECT sc.id, sc.id_staff, sc.startdate, sc.enddate, - sc.id AS id_staffcontract + sc.id AS id_staffcontract, + sc.weekdays, + sc.weekhours, + sc.id_contractworkplan, + sc.defaultfreedays FROM (portanova.staffcontract sc JOIN portanova.staff st ON ((st.id = sc.id_staff))) WHERE (st.isdeleted IS NULL); +-- +-- Name: workplans; Type: TABLE; Schema: portanova; Owner: - +-- +CREATE TABLE portanova.workplans ( + workplan text, + weekhours interval, + weekdays integer, + freeweekdayslist json, + id text DEFAULT public.getuuid() NOT NULL, + modified timestamp without time zone DEFAULT now(), + created timestamp without time zone DEFAULT now(), + isdefault boolean +); +-- +-- Name: vw_staffcontractlist; Type: VIEW; Schema: portanova; Owner: - +-- CREATE VIEW portanova.vw_staffcontractlist AS SELECT sc.id, sc.id_staff, sc.startdate, - sc.enddate - FROM (portanova.staffcontract sc - JOIN portanova.staff st ON ((st.id = sc.id_staff))); - - - + sc.enddate, + sc.weekdays, + sc.weekhours, + sc.id_contractworkplan, + ( SELECT string_agg(ww.wday, ','::text) AS string_agg + FROM ( SELECT public.day_name(json_array_elements_text(sc.defaultfreedays)) AS wday) ww) AS defaultfreedays, + wp.workplan + FROM ((portanova.staffcontract sc + JOIN portanova.staff st ON ((st.id = sc.id_staff))) + LEFT JOIN portanova.workplans wp ON ((sc.id_contractworkplan = wp.id))) + WHERE (st.isdeleted IS NULL) + ORDER BY sc.startdate DESC, sc.enddate DESC; +-- +-- Name: vw_staffdata; Type: VIEW; Schema: portanova; Owner: - +-- CREATE VIEW portanova.vw_staffdata AS SELECT staff.id, @@ -1317,9 +1241,9 @@ CREATE VIEW portanova.vw_staffdata AS WHERE (staff.isdeleted IS NULL); - - - +-- +-- Name: vw_staffgroupsdata; Type: VIEW; Schema: portanova; Owner: - +-- CREATE VIEW portanova.vw_staffgroupsdata AS SELECT @@ -1330,9 +1254,9 @@ SELECT NULL::bigint AS staffmembers; - - - +-- +-- Name: vw_staffgroupslist; Type: VIEW; Schema: portanova; Owner: - +-- CREATE VIEW portanova.vw_staffgroupslist AS SELECT @@ -1342,9 +1266,9 @@ SELECT NULL::bigint AS staffmembers; - - - +-- +-- Name: vw_stafflist; Type: VIEW; Schema: portanova; Owner: - +-- CREATE VIEW portanova.vw_stafflist AS SELECT st.id, @@ -1366,9 +1290,9 @@ CREATE VIEW portanova.vw_stafflist AS ORDER BY st.surname, st.prename; - - - +-- +-- Name: vw_staffreportperioddays; Type: VIEW; Schema: portanova; Owner: - +-- CREATE VIEW portanova.vw_staffreportperioddays AS SELECT pd.id, @@ -1434,9 +1358,9 @@ CREATE VIEW portanova.vw_staffreportperioddays AS ORDER BY pd.id_reportperiod, pd.id_staff, pd.daydate; - - - +-- +-- Name: vw_staffreportperiodlist; Type: VIEW; Schema: portanova; Owner: - +-- CREATE VIEW portanova.vw_staffreportperiodlist AS SELECT st.prename, @@ -1467,9 +1391,9 @@ CREATE VIEW portanova.vw_staffreportperiodlist AS ORDER BY st.surname, st.prename, srp.id_staff, rp.startdate, rp.enddate; - - - +-- +-- Name: vw_vacancylist; Type: VIEW; Schema: portanova; Owner: - +-- CREATE VIEW portanova.vw_vacancylist AS SELECT vacancytypes.id, @@ -1478,9 +1402,9 @@ CREATE VIEW portanova.vw_vacancylist AS FROM portanova.vacancytypes; - - - +-- +-- Name: workplandays; Type: TABLE; Schema: portanova; Owner: - +-- CREATE TABLE portanova.workplandays ( id_workplan text, @@ -1497,9 +1421,9 @@ CREATE TABLE portanova.workplandays ( ); - - - +-- +-- Name: vw_workplandaysdata; Type: VIEW; Schema: portanova; Owner: - +-- CREATE VIEW portanova.vw_workplandaysdata AS SELECT workplandays.id, @@ -1513,9 +1437,9 @@ CREATE VIEW portanova.vw_workplandaysdata AS FROM portanova.workplandays; - - - +-- +-- Name: vw_workplandayslist; Type: VIEW; Schema: portanova; Owner: - +-- CREATE VIEW portanova.vw_workplandayslist AS SELECT @@ -1535,25 +1459,9 @@ SELECT NULL::text AS interruption; - - - - -CREATE TABLE portanova.workplans ( - workplan text, - weekhours interval, - weekdays integer, - freeweekdayslist json, - id text DEFAULT public.getuuid() NOT NULL, - modified timestamp without time zone DEFAULT now(), - created timestamp without time zone DEFAULT now(), - isdefault boolean -); - - - - - +-- +-- Name: vw_workplanlist; Type: VIEW; Schema: portanova; Owner: - +-- CREATE VIEW portanova.vw_workplanlist AS SELECT wp.id, @@ -1566,9 +1474,9 @@ CREATE VIEW portanova.vw_workplanlist AS ORDER BY wp.isdefault, wp.workplan; - - - +-- +-- Name: worktimes; Type: TABLE; Schema: portanova; Owner: - +-- CREATE TABLE portanova.worktimes ( startdate date, @@ -1585,9 +1493,9 @@ CREATE TABLE portanova.worktimes ( ); - - - +-- +-- Name: vw_worktimeslist; Type: VIEW; Schema: portanova; Owner: - +-- CREATE VIEW portanova.vw_worktimeslist AS SELECT worktimes.id, @@ -1603,153 +1511,153 @@ CREATE VIEW portanova.vw_worktimeslist AS ORDER BY worktimes.startdate NULLS FIRST, worktimes.enddate NULLS FIRST; - - - +-- +-- Name: reportperiod reportperiod_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- ALTER TABLE ONLY portanova.reportperiod ADD CONSTRAINT reportperiod_pkey PRIMARY KEY (id); - - - +-- +-- Name: reports reports_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- ALTER TABLE ONLY portanova.reports ADD CONSTRAINT reports_pkey PRIMARY KEY (id); - - - +-- +-- Name: staff staff_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- ALTER TABLE ONLY portanova.staff ADD CONSTRAINT staff_pkey PRIMARY KEY (id); - - - +-- +-- Name: staffcontract staffcontract_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- ALTER TABLE ONLY portanova.staffcontract ADD CONSTRAINT staffcontract_pkey PRIMARY KEY (id); - - - +-- +-- Name: staffgroups staffgroups_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- ALTER TABLE ONLY portanova.staffgroups ADD CONSTRAINT staffgroups_pkey PRIMARY KEY (id); - - - +-- +-- Name: staffreportperiod staffreportperiod_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- ALTER TABLE ONLY portanova.staffreportperiod ADD CONSTRAINT staffreportperiod_pkey PRIMARY KEY (id); - - - +-- +-- Name: staffreportperioddays staffreportperioddays_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- ALTER TABLE ONLY portanova.staffreportperioddays ADD CONSTRAINT staffreportperioddays_pkey PRIMARY KEY (id); - - - +-- +-- Name: staffreportperiodweeks staffreportperiodweeks_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- ALTER TABLE ONLY portanova.staffreportperiodweeks ADD CONSTRAINT staffreportperiodweeks_pkey PRIMARY KEY (id); - - - +-- +-- Name: staffvacancy staffvacancy_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- ALTER TABLE ONLY portanova.staffvacancy ADD CONSTRAINT staffvacancy_pkey PRIMARY KEY (id); - - - +-- +-- Name: staffreportperiod uniq_staffreportperiod_cal; Type: CONSTRAINT; Schema: portanova; Owner: - +-- ALTER TABLE ONLY portanova.staffreportperiod ADD CONSTRAINT uniq_staffreportperiod_cal UNIQUE (id_reportperiod, id_staff); - - - +-- +-- Name: staffreportperiodweeks uniq_staffweekplan_cal; Type: CONSTRAINT; Schema: portanova; Owner: - +-- ALTER TABLE ONLY portanova.staffreportperiodweeks ADD CONSTRAINT uniq_staffweekplan_cal UNIQUE (id_reportperiod, id_staff, calyear, calweek); - - - +-- +-- Name: staffreportperioddays uniq_staffworplan_staffday; Type: CONSTRAINT; Schema: portanova; Owner: - +-- ALTER TABLE ONLY portanova.staffreportperioddays ADD CONSTRAINT uniq_staffworplan_staffday UNIQUE (id_staff, daydate); - - - +-- +-- Name: vacancydays vacancydays_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- ALTER TABLE ONLY portanova.vacancydays ADD CONSTRAINT vacancydays_pkey PRIMARY KEY (id); - - - +-- +-- Name: vacancytypes vacancytypes_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- ALTER TABLE ONLY portanova.vacancytypes ADD CONSTRAINT vacancytypes_pkey PRIMARY KEY (id); - - - +-- +-- Name: workplandays workplandays_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- ALTER TABLE ONLY portanova.workplandays ADD CONSTRAINT workplandays_pkey PRIMARY KEY (id); - - - +-- +-- Name: workplandays workplandays_un; Type: CONSTRAINT; Schema: portanova; Owner: - +-- ALTER TABLE ONLY portanova.workplandays ADD CONSTRAINT workplandays_un UNIQUE (id_workplan, weekday); - - - +-- +-- Name: workplans workplans_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- ALTER TABLE ONLY portanova.workplans ADD CONSTRAINT workplans_pkey PRIMARY KEY (id); - - - +-- +-- Name: worktimes worktimes_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- ALTER TABLE ONLY portanova.worktimes ADD CONSTRAINT worktimes_pkey PRIMARY KEY (id); - - - +-- +-- Name: vw_staffgroupsdata _RETURN; Type: RULE; Schema: portanova; Owner: - +-- CREATE OR REPLACE VIEW portanova.vw_staffgroupsdata AS SELECT sg.id, @@ -1764,9 +1672,9 @@ CREATE OR REPLACE VIEW portanova.vw_staffgroupsdata AS ORDER BY sg.groupname; - - - +-- +-- Name: vw_staffgroupslist _RETURN; Type: RULE; Schema: portanova; Owner: - +-- CREATE OR REPLACE VIEW portanova.vw_staffgroupslist AS SELECT sg.id, @@ -1780,9 +1688,9 @@ CREATE OR REPLACE VIEW portanova.vw_staffgroupslist AS ORDER BY sg.groupname; - - - +-- +-- Name: vw_workplandayslist _RETURN; Type: RULE; Schema: portanova; Owner: - +-- CREATE OR REPLACE VIEW portanova.vw_workplandayslist AS SELECT wp.workplan, @@ -1816,183 +1724,190 @@ CREATE OR REPLACE VIEW portanova.vw_workplandayslist AS ORDER BY wp.workplan, wpd.weekday; +-- +-- Name: staffcontract trg_after_insert_staffcontract; Type: TRIGGER; Schema: portanova; Owner: - +-- +CREATE TRIGGER trg_after_insert_staffcontract AFTER INSERT ON portanova.staffcontract FOR EACH ROW EXECUTE PROCEDURE portanova.trg_after_upd_staffcontract(); +-- +-- Name: staffcontract trg_after_update_staffcontract; Type: TRIGGER; Schema: portanova; Owner: - +-- -CREATE TRIGGER trg_dks_after_ins_workplandays AFTER INSERT ON portanova.workplandays FOR EACH ROW EXECUTE PROCEDURE portanova.trg_after_upd_worplanday(); +CREATE TRIGGER trg_after_update_staffcontract AFTER UPDATE OF id_contractworkplan, startdate, enddate ON portanova.staffcontract FOR EACH ROW EXECUTE PROCEDURE portanova.trg_after_upd_staffcontract(); +-- +-- Name: workplandays trg_dks_after_ins_workplandays; Type: TRIGGER; Schema: portanova; Owner: - +-- +CREATE TRIGGER trg_dks_after_ins_workplandays AFTER INSERT ON portanova.workplandays FOR EACH ROW EXECUTE PROCEDURE portanova.trg_after_upd_worplanday(); +-- +-- Name: workplandays trg_dks_after_upd_workplandays; Type: TRIGGER; Schema: portanova; Owner: - +-- CREATE TRIGGER trg_dks_after_upd_workplandays AFTER UPDATE OF start1, end1, start2, end2, pause ON portanova.workplandays FOR EACH ROW EXECUTE PROCEDURE portanova.trg_after_upd_worplanday(); - - - - -CREATE TRIGGER trg_portanova_after_upsert_staffcontract AFTER INSERT OR UPDATE ON portanova.staffcontract FOR EACH ROW EXECUTE PROCEDURE portanova.trg_after_upd_staffcontract(); - - - - - +-- +-- Name: reportperiod trg_portanova_before_upd_reportperiod; Type: TRIGGER; Schema: portanova; Owner: - +-- CREATE TRIGGER trg_portanova_before_upd_reportperiod BEFORE UPDATE ON portanova.reportperiod FOR EACH ROW EXECUTE PROCEDURE portanova.trg_before_upd_schematable(); - - - +-- +-- Name: staff trg_portanova_before_upd_staff; Type: TRIGGER; Schema: portanova; Owner: - +-- CREATE TRIGGER trg_portanova_before_upd_staff BEFORE UPDATE ON portanova.staff FOR EACH ROW EXECUTE PROCEDURE portanova.trg_before_upd_schematable(); - - - +-- +-- Name: staffcontract trg_portanova_before_upd_staffcontract; Type: TRIGGER; Schema: portanova; Owner: - +-- CREATE TRIGGER trg_portanova_before_upd_staffcontract BEFORE UPDATE ON portanova.staffcontract FOR EACH ROW EXECUTE PROCEDURE portanova.trg_before_upd_schematable(); - - - +-- +-- Name: staffgroups trg_portanova_before_upd_staffgroups; Type: TRIGGER; Schema: portanova; Owner: - +-- CREATE TRIGGER trg_portanova_before_upd_staffgroups BEFORE UPDATE ON portanova.staffgroups FOR EACH ROW EXECUTE PROCEDURE portanova.trg_before_upd_schematable(); - - - +-- +-- Name: staffreportperiod trg_portanova_before_upd_staffreportperiod; Type: TRIGGER; Schema: portanova; Owner: - +-- CREATE TRIGGER trg_portanova_before_upd_staffreportperiod BEFORE UPDATE ON portanova.staffreportperiod FOR EACH ROW EXECUTE PROCEDURE portanova.trg_before_upd_schematable(); - - - +-- +-- Name: staffreportperioddays trg_portanova_before_upd_staffreportperioddays; Type: TRIGGER; Schema: portanova; Owner: - +-- CREATE TRIGGER trg_portanova_before_upd_staffreportperioddays BEFORE UPDATE ON portanova.staffreportperioddays FOR EACH ROW EXECUTE PROCEDURE portanova.trg_before_upd_schematable(); - - - +-- +-- Name: staffreportperiodweeks trg_portanova_before_upd_staffreportperiodweeks; Type: TRIGGER; Schema: portanova; Owner: - +-- CREATE TRIGGER trg_portanova_before_upd_staffreportperiodweeks BEFORE UPDATE ON portanova.staffreportperiodweeks FOR EACH ROW EXECUTE PROCEDURE portanova.trg_before_upd_schematable(); - - - +-- +-- Name: staffvacancy trg_portanova_before_upd_staffvacancy; Type: TRIGGER; Schema: portanova; Owner: - +-- CREATE TRIGGER trg_portanova_before_upd_staffvacancy BEFORE UPDATE ON portanova.staffvacancy FOR EACH ROW EXECUTE PROCEDURE portanova.trg_before_upd_schematable(); - - - +-- +-- Name: vacancydays trg_portanova_before_upd_vacancydays; Type: TRIGGER; Schema: portanova; Owner: - +-- CREATE TRIGGER trg_portanova_before_upd_vacancydays BEFORE UPDATE ON portanova.vacancydays FOR EACH ROW EXECUTE PROCEDURE portanova.trg_before_upd_schematable(); - - - +-- +-- Name: vacancytypes trg_portanova_before_upd_vacancytypes; Type: TRIGGER; Schema: portanova; Owner: - +-- CREATE TRIGGER trg_portanova_before_upd_vacancytypes BEFORE UPDATE ON portanova.vacancytypes FOR EACH ROW EXECUTE PROCEDURE portanova.trg_before_upd_schematable(); - - - +-- +-- Name: workplandays trg_portanova_before_upd_workplandays; Type: TRIGGER; Schema: portanova; Owner: - +-- CREATE TRIGGER trg_portanova_before_upd_workplandays BEFORE UPDATE ON portanova.workplandays FOR EACH ROW EXECUTE PROCEDURE portanova.trg_before_upd_schematable(); - - - +-- +-- Name: workplans trg_portanova_before_upd_workplans; Type: TRIGGER; Schema: portanova; Owner: - +-- CREATE TRIGGER trg_portanova_before_upd_workplans BEFORE UPDATE ON portanova.workplans FOR EACH ROW EXECUTE PROCEDURE portanova.trg_before_upd_schematable(); - - - +-- +-- Name: worktimes trg_portanova_before_upd_worktimes; Type: TRIGGER; Schema: portanova; Owner: - +-- CREATE TRIGGER trg_portanova_before_upd_worktimes BEFORE UPDATE ON portanova.worktimes FOR EACH ROW EXECUTE PROCEDURE portanova.trg_before_upd_schematable(); - - - +-- +-- Name: staffcontract staffcontract_fk; Type: FK CONSTRAINT; Schema: portanova; Owner: - +-- ALTER TABLE ONLY portanova.staffcontract ADD CONSTRAINT staffcontract_fk FOREIGN KEY (id_staff) REFERENCES portanova.staff(id); - - - +-- +-- Name: staffreportperiod staffreportperiod_fk; Type: FK CONSTRAINT; Schema: portanova; Owner: - +-- ALTER TABLE ONLY portanova.staffreportperiod ADD CONSTRAINT staffreportperiod_fk FOREIGN KEY (id_staff) REFERENCES portanova.staff(id); - - - +-- +-- Name: staffreportperiod staffreportperiod_fk_1; Type: FK CONSTRAINT; Schema: portanova; Owner: - +-- ALTER TABLE ONLY portanova.staffreportperiod ADD CONSTRAINT staffreportperiod_fk_1 FOREIGN KEY (id_reportperiod) REFERENCES portanova.reportperiod(id); - - - +-- +-- Name: staffreportperiodweeks staffweekplan_fk; Type: FK CONSTRAINT; Schema: portanova; Owner: - +-- ALTER TABLE ONLY portanova.staffreportperiodweeks ADD CONSTRAINT staffweekplan_fk FOREIGN KEY (id_reportperiod) REFERENCES portanova.reportperiod(id); - - - +-- +-- Name: staffreportperiodweeks staffweekplan_fk_1; Type: FK CONSTRAINT; Schema: portanova; Owner: - +-- ALTER TABLE ONLY portanova.staffreportperiodweeks ADD CONSTRAINT staffweekplan_fk_1 FOREIGN KEY (id_staff) REFERENCES portanova.staff(id); - - - +-- +-- Name: staffreportperioddays staffworkplan_fk; Type: FK CONSTRAINT; Schema: portanova; Owner: - +-- ALTER TABLE ONLY portanova.staffreportperioddays ADD CONSTRAINT staffworkplan_fk FOREIGN KEY (id_staff) REFERENCES portanova.staff(id); - - - +-- +-- Name: staffreportperioddays staffworkplan_fk_1; Type: FK CONSTRAINT; Schema: portanova; Owner: - +-- ALTER TABLE ONLY portanova.staffreportperioddays ADD CONSTRAINT staffworkplan_fk_1 FOREIGN KEY (id_staffgroup) REFERENCES portanova.staffgroups(id); - - - +-- +-- Name: workplandays workplandays_fk; Type: FK CONSTRAINT; Schema: portanova; Owner: - +-- ALTER TABLE ONLY portanova.workplandays ADD CONSTRAINT workplandays_fk FOREIGN KEY (id_workplan) REFERENCES portanova.workplans(id); - - - +-- +-- PostgreSQL database dump complete +-- diff --git a/dev/diff_files.sh b/dev/diff_files.sh index 145ebe30..961fe666 100644 --- a/dev/diff_files.sh +++ b/dev/diff_files.sh @@ -7,10 +7,10 @@ SSHPORT="222" SSHHOST="www422.your-server.de" CALLDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" -cd .. -find . -type f -printf "%p|%s\n" | grep -v -e "^\.\/\.git\/" | grep -v -e "\.\/dev\/" | grep -v -e "\.\/OLD\/" | grep -v -e "\/data\/output\/" | grep -v -e "\/data\/tmp\/" | grep -v -e "\/backoffice\/tmp\/" | sort > dev/sourcefiles.local.txt +cd ../website +find . -type f -printf "%p|%s\n" | grep -v -e "\/app\/data\/output\/" | grep -v -e "\/app\/data\/tmp\/" | grep -v -e "\/app\/tools\/" | grep -v -e "\/appphp\/" | sort > ${CALLDIR}/sourcefiles.local.txt -ssh -p ${SSHPORT} ${SSHUSER}@${SSHHOST} 'cd '${REMOTEFOLDER}' && find . -type f -printf "%p|%s\n" | sort' > dev/sourcefiles.remote.txt +ssh -p ${SSHPORT} ${SSHUSER}@${SSHHOST} 'cd '${REMOTEFOLDER}' && find . -type f -printf "%p|%s\n" | sort' > ${CALLDIR}/sourcefiles.remote.txt CDATE=`date +"%F"` echo "To update:" @@ -35,7 +35,7 @@ then fi if [ "${UPDFILES}" != "" ] || [ "${INSFILES}" != "" ] then - + cd website echo "TAR package:" tar czvf ${CALLDIR}/update_${CDATE}.tar.gz ${UPDFILES} ${INSFILES} #tar tzvf ${CALLDIR}/update_${CDATE}.tar.gz diff --git a/dev/sourcefiles.local.txt b/dev/sourcefiles.local.txt index 8baf2896..dae05026 100644 --- a/dev/sourcefiles.local.txt +++ b/dev/sourcefiles.local.txt @@ -1,1179 +1,993 @@ -./backoffice/api/db.cgi|4588 -./backoffice/api/file.cgi|4381 -./backoffice/api/index.cgi|6962 -./backoffice/api/lib/dksconfig.pm|1525 -./backoffice/api/lib/dksdb.pm|10832 -./backoffice/api/lib/dkssavefile.pm|991 -./backoffice/api/lib/pdfreport.pm|4180 -./backoffice/api/lib/perl5/Business/Tax/VAT/Validation.pm|14797 -./backoffice/api/lib/perl5/CGI/Cookie.pm|6599 -./backoffice/api/lib/perl5/CGI/File/Temp.pm|969 -./backoffice/api/lib/perl5/CGI.pm|125242 -./backoffice/api/lib/perl5/CGI/Util.pm|10881 -./backoffice/api/lib/perl5/DBD/PgPP.pm|48674 -./backoffice/api/lib/perl5/Devel/Cycle.pm|13667 -./backoffice/api/lib/perl5/Digest/SHA/PurePerl.pm|46933 -./backoffice/api/lib/perl5/Font/TTF/AATKern.pm|2958 -./backoffice/api/lib/perl5/Font/TTF/AATutils.pm|23626 -./backoffice/api/lib/perl5/Font/TTF/Anchor.pm|4911 -./backoffice/api/lib/perl5/Font/TTF/Bsln.pm|3806 -./backoffice/api/lib/perl5/Font/TTF/Changes_old.txt|2223 -./backoffice/api/lib/perl5/Font/TTF/Cmap.pm|24487 -./backoffice/api/lib/perl5/Font/TTF/Coverage.pm|8579 -./backoffice/api/lib/perl5/Font/TTF/Cvt_.pm|1431 -./backoffice/api/lib/perl5/Font/TTF/Delta.pm|3470 -./backoffice/api/lib/perl5/Font/TTF/DSIG.pm|2020 -./backoffice/api/lib/perl5/Font/TTF/Dumper.pm|2618 -./backoffice/api/lib/perl5/Font/TTF/EBDT.pm|7328 -./backoffice/api/lib/perl5/Font/TTF/EBLC.pm|6456 -./backoffice/api/lib/perl5/Font/TTF/Fdsc.pm|2234 -./backoffice/api/lib/perl5/Font/TTF/Feat.pm|4547 -./backoffice/api/lib/perl5/Font/TTF/Features/Cvar.pm|3021 -./backoffice/api/lib/perl5/Font/TTF/Features/Size.pm|1996 -./backoffice/api/lib/perl5/Font/TTF/Features/Sset.pm|1752 -./backoffice/api/lib/perl5/Font/TTF/Fmtx.pm|2002 -./backoffice/api/lib/perl5/Font/TTF/Font.pm|29765 -./backoffice/api/lib/perl5/Font/TTF/Fpgm.pm|1703 -./backoffice/api/lib/perl5/Font/TTF/GDEF.pm|13967 -./backoffice/api/lib/perl5/Font/TTF/Glat.pm|3507 -./backoffice/api/lib/perl5/Font/TTF/Gloc.pm|2625 -./backoffice/api/lib/perl5/Font/TTF/Glyf.pm|3769 -./backoffice/api/lib/perl5/Font/TTF/Glyph.pm|25861 -./backoffice/api/lib/perl5/Font/TTF/GPOS.pm|21238 -./backoffice/api/lib/perl5/Font/TTF/GrFeat.pm|8525 -./backoffice/api/lib/perl5/Font/TTF/GSUB.pm|8843 -./backoffice/api/lib/perl5/Font/TTF/Hdmx.pm|3195 -./backoffice/api/lib/perl5/Font/TTF/Head.pm|5984 -./backoffice/api/lib/perl5/Font/TTF/Hhea.pm|3626 -./backoffice/api/lib/perl5/Font/TTF/Hmtx.pm|4724 -./backoffice/api/lib/perl5/Font/TTF/Kern/ClassArray.pm|3255 -./backoffice/api/lib/perl5/Font/TTF/Kern/CompactClassArray.pm|1293 -./backoffice/api/lib/perl5/Font/TTF/Kern/OrderedList.pm|2141 -./backoffice/api/lib/perl5/Font/TTF/Kern.pm|8705 -./backoffice/api/lib/perl5/Font/TTF/Kern/StateTable.pm|3034 -./backoffice/api/lib/perl5/Font/TTF/Kern/Subtable.pm|3710 -./backoffice/api/lib/perl5/Font/TTF/Loca.pm|4837 -./backoffice/api/lib/perl5/Font/TTF/LTSH.pm|1705 -./backoffice/api/lib/perl5/Font/TTF/Manual.pod|9180 -./backoffice/api/lib/perl5/Font/TTF/Maxp.pm|4268 -./backoffice/api/lib/perl5/Font/TTF/Mort/Chain.pm|5140 -./backoffice/api/lib/perl5/Font/TTF/Mort/Contextual.pm|3975 -./backoffice/api/lib/perl5/Font/TTF/Mort/Insertion.pm|4576 -./backoffice/api/lib/perl5/Font/TTF/Mort/Ligature.pm|7568 -./backoffice/api/lib/perl5/Font/TTF/Mort/Noncontextual.pm|1896 -./backoffice/api/lib/perl5/Font/TTF/Mort.pm|2154 -./backoffice/api/lib/perl5/Font/TTF/Mort/Rearrangement.pm|2392 -./backoffice/api/lib/perl5/Font/TTF/Mort/Subtable.pm|4659 -./backoffice/api/lib/perl5/Font/TTF/Name.pm|28443 -./backoffice/api/lib/perl5/Font/TTF/OldCmap.pm|9888 -./backoffice/api/lib/perl5/Font/TTF/OldMort.pm|26139 -./backoffice/api/lib/perl5/Font/TTF/OS_2.pm|38981 -./backoffice/api/lib/perl5/Font/TTF/OTTags.pm|43967 -./backoffice/api/lib/perl5/Font/TTF/PCLT.pm|2552 -./backoffice/api/lib/perl5/Font/TTF.pm|2248 -./backoffice/api/lib/perl5/Font/TTF/Post.pm|9754 -./backoffice/api/lib/perl5/Font/TTF/Prep.pm|1645 -./backoffice/api/lib/perl5/Font/TTF/Prop.pm|3556 -./backoffice/api/lib/perl5/Font/TTF/PSNames.pm|135961 -./backoffice/api/lib/perl5/Font/TTF/Segarr.pm|9758 -./backoffice/api/lib/perl5/Font/TTF/Silf.pm|28913 -./backoffice/api/lib/perl5/Font/TTF/Sill.pm|3272 -./backoffice/api/lib/perl5/Font/TTF/Table.pm|11415 -./backoffice/api/lib/perl5/Font/TTF/Ttc.pm|3967 -./backoffice/api/lib/perl5/Font/TTF/Ttopen.pm|45301 -./backoffice/api/lib/perl5/Font/TTF/Useall.pm|2215 -./backoffice/api/lib/perl5/Font/TTF/Utils.pm|18957 -./backoffice/api/lib/perl5/Font/TTF/Vhea.pm|3655 -./backoffice/api/lib/perl5/Font/TTF/Vmtx.pm|1702 -./backoffice/api/lib/perl5/Font/TTF/Win32.pm|1111 -./backoffice/api/lib/perl5/Font/TTF/Woff/MetaData.pm|548 -./backoffice/api/lib/perl5/Font/TTF/Woff.pm|1117 -./backoffice/api/lib/perl5/Font/TTF/Woff/PrivateData.pm|559 -./backoffice/api/lib/perl5/Font/TTF/XMLparse.pm|5623 -./backoffice/api/lib/perl5/Image/Size.pm|46926 -./backoffice/api/lib/perl5/lib/core/only.pm|3229 -./backoffice/api/lib/perl5/local/lib.pm|41186 -./backoffice/api/lib/perl5/Math/Base/Convert/Bases.pm|5661 -./backoffice/api/lib/perl5/Math/Base/Convert/Bitmaps.pm|22263 -./backoffice/api/lib/perl5/Math/Base/Convert/CalcPP.pm|5422 -./backoffice/api/lib/perl5/Math/Base/Convert.pm|16834 -./backoffice/api/lib/perl5/Math/Base/Convert/Shortcuts.pm|11553 -./backoffice/api/lib/perl5/MIME/Type.pm|2911 -./backoffice/api/lib/perl5/MIME/Type.pod|6361 -./backoffice/api/lib/perl5/MIME/types.db|121715 -./backoffice/api/lib/perl5/MIME/Types.pm|7043 -./backoffice/api/lib/perl5/MIME/Types.pod|8611 -./backoffice/api/lib/perl5/MLDBM.pm|16594 -./backoffice/api/lib/perl5/MLDBM/Serializer/Data/Dumper.pm|2043 -./backoffice/api/lib/perl5/MLDBM/Serializer/FreezeThaw.pm|351 -./backoffice/api/lib/perl5/MLDBM/Serializer/Storable.pm|922 -./backoffice/api/lib/perl5/MojoX/MIME/Types.pm|1468 -./backoffice/api/lib/perl5/MojoX/MIME/Types.pod|5933 -./backoffice/api/lib/perl5/PDF/API2/Annotation.pm|10305 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Array.pm|2863 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Bool.pm|1015 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Dict.pm|10332 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/File.pm|43842 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Filter/ASCII85Decode.pm|2399 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Filter/ASCIIHexDecode.pm|1513 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Filter/FlateDecode.pm|4427 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Filter/LZWDecode.pm|3122 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Filter.pm|3378 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Filter/RunLengthDecode.pm|3315 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Literal.pm|2201 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Name.pm|3001 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Null.pm|1562 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Number.pm|973 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Objind.pm|7440 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Page.pm|3285 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Pages.pm|10886 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/String.pm|5347 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Utils.pm|2627 -./backoffice/api/lib/perl5/PDF/API2/Content.pm|53753 -./backoffice/api/lib/perl5/PDF/API2/Content/Text.pm|248 -./backoffice/api/lib/perl5/PDF/API2/Lite.pm|11649 -./backoffice/api/lib/perl5/PDF/API2/Matrix.pm|1541 -./backoffice/api/lib/perl5/PDF/API2/NamedDestination.pm|7159 -./backoffice/api/lib/perl5/PDF/API2/Outline.pm|9690 -./backoffice/api/lib/perl5/PDF/API2/Outlines.pm|306 -./backoffice/api/lib/perl5/PDF/API2/Page.pm|8994 -./backoffice/api/lib/perl5/PDF/API2.pm|64581 -./backoffice/api/lib/perl5/PDF/API2/Resource/BaseFont.pm|17514 -./backoffice/api/lib/perl5/PDF/API2/Resource/CIDFont/CJKFont/adobemingstdlightacro.data|247405 -./backoffice/api/lib/perl5/PDF/API2/Resource/CIDFont/CJKFont/adobemyungjostdmediumacro.data|278186 -./backoffice/api/lib/perl5/PDF/API2/Resource/CIDFont/CJKFont/adobesongstdlightacro.data|772180 -./backoffice/api/lib/perl5/PDF/API2/Resource/CIDFont/CJKFont/kozgopromediumacro.data|21508 -./backoffice/api/lib/perl5/PDF/API2/Resource/CIDFont/CJKFont/kozminproregularacro.data|21556 -./backoffice/api/lib/perl5/PDF/API2/Resource/CIDFont/CJKFont.pm|9706 -./backoffice/api/lib/perl5/PDF/API2/Resource/CIDFont/CMap/japanese.cmap|4629356 -./backoffice/api/lib/perl5/PDF/API2/Resource/CIDFont/CMap/korean.cmap|2817142 -./backoffice/api/lib/perl5/PDF/API2/Resource/CIDFont/CMap/simplified.cmap|4845677 -./backoffice/api/lib/perl5/PDF/API2/Resource/CIDFont/CMap/traditional.cmap|3431298 -./backoffice/api/lib/perl5/PDF/API2/Resource/CIDFont.pm|7527 -./backoffice/api/lib/perl5/PDF/API2/Resource/CIDFont/TrueType/FontFile.pm|19532 -./backoffice/api/lib/perl5/PDF/API2/Resource/CIDFont/TrueType.pm|4265 -./backoffice/api/lib/perl5/PDF/API2/Resource/ColorSpace/DeviceN.pm|2650 -./backoffice/api/lib/perl5/PDF/API2/Resource/ColorSpace/Indexed/ACTFile.pm|1669 -./backoffice/api/lib/perl5/PDF/API2/Resource/ColorSpace/Indexed/Hue.pm|1393 -./backoffice/api/lib/perl5/PDF/API2/Resource/ColorSpace/Indexed.pm|2916 -./backoffice/api/lib/perl5/PDF/API2/Resource/ColorSpace/Indexed/WebColor.pm|1891 -./backoffice/api/lib/perl5/PDF/API2/Resource/ColorSpace.pm|1557 -./backoffice/api/lib/perl5/PDF/API2/Resource/ColorSpace/Separation.pm|4036 -./backoffice/api/lib/perl5/PDF/API2/Resource/Colors.pm|29469 -./backoffice/api/lib/perl5/PDF/API2/Resource/ExtGState.pm|5842 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/BdFont.pm|8220 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/bankgothic.pm|34011 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/courierboldoblique.pm|34150 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/courierbold.pm|34133 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/courieroblique.pm|34139 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/courier.pm|44056 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/georgiabolditalic.pm|54809 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/georgiabold.pm|54793 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/georgiaitalic.pm|54794 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/georgia.pm|54780 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/helveticaboldoblique.pm|34126 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/helveticabold.pm|34139 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/helveticaoblique.pm|34116 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/helvetica.pm|34128 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont.pm|9713 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/symbol.pm|31542 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/timesbolditalic.pm|34116 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/timesbold.pm|34130 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/timesitalic.pm|34153 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/timesroman.pm|30061 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/trebuchetbolditalic.pm|41135 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/trebuchetbold.pm|37639 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/trebuchetitalic.pm|41122 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/trebuchet.pm|37625 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/verdanabolditalic.pm|53911 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/verdanabold.pm|53894 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/verdanaitalic.pm|53837 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/verdana.pm|53641 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/webdings.pm|37901 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/wingdings.pm|33783 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/zapfdingbats.pm|25945 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font.pm|5623 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/Postscript.pm|14378 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/SynFont.pm|7683 -./backoffice/api/lib/perl5/PDF/API2/Resource/Glyphs.pm|280116 -./backoffice/api/lib/perl5/PDF/API2/Resource/PaperSizes.pm|1500 -./backoffice/api/lib/perl5/PDF/API2/Resource/Pattern.pm|281 -./backoffice/api/lib/perl5/PDF/API2/Resource.pm|1481 -./backoffice/api/lib/perl5/PDF/API2/Resource/Shading.pm|137 -./backoffice/api/lib/perl5/PDF/API2/Resource/UniFont.pm|6466 -./backoffice/api/lib/perl5/PDF/API2/Resource/uniglyph.txt|550967 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Form/BarCode/codabar.pm|788 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Form/BarCode/code128.pm|7479 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Form/BarCode/code3of9.pm|3537 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Form/BarCode/ean13.pm|1834 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Form/BarCode/int2of5.pm|1434 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Form/BarCode.pm|5650 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Form/Hybrid.pm|1645 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Form.pm|1790 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Image/GD.pm|1484 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Image/GIF.pm|6387 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Image/JPEG.pm|2189 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Image.pm|2691 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Image/PNG.pm|26450 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Image/PNM.pm|4398 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Image/TIFF/File.pm|9874 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Image/TIFF.pm|8903 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject.pm|778 -./backoffice/api/lib/perl5/PDF/API2/UniWrap.pm|9341 -./backoffice/api/lib/perl5/PDF/API2/Util.pm|17014 -./backoffice/api/lib/perl5/PDF/API2/Win32.pm|2104 -./backoffice/api/lib/perl5/PDF/Table.pm|55410 -./backoffice/api/lib/perl5/POD2/DE/local/lib.pod|16690 -./backoffice/api/lib/perl5/POD2/PT_BR/local/lib.pod|16094 -./backoffice/api/lib/perl5/SQL/Dialects/ANSI.pm|3724 -./backoffice/api/lib/perl5/SQL/Dialects/AnyData.pm|2092 -./backoffice/api/lib/perl5/SQL/Dialects/CSV.pm|1962 -./backoffice/api/lib/perl5/SQL/Dialects/Role.pm|2560 -./backoffice/api/lib/perl5/SQL/Eval.pm|16638 -./backoffice/api/lib/perl5/SQL/Parser.pm|102983 -./backoffice/api/lib/perl5/SQL/Statement/Embed.pod|11893 -./backoffice/api/lib/perl5/SQL/Statement/Function.pm|10791 -./backoffice/api/lib/perl5/SQL/Statement/Functions.pm|34973 -./backoffice/api/lib/perl5/SQL/Statement/GetInfo.pm|27647 -./backoffice/api/lib/perl5/SQL/Statement/Operation.pm|23477 -./backoffice/api/lib/perl5/SQL/Statement/Placeholder.pm|2246 -./backoffice/api/lib/perl5/SQL/Statement.pm|80949 -./backoffice/api/lib/perl5/SQL/Statement/RAM.pm|6037 -./backoffice/api/lib/perl5/SQL/Statement/Roadmap.pod|8701 -./backoffice/api/lib/perl5/SQL/Statement/Structure.pod|13001 -./backoffice/api/lib/perl5/SQL/Statement/Syntax.pod|19784 -./backoffice/api/lib/perl5/SQL/Statement/TermFactory.pm|6771 -./backoffice/api/lib/perl5/SQL/Statement/Term.pm|5609 -./backoffice/api/lib/perl5/SQL/Statement/Util.pm|4310 -./backoffice/api/lib/perl5/Sub/Uplevel.pm|18092 -./backoffice/api/lib/perl5/Template/Base.pm|7569 -./backoffice/api/lib/perl5/Template/Config.pm|13621 -./backoffice/api/lib/perl5/Template/Constants.pm|9747 -./backoffice/api/lib/perl5/Template/Context.pm|53723 -./backoffice/api/lib/perl5/Template/DBI.pod|1534 -./backoffice/api/lib/perl5/Template/Directive.pm|29394 -./backoffice/api/lib/perl5/Template/Document.pm|16569 -./backoffice/api/lib/perl5/Template/Exception.pm|6402 -./backoffice/api/lib/perl5/Template/FAQ.pod|8809 -./backoffice/api/lib/perl5/Template/Filters.pm|26123 -./backoffice/api/lib/perl5/Template/Grammar.pm|98751 -./backoffice/api/lib/perl5/Template/Iterator.pm|13751 -./backoffice/api/lib/perl5/Template/Manual/Config.pod|64128 -./backoffice/api/lib/perl5/Template/Manual/Credits.pod|4624 -./backoffice/api/lib/perl5/Template/Manual/Directives.pod|61980 -./backoffice/api/lib/perl5/Template/Manual/Filters.pod|14138 -./backoffice/api/lib/perl5/Template/Manual/Internals.pod|18353 -./backoffice/api/lib/perl5/Template/Manual/Intro.pod|9692 -./backoffice/api/lib/perl5/Template/Manual/Plugins.pod|9110 -./backoffice/api/lib/perl5/Template/Manual.pod|2433 -./backoffice/api/lib/perl5/Template/Manual/Syntax.pod|9181 -./backoffice/api/lib/perl5/Template/Manual/Variables.pod|25025 -./backoffice/api/lib/perl5/Template/Manual/Views.pod|19264 -./backoffice/api/lib/perl5/Template/Manual/VMethods.pod|20701 -./backoffice/api/lib/perl5/Template/Modules.pod|5503 -./backoffice/api/lib/perl5/Template/Namespace/Constants.pm|4460 -./backoffice/api/lib/perl5/Template/Parser.pm|41281 -./backoffice/api/lib/perl5/Template/Plugin/Assert.pm|3504 -./backoffice/api/lib/perl5/Template/Plugin/CGI.pm|3087 -./backoffice/api/lib/perl5/Template/Plugin/Datafile.pm|4243 -./backoffice/api/lib/perl5/Template/Plugin/Date.pm|10698 -./backoffice/api/lib/perl5/Template/Plugin/DBI.pm|31354 -./backoffice/api/lib/perl5/Template/Plugin/Directory.pm|11220 -./backoffice/api/lib/perl5/Template/Plugin/Dumper.pm|3607 -./backoffice/api/lib/perl5/Template/Plugin/File.pm|11259 -./backoffice/api/lib/perl5/Template/Plugin/Filter.pm|10074 -./backoffice/api/lib/perl5/Template/Plugin/Format.pm|1835 -./backoffice/api/lib/perl5/Template/Plugin/HTML.pm|6024 -./backoffice/api/lib/perl5/Template/Plugin/Image.pm|11730 -./backoffice/api/lib/perl5/Template/Plugin/Iterator.pm|2003 -./backoffice/api/lib/perl5/Template/Plugin/Math.pm|4089 -./backoffice/api/lib/perl5/Template/Plugin.pm|10700 -./backoffice/api/lib/perl5/Template/Plugin/Pod.pm|1652 -./backoffice/api/lib/perl5/Template/Plugin/Procedural.pm|3678 -./backoffice/api/lib/perl5/Template/Plugin/Scalar.pm|3769 -./backoffice/api/lib/perl5/Template/Plugins.pm|15187 -./backoffice/api/lib/perl5/Template/Plugin/String.pm|18167 -./backoffice/api/lib/perl5/Template/Plugin/Table.pm|12705 -./backoffice/api/lib/perl5/Template/Plugin/URL.pm|5841 -./backoffice/api/lib/perl5/Template/Plugin/View.pm|2476 -./backoffice/api/lib/perl5/Template/Plugin/Wrap.pm|3271 -./backoffice/api/lib/perl5/Template.pm|25037 -./backoffice/api/lib/perl5/Template/Provider.pm|48074 -./backoffice/api/lib/perl5/Template/Service.pm|18567 -./backoffice/api/lib/perl5/Template/Stash/Context.pm|27389 -./backoffice/api/lib/perl5/Template/Stash.pm|30224 -./backoffice/api/lib/perl5/Template/Stash/XS.pm|3351 -./backoffice/api/lib/perl5/Template/Test.pm|22242 -./backoffice/api/lib/perl5/Template/Toolkit.pm|5711 -./backoffice/api/lib/perl5/Template/Tools.pod|1527 -./backoffice/api/lib/perl5/Template/Tools/tpage.pod|1640 -./backoffice/api/lib/perl5/Template/Tools/ttree.pod|10568 -./backoffice/api/lib/perl5/Template/Tutorial/Datafile.pod|14388 -./backoffice/api/lib/perl5/Template/Tutorial.pod|1043 -./backoffice/api/lib/perl5/Template/Tutorial/Web.pod|26939 -./backoffice/api/lib/perl5/Template/View.pm|24090 -./backoffice/api/lib/perl5/Template/VMethods.pm|15499 -./backoffice/api/lib/perl5/Test/Deep/All.pm|702 -./backoffice/api/lib/perl5/Test/Deep/Any.pm|908 -./backoffice/api/lib/perl5/Test/Deep/ArrayEach.pm|517 -./backoffice/api/lib/perl5/Test/Deep/ArrayElementsOnly.pm|677 -./backoffice/api/lib/perl5/Test/Deep/ArrayLengthOnly.pm|654 -./backoffice/api/lib/perl5/Test/Deep/ArrayLength.pm|374 -./backoffice/api/lib/perl5/Test/Deep/Array.pm|477 -./backoffice/api/lib/perl5/Test/Deep/Blessed.pm|564 -./backoffice/api/lib/perl5/Test/Deep/Boolean.pm|558 -./backoffice/api/lib/perl5/Test/Deep/Cache.pm|1032 -./backoffice/api/lib/perl5/Test/Deep/Cache/Simple.pm|1205 -./backoffice/api/lib/perl5/Test/Deep/Class.pm|363 -./backoffice/api/lib/perl5/Test/Deep/Cmp.pm|1153 -./backoffice/api/lib/perl5/Test/Deep/Code.pm|705 -./backoffice/api/lib/perl5/Test/Deep/HashEach.pm|326 -./backoffice/api/lib/perl5/Test/Deep/HashElements.pm|1267 -./backoffice/api/lib/perl5/Test/Deep/HashKeysOnly.pm|1541 -./backoffice/api/lib/perl5/Test/Deep/HashKeys.pm|999 -./backoffice/api/lib/perl5/Test/Deep/Hash.pm|1413 -./backoffice/api/lib/perl5/Test/Deep/Ignore.pm|186 -./backoffice/api/lib/perl5/Test/Deep/Isa.pm|538 -./backoffice/api/lib/perl5/Test/Deep/ListMethods.pm|288 -./backoffice/api/lib/perl5/Test/Deep/Methods.pm|1312 -./backoffice/api/lib/perl5/Test/Deep/MM.pm|922 -./backoffice/api/lib/perl5/Test/Deep/None.pm|869 -./backoffice/api/lib/perl5/Test/Deep/NoTest.pm|766 -./backoffice/api/lib/perl5/Test/Deep/Number.pm|1088 -./backoffice/api/lib/perl5/Test/Deep/Obj.pm|522 -./backoffice/api/lib/perl5/Test/Deep.pm|49727 -./backoffice/api/lib/perl5/Test/Deep/Ref.pm|490 -./backoffice/api/lib/perl5/Test/Deep/RefType.pm|547 -./backoffice/api/lib/perl5/Test/Deep/RegexpMatches.pm|662 -./backoffice/api/lib/perl5/Test/Deep/RegexpOnly.pm|521 -./backoffice/api/lib/perl5/Test/Deep/Regexp.pm|1408 -./backoffice/api/lib/perl5/Test/Deep/RegexpRefOnly.pm|423 -./backoffice/api/lib/perl5/Test/Deep/RegexpRef.pm|639 -./backoffice/api/lib/perl5/Test/Deep/RegexpVersion.pm|280 -./backoffice/api/lib/perl5/Test/Deep/ScalarRefOnly.pm|384 -./backoffice/api/lib/perl5/Test/Deep/ScalarRef.pm|432 -./backoffice/api/lib/perl5/Test/Deep/Set.pm|3696 -./backoffice/api/lib/perl5/Test/Deep/Shallow.pm|597 -./backoffice/api/lib/perl5/Test/Deep/Stack.pm|1076 -./backoffice/api/lib/perl5/Test/Deep/String.pm|369 -./backoffice/api/lib/perl5/Test/Exception.pm|15465 -./backoffice/api/lib/perl5/Test/Memory/Cycle.pm|7390 -./backoffice/api/lib/perl5/Text/Unidecode.pm|28162 -./backoffice/api/lib/perl5/Text/Unidecode/x00.pm|3903 -./backoffice/api/lib/perl5/Text/Unidecode/x01.pm|1430 -./backoffice/api/lib/perl5/Text/Unidecode/x02.pm|2566 -./backoffice/api/lib/perl5/Text/Unidecode/x03.pm|1696 -./backoffice/api/lib/perl5/Text/Unidecode/x04.pm|1659 -./backoffice/api/lib/perl5/Text/Unidecode/x05.pm|1598 -./backoffice/api/lib/perl5/Text/Unidecode/x06.pm|1537 -./backoffice/api/lib/perl5/Text/Unidecode/x07.pm|1696 -./backoffice/api/lib/perl5/Text/Unidecode/x08.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x09.pm|1631 -./backoffice/api/lib/perl5/Text/Unidecode/x0a.pm|1650 -./backoffice/api/lib/perl5/Text/Unidecode/x0b.pm|1671 -./backoffice/api/lib/perl5/Text/Unidecode/x0c.pm|1635 -./backoffice/api/lib/perl5/Text/Unidecode/x0d.pm|1650 -./backoffice/api/lib/perl5/Text/Unidecode/x0e.pm|1638 -./backoffice/api/lib/perl5/Text/Unidecode/x0f.pm|1658 -./backoffice/api/lib/perl5/Text/Unidecode/x10.pm|1676 -./backoffice/api/lib/perl5/Text/Unidecode/x11.pm|1746 -./backoffice/api/lib/perl5/Text/Unidecode/x12.pm|1887 -./backoffice/api/lib/perl5/Text/Unidecode/x13.pm|1803 -./backoffice/api/lib/perl5/Text/Unidecode/x14.pm|1853 -./backoffice/api/lib/perl5/Text/Unidecode/x15.pm|1877 -./backoffice/api/lib/perl5/Text/Unidecode/x16.pm|1677 -./backoffice/api/lib/perl5/Text/Unidecode/x17.pm|1734 -./backoffice/api/lib/perl5/Text/Unidecode/x18.pm|1646 -./backoffice/api/lib/perl5/Text/Unidecode/x19.pm|1889 -./backoffice/api/lib/perl5/Text/Unidecode/x1a.pm|1889 -./backoffice/api/lib/perl5/Text/Unidecode/x1b.pm|1889 -./backoffice/api/lib/perl5/Text/Unidecode/x1c.pm|1889 -./backoffice/api/lib/perl5/Text/Unidecode/x1d.pm|1889 -./backoffice/api/lib/perl5/Text/Unidecode/x1e.pm|2269 -./backoffice/api/lib/perl5/Text/Unidecode/x1f.pm|1444 -./backoffice/api/lib/perl5/Text/Unidecode/x20.pm|1707 -./backoffice/api/lib/perl5/Text/Unidecode/x21.pm|1708 -./backoffice/api/lib/perl5/Text/Unidecode/x22.pm|1871 -./backoffice/api/lib/perl5/Text/Unidecode/x23.pm|1871 -./backoffice/api/lib/perl5/Text/Unidecode/x24.pm|1304 -./backoffice/api/lib/perl5/Text/Unidecode/x25.pm|1847 -./backoffice/api/lib/perl5/Text/Unidecode/x26.pm|1544 -./backoffice/api/lib/perl5/Text/Unidecode/x27.pm|1310 -./backoffice/api/lib/perl5/Text/Unidecode/x28.pm|3056 -./backoffice/api/lib/perl5/Text/Unidecode/x29.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x2a.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x2b.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x2c.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x2d.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x2e.pm|2216 -./backoffice/api/lib/perl5/Text/Unidecode/x2f.pm|2549 -./backoffice/api/lib/perl5/Text/Unidecode/x30.pm|1654 -./backoffice/api/lib/perl5/Text/Unidecode/x31.pm|1664 -./backoffice/api/lib/perl5/Text/Unidecode/x32.pm|2326 -./backoffice/api/lib/perl5/Text/Unidecode/x33.pm|2121 -./backoffice/api/lib/perl5/Text/Unidecode/x34.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x35.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x36.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x37.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x38.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x39.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x3a.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x3b.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x3c.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x3d.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x3e.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x3f.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x40.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x41.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x42.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x43.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x44.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x45.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x46.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x47.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x48.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x49.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x4a.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x4b.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x4c.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x4d.pm|2417 -./backoffice/api/lib/perl5/Text/Unidecode/x4e.pm|2186 -./backoffice/api/lib/perl5/Text/Unidecode/x4f.pm|2165 -./backoffice/api/lib/perl5/Text/Unidecode/x50.pm|2236 -./backoffice/api/lib/perl5/Text/Unidecode/x51.pm|2237 -./backoffice/api/lib/perl5/Text/Unidecode/x52.pm|2202 -./backoffice/api/lib/perl5/Text/Unidecode/x53.pm|2172 -./backoffice/api/lib/perl5/Text/Unidecode/x54.pm|2137 -./backoffice/api/lib/perl5/Text/Unidecode/x55.pm|2151 -./backoffice/api/lib/perl5/Text/Unidecode/x56.pm|2171 -./backoffice/api/lib/perl5/Text/Unidecode/x57.pm|2183 -./backoffice/api/lib/perl5/Text/Unidecode/x58.pm|2240 -./backoffice/api/lib/perl5/Text/Unidecode/x59.pm|2196 -./backoffice/api/lib/perl5/Text/Unidecode/x5a.pm|2188 -./backoffice/api/lib/perl5/Text/Unidecode/x5b.pm|2218 -./backoffice/api/lib/perl5/Text/Unidecode/x5c.pm|2170 -./backoffice/api/lib/perl5/Text/Unidecode/x5d.pm|2228 -./backoffice/api/lib/perl5/Text/Unidecode/x5e.pm|2222 -./backoffice/api/lib/perl5/Text/Unidecode/x5f.pm|2212 -./backoffice/api/lib/perl5/Text/Unidecode/x60.pm|2192 -./backoffice/api/lib/perl5/Text/Unidecode/x61.pm|2216 -./backoffice/api/lib/perl5/Text/Unidecode/x62.pm|2172 -./backoffice/api/lib/perl5/Text/Unidecode/x63.pm|2212 -./backoffice/api/lib/perl5/Text/Unidecode/x64.pm|2207 -./backoffice/api/lib/perl5/Text/Unidecode/x65.pm|2190 -./backoffice/api/lib/perl5/Text/Unidecode/x66.pm|2227 -./backoffice/api/lib/perl5/Text/Unidecode/x67.pm|2191 -./backoffice/api/lib/perl5/Text/Unidecode/x68.pm|2226 -./backoffice/api/lib/perl5/Text/Unidecode/x69.pm|2229 -./backoffice/api/lib/perl5/Text/Unidecode/x6a.pm|2234 -./backoffice/api/lib/perl5/Text/Unidecode/x6b.pm|2164 -./backoffice/api/lib/perl5/Text/Unidecode/x6c.pm|2197 -./backoffice/api/lib/perl5/Text/Unidecode/x6d.pm|2203 -./backoffice/api/lib/perl5/Text/Unidecode/x6e.pm|2198 -./backoffice/api/lib/perl5/Text/Unidecode/x6f.pm|2210 -./backoffice/api/lib/perl5/Text/Unidecode/x70.pm|2257 -./backoffice/api/lib/perl5/Text/Unidecode/x71.pm|2244 -./backoffice/api/lib/perl5/Text/Unidecode/x72.pm|2221 -./backoffice/api/lib/perl5/Text/Unidecode/x73.pm|2198 -./backoffice/api/lib/perl5/Text/Unidecode/x74.pm|2254 -./backoffice/api/lib/perl5/Text/Unidecode/x75.pm|2223 -./backoffice/api/lib/perl5/Text/Unidecode/x76.pm|2191 -./backoffice/api/lib/perl5/Text/Unidecode/x77.pm|2225 -./backoffice/api/lib/perl5/Text/Unidecode/x78.pm|2214 -./backoffice/api/lib/perl5/Text/Unidecode/x79.pm|2162 -./backoffice/api/lib/perl5/Text/Unidecode/x7a.pm|2227 -./backoffice/api/lib/perl5/Text/Unidecode/x7b.pm|2219 -./backoffice/api/lib/perl5/Text/Unidecode/x7c.pm|2227 -./backoffice/api/lib/perl5/Text/Unidecode/x7d.pm|2226 -./backoffice/api/lib/perl5/Text/Unidecode/x7e.pm|2232 -./backoffice/api/lib/perl5/Text/Unidecode/x7f.pm|2218 -./backoffice/api/lib/perl5/Text/Unidecode/x80.pm|2207 -./backoffice/api/lib/perl5/Text/Unidecode/x81.pm|2223 -./backoffice/api/lib/perl5/Text/Unidecode/x82.pm|2205 -./backoffice/api/lib/perl5/Text/Unidecode/x83.pm|2199 -./backoffice/api/lib/perl5/Text/Unidecode/x84.pm|2210 -./backoffice/api/lib/perl5/Text/Unidecode/x85.pm|2192 -./backoffice/api/lib/perl5/Text/Unidecode/x86.pm|2168 -./backoffice/api/lib/perl5/Text/Unidecode/x87.pm|2205 -./backoffice/api/lib/perl5/Text/Unidecode/x88.pm|2199 -./backoffice/api/lib/perl5/Text/Unidecode/x89.pm|2180 -./backoffice/api/lib/perl5/Text/Unidecode/x8a.pm|2195 -./backoffice/api/lib/perl5/Text/Unidecode/x8b.pm|2195 -./backoffice/api/lib/perl5/Text/Unidecode/x8c.pm|2180 -./backoffice/api/lib/perl5/Text/Unidecode/x8d.pm|2190 -./backoffice/api/lib/perl5/Text/Unidecode/x8e.pm|2211 -./backoffice/api/lib/perl5/Text/Unidecode/x8f.pm|2201 -./backoffice/api/lib/perl5/Text/Unidecode/x90.pm|2183 -./backoffice/api/lib/perl5/Text/Unidecode/x91.pm|2205 -./backoffice/api/lib/perl5/Text/Unidecode/x92.pm|2200 -./backoffice/api/lib/perl5/Text/Unidecode/x93.pm|2234 -./backoffice/api/lib/perl5/Text/Unidecode/x94.pm|2217 -./backoffice/api/lib/perl5/Text/Unidecode/x95.pm|2223 -./backoffice/api/lib/perl5/Text/Unidecode/x96.pm|2160 -./backoffice/api/lib/perl5/Text/Unidecode/x97.pm|2201 -./backoffice/api/lib/perl5/Text/Unidecode/x98.pm|2195 -./backoffice/api/lib/perl5/Text/Unidecode/x99.pm|2179 -./backoffice/api/lib/perl5/Text/Unidecode/x9a.pm|2171 -./backoffice/api/lib/perl5/Text/Unidecode/x9b.pm|2205 -./backoffice/api/lib/perl5/Text/Unidecode/x9c.pm|2207 -./backoffice/api/lib/perl5/Text/Unidecode/x9d.pm|2182 -./backoffice/api/lib/perl5/Text/Unidecode/x9e.pm|2165 -./backoffice/api/lib/perl5/Text/Unidecode/x9f.pm|2034 -./backoffice/api/lib/perl5/Text/Unidecode/xa0.pm|1976 -./backoffice/api/lib/perl5/Text/Unidecode/xa1.pm|2017 -./backoffice/api/lib/perl5/Text/Unidecode/xa2.pm|2051 -./backoffice/api/lib/perl5/Text/Unidecode/xa3.pm|2069 -./backoffice/api/lib/perl5/Text/Unidecode/xa4.pm|1962 -./backoffice/api/lib/perl5/Text/Unidecode/xa5.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xa6.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xa7.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xa8.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xa9.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xaa.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xab.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xac.pm|2257 -./backoffice/api/lib/perl5/Text/Unidecode/xad.pm|2314 -./backoffice/api/lib/perl5/Text/Unidecode/xae.pm|2423 -./backoffice/api/lib/perl5/Text/Unidecode/xaf.pm|2560 -./backoffice/api/lib/perl5/Text/Unidecode/xb0.pm|2401 -./backoffice/api/lib/perl5/Text/Unidecode/xb1.pm|2294 -./backoffice/api/lib/perl5/Text/Unidecode/xb2.pm|2228 -./backoffice/api/lib/perl5/Text/Unidecode/xb3.pm|2289 -./backoffice/api/lib/perl5/Text/Unidecode/xb4.pm|2310 -./backoffice/api/lib/perl5/Text/Unidecode/xb5.pm|2467 -./backoffice/api/lib/perl5/Text/Unidecode/xb6.pm|2544 -./backoffice/api/lib/perl5/Text/Unidecode/xb7.pm|2381 -./backoffice/api/lib/perl5/Text/Unidecode/xb8.pm|2262 -./backoffice/api/lib/perl5/Text/Unidecode/xb9.pm|2252 -./backoffice/api/lib/perl5/Text/Unidecode/xba.pm|2313 -./backoffice/api/lib/perl5/Text/Unidecode/xbb.pm|2278 -./backoffice/api/lib/perl5/Text/Unidecode/xbc.pm|2255 -./backoffice/api/lib/perl5/Text/Unidecode/xbd.pm|2300 -./backoffice/api/lib/perl5/Text/Unidecode/xbe.pm|2397 -./backoffice/api/lib/perl5/Text/Unidecode/xbf.pm|2558 -./backoffice/api/lib/perl5/Text/Unidecode/xc0.pm|2404 -./backoffice/api/lib/perl5/Text/Unidecode/xc1.pm|2313 -./backoffice/api/lib/perl5/Text/Unidecode/xc2.pm|2258 -./backoffice/api/lib/perl5/Text/Unidecode/xc3.pm|2523 -./backoffice/api/lib/perl5/Text/Unidecode/xc4.pm|2572 -./backoffice/api/lib/perl5/Text/Unidecode/xc5.pm|2129 -./backoffice/api/lib/perl5/Text/Unidecode/xc6.pm|2038 -./backoffice/api/lib/perl5/Text/Unidecode/xc7.pm|2112 -./backoffice/api/lib/perl5/Text/Unidecode/xc8.pm|2281 -./backoffice/api/lib/perl5/Text/Unidecode/xc9.pm|2270 -./backoffice/api/lib/perl5/Text/Unidecode/xca.pm|2555 -./backoffice/api/lib/perl5/Text/Unidecode/xcb.pm|2560 -./backoffice/api/lib/perl5/Text/Unidecode/xcc.pm|2297 -./backoffice/api/lib/perl5/Text/Unidecode/xcd.pm|2286 -./backoffice/api/lib/perl5/Text/Unidecode/xce.pm|2256 -./backoffice/api/lib/perl5/Text/Unidecode/xcf.pm|2261 -./backoffice/api/lib/perl5/Text/Unidecode/xd0.pm|2254 -./backoffice/api/lib/perl5/Text/Unidecode/xd1.pm|2315 -./backoffice/api/lib/perl5/Text/Unidecode/xd2.pm|2272 -./backoffice/api/lib/perl5/Text/Unidecode/xd3.pm|2253 -./backoffice/api/lib/perl5/Text/Unidecode/xd4.pm|2306 -./backoffice/api/lib/perl5/Text/Unidecode/xd5.pm|2228 -./backoffice/api/lib/perl5/Text/Unidecode/xd6.pm|2313 -./backoffice/api/lib/perl5/Text/Unidecode/xd7.pm|2084 -./backoffice/api/lib/perl5/Text/Unidecode/xd8.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xd9.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xda.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xdb.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xdc.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xdd.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xde.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xdf.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xe0.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xe1.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xe2.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xe3.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xe4.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xe5.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xe6.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xe7.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xe8.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xe9.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xea.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xeb.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xec.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xed.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xee.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xef.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xf0.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xf1.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xf2.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xf3.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xf4.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xf5.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xf6.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xf7.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xf8.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xf9.pm|2115 -./backoffice/api/lib/perl5/Text/Unidecode/xfa.pm|1955 -./backoffice/api/lib/perl5/Text/Unidecode/xfb.pm|1390 -./backoffice/api/lib/perl5/Text/Unidecode/xfc.pm|1143 -./backoffice/api/lib/perl5/Text/Unidecode/xfd.pm|2676 -./backoffice/api/lib/perl5/Text/Unidecode/xfe.pm|1479 -./backoffice/api/lib/perl5/Text/Unidecode/xff.pm|1646 -./backoffice/api/lib/perl5/ttfmod.pl|7073 -./backoffice/api/lib/perl5/URI/Encode.pm|8444 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/DBD/PgPP/.packlist|83 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Devel/Cycle/.packlist|89 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Digest/SHA/PurePerl/.packlist|178 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Font/TTF/.packlist|7735 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Image/Size/.packlist|157 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/local/lib/.packlist|393 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Math/Base/Convert/.packlist|576 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/MIME/Types/.packlist|452 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/MLDBM/.packlist|255 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PDF/API2/.packlist|10118 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PDF/Table/.packlist|85 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/SQL/Statement/.packlist|2113 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Sub/Uplevel/.packlist|89 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Template/DBI/.packlist|198 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Template/.packlist|7059 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Test/Deep/.packlist|2257 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Test/Exception/.packlist|95 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Test/LeakTrace/LeakTrace.so|88640 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Test/LeakTrace/.packlist|490 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Test/Memory/Cycle/.packlist|102 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Text/Soundex/.packlist|209 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Text/Soundex/Soundex.so|60680 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Text/Unidecode/.packlist|13151 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/URI/Encode/.packlist|87 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/perllocal.pod|4676 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/Test/LeakTrace/JA.pod|10261 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/Test/LeakTrace.pm|7262 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/Test/LeakTrace/Script.pm|986 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/Text/Soundex.pm|8345 -./backoffice/api/lib/sendemail_new.pm|4865 -./backoffice/api/lib/sendemail.pm|3038 -./backoffice/api/lib/session.pm|9683 -./backoffice/api/report.cgi|3938 -./backoffice/api/sendEmail|80246 -./backoffice/api/upload.cgi|9418 -./backoffice/css/module.css|181 -./backoffice/css/w3pro.css|27227 -./backoffice/css/w3pro.min.css|25940 -./backoffice/data/.htaccess|169 -./backoffice/data/mail/block/greeting.tt|180 -./backoffice/data/mail/block/signature.tt|62 -./backoffice/data/mail/body/user_forgotpasswd.tt|243 -./backoffice/data/mail/body/user_registration.tt|551 -./backoffice/data/mail/mail.tt|709 -./backoffice/data/reports/invoices/dks-deutsch.conf|244 -./backoffice/data/reports/invoices/dks-deutsch/dks_500.png|19377 -./backoffice/data/reports/invoices/dks-deutsch.footer.tt|1595 -./backoffice/data/reports/invoices/dks-deutsch.header.tt|685 -./backoffice/data/reports/invoices/dks-deutsch/sitc.png|57392 -./backoffice/data/reports/invoices/dks-deutsch.tt|3712 -./backoffice/data/reports/invoices/staff_department.conf|262 -./backoffice/data/reports/invoices/staff_department.footer.tt|1595 -./backoffice/data/reports/invoices/staff_department.header.tt|685 -./backoffice/data/reports/invoices/staff_department.tt|3712 -./backoffice/data/reports/invoices/staff_workplan.conf|258 -./backoffice/data/reports/invoices/staff_workplan.footer.tt|1595 -./backoffice/data/reports/invoices/staff_workplan.header.tt|685 -./backoffice/data/reports/invoices/staff_workplan.tt|1568 -./backoffice/data/reports/pot/pot_period.conf|259 -./backoffice/data/reports/pot/pot_period.footer.tt|1381 -./backoffice/data/reports/pot/pot_period.header.tt|1205 -./backoffice/data/reports/pot/pot_period.tt|4146 -./backoffice/data/schemata/defaultcompany.schema.sql|47179 -./backoffice/data/schemata/.htaccess|167 -./backoffice/.htaccess|202 -./backoffice/img/bg1.jpg|135161 -./backoffice/img/favicon/android-icon-144x144.png|12179 -./backoffice/img/favicon/android-icon-192x192.png|16669 -./backoffice/img/favicon/android-icon-36x36.png|2527 -./backoffice/img/favicon/android-icon-48x48.png|3489 -./backoffice/img/favicon/android-icon-72x72.png|5250 -./backoffice/img/favicon/android-icon-96x96.png|7086 -./backoffice/img/favicon/apple-icon-114x114.png|8487 -./backoffice/img/favicon/apple-icon-120x120.png|9134 -./backoffice/img/favicon/apple-icon-144x144.png|12179 -./backoffice/img/favicon/apple-icon-152x152.png|13278 -./backoffice/img/favicon/apple-icon-180x180.png|17376 -./backoffice/img/favicon/apple-icon-57x57.png|4122 -./backoffice/img/favicon/apple-icon-60x60.png|4312 -./backoffice/img/favicon/apple-icon-72x72.png|5250 -./backoffice/img/favicon/apple-icon-76x76.png|5550 -./backoffice/img/favicon/apple-icon.png|17158 -./backoffice/img/favicon/apple-icon-precomposed.png|17158 -./backoffice/img/favicon/browserconfig.xml|281 -./backoffice/img/favicon/favicon-16x16.png|1251 -./backoffice/img/favicon/favicon-32x32.png|2246 -./backoffice/img/favicon/favicon-96x96.png|7086 -./backoffice/img/favicon/favicon.ico|1150 -./backoffice/img/favicon/manifest.json|720 -./backoffice/img/favicon/ms-icon-144x144.png|12179 -./backoffice/img/favicon/ms-icon-150x150.png|12985 -./backoffice/img/favicon/ms-icon-310x310.png|40744 -./backoffice/img/favicon/ms-icon-70x70.png|5051 -./backoffice/img/hourtrax.png|44729 -./backoffice/img/icons/access.svg|1553 -./backoffice/img/icons/access_white.svg|1569 -./backoffice/img/icons/address.svg|800 -./backoffice/img/icons/address_white.svg|812 -./backoffice/img/icons/Agreement_01.svg|5234 -./backoffice/img/icons/apps.svg|781 -./backoffice/img/icons/apps_white.svg|793 -./backoffice/img/icons/archive.svg|641 -./backoffice/img/icons/archive_white.svg|658 -./backoffice/img/icons/Bill.svg|3185 -./backoffice/img/icons/calendar.svg|1038 -./backoffice/img/icons/calendar_white.svg|1038 -./backoffice/img/icons/clubs.svg|1033 -./backoffice/img/icons/club.svg|823 -./backoffice/img/icons/clubs_white.svg|1045 -./backoffice/img/icons/club_white.svg|835 -./backoffice/img/icons/code.svg|589 -./backoffice/img/icons/coin.svg|2323 -./backoffice/img/icons/company.svg|1482 -./backoffice/img/icons/company_white.svg|1498 -./backoffice/img/icons/cubelight.svg|1023 -./backoffice/img/icons/cubelight_white.svg|1036 -./backoffice/img/icons/cube.svg|365 -./backoffice/img/icons/cube_white.svg|378 -./backoffice/img/icons/dashboard.svg|1085 -./backoffice/img/icons/dashboard_white.svg|1098 -./backoffice/img/icons/data_refresh.svg|2969 -./backoffice/img/icons/data_refresh_white.svg|2985 -./backoffice/img/icons/Document_Save.svg|729 -./backoffice/img/icons/documents.svg|987 -./backoffice/img/icons/documents_white.svg|1003 -./backoffice/img/icons/download.svg|339 -./backoffice/img/icons/download_white.svg|351 -./backoffice/img/icons/duplicate.svg|430 -./backoffice/img/icons/duplicate_white.svg|442 -./backoffice/img/icons/edit.svg|750 -./backoffice/img/icons/edit_white.svg|725 -./backoffice/img/icons/excel.svg|1394 -./backoffice/img/icons/excel_white.svg|1410 -./backoffice/img/icons/expand.svg|322 -./backoffice/img/icons/file/dir.png|6937 -./backoffice/img/icons/file/doc.png|6455 -./backoffice/img/icons/file/docx.png|6455 -./backoffice/img/icons/file/file.png|4540 -./backoffice/img/icons/file/folderup.svg|917 -./backoffice/img/icons/file/folderup_white.svg|929 -./backoffice/img/icons/file/jpg.png|6297 -./backoffice/img/icons/file/pdf.png|8783 -./backoffice/img/icons/file/png.png|6297 -./backoffice/img/icons/file.svg|272 -./backoffice/img/icons/file/txt.png|6049 -./backoffice/img/icons/file_white.svg|284 -./backoffice/img/icons/file/xls.png|6065 -./backoffice/img/icons/file/xlsx.png|6065 -./backoffice/img/icons/Floppy.svg|1058 -./backoffice/img/icons/folder_add.svg|1438 -./backoffice/img/icons/folder_add_white.svg|1454 -./backoffice/img/icons/Folder_Delete_01.svg|1254 -./backoffice/img/icons/Folder_Find_01.svg|1371 -./backoffice/img/icons/folder.svg|404 -./backoffice/img/icons/folder_white.svg|417 -./backoffice/img/icons/globe.svg|1242 -./backoffice/img/icons/globe_white.svg|1254 -./backoffice/img/icons/group.svg|1994 -./backoffice/img/icons/group_white.svg|2006 -./backoffice/img/icons/home.svg|531 -./backoffice/img/icons/inbox.svg|413 -./backoffice/img/icons/inbox_white.svg|425 -./backoffice/img/icons/library.svg|968 -./backoffice/img/icons/library_white.svg|980 -./backoffice/img/icons/license.svg|478 -./backoffice/img/icons/license_white.svg|490 -./backoffice/img/icons/list.svg|640 -./backoffice/img/icons/list_white.svg|652 -./backoffice/img/icons/logout.svg|402 -./backoffice/img/icons/logout_white.svg|414 -./backoffice/img/icons/log.svg|1710 -./backoffice/img/icons/log_white.svg|1726 -./backoffice/img/icons/menu.svg|336 -./backoffice/img/icons/menu_white.svg|348 -./backoffice/img/icons/newspaper.svg|812 -./backoffice/img/icons/newspaper_white.svg|824 -./backoffice/img/icons/numberlist.svg|908 -./backoffice/img/icons/numberlist_white.svg|920 -./backoffice/img/icons/package.svg|408 -./backoffice/img/icons/package_white.svg|420 -./backoffice/img/icons/pay.svg|3048 -./backoffice/img/icons/pdfexport.svg|2730 -./backoffice/img/icons/pdfexport_white.svg|2730 -./backoffice/img/icons/pdf.svg|3436 -./backoffice/img/icons/pdf_white.svg|3452 -./backoffice/img/icons/pictures.svg|1420 -./backoffice/img/icons/pictures_white.svg|1436 -./backoffice/img/icons/plus2.svg|535 -./backoffice/img/icons/plus.svg|404 -./backoffice/img/icons/plus_white.svg|547 -./backoffice/img/icons/poticon.svg|10061 -./backoffice/img/icons/projects.svg|939 -./backoffice/img/icons/projects_white.svg|955 -./backoffice/img/icons/remove_2.svg|816 -./backoffice/img/icons/remove.svg|447 -./backoffice/img/icons/remove_white.svg|828 -./backoffice/img/icons/rename.svg|1136 -./backoffice/img/icons/Save.svg|477 -./backoffice/img/icons/squares.svg|502 -./backoffice/img/icons/squares_white.svg|514 -./backoffice/img/icons/table.svg|454 -./backoffice/img/icons/target.svg|780 -./backoffice/img/icons/target_white.svg|792 -./backoffice/img/icons/upload.svg|507 -./backoffice/img/icons/upload_white.svg|523 -./backoffice/img/icons/user.svg|780 -./backoffice/img/icons/user_white.svg|792 -./backoffice/img/logo_512.png|31456 -./backoffice/img/logo_512_xx.png|14719 -./backoffice/img/no-image-icon.png|20003 -./backoffice/img/no-news-img.png|17922 -./backoffice/img/pottop.png|2689 -./backoffice/img/toplogo.png|31456 -./backoffice/index.cgi|5552 -./backoffice/js/admin.js|2596 -./backoffice/js/formsave.js|8472 -./backoffice/js/module_global.js|4107 -./backoffice/js/request.js|3007 -./backoffice/tmpl/block/cgu.tt|9358 -./backoffice/tmpl/block/dlgaction.tt|2865 -./backoffice/tmpl/block/dlgdataload.tt|1293 -./backoffice/tmpl/block/dlgdeleterow.tt|2736 -./backoffice/tmpl/block/dlgmessage.tt|950 -./backoffice/tmpl/block/dlgreport.tt|2354 -./backoffice/tmpl/block/dlguploadfile.tt|3399 -./backoffice/tmpl/block/head.tt|1782 -./backoffice/tmpl/block/snackbar.tt|25 -./backoffice/tmpl/block/toolbars.tt|519 -./backoffice/tmpl/macro/fields.tt|12382 -./backoffice/tmpl/module/companies/companies.js|4239 -./backoffice/tmpl/module/companies/index.js|186 -./backoffice/tmpl/module/companies/index.tt|8478 -./backoffice/tmpl/module/companies/staffgroups.js|2346 -./backoffice/tmpl/module/companies/worktimes.js|3616 -./backoffice/tmpl/module/dashboard/index.js|165 -./backoffice/tmpl/module/dashboard/index.tt|1163 -./backoffice/tmpl/module/periods/index.js|219 -./backoffice/tmpl/module/periods/index.tt|7831 -./backoffice/tmpl/module/periods/reportperiod.js|4442 -./backoffice/tmpl/module/periods/staffperiodweeks.js|10895 -./backoffice/tmpl/module/profile/dlgpassword.tt|2911 -./backoffice/tmpl/module/profile/dlgusername.tt|3814 -./backoffice/tmpl/module/profile/index.js|403 -./backoffice/tmpl/module/profile/index.tt|1767 -./backoffice/tmpl/module/staff/index.js|199 -./backoffice/tmpl/module/staff/index.tt|5754 -./backoffice/tmpl/module/staff/staffcontract.js|6449 -./backoffice/tmpl/module/staff/staff.js|3528 -./backoffice/tmpl/module/timetrackers/index.js|401 -./backoffice/tmpl/module/timetrackers/index.tt|1310 -./backoffice/tmpl/module/users/index.js|126 -./backoffice/tmpl/module/users/index.tt|3043 -./backoffice/tmpl/module/users/users.js|6741 -./backoffice/tmpl/module/workplans/index.js|169 -./backoffice/tmpl/module/workplans/index.tt|5446 -./backoffice/tmpl/module/workplans/workplans.js|6385 -./backoffice/tmpl/skeleton/index.tt|4407 -./backoffice/tmpl/skeleton/login/accountreset.tt|1679 -./backoffice/tmpl/skeleton/login/forgotpassword.tt|874 -./backoffice/tmpl/skeleton/login/login.tt|1231 -./backoffice/tmpl/skeleton/login/message.tt|638 -./backoffice/tmpl/skeleton/login/register.tt|2545 -./backoffice/tmpl/skeleton/login.tt|1171 -./backoffice/tmpl/skeleton/login/validationcode.tt|954 -./backoffice/tmpl/skeleton/module_file.tt|84 -./backoffice/tmpl/skeleton/module.tt|2584 -./backoffice/vendors/choices/base.css|2320 -./backoffice/vendors/choices/base.min.css|1391 -./backoffice/vendors/choices/choices.css|8549 -./backoffice/vendors/choices/choices.js|217424 -./backoffice/vendors/choices/choices.min.css|6293 -./backoffice/vendors/choices/choices.min.js|91604 -./backoffice/vendors/choices/choices.min.orig.css|6735 -./backoffice/vendors/choices/choices.orig.css|8099 -./backoffice/vendors/choices/scripts/choices.js|217424 -./backoffice/vendors/choices/scripts/choices.min.js|91604 -./backoffice/vendors/flatpickr/flatpickr.css|18831 -./backoffice/vendors/flatpickr/flatpickr.js|118005 -./backoffice/vendors/flatpickr/flatpickr.min.css|15556 -./backoffice/vendors/flatpickr/flatpickr.min.js|48355 -./backoffice/vendors/flatpickr/flatpickr.min.orig.css|15954 -./backoffice/vendors/flatpickr/ie.css|260 -./backoffice/vendors/flatpickr/index.d.ts|138 -./backoffice/vendors/flatpickr/l10n/de.d.ts|2272 -./backoffice/vendors/flatpickr/l10n/default.d.ts|104 -./backoffice/vendors/flatpickr/l10n/default.js|2150 -./backoffice/vendors/flatpickr/l10n/de.js|1757 -./backoffice/vendors/flatpickr/l10n/fr.d.ts|2272 -./backoffice/vendors/flatpickr/l10n/fr.js|1893 -./backoffice/vendors/flatpickr/l10n/lu.d.ts|2314 -./backoffice/vendors/flatpickr/l10n/lu.js|1802 -./backoffice/vendors/flatpickr/plugins/confirmDate/confirmDate.css|373 -./backoffice/vendors/flatpickr/plugins/confirmDate/confirmDate.d.ts|272 -./backoffice/vendors/flatpickr/plugins/confirmDate/confirmDate.js|4236 -./backoffice/vendors/flatpickr/plugins/labelPlugin/labelPlugin.d.ts|114 -./backoffice/vendors/flatpickr/plugins/labelPlugin/labelPlugin.js|964 -./backoffice/vendors/flatpickr/plugins/minMaxTimePlugin.d.ts|491 -./backoffice/vendors/flatpickr/plugins/minMaxTimePlugin.js|12386 -./backoffice/vendors/flatpickr/plugins/monthSelect/index.d.ts|367 -./backoffice/vendors/flatpickr/plugins/monthSelect/index.js|7757 -./backoffice/vendors/flatpickr/plugins/monthSelect/style.css|1561 -./backoffice/vendors/flatpickr/plugins/monthSelect/tests.spec.d.ts|11 -./backoffice/vendors/flatpickr/plugins/rangePlugin.d.ts|312 -./backoffice/vendors/flatpickr/plugins/rangePlugin.js|6475 -./backoffice/vendors/flatpickr/plugins/scrollPlugin.d.ts|113 -./backoffice/vendors/flatpickr/plugins/scrollPlugin.js|2026 -./backoffice/vendors/flatpickr/plugins/weekSelect/weekSelect.d.ts|218 -./backoffice/vendors/flatpickr/plugins/weekSelect/weekSelect.js|3500 -./backoffice/vendors/flatpickr/themes/airbnb.css|21148 -./backoffice/vendors/flatpickr/themes/airbnb.min.css|17638 -./backoffice/vendors/flatpickr/types/globals.d.ts|546 -./backoffice/vendors/flatpickr/types/instance.d.ts|4386 -./backoffice/vendors/flatpickr/types/locale.d.ts|2263 -./backoffice/vendors/flatpickr/types/options.d.ts|4564 -./backoffice/vendors/flatpickr/typings.d.ts|1001 -./backoffice/vendors/flatpickr/utils/dates.d.ts|922 -./backoffice/vendors/flatpickr/utils/dom.d.ts|585 -./backoffice/vendors/flatpickr/utils/formatting.d.ts|834 -./backoffice/vendors/flatpickr/utils/index.d.ts|393 -./backoffice/vendors/flatpickr/utils/polyfills.d.ts|0 -./backoffice/vendors/moment/moment.js|150941 -./backoffice/vendors/moment/moment.min.js|53324 -./backoffice/vendors/moment/moment-with-locales.js|541363 -./backoffice/vendors/moment/moment-with-locales.min.js|336451 -./backoffice/vendors/tabulator/css.old/tabulator.css|18678 -./backoffice/vendors/tabulator/css.old/tabulator_midnight.css|18806 -./backoffice/vendors/tabulator/css.old/tabulator_midnight.min.css|16278 -./backoffice/vendors/tabulator/css.old/tabulator_midnight.min.css.map|30296 -./backoffice/vendors/tabulator/css.old/tabulator.min.css|16153 -./backoffice/vendors/tabulator/css.old/tabulator.min.css.map|30054 -./backoffice/vendors/tabulator/css.old/tabulator_modern.css|19468 -./backoffice/vendors/tabulator/css.old/tabulator_modern.min.css|16838 -./backoffice/vendors/tabulator/css.old/tabulator_modern.min.css.map|31647 -./backoffice/vendors/tabulator/css.old/tabulator_simple.css|18618 -./backoffice/vendors/tabulator/css.old/tabulator_simple.min.css|16106 -./backoffice/vendors/tabulator/css.old/tabulator_simple.min.css.map|30033 -./backoffice/vendors/tabulator/css.old/tabulator_site.css|18507 -./backoffice/vendors/tabulator/css.old/tabulator_site.min.css|16002 -./backoffice/vendors/tabulator/css.old/tabulator_site.min.css.map|30389 -./backoffice/vendors/tabulator/css/tabulator.css|18763 -./backoffice/vendors/tabulator/css/tabulator_midnight.css|18891 -./backoffice/vendors/tabulator/css/tabulator_midnight.min.css|16354 -./backoffice/vendors/tabulator/css/tabulator_midnight.min.css.map|30395 -./backoffice/vendors/tabulator/css/tabulator.min.css|16229 -./backoffice/vendors/tabulator/css/tabulator.min.css.map|30157 -./backoffice/vendors/tabulator/css/tabulator_modern.css|19553 -./backoffice/vendors/tabulator/css/tabulator_modern.min.css|16914 -./backoffice/vendors/tabulator/css/tabulator_modern.min.css.map|31750 -./backoffice/vendors/tabulator/css/tabulator_simple.css|18703 -./backoffice/vendors/tabulator/css/tabulator_simple.min.css|16182 -./backoffice/vendors/tabulator/css/tabulator_simple.min.css.map|30132 -./backoffice/vendors/tabulator/css/tabulator_site.css|18592 -./backoffice/vendors/tabulator/css/tabulator_site.min.css|16078 -./backoffice/vendors/tabulator/css/tabulator_site.min.css.map|30488 -./backoffice/vendors/tabulator/js/modules/accessor.js|2558 -./backoffice/vendors/tabulator/js/modules/accessor.min.js|1455 -./backoffice/vendors/tabulator/js/modules/ajax.js|12023 -./backoffice/vendors/tabulator/js/modules/ajax.min.js|8064 -./backoffice/vendors/tabulator/js/modules/calculation_colums.js|11652 -./backoffice/vendors/tabulator/js/modules/calculation_colums.min.js|7395 -./backoffice/vendors/tabulator/js/modules/clipboard.js|25859 -./backoffice/vendors/tabulator/js/modules/clipboard.min.js|15228 -./backoffice/vendors/tabulator/js/modules/data_tree.js|9018 -./backoffice/vendors/tabulator/js/modules/data_tree.min.js|6175 -./backoffice/vendors/tabulator/js/modules/download.js|21137 -./backoffice/vendors/tabulator/js/modules/download.min.js|10295 -./backoffice/vendors/tabulator/js/modules/edit.js|44926 -./backoffice/vendors/tabulator/js/modules/edit.min.js|22906 -./backoffice/vendors/tabulator/js/modules/filter.js|20729 -./backoffice/vendors/tabulator/js/modules/filter.min.js|11588 -./backoffice/vendors/tabulator/js/modules/format.js|21705 -./backoffice/vendors/tabulator/js/modules/format.min.js|12745 -./backoffice/vendors/tabulator/js/modules/frozen_columns.js|6116 -./backoffice/vendors/tabulator/js/modules/frozen_columns.min.js|3946 -./backoffice/vendors/tabulator/js/modules/frozen_rows.js|2249 -./backoffice/vendors/tabulator/js/modules/frozen_rows.min.js|1645 -./backoffice/vendors/tabulator/js/modules/group_rows.js|26170 -./backoffice/vendors/tabulator/js/modules/group_rows.min.js|17661 -./backoffice/vendors/tabulator/js/modules/history.js|3469 -./backoffice/vendors/tabulator/js/modules/history.min.js|2494 -./backoffice/vendors/tabulator/js/modules/html_table_export.js|11041 -./backoffice/vendors/tabulator/js/modules/html_table_export.min.js|7149 -./backoffice/vendors/tabulator/js/modules/html_table_import.js|5208 -./backoffice/vendors/tabulator/js/modules/html_table_import.min.js|2721 -./backoffice/vendors/tabulator/js/modules/keybindings.js|8024 -./backoffice/vendors/tabulator/js/modules/keybindings.min.js|5002 -./backoffice/vendors/tabulator/js/modules/moveable_columns.js|8666 -./backoffice/vendors/tabulator/js/modules/moveable_columns.min.js|5383 -./backoffice/vendors/tabulator/js/modules/moveable_rows.js|16514 -./backoffice/vendors/tabulator/js/modules/moveable_rows.min.js|11212 -./backoffice/vendors/tabulator/js/modules/mutator.js|3060 -./backoffice/vendors/tabulator/js/modules/mutator.min.js|1770 -./backoffice/vendors/tabulator/js/modules/page.js|16518 -./backoffice/vendors/tabulator/js/modules/page.min.js|11281 -./backoffice/vendors/tabulator/js/modules/persistence.js|10369 -./backoffice/vendors/tabulator/js/modules/persistence.min.js|6452 -./backoffice/vendors/tabulator/js/modules/print.js|3008 -./backoffice/vendors/tabulator/js/modules/print.min.js|2306 -./backoffice/vendors/tabulator/js/modules/reactive_data.js|5286 -./backoffice/vendors/tabulator/js/modules/reactive_data.min.js|3051 -./backoffice/vendors/tabulator/js/modules/resize_columns.js|5130 -./backoffice/vendors/tabulator/js/modules/resize_columns.min.js|3117 -./backoffice/vendors/tabulator/js/modules/resize_rows.js|2885 -./backoffice/vendors/tabulator/js/modules/resize_rows.min.js|1741 -./backoffice/vendors/tabulator/js/modules/resize_table.js|1073 -./backoffice/vendors/tabulator/js/modules/resize_table.min.js|797 -./backoffice/vendors/tabulator/js/modules/responsive_layout.js|7489 -./backoffice/vendors/tabulator/js/modules/responsive_layout.min.js|4816 -./backoffice/vendors/tabulator/js/modules/select_row.js|9573 -./backoffice/vendors/tabulator/js/modules/select_row.min.js|6106 -./backoffice/vendors/tabulator/js/modules/sort.js|13926 -./backoffice/vendors/tabulator/js/modules/sort.min.js|7247 -./backoffice/vendors/tabulator/js/modules/validate.js|5308 -./backoffice/vendors/tabulator/js/modules/validate.min.js|2606 -./backoffice/vendors/tabulator/js.old/modules/accessor.js|2558 -./backoffice/vendors/tabulator/js.old/modules/accessor.min.js|1455 -./backoffice/vendors/tabulator/js.old/modules/ajax.js|11994 -./backoffice/vendors/tabulator/js.old/modules/ajax.min.js|8042 -./backoffice/vendors/tabulator/js.old/modules/calculation_colums.js|11664 -./backoffice/vendors/tabulator/js.old/modules/calculation_colums.min.js|7402 -./backoffice/vendors/tabulator/js.old/modules/clipboard.js|25247 -./backoffice/vendors/tabulator/js.old/modules/clipboard.min.js|14973 -./backoffice/vendors/tabulator/js.old/modules/data_tree.js|9018 -./backoffice/vendors/tabulator/js.old/modules/data_tree.min.js|6175 -./backoffice/vendors/tabulator/js.old/modules/download.js|20203 -./backoffice/vendors/tabulator/js.old/modules/download.min.js|9822 -./backoffice/vendors/tabulator/js.old/modules/edit.js|43671 -./backoffice/vendors/tabulator/js.old/modules/edit.min.js|22359 -./backoffice/vendors/tabulator/js.old/modules/filter.js|20864 -./backoffice/vendors/tabulator/js.old/modules/filter.min.js|11521 -./backoffice/vendors/tabulator/js.old/modules/format.js|21091 -./backoffice/vendors/tabulator/js.old/modules/format.min.js|12566 -./backoffice/vendors/tabulator/js.old/modules/frozen_columns.js|6116 -./backoffice/vendors/tabulator/js.old/modules/frozen_columns.min.js|3946 -./backoffice/vendors/tabulator/js.old/modules/frozen_rows.js|2249 -./backoffice/vendors/tabulator/js.old/modules/frozen_rows.min.js|1645 -./backoffice/vendors/tabulator/js.old/modules/group_rows.js|25932 -./backoffice/vendors/tabulator/js.old/modules/group_rows.min.js|17645 -./backoffice/vendors/tabulator/js.old/modules/history.js|3469 -./backoffice/vendors/tabulator/js.old/modules/history.min.js|2494 -./backoffice/vendors/tabulator/js.old/modules/html_table_export.js|10621 -./backoffice/vendors/tabulator/js.old/modules/html_table_export.min.js|6908 -./backoffice/vendors/tabulator/js.old/modules/html_table_import.js|5208 -./backoffice/vendors/tabulator/js.old/modules/html_table_import.min.js|2721 -./backoffice/vendors/tabulator/js.old/modules/keybindings.js|8024 -./backoffice/vendors/tabulator/js.old/modules/keybindings.min.js|5002 -./backoffice/vendors/tabulator/js.old/modules/moveable_columns.js|8666 -./backoffice/vendors/tabulator/js.old/modules/moveable_columns.min.js|5383 -./backoffice/vendors/tabulator/js.old/modules/moveable_rows.js|16514 -./backoffice/vendors/tabulator/js.old/modules/moveable_rows.min.js|11212 -./backoffice/vendors/tabulator/js.old/modules/mutator.js|2940 -./backoffice/vendors/tabulator/js.old/modules/mutator.min.js|1722 -./backoffice/vendors/tabulator/js.old/modules/page.js|16067 -./backoffice/vendors/tabulator/js.old/modules/page.min.js|10966 -./backoffice/vendors/tabulator/js.old/modules/persistence.js|4822 -./backoffice/vendors/tabulator/js.old/modules/persistence.min.js|2767 -./backoffice/vendors/tabulator/js.old/modules/print.js|3008 -./backoffice/vendors/tabulator/js.old/modules/print.min.js|2306 -./backoffice/vendors/tabulator/js.old/modules/reactive_data.js|5286 -./backoffice/vendors/tabulator/js.old/modules/reactive_data.min.js|3051 -./backoffice/vendors/tabulator/js.old/modules/resize_columns.js|5035 -./backoffice/vendors/tabulator/js.old/modules/resize_columns.min.js|3034 -./backoffice/vendors/tabulator/js.old/modules/resize_rows.js|2885 -./backoffice/vendors/tabulator/js.old/modules/resize_rows.min.js|1741 -./backoffice/vendors/tabulator/js.old/modules/resize_table.js|895 -./backoffice/vendors/tabulator/js.old/modules/resize_table.min.js|669 -./backoffice/vendors/tabulator/js.old/modules/responsive_layout.js|6383 -./backoffice/vendors/tabulator/js.old/modules/responsive_layout.min.js|4076 -./backoffice/vendors/tabulator/js.old/modules/select_row.js|9450 -./backoffice/vendors/tabulator/js.old/modules/select_row.min.js|6035 -./backoffice/vendors/tabulator/js.old/modules/sort.js|13879 -./backoffice/vendors/tabulator/js.old/modules/sort.min.js|7200 -./backoffice/vendors/tabulator/js.old/modules/validate.js|5351 -./backoffice/vendors/tabulator/js.old/modules/validate.min.js|2629 -./backoffice/vendors/tabulator/js.old/tabulator_core.js|192142 -./backoffice/vendors/tabulator/js.old/tabulator_core.min.js|118193 -./backoffice/vendors/tabulator/js.old/tabulator.js|534179 -./backoffice/vendors/tabulator/js.old/tabulator.min.js|303456 -./backoffice/vendors/tabulator/js/tabulator_core.js|205898 -./backoffice/vendors/tabulator/js/tabulator_core.min.js|127408 -./backoffice/vendors/tabulator/js/tabulator.js|560304 -./backoffice/vendors/tabulator/js/tabulator.min.js|319423 -./backoffice/vendors/tinymce/changelog.txt|131850 -./backoffice/vendors/tinymce/js/tinymce/jquery.tinymce.min.js|6635 -./backoffice/vendors/tinymce/js/tinymce/langs/de.js|10334 -./backoffice/vendors/tinymce/js/tinymce/langs/fr_FR.js|10140 -./backoffice/vendors/tinymce/js/tinymce/langs/readme.md|151 -./backoffice/vendors/tinymce/js/tinymce/license.txt|26441 -./backoffice/vendors/tinymce/js/tinymce/plugins/advlist/plugin.min.js|3995 -./backoffice/vendors/tinymce/js/tinymce/plugins/anchor/plugin.min.js|2120 -./backoffice/vendors/tinymce/js/tinymce/plugins/autolink/plugin.min.js|2534 -./backoffice/vendors/tinymce/js/tinymce/plugins/autoresize/plugin.min.js|2298 -./backoffice/vendors/tinymce/js/tinymce/plugins/autosave/plugin.min.js|3493 -./backoffice/vendors/tinymce/js/tinymce/plugins/bbcode/plugin.min.js|3117 -./backoffice/vendors/tinymce/js/tinymce/plugins/charmap/plugin.min.js|11948 -./backoffice/vendors/tinymce/js/tinymce/plugins/code/plugin.min.js|1226 -./backoffice/vendors/tinymce/js/tinymce/plugins/codesample/plugin.min.js|21028 -./backoffice/vendors/tinymce/js/tinymce/plugins/colorpicker/plugin.min.js|550 -./backoffice/vendors/tinymce/js/tinymce/plugins/contextmenu/plugin.min.js|550 -./backoffice/vendors/tinymce/js/tinymce/plugins/directionality/plugin.min.js|4315 -./backoffice/vendors/tinymce/js/tinymce/plugins/emoticons/js/emojis.js|251845 -./backoffice/vendors/tinymce/js/tinymce/plugins/emoticons/js/emojis.min.js|193222 -./backoffice/vendors/tinymce/js/tinymce/plugins/emoticons/plugin.min.js|6921 -./backoffice/vendors/tinymce/js/tinymce/plugins/fullpage/plugin.min.js|8196 -./backoffice/vendors/tinymce/js/tinymce/plugins/fullscreen/plugin.min.js|9920 -./backoffice/vendors/tinymce/js/tinymce/plugins/help/plugin.min.js|14402 -./backoffice/vendors/tinymce/js/tinymce/plugins/hr/plugin.min.js|841 -./backoffice/vendors/tinymce/js/tinymce/plugins/image/plugin.min.js|29711 -./backoffice/vendors/tinymce/js/tinymce/plugins/imagetools/plugin.min.js|22336 -./backoffice/vendors/tinymce/js/tinymce/plugins/importcss/plugin.min.js|5008 -./backoffice/vendors/tinymce/js/tinymce/plugins/insertdatetime/plugin.min.js|3212 -./backoffice/vendors/tinymce/js/tinymce/plugins/legacyoutput/plugin.min.js|2973 -./backoffice/vendors/tinymce/js/tinymce/plugins/link/plugin.min.js|22929 -./backoffice/vendors/tinymce/js/tinymce/plugins/lists/plugin.min.js|28276 -./backoffice/vendors/tinymce/js/tinymce/plugins/media/plugin.min.js|18033 -./backoffice/vendors/tinymce/js/tinymce/plugins/nonbreaking/plugin.min.js|1585 -./backoffice/vendors/tinymce/js/tinymce/plugins/noneditable/plugin.min.js|1842 -./backoffice/vendors/tinymce/js/tinymce/plugins/pagebreak/plugin.min.js|1842 -./backoffice/vendors/tinymce/js/tinymce/plugins/paste/plugin.min.js|31463 -./backoffice/vendors/tinymce/js/tinymce/plugins/preview/plugin.min.js|2095 -./backoffice/vendors/tinymce/js/tinymce/plugins/print/plugin.min.js|887 -./backoffice/vendors/tinymce/js/tinymce/plugins/quickbars/plugin.min.js|10795 -./backoffice/vendors/tinymce/js/tinymce/plugins/save/plugin.min.js|1823 -./backoffice/vendors/tinymce/js/tinymce/plugins/searchreplace/plugin.min.js|10019 -./backoffice/vendors/tinymce/js/tinymce/plugins/spellchecker/plugin.min.js|10404 -./backoffice/vendors/tinymce/js/tinymce/plugins/tabfocus/plugin.min.js|1938 -./backoffice/vendors/tinymce/js/tinymce/plugins/table/plugin.min.js|122173 -./backoffice/vendors/tinymce/js/tinymce/plugins/template/plugin.min.js|8077 -./backoffice/vendors/tinymce/js/tinymce/plugins/textcolor/plugin.min.js|546 -./backoffice/vendors/tinymce/js/tinymce/plugins/textpattern/plugin.min.js|18459 -./backoffice/vendors/tinymce/js/tinymce/plugins/toc/plugin.min.js|3592 -./backoffice/vendors/tinymce/js/tinymce/plugins/visualblocks/plugin.min.js|1649 -./backoffice/vendors/tinymce/js/tinymce/plugins/visualchars/plugin.min.js|7060 -./backoffice/vendors/tinymce/js/tinymce/plugins/wordcount/plugin.min.js|13186 -./backoffice/vendors/tinymce/js/tinymce/skins/content/dark/content.min.css|1082 -./backoffice/vendors/tinymce/js/tinymce/skins/content/default/content.min.css|982 -./backoffice/vendors/tinymce/js/tinymce/skins/content/document/content.min.css|1040 -./backoffice/vendors/tinymce/js/tinymce/skins/content/writer/content.min.css|978 -./backoffice/vendors/tinymce/js/tinymce/skins/ui/oxide/content.inline.min.css|18087 -./backoffice/vendors/tinymce/js/tinymce/skins/ui/oxide/content.min.css|17883 -./backoffice/vendors/tinymce/js/tinymce/skins/ui/oxide/content.mobile.min.css|544 -./backoffice/vendors/tinymce/js/tinymce/skins/ui/oxide-dark/content.inline.min.css|18087 -./backoffice/vendors/tinymce/js/tinymce/skins/ui/oxide-dark/content.min.css|17510 -./backoffice/vendors/tinymce/js/tinymce/skins/ui/oxide-dark/content.mobile.min.css|544 -./backoffice/vendors/tinymce/js/tinymce/skins/ui/oxide-dark/fonts/tinymce-mobile.woff|4624 -./backoffice/vendors/tinymce/js/tinymce/skins/ui/oxide-dark/skin.min.css|52080 -./backoffice/vendors/tinymce/js/tinymce/skins/ui/oxide-dark/skin.mobile.min.css|21004 -./backoffice/vendors/tinymce/js/tinymce/skins/ui/oxide/fonts/tinymce-mobile.woff|4624 -./backoffice/vendors/tinymce/js/tinymce/skins/ui/oxide/skin.min.css|52178 -./backoffice/vendors/tinymce/js/tinymce/skins/ui/oxide/skin.mobile.min.css|21004 -./backoffice/vendors/tinymce/js/tinymce/themes/mobile/theme.min.js|179424 -./backoffice/vendors/tinymce/js/tinymce/themes/silver/theme.min.js|385268 -./backoffice/vendors/tinymce/js/tinymce/tinymce.min.js|438407 -./css/site.css|181 -./css/w3pro.css|26847 -./.gitignore|74 -./.htaccess|277 +./app/data/.htaccess|169 +./app/data/mail/body/user_forgotpasswd.tt|422 +./app/data/mail/body/user_registration.tt|730 +./app/data/mail/mail.tt|709 +./app/data/reports/pot/pot_period.conf|259 +./app/data/reports/pot/pot_period.footer.tt|1381 +./app/data/reports/pot/pot_period.header.tt|1070 +./app/data/reports/pot/pot_period.tt|4181 +./app/data/reports/pot/pot_staffmember_period.conf|255 +./app/data/reports/pot/pot_staffmember_period.footer.tt|1411 +./app/data/reports/pot/pot_staffmember_period.header.tt|1085 +./app/data/reports/pot/pot_staffmember_period/pot.ttf|1372 +./app/data/reports/pot/pot_staffmember_period/pot.ttf.b64.txt|1869 +./app/data/reports/pot/pot_staffmember_period.tt|10495 +./app/data/schemata/defaultcompany.schema.sql|57244 +./app/data/schemata/.htaccess|167 +./app/db.cgi|11140 +./app/.htaccess|300 +./app/index.cgi|4689 +./app/lib/dksconfig.pm|1266 +./app/lib/dksdb.pm|10878 +./app/lib/.htaccess|169 +./app/lib/pdfreport.pm|4213 +./app/lib/perl5/Business/Tax/VAT/Validation.pm|14797 +./app/lib/perl5/CGI/Cookie.pm|6599 +./app/lib/perl5/CGI/File/Temp.pm|969 +./app/lib/perl5/CGI.pm|125242 +./app/lib/perl5/CGI/Util.pm|10881 +./app/lib/perl5/DBD/PgPP.pm|48674 +./app/lib/perl5/Devel/Cycle.pm|13667 +./app/lib/perl5/Digest/SHA/PurePerl.pm|46933 +./app/lib/perl5/Font/TTF/AATKern.pm|2958 +./app/lib/perl5/Font/TTF/AATutils.pm|23626 +./app/lib/perl5/Font/TTF/Anchor.pm|4911 +./app/lib/perl5/Font/TTF/Bsln.pm|3806 +./app/lib/perl5/Font/TTF/Changes_old.txt|2223 +./app/lib/perl5/Font/TTF/Cmap.pm|24487 +./app/lib/perl5/Font/TTF/Coverage.pm|8579 +./app/lib/perl5/Font/TTF/Cvt_.pm|1431 +./app/lib/perl5/Font/TTF/Delta.pm|3470 +./app/lib/perl5/Font/TTF/DSIG.pm|2020 +./app/lib/perl5/Font/TTF/Dumper.pm|2618 +./app/lib/perl5/Font/TTF/EBDT.pm|7328 +./app/lib/perl5/Font/TTF/EBLC.pm|6456 +./app/lib/perl5/Font/TTF/Fdsc.pm|2234 +./app/lib/perl5/Font/TTF/Feat.pm|4547 +./app/lib/perl5/Font/TTF/Features/Cvar.pm|3021 +./app/lib/perl5/Font/TTF/Features/Size.pm|1996 +./app/lib/perl5/Font/TTF/Features/Sset.pm|1752 +./app/lib/perl5/Font/TTF/Fmtx.pm|2002 +./app/lib/perl5/Font/TTF/Font.pm|29765 +./app/lib/perl5/Font/TTF/Fpgm.pm|1703 +./app/lib/perl5/Font/TTF/GDEF.pm|13967 +./app/lib/perl5/Font/TTF/Glat.pm|3507 +./app/lib/perl5/Font/TTF/Gloc.pm|2625 +./app/lib/perl5/Font/TTF/Glyf.pm|3769 +./app/lib/perl5/Font/TTF/Glyph.pm|25861 +./app/lib/perl5/Font/TTF/GPOS.pm|21238 +./app/lib/perl5/Font/TTF/GrFeat.pm|8525 +./app/lib/perl5/Font/TTF/GSUB.pm|8843 +./app/lib/perl5/Font/TTF/Hdmx.pm|3195 +./app/lib/perl5/Font/TTF/Head.pm|5984 +./app/lib/perl5/Font/TTF/Hhea.pm|3626 +./app/lib/perl5/Font/TTF/Hmtx.pm|4724 +./app/lib/perl5/Font/TTF/Kern/ClassArray.pm|3255 +./app/lib/perl5/Font/TTF/Kern/CompactClassArray.pm|1293 +./app/lib/perl5/Font/TTF/Kern/OrderedList.pm|2141 +./app/lib/perl5/Font/TTF/Kern.pm|8705 +./app/lib/perl5/Font/TTF/Kern/StateTable.pm|3034 +./app/lib/perl5/Font/TTF/Kern/Subtable.pm|3710 +./app/lib/perl5/Font/TTF/Loca.pm|4837 +./app/lib/perl5/Font/TTF/LTSH.pm|1705 +./app/lib/perl5/Font/TTF/Manual.pod|9180 +./app/lib/perl5/Font/TTF/Maxp.pm|4268 +./app/lib/perl5/Font/TTF/Mort/Chain.pm|5140 +./app/lib/perl5/Font/TTF/Mort/Contextual.pm|3975 +./app/lib/perl5/Font/TTF/Mort/Insertion.pm|4576 +./app/lib/perl5/Font/TTF/Mort/Ligature.pm|7568 +./app/lib/perl5/Font/TTF/Mort/Noncontextual.pm|1896 +./app/lib/perl5/Font/TTF/Mort.pm|2154 +./app/lib/perl5/Font/TTF/Mort/Rearrangement.pm|2392 +./app/lib/perl5/Font/TTF/Mort/Subtable.pm|4659 +./app/lib/perl5/Font/TTF/Name.pm|28443 +./app/lib/perl5/Font/TTF/OldCmap.pm|9888 +./app/lib/perl5/Font/TTF/OldMort.pm|26139 +./app/lib/perl5/Font/TTF/OS_2.pm|38981 +./app/lib/perl5/Font/TTF/OTTags.pm|43967 +./app/lib/perl5/Font/TTF/PCLT.pm|2552 +./app/lib/perl5/Font/TTF.pm|2248 +./app/lib/perl5/Font/TTF/Post.pm|9754 +./app/lib/perl5/Font/TTF/Prep.pm|1645 +./app/lib/perl5/Font/TTF/Prop.pm|3556 +./app/lib/perl5/Font/TTF/PSNames.pm|135961 +./app/lib/perl5/Font/TTF/Segarr.pm|9758 +./app/lib/perl5/Font/TTF/Silf.pm|28913 +./app/lib/perl5/Font/TTF/Sill.pm|3272 +./app/lib/perl5/Font/TTF/Table.pm|11415 +./app/lib/perl5/Font/TTF/Ttc.pm|3967 +./app/lib/perl5/Font/TTF/Ttopen.pm|45301 +./app/lib/perl5/Font/TTF/Useall.pm|2215 +./app/lib/perl5/Font/TTF/Utils.pm|18957 +./app/lib/perl5/Font/TTF/Vhea.pm|3655 +./app/lib/perl5/Font/TTF/Vmtx.pm|1702 +./app/lib/perl5/Font/TTF/Win32.pm|1111 +./app/lib/perl5/Font/TTF/Woff/MetaData.pm|548 +./app/lib/perl5/Font/TTF/Woff.pm|1117 +./app/lib/perl5/Font/TTF/Woff/PrivateData.pm|559 +./app/lib/perl5/Font/TTF/XMLparse.pm|5623 +./app/lib/perl5/Image/Size.pm|46926 +./app/lib/perl5/lib/core/only.pm|3229 +./app/lib/perl5/local/lib.pm|41186 +./app/lib/perl5/Math/Base/Convert/Bases.pm|5661 +./app/lib/perl5/Math/Base/Convert/Bitmaps.pm|22263 +./app/lib/perl5/Math/Base/Convert/CalcPP.pm|5422 +./app/lib/perl5/Math/Base/Convert.pm|16834 +./app/lib/perl5/Math/Base/Convert/Shortcuts.pm|11553 +./app/lib/perl5/MIME/Type.pm|2911 +./app/lib/perl5/MIME/Type.pod|6361 +./app/lib/perl5/MIME/types.db|121715 +./app/lib/perl5/MIME/Types.pm|7043 +./app/lib/perl5/MIME/Types.pod|8611 +./app/lib/perl5/MLDBM.pm|16594 +./app/lib/perl5/MLDBM/Serializer/Data/Dumper.pm|2043 +./app/lib/perl5/MLDBM/Serializer/FreezeThaw.pm|351 +./app/lib/perl5/MLDBM/Serializer/Storable.pm|922 +./app/lib/perl5/MojoX/MIME/Types.pm|1468 +./app/lib/perl5/MojoX/MIME/Types.pod|5933 +./app/lib/perl5/PDF/API2/Annotation.pm|10305 +./app/lib/perl5/PDF/API2/Basic/PDF/Array.pm|2863 +./app/lib/perl5/PDF/API2/Basic/PDF/Bool.pm|1015 +./app/lib/perl5/PDF/API2/Basic/PDF/Dict.pm|10332 +./app/lib/perl5/PDF/API2/Basic/PDF/File.pm|43842 +./app/lib/perl5/PDF/API2/Basic/PDF/Filter/ASCII85Decode.pm|2399 +./app/lib/perl5/PDF/API2/Basic/PDF/Filter/ASCIIHexDecode.pm|1513 +./app/lib/perl5/PDF/API2/Basic/PDF/Filter/FlateDecode.pm|4427 +./app/lib/perl5/PDF/API2/Basic/PDF/Filter/LZWDecode.pm|3122 +./app/lib/perl5/PDF/API2/Basic/PDF/Filter.pm|3378 +./app/lib/perl5/PDF/API2/Basic/PDF/Filter/RunLengthDecode.pm|3315 +./app/lib/perl5/PDF/API2/Basic/PDF/Literal.pm|2201 +./app/lib/perl5/PDF/API2/Basic/PDF/Name.pm|3001 +./app/lib/perl5/PDF/API2/Basic/PDF/Null.pm|1562 +./app/lib/perl5/PDF/API2/Basic/PDF/Number.pm|973 +./app/lib/perl5/PDF/API2/Basic/PDF/Objind.pm|7440 +./app/lib/perl5/PDF/API2/Basic/PDF/Page.pm|3285 +./app/lib/perl5/PDF/API2/Basic/PDF/Pages.pm|10886 +./app/lib/perl5/PDF/API2/Basic/PDF/String.pm|5347 +./app/lib/perl5/PDF/API2/Basic/PDF/Utils.pm|2627 +./app/lib/perl5/PDF/API2/Content.pm|53753 +./app/lib/perl5/PDF/API2/Content/Text.pm|248 +./app/lib/perl5/PDF/API2/Lite.pm|11649 +./app/lib/perl5/PDF/API2/Matrix.pm|1541 +./app/lib/perl5/PDF/API2/NamedDestination.pm|7159 +./app/lib/perl5/PDF/API2/Outline.pm|9690 +./app/lib/perl5/PDF/API2/Outlines.pm|306 +./app/lib/perl5/PDF/API2/Page.pm|8994 +./app/lib/perl5/PDF/API2.pm|64581 +./app/lib/perl5/PDF/API2/Resource/BaseFont.pm|17514 +./app/lib/perl5/PDF/API2/Resource/CIDFont/CJKFont/adobemingstdlightacro.data|247405 +./app/lib/perl5/PDF/API2/Resource/CIDFont/CJKFont/adobemyungjostdmediumacro.data|278186 +./app/lib/perl5/PDF/API2/Resource/CIDFont/CJKFont/adobesongstdlightacro.data|772180 +./app/lib/perl5/PDF/API2/Resource/CIDFont/CJKFont/kozgopromediumacro.data|21508 +./app/lib/perl5/PDF/API2/Resource/CIDFont/CJKFont/kozminproregularacro.data|21556 +./app/lib/perl5/PDF/API2/Resource/CIDFont/CJKFont.pm|9706 +./app/lib/perl5/PDF/API2/Resource/CIDFont/CMap/japanese.cmap|4629356 +./app/lib/perl5/PDF/API2/Resource/CIDFont/CMap/korean.cmap|2817142 +./app/lib/perl5/PDF/API2/Resource/CIDFont/CMap/simplified.cmap|4845677 +./app/lib/perl5/PDF/API2/Resource/CIDFont/CMap/traditional.cmap|3431298 +./app/lib/perl5/PDF/API2/Resource/CIDFont.pm|7527 +./app/lib/perl5/PDF/API2/Resource/CIDFont/TrueType/FontFile.pm|19532 +./app/lib/perl5/PDF/API2/Resource/CIDFont/TrueType.pm|4265 +./app/lib/perl5/PDF/API2/Resource/ColorSpace/DeviceN.pm|2650 +./app/lib/perl5/PDF/API2/Resource/ColorSpace/Indexed/ACTFile.pm|1669 +./app/lib/perl5/PDF/API2/Resource/ColorSpace/Indexed/Hue.pm|1393 +./app/lib/perl5/PDF/API2/Resource/ColorSpace/Indexed.pm|2916 +./app/lib/perl5/PDF/API2/Resource/ColorSpace/Indexed/WebColor.pm|1891 +./app/lib/perl5/PDF/API2/Resource/ColorSpace.pm|1557 +./app/lib/perl5/PDF/API2/Resource/ColorSpace/Separation.pm|4036 +./app/lib/perl5/PDF/API2/Resource/Colors.pm|29469 +./app/lib/perl5/PDF/API2/Resource/ExtGState.pm|5842 +./app/lib/perl5/PDF/API2/Resource/Font/BdFont.pm|8220 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/bankgothic.pm|34011 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/courierboldoblique.pm|34150 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/courierbold.pm|34133 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/courieroblique.pm|34139 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/courier.pm|44056 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/georgiabolditalic.pm|54809 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/georgiabold.pm|54793 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/georgiaitalic.pm|54794 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/georgia.pm|54780 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/helveticaboldoblique.pm|34126 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/helveticabold.pm|34139 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/helveticaoblique.pm|34116 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/helvetica.pm|34128 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont.pm|9713 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/symbol.pm|31542 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/timesbolditalic.pm|34116 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/timesbold.pm|34130 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/timesitalic.pm|34153 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/timesroman.pm|30061 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/trebuchetbolditalic.pm|41135 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/trebuchetbold.pm|37639 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/trebuchetitalic.pm|41122 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/trebuchet.pm|37625 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/verdanabolditalic.pm|53911 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/verdanabold.pm|53894 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/verdanaitalic.pm|53837 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/verdana.pm|53641 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/webdings.pm|37901 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/wingdings.pm|33783 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/zapfdingbats.pm|25945 +./app/lib/perl5/PDF/API2/Resource/Font.pm|5623 +./app/lib/perl5/PDF/API2/Resource/Font/Postscript.pm|14378 +./app/lib/perl5/PDF/API2/Resource/Font/SynFont.pm|7683 +./app/lib/perl5/PDF/API2/Resource/Glyphs.pm|280116 +./app/lib/perl5/PDF/API2/Resource/PaperSizes.pm|1500 +./app/lib/perl5/PDF/API2/Resource/Pattern.pm|281 +./app/lib/perl5/PDF/API2/Resource.pm|1481 +./app/lib/perl5/PDF/API2/Resource/Shading.pm|137 +./app/lib/perl5/PDF/API2/Resource/UniFont.pm|6466 +./app/lib/perl5/PDF/API2/Resource/uniglyph.txt|550967 +./app/lib/perl5/PDF/API2/Resource/XObject/Form/BarCode/codabar.pm|788 +./app/lib/perl5/PDF/API2/Resource/XObject/Form/BarCode/code128.pm|7479 +./app/lib/perl5/PDF/API2/Resource/XObject/Form/BarCode/code3of9.pm|3537 +./app/lib/perl5/PDF/API2/Resource/XObject/Form/BarCode/ean13.pm|1834 +./app/lib/perl5/PDF/API2/Resource/XObject/Form/BarCode/int2of5.pm|1434 +./app/lib/perl5/PDF/API2/Resource/XObject/Form/BarCode.pm|5650 +./app/lib/perl5/PDF/API2/Resource/XObject/Form/Hybrid.pm|1645 +./app/lib/perl5/PDF/API2/Resource/XObject/Form.pm|1790 +./app/lib/perl5/PDF/API2/Resource/XObject/Image/GD.pm|1484 +./app/lib/perl5/PDF/API2/Resource/XObject/Image/GIF.pm|6387 +./app/lib/perl5/PDF/API2/Resource/XObject/Image/JPEG.pm|2189 +./app/lib/perl5/PDF/API2/Resource/XObject/Image.pm|2691 +./app/lib/perl5/PDF/API2/Resource/XObject/Image/PNG.pm|26450 +./app/lib/perl5/PDF/API2/Resource/XObject/Image/PNM.pm|4398 +./app/lib/perl5/PDF/API2/Resource/XObject/Image/TIFF/File.pm|9874 +./app/lib/perl5/PDF/API2/Resource/XObject/Image/TIFF.pm|8903 +./app/lib/perl5/PDF/API2/Resource/XObject.pm|778 +./app/lib/perl5/PDF/API2/UniWrap.pm|9341 +./app/lib/perl5/PDF/API2/Util.pm|17014 +./app/lib/perl5/PDF/API2/Win32.pm|2104 +./app/lib/perl5/PDF/Table.pm|55410 +./app/lib/perl5/POD2/DE/local/lib.pod|16690 +./app/lib/perl5/POD2/PT_BR/local/lib.pod|16094 +./app/lib/perl5/SQL/Dialects/ANSI.pm|3724 +./app/lib/perl5/SQL/Dialects/AnyData.pm|2092 +./app/lib/perl5/SQL/Dialects/CSV.pm|1962 +./app/lib/perl5/SQL/Dialects/Role.pm|2560 +./app/lib/perl5/SQL/Eval.pm|16638 +./app/lib/perl5/SQL/Parser.pm|102983 +./app/lib/perl5/SQL/Statement/Embed.pod|11893 +./app/lib/perl5/SQL/Statement/Function.pm|10791 +./app/lib/perl5/SQL/Statement/Functions.pm|34973 +./app/lib/perl5/SQL/Statement/GetInfo.pm|27647 +./app/lib/perl5/SQL/Statement/Operation.pm|23477 +./app/lib/perl5/SQL/Statement/Placeholder.pm|2246 +./app/lib/perl5/SQL/Statement.pm|80949 +./app/lib/perl5/SQL/Statement/RAM.pm|6037 +./app/lib/perl5/SQL/Statement/Roadmap.pod|8701 +./app/lib/perl5/SQL/Statement/Structure.pod|13001 +./app/lib/perl5/SQL/Statement/Syntax.pod|19784 +./app/lib/perl5/SQL/Statement/TermFactory.pm|6771 +./app/lib/perl5/SQL/Statement/Term.pm|5609 +./app/lib/perl5/SQL/Statement/Util.pm|4310 +./app/lib/perl5/Sub/Uplevel.pm|18092 +./app/lib/perl5/Template/Base.pm|7569 +./app/lib/perl5/Template/Config.pm|13621 +./app/lib/perl5/Template/Constants.pm|9747 +./app/lib/perl5/Template/Context.pm|53723 +./app/lib/perl5/Template/DBI.pod|1534 +./app/lib/perl5/Template/Directive.pm|29394 +./app/lib/perl5/Template/Document.pm|16569 +./app/lib/perl5/Template/Exception.pm|6402 +./app/lib/perl5/Template/FAQ.pod|8809 +./app/lib/perl5/Template/Filters.pm|26123 +./app/lib/perl5/Template/Grammar.pm|98751 +./app/lib/perl5/Template/Iterator.pm|13751 +./app/lib/perl5/Template/Manual/Config.pod|64128 +./app/lib/perl5/Template/Manual/Credits.pod|4624 +./app/lib/perl5/Template/Manual/Directives.pod|61980 +./app/lib/perl5/Template/Manual/Filters.pod|14138 +./app/lib/perl5/Template/Manual/Internals.pod|18353 +./app/lib/perl5/Template/Manual/Intro.pod|9692 +./app/lib/perl5/Template/Manual/Plugins.pod|9110 +./app/lib/perl5/Template/Manual.pod|2433 +./app/lib/perl5/Template/Manual/Syntax.pod|9181 +./app/lib/perl5/Template/Manual/Variables.pod|25025 +./app/lib/perl5/Template/Manual/Views.pod|19264 +./app/lib/perl5/Template/Manual/VMethods.pod|20701 +./app/lib/perl5/Template/Modules.pod|5503 +./app/lib/perl5/Template/Namespace/Constants.pm|4460 +./app/lib/perl5/Template/Parser.pm|41281 +./app/lib/perl5/Template/Plugin/Assert.pm|3504 +./app/lib/perl5/Template/Plugin/CGI.pm|3087 +./app/lib/perl5/Template/Plugin/Datafile.pm|4243 +./app/lib/perl5/Template/Plugin/Date.pm|10698 +./app/lib/perl5/Template/Plugin/DBI.pm|31354 +./app/lib/perl5/Template/Plugin/Directory.pm|11220 +./app/lib/perl5/Template/Plugin/Dumper.pm|3607 +./app/lib/perl5/Template/Plugin/File.pm|11259 +./app/lib/perl5/Template/Plugin/Filter.pm|10074 +./app/lib/perl5/Template/Plugin/Format.pm|1835 +./app/lib/perl5/Template/Plugin/HTML.pm|6024 +./app/lib/perl5/Template/Plugin/Image.pm|11730 +./app/lib/perl5/Template/Plugin/Iterator.pm|2003 +./app/lib/perl5/Template/Plugin/Math.pm|4089 +./app/lib/perl5/Template/Plugin.pm|10700 +./app/lib/perl5/Template/Plugin/Pod.pm|1652 +./app/lib/perl5/Template/Plugin/Procedural.pm|3678 +./app/lib/perl5/Template/Plugin/Scalar.pm|3769 +./app/lib/perl5/Template/Plugins.pm|15187 +./app/lib/perl5/Template/Plugin/String.pm|18167 +./app/lib/perl5/Template/Plugin/Table.pm|12705 +./app/lib/perl5/Template/Plugin/URL.pm|5841 +./app/lib/perl5/Template/Plugin/View.pm|2476 +./app/lib/perl5/Template/Plugin/Wrap.pm|3271 +./app/lib/perl5/Template.pm|25037 +./app/lib/perl5/Template/Provider.pm|48074 +./app/lib/perl5/Template/Service.pm|18567 +./app/lib/perl5/Template/Stash/Context.pm|27389 +./app/lib/perl5/Template/Stash.pm|30224 +./app/lib/perl5/Template/Stash/XS.pm|3351 +./app/lib/perl5/Template/Test.pm|22242 +./app/lib/perl5/Template/Toolkit.pm|5711 +./app/lib/perl5/Template/Tools.pod|1527 +./app/lib/perl5/Template/Tools/tpage.pod|1640 +./app/lib/perl5/Template/Tools/ttree.pod|10568 +./app/lib/perl5/Template/Tutorial/Datafile.pod|14388 +./app/lib/perl5/Template/Tutorial.pod|1043 +./app/lib/perl5/Template/Tutorial/Web.pod|26939 +./app/lib/perl5/Template/View.pm|24090 +./app/lib/perl5/Template/VMethods.pm|15499 +./app/lib/perl5/Test/Deep/All.pm|702 +./app/lib/perl5/Test/Deep/Any.pm|908 +./app/lib/perl5/Test/Deep/ArrayEach.pm|517 +./app/lib/perl5/Test/Deep/ArrayElementsOnly.pm|677 +./app/lib/perl5/Test/Deep/ArrayLengthOnly.pm|654 +./app/lib/perl5/Test/Deep/ArrayLength.pm|374 +./app/lib/perl5/Test/Deep/Array.pm|477 +./app/lib/perl5/Test/Deep/Blessed.pm|564 +./app/lib/perl5/Test/Deep/Boolean.pm|558 +./app/lib/perl5/Test/Deep/Cache.pm|1032 +./app/lib/perl5/Test/Deep/Cache/Simple.pm|1205 +./app/lib/perl5/Test/Deep/Class.pm|363 +./app/lib/perl5/Test/Deep/Cmp.pm|1153 +./app/lib/perl5/Test/Deep/Code.pm|705 +./app/lib/perl5/Test/Deep/HashEach.pm|326 +./app/lib/perl5/Test/Deep/HashElements.pm|1267 +./app/lib/perl5/Test/Deep/HashKeysOnly.pm|1541 +./app/lib/perl5/Test/Deep/HashKeys.pm|999 +./app/lib/perl5/Test/Deep/Hash.pm|1413 +./app/lib/perl5/Test/Deep/Ignore.pm|186 +./app/lib/perl5/Test/Deep/Isa.pm|538 +./app/lib/perl5/Test/Deep/ListMethods.pm|288 +./app/lib/perl5/Test/Deep/Methods.pm|1312 +./app/lib/perl5/Test/Deep/MM.pm|922 +./app/lib/perl5/Test/Deep/None.pm|869 +./app/lib/perl5/Test/Deep/NoTest.pm|766 +./app/lib/perl5/Test/Deep/Number.pm|1088 +./app/lib/perl5/Test/Deep/Obj.pm|522 +./app/lib/perl5/Test/Deep.pm|49727 +./app/lib/perl5/Test/Deep/Ref.pm|490 +./app/lib/perl5/Test/Deep/RefType.pm|547 +./app/lib/perl5/Test/Deep/RegexpMatches.pm|662 +./app/lib/perl5/Test/Deep/RegexpOnly.pm|521 +./app/lib/perl5/Test/Deep/Regexp.pm|1408 +./app/lib/perl5/Test/Deep/RegexpRefOnly.pm|423 +./app/lib/perl5/Test/Deep/RegexpRef.pm|639 +./app/lib/perl5/Test/Deep/RegexpVersion.pm|280 +./app/lib/perl5/Test/Deep/ScalarRefOnly.pm|384 +./app/lib/perl5/Test/Deep/ScalarRef.pm|432 +./app/lib/perl5/Test/Deep/Set.pm|3696 +./app/lib/perl5/Test/Deep/Shallow.pm|597 +./app/lib/perl5/Test/Deep/Stack.pm|1076 +./app/lib/perl5/Test/Deep/String.pm|369 +./app/lib/perl5/Test/Exception.pm|15465 +./app/lib/perl5/Test/Memory/Cycle.pm|7390 +./app/lib/perl5/Text/Unidecode.pm|28162 +./app/lib/perl5/Text/Unidecode/x00.pm|3903 +./app/lib/perl5/Text/Unidecode/x01.pm|1430 +./app/lib/perl5/Text/Unidecode/x02.pm|2566 +./app/lib/perl5/Text/Unidecode/x03.pm|1696 +./app/lib/perl5/Text/Unidecode/x04.pm|1659 +./app/lib/perl5/Text/Unidecode/x05.pm|1598 +./app/lib/perl5/Text/Unidecode/x06.pm|1537 +./app/lib/perl5/Text/Unidecode/x07.pm|1696 +./app/lib/perl5/Text/Unidecode/x08.pm|134 +./app/lib/perl5/Text/Unidecode/x09.pm|1631 +./app/lib/perl5/Text/Unidecode/x0a.pm|1650 +./app/lib/perl5/Text/Unidecode/x0b.pm|1671 +./app/lib/perl5/Text/Unidecode/x0c.pm|1635 +./app/lib/perl5/Text/Unidecode/x0d.pm|1650 +./app/lib/perl5/Text/Unidecode/x0e.pm|1638 +./app/lib/perl5/Text/Unidecode/x0f.pm|1658 +./app/lib/perl5/Text/Unidecode/x10.pm|1676 +./app/lib/perl5/Text/Unidecode/x11.pm|1746 +./app/lib/perl5/Text/Unidecode/x12.pm|1887 +./app/lib/perl5/Text/Unidecode/x13.pm|1803 +./app/lib/perl5/Text/Unidecode/x14.pm|1853 +./app/lib/perl5/Text/Unidecode/x15.pm|1877 +./app/lib/perl5/Text/Unidecode/x16.pm|1677 +./app/lib/perl5/Text/Unidecode/x17.pm|1734 +./app/lib/perl5/Text/Unidecode/x18.pm|1646 +./app/lib/perl5/Text/Unidecode/x19.pm|1889 +./app/lib/perl5/Text/Unidecode/x1a.pm|1889 +./app/lib/perl5/Text/Unidecode/x1b.pm|1889 +./app/lib/perl5/Text/Unidecode/x1c.pm|1889 +./app/lib/perl5/Text/Unidecode/x1d.pm|1889 +./app/lib/perl5/Text/Unidecode/x1e.pm|2269 +./app/lib/perl5/Text/Unidecode/x1f.pm|1444 +./app/lib/perl5/Text/Unidecode/x20.pm|1707 +./app/lib/perl5/Text/Unidecode/x21.pm|1708 +./app/lib/perl5/Text/Unidecode/x22.pm|1871 +./app/lib/perl5/Text/Unidecode/x23.pm|1871 +./app/lib/perl5/Text/Unidecode/x24.pm|1304 +./app/lib/perl5/Text/Unidecode/x25.pm|1847 +./app/lib/perl5/Text/Unidecode/x26.pm|1544 +./app/lib/perl5/Text/Unidecode/x27.pm|1310 +./app/lib/perl5/Text/Unidecode/x28.pm|3056 +./app/lib/perl5/Text/Unidecode/x29.pm|134 +./app/lib/perl5/Text/Unidecode/x2a.pm|134 +./app/lib/perl5/Text/Unidecode/x2b.pm|134 +./app/lib/perl5/Text/Unidecode/x2c.pm|134 +./app/lib/perl5/Text/Unidecode/x2d.pm|134 +./app/lib/perl5/Text/Unidecode/x2e.pm|2216 +./app/lib/perl5/Text/Unidecode/x2f.pm|2549 +./app/lib/perl5/Text/Unidecode/x30.pm|1654 +./app/lib/perl5/Text/Unidecode/x31.pm|1664 +./app/lib/perl5/Text/Unidecode/x32.pm|2326 +./app/lib/perl5/Text/Unidecode/x33.pm|2121 +./app/lib/perl5/Text/Unidecode/x34.pm|134 +./app/lib/perl5/Text/Unidecode/x35.pm|134 +./app/lib/perl5/Text/Unidecode/x36.pm|134 +./app/lib/perl5/Text/Unidecode/x37.pm|134 +./app/lib/perl5/Text/Unidecode/x38.pm|134 +./app/lib/perl5/Text/Unidecode/x39.pm|134 +./app/lib/perl5/Text/Unidecode/x3a.pm|134 +./app/lib/perl5/Text/Unidecode/x3b.pm|134 +./app/lib/perl5/Text/Unidecode/x3c.pm|134 +./app/lib/perl5/Text/Unidecode/x3d.pm|134 +./app/lib/perl5/Text/Unidecode/x3e.pm|134 +./app/lib/perl5/Text/Unidecode/x3f.pm|134 +./app/lib/perl5/Text/Unidecode/x40.pm|134 +./app/lib/perl5/Text/Unidecode/x41.pm|134 +./app/lib/perl5/Text/Unidecode/x42.pm|134 +./app/lib/perl5/Text/Unidecode/x43.pm|134 +./app/lib/perl5/Text/Unidecode/x44.pm|134 +./app/lib/perl5/Text/Unidecode/x45.pm|134 +./app/lib/perl5/Text/Unidecode/x46.pm|134 +./app/lib/perl5/Text/Unidecode/x47.pm|134 +./app/lib/perl5/Text/Unidecode/x48.pm|134 +./app/lib/perl5/Text/Unidecode/x49.pm|134 +./app/lib/perl5/Text/Unidecode/x4a.pm|134 +./app/lib/perl5/Text/Unidecode/x4b.pm|134 +./app/lib/perl5/Text/Unidecode/x4c.pm|134 +./app/lib/perl5/Text/Unidecode/x4d.pm|2417 +./app/lib/perl5/Text/Unidecode/x4e.pm|2186 +./app/lib/perl5/Text/Unidecode/x4f.pm|2165 +./app/lib/perl5/Text/Unidecode/x50.pm|2236 +./app/lib/perl5/Text/Unidecode/x51.pm|2237 +./app/lib/perl5/Text/Unidecode/x52.pm|2202 +./app/lib/perl5/Text/Unidecode/x53.pm|2172 +./app/lib/perl5/Text/Unidecode/x54.pm|2137 +./app/lib/perl5/Text/Unidecode/x55.pm|2151 +./app/lib/perl5/Text/Unidecode/x56.pm|2171 +./app/lib/perl5/Text/Unidecode/x57.pm|2183 +./app/lib/perl5/Text/Unidecode/x58.pm|2240 +./app/lib/perl5/Text/Unidecode/x59.pm|2196 +./app/lib/perl5/Text/Unidecode/x5a.pm|2188 +./app/lib/perl5/Text/Unidecode/x5b.pm|2218 +./app/lib/perl5/Text/Unidecode/x5c.pm|2170 +./app/lib/perl5/Text/Unidecode/x5d.pm|2228 +./app/lib/perl5/Text/Unidecode/x5e.pm|2222 +./app/lib/perl5/Text/Unidecode/x5f.pm|2212 +./app/lib/perl5/Text/Unidecode/x60.pm|2192 +./app/lib/perl5/Text/Unidecode/x61.pm|2216 +./app/lib/perl5/Text/Unidecode/x62.pm|2172 +./app/lib/perl5/Text/Unidecode/x63.pm|2212 +./app/lib/perl5/Text/Unidecode/x64.pm|2207 +./app/lib/perl5/Text/Unidecode/x65.pm|2190 +./app/lib/perl5/Text/Unidecode/x66.pm|2227 +./app/lib/perl5/Text/Unidecode/x67.pm|2191 +./app/lib/perl5/Text/Unidecode/x68.pm|2226 +./app/lib/perl5/Text/Unidecode/x69.pm|2229 +./app/lib/perl5/Text/Unidecode/x6a.pm|2234 +./app/lib/perl5/Text/Unidecode/x6b.pm|2164 +./app/lib/perl5/Text/Unidecode/x6c.pm|2197 +./app/lib/perl5/Text/Unidecode/x6d.pm|2203 +./app/lib/perl5/Text/Unidecode/x6e.pm|2198 +./app/lib/perl5/Text/Unidecode/x6f.pm|2210 +./app/lib/perl5/Text/Unidecode/x70.pm|2257 +./app/lib/perl5/Text/Unidecode/x71.pm|2244 +./app/lib/perl5/Text/Unidecode/x72.pm|2221 +./app/lib/perl5/Text/Unidecode/x73.pm|2198 +./app/lib/perl5/Text/Unidecode/x74.pm|2254 +./app/lib/perl5/Text/Unidecode/x75.pm|2223 +./app/lib/perl5/Text/Unidecode/x76.pm|2191 +./app/lib/perl5/Text/Unidecode/x77.pm|2225 +./app/lib/perl5/Text/Unidecode/x78.pm|2214 +./app/lib/perl5/Text/Unidecode/x79.pm|2162 +./app/lib/perl5/Text/Unidecode/x7a.pm|2227 +./app/lib/perl5/Text/Unidecode/x7b.pm|2219 +./app/lib/perl5/Text/Unidecode/x7c.pm|2227 +./app/lib/perl5/Text/Unidecode/x7d.pm|2226 +./app/lib/perl5/Text/Unidecode/x7e.pm|2232 +./app/lib/perl5/Text/Unidecode/x7f.pm|2218 +./app/lib/perl5/Text/Unidecode/x80.pm|2207 +./app/lib/perl5/Text/Unidecode/x81.pm|2223 +./app/lib/perl5/Text/Unidecode/x82.pm|2205 +./app/lib/perl5/Text/Unidecode/x83.pm|2199 +./app/lib/perl5/Text/Unidecode/x84.pm|2210 +./app/lib/perl5/Text/Unidecode/x85.pm|2192 +./app/lib/perl5/Text/Unidecode/x86.pm|2168 +./app/lib/perl5/Text/Unidecode/x87.pm|2205 +./app/lib/perl5/Text/Unidecode/x88.pm|2199 +./app/lib/perl5/Text/Unidecode/x89.pm|2180 +./app/lib/perl5/Text/Unidecode/x8a.pm|2195 +./app/lib/perl5/Text/Unidecode/x8b.pm|2195 +./app/lib/perl5/Text/Unidecode/x8c.pm|2180 +./app/lib/perl5/Text/Unidecode/x8d.pm|2190 +./app/lib/perl5/Text/Unidecode/x8e.pm|2211 +./app/lib/perl5/Text/Unidecode/x8f.pm|2201 +./app/lib/perl5/Text/Unidecode/x90.pm|2183 +./app/lib/perl5/Text/Unidecode/x91.pm|2205 +./app/lib/perl5/Text/Unidecode/x92.pm|2200 +./app/lib/perl5/Text/Unidecode/x93.pm|2234 +./app/lib/perl5/Text/Unidecode/x94.pm|2217 +./app/lib/perl5/Text/Unidecode/x95.pm|2223 +./app/lib/perl5/Text/Unidecode/x96.pm|2160 +./app/lib/perl5/Text/Unidecode/x97.pm|2201 +./app/lib/perl5/Text/Unidecode/x98.pm|2195 +./app/lib/perl5/Text/Unidecode/x99.pm|2179 +./app/lib/perl5/Text/Unidecode/x9a.pm|2171 +./app/lib/perl5/Text/Unidecode/x9b.pm|2205 +./app/lib/perl5/Text/Unidecode/x9c.pm|2207 +./app/lib/perl5/Text/Unidecode/x9d.pm|2182 +./app/lib/perl5/Text/Unidecode/x9e.pm|2165 +./app/lib/perl5/Text/Unidecode/x9f.pm|2034 +./app/lib/perl5/Text/Unidecode/xa0.pm|1976 +./app/lib/perl5/Text/Unidecode/xa1.pm|2017 +./app/lib/perl5/Text/Unidecode/xa2.pm|2051 +./app/lib/perl5/Text/Unidecode/xa3.pm|2069 +./app/lib/perl5/Text/Unidecode/xa4.pm|1962 +./app/lib/perl5/Text/Unidecode/xa5.pm|134 +./app/lib/perl5/Text/Unidecode/xa6.pm|134 +./app/lib/perl5/Text/Unidecode/xa7.pm|134 +./app/lib/perl5/Text/Unidecode/xa8.pm|134 +./app/lib/perl5/Text/Unidecode/xa9.pm|134 +./app/lib/perl5/Text/Unidecode/xaa.pm|134 +./app/lib/perl5/Text/Unidecode/xab.pm|134 +./app/lib/perl5/Text/Unidecode/xac.pm|2257 +./app/lib/perl5/Text/Unidecode/xad.pm|2314 +./app/lib/perl5/Text/Unidecode/xae.pm|2423 +./app/lib/perl5/Text/Unidecode/xaf.pm|2560 +./app/lib/perl5/Text/Unidecode/xb0.pm|2401 +./app/lib/perl5/Text/Unidecode/xb1.pm|2294 +./app/lib/perl5/Text/Unidecode/xb2.pm|2228 +./app/lib/perl5/Text/Unidecode/xb3.pm|2289 +./app/lib/perl5/Text/Unidecode/xb4.pm|2310 +./app/lib/perl5/Text/Unidecode/xb5.pm|2467 +./app/lib/perl5/Text/Unidecode/xb6.pm|2544 +./app/lib/perl5/Text/Unidecode/xb7.pm|2381 +./app/lib/perl5/Text/Unidecode/xb8.pm|2262 +./app/lib/perl5/Text/Unidecode/xb9.pm|2252 +./app/lib/perl5/Text/Unidecode/xba.pm|2313 +./app/lib/perl5/Text/Unidecode/xbb.pm|2278 +./app/lib/perl5/Text/Unidecode/xbc.pm|2255 +./app/lib/perl5/Text/Unidecode/xbd.pm|2300 +./app/lib/perl5/Text/Unidecode/xbe.pm|2397 +./app/lib/perl5/Text/Unidecode/xbf.pm|2558 +./app/lib/perl5/Text/Unidecode/xc0.pm|2404 +./app/lib/perl5/Text/Unidecode/xc1.pm|2313 +./app/lib/perl5/Text/Unidecode/xc2.pm|2258 +./app/lib/perl5/Text/Unidecode/xc3.pm|2523 +./app/lib/perl5/Text/Unidecode/xc4.pm|2572 +./app/lib/perl5/Text/Unidecode/xc5.pm|2129 +./app/lib/perl5/Text/Unidecode/xc6.pm|2038 +./app/lib/perl5/Text/Unidecode/xc7.pm|2112 +./app/lib/perl5/Text/Unidecode/xc8.pm|2281 +./app/lib/perl5/Text/Unidecode/xc9.pm|2270 +./app/lib/perl5/Text/Unidecode/xca.pm|2555 +./app/lib/perl5/Text/Unidecode/xcb.pm|2560 +./app/lib/perl5/Text/Unidecode/xcc.pm|2297 +./app/lib/perl5/Text/Unidecode/xcd.pm|2286 +./app/lib/perl5/Text/Unidecode/xce.pm|2256 +./app/lib/perl5/Text/Unidecode/xcf.pm|2261 +./app/lib/perl5/Text/Unidecode/xd0.pm|2254 +./app/lib/perl5/Text/Unidecode/xd1.pm|2315 +./app/lib/perl5/Text/Unidecode/xd2.pm|2272 +./app/lib/perl5/Text/Unidecode/xd3.pm|2253 +./app/lib/perl5/Text/Unidecode/xd4.pm|2306 +./app/lib/perl5/Text/Unidecode/xd5.pm|2228 +./app/lib/perl5/Text/Unidecode/xd6.pm|2313 +./app/lib/perl5/Text/Unidecode/xd7.pm|2084 +./app/lib/perl5/Text/Unidecode/xd8.pm|134 +./app/lib/perl5/Text/Unidecode/xd9.pm|134 +./app/lib/perl5/Text/Unidecode/xda.pm|134 +./app/lib/perl5/Text/Unidecode/xdb.pm|134 +./app/lib/perl5/Text/Unidecode/xdc.pm|134 +./app/lib/perl5/Text/Unidecode/xdd.pm|134 +./app/lib/perl5/Text/Unidecode/xde.pm|134 +./app/lib/perl5/Text/Unidecode/xdf.pm|134 +./app/lib/perl5/Text/Unidecode/xe0.pm|134 +./app/lib/perl5/Text/Unidecode/xe1.pm|134 +./app/lib/perl5/Text/Unidecode/xe2.pm|134 +./app/lib/perl5/Text/Unidecode/xe3.pm|134 +./app/lib/perl5/Text/Unidecode/xe4.pm|134 +./app/lib/perl5/Text/Unidecode/xe5.pm|134 +./app/lib/perl5/Text/Unidecode/xe6.pm|134 +./app/lib/perl5/Text/Unidecode/xe7.pm|134 +./app/lib/perl5/Text/Unidecode/xe8.pm|134 +./app/lib/perl5/Text/Unidecode/xe9.pm|134 +./app/lib/perl5/Text/Unidecode/xea.pm|134 +./app/lib/perl5/Text/Unidecode/xeb.pm|134 +./app/lib/perl5/Text/Unidecode/xec.pm|134 +./app/lib/perl5/Text/Unidecode/xed.pm|134 +./app/lib/perl5/Text/Unidecode/xee.pm|134 +./app/lib/perl5/Text/Unidecode/xef.pm|134 +./app/lib/perl5/Text/Unidecode/xf0.pm|134 +./app/lib/perl5/Text/Unidecode/xf1.pm|134 +./app/lib/perl5/Text/Unidecode/xf2.pm|134 +./app/lib/perl5/Text/Unidecode/xf3.pm|134 +./app/lib/perl5/Text/Unidecode/xf4.pm|134 +./app/lib/perl5/Text/Unidecode/xf5.pm|134 +./app/lib/perl5/Text/Unidecode/xf6.pm|134 +./app/lib/perl5/Text/Unidecode/xf7.pm|134 +./app/lib/perl5/Text/Unidecode/xf8.pm|134 +./app/lib/perl5/Text/Unidecode/xf9.pm|2115 +./app/lib/perl5/Text/Unidecode/xfa.pm|1955 +./app/lib/perl5/Text/Unidecode/xfb.pm|1390 +./app/lib/perl5/Text/Unidecode/xfc.pm|1143 +./app/lib/perl5/Text/Unidecode/xfd.pm|2676 +./app/lib/perl5/Text/Unidecode/xfe.pm|1479 +./app/lib/perl5/Text/Unidecode/xff.pm|1646 +./app/lib/perl5/ttfmod.pl|7073 +./app/lib/perl5/URI/Encode.pm|8444 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/DBD/PgPP/.packlist|83 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Devel/Cycle/.packlist|89 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Digest/SHA/PurePerl/.packlist|178 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Font/TTF/.packlist|7735 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Image/Size/.packlist|157 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/local/lib/.packlist|393 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Math/Base/Convert/.packlist|576 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/MIME/Types/.packlist|452 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/MLDBM/.packlist|255 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PDF/API2/.packlist|10118 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PDF/Table/.packlist|85 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/SQL/Statement/.packlist|2113 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Sub/Uplevel/.packlist|89 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Template/DBI/.packlist|198 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Template/.packlist|7059 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Test/Deep/.packlist|2257 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Test/Exception/.packlist|95 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Test/LeakTrace/LeakTrace.so|88640 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Test/LeakTrace/.packlist|490 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Test/Memory/Cycle/.packlist|102 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Text/Soundex/.packlist|209 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Text/Soundex/Soundex.so|60680 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Text/Unidecode/.packlist|13151 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/URI/Encode/.packlist|87 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/perllocal.pod|4676 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/Test/LeakTrace/JA.pod|10261 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/Test/LeakTrace.pm|7262 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/Test/LeakTrace/Script.pm|986 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/Text/Soundex.pm|8345 +./app/lib/sendemail_new.pm|4850 +./app/lib/sendemail.pm|2296 +./app/lib/session.pm|9608 +./app/report.cgi|3987 +./app/static/css/fonts/pot.svg|67407 +./app/static/css/fonts/pot.ttf|18180 +./app/static/css/fonts/pot.woff|18256 +./app/static/css/icons.css|5157 +./app/static/css/theme.css|41856 +./app/static/img/bg1.jpg|135161 +./app/static/img/favicon/android-icon-144x144.png|12179 +./app/static/img/favicon/android-icon-192x192.png|16669 +./app/static/img/favicon/android-icon-36x36.png|2527 +./app/static/img/favicon/android-icon-48x48.png|3489 +./app/static/img/favicon/android-icon-72x72.png|5250 +./app/static/img/favicon/android-icon-96x96.png|7086 +./app/static/img/favicon/apple-icon-114x114.png|8487 +./app/static/img/favicon/apple-icon-120x120.png|9134 +./app/static/img/favicon/apple-icon-144x144.png|12179 +./app/static/img/favicon/apple-icon-152x152.png|13278 +./app/static/img/favicon/apple-icon-180x180.png|17376 +./app/static/img/favicon/apple-icon-57x57.png|4122 +./app/static/img/favicon/apple-icon-60x60.png|4312 +./app/static/img/favicon/apple-icon-72x72.png|5250 +./app/static/img/favicon/apple-icon-76x76.png|5550 +./app/static/img/favicon/apple-icon.png|17158 +./app/static/img/favicon/apple-icon-precomposed.png|17158 +./app/static/img/favicon/browserconfig.xml|281 +./app/static/img/favicon/favicon-16x16.png|1251 +./app/static/img/favicon/favicon-32x32.png|2246 +./app/static/img/favicon/favicon-96x96.png|7086 +./app/static/img/favicon/favicon.ico|1150 +./app/static/img/favicon/manifest.json|720 +./app/static/img/favicon/ms-icon-144x144.png|12179 +./app/static/img/favicon/ms-icon-150x150.png|12985 +./app/static/img/favicon/ms-icon-310x310.png|40744 +./app/static/img/favicon/ms-icon-70x70.png|5051 +./app/static/img/logo_512.png|31456 +./app/static/img/logo_512_xx.png|14719 +./app/static/img/potbg.jpg|663960 +./app/static/img/poticon512.png|31211 +./app/static/img/POT-logo.png|20930 +./app/static/img/potlogowhite.svg|11940 +./app/static/img/pottop.png|2689 +./app/static/img/toplogo.png|31456 +./app/static/js/app.js|3064 +./app/static/js/form.js|8223 +./app/static/js/report.js|475 +./app/static/js/request.js|3738 +./app/static/js/timecalc.js|3470 +./app/static/vendors/choices/base.css|2320 +./app/static/vendors/choices/base.min.css|1391 +./app/static/vendors/choices/choices.css|8620 +./app/static/vendors/choices/choices.js|217424 +./app/static/vendors/choices/choices.min.css|6293 +./app/static/vendors/choices/choices.min.js|91604 +./app/static/vendors/choices/choices.min.orig.css|6735 +./app/static/vendors/choices/choices.orig.css|8099 +./app/static/vendors/choices/scripts/choices.js|217424 +./app/static/vendors/choices/scripts/choices.min.js|91604 +./app/static/vendors/flatpickr/flatpickr.css|18831 +./app/static/vendors/flatpickr/flatpickr.js|118005 +./app/static/vendors/flatpickr/flatpickr.min.css|15556 +./app/static/vendors/flatpickr/flatpickr.min.js|48355 +./app/static/vendors/flatpickr/flatpickr.min.orig.css|15954 +./app/static/vendors/flatpickr/ie.css|260 +./app/static/vendors/flatpickr/index.d.ts|138 +./app/static/vendors/flatpickr/l10n/de.d.ts|2272 +./app/static/vendors/flatpickr/l10n/default.d.ts|104 +./app/static/vendors/flatpickr/l10n/default.js|2150 +./app/static/vendors/flatpickr/l10n/de.js|1757 +./app/static/vendors/flatpickr/l10n/fr.d.ts|2272 +./app/static/vendors/flatpickr/l10n/fr.js|1893 +./app/static/vendors/flatpickr/l10n/lu.d.ts|2314 +./app/static/vendors/flatpickr/l10n/lu.js|1802 +./app/static/vendors/flatpickr/plugins/confirmDate/confirmDate.css|373 +./app/static/vendors/flatpickr/plugins/confirmDate/confirmDate.d.ts|272 +./app/static/vendors/flatpickr/plugins/confirmDate/confirmDate.js|4236 +./app/static/vendors/flatpickr/plugins/labelPlugin/labelPlugin.d.ts|114 +./app/static/vendors/flatpickr/plugins/labelPlugin/labelPlugin.js|964 +./app/static/vendors/flatpickr/plugins/minMaxTimePlugin.d.ts|491 +./app/static/vendors/flatpickr/plugins/minMaxTimePlugin.js|12386 +./app/static/vendors/flatpickr/plugins/monthSelect/index.d.ts|367 +./app/static/vendors/flatpickr/plugins/monthSelect/index.js|7757 +./app/static/vendors/flatpickr/plugins/monthSelect/style.css|1561 +./app/static/vendors/flatpickr/plugins/monthSelect/tests.spec.d.ts|11 +./app/static/vendors/flatpickr/plugins/rangePlugin.d.ts|312 +./app/static/vendors/flatpickr/plugins/rangePlugin.js|6475 +./app/static/vendors/flatpickr/plugins/scrollPlugin.d.ts|113 +./app/static/vendors/flatpickr/plugins/scrollPlugin.js|2026 +./app/static/vendors/flatpickr/plugins/weekSelect/weekSelect.d.ts|218 +./app/static/vendors/flatpickr/plugins/weekSelect/weekSelect.js|3500 +./app/static/vendors/flatpickr/themes/airbnb.css|21148 +./app/static/vendors/flatpickr/themes/airbnb.min.css|17638 +./app/static/vendors/flatpickr/types/globals.d.ts|546 +./app/static/vendors/flatpickr/types/instance.d.ts|4386 +./app/static/vendors/flatpickr/types/locale.d.ts|2263 +./app/static/vendors/flatpickr/types/options.d.ts|4564 +./app/static/vendors/flatpickr/typings.d.ts|1001 +./app/static/vendors/flatpickr/utils/dates.d.ts|922 +./app/static/vendors/flatpickr/utils/dom.d.ts|585 +./app/static/vendors/flatpickr/utils/formatting.d.ts|834 +./app/static/vendors/flatpickr/utils/index.d.ts|393 +./app/static/vendors/flatpickr/utils/polyfills.d.ts|0 +./app/static/vendors/moment/moment.js|150941 +./app/static/vendors/moment/moment.min.js|53324 +./app/static/vendors/moment/moment-with-locales.js|541363 +./app/static/vendors/moment/moment-with-locales.min.js|336451 +./app/static/vendors/slimselect/slimselect.css|8849 +./app/static/vendors/slimselect/slimselect.js|74826 +./app/static/vendors/slimselect/slimselect.min.css|6326 +./app/static/vendors/slimselect/slimselect.min.js|35553 +./app/static/vendors/slimselect/slimselect.scss|8343 +./app/static/vendors/tabulator/css/tabulator.css|23179 +./app/static/vendors/tabulator/css/tabulator_midnight.css|23343 +./app/static/vendors/tabulator/css/tabulator_midnight.min.css|20181 +./app/static/vendors/tabulator/css/tabulator_midnight.min.css.map|36547 +./app/static/vendors/tabulator/css/tabulator.min.css|20052 +./app/static/vendors/tabulator/css/tabulator.min.css.map|36290 +./app/static/vendors/tabulator/css/tabulator_modern.css|24285 +./app/static/vendors/tabulator/css/tabulator_modern.min.css|21020 +./app/static/vendors/tabulator/css/tabulator_modern.min.css.map|38358 +./app/static/vendors/tabulator/css/tabulator_simple.css|23119 +./app/static/vendors/tabulator/css/tabulator_simple.min.css|20005 +./app/static/vendors/tabulator/css/tabulator_simple.min.css.map|36261 +./app/static/vendors/tabulator/css/tabulator_site.css|23078 +./app/static/vendors/tabulator/css/tabulator_site.min.css|19920 +./app/static/vendors/tabulator/css/tabulator_site.min.css.map|36753 +./app/static/vendors/tabulator/js/modules/accessor.js|2582 +./app/static/vendors/tabulator/js/modules/accessor.min.js|1476 +./app/static/vendors/tabulator/js/modules/ajax.js|12088 +./app/static/vendors/tabulator/js/modules/ajax.min.js|8072 +./app/static/vendors/tabulator/js/modules/calculation_colums.js|12394 +./app/static/vendors/tabulator/js/modules/calculation_colums.min.js|7930 +./app/static/vendors/tabulator/js/modules/clipboard.js|8541 +./app/static/vendors/tabulator/js/modules/clipboard.min.js|5437 +./app/static/vendors/tabulator/js/modules/data_tree.js|12908 +./app/static/vendors/tabulator/js/modules/data_tree.min.js|8509 +./app/static/vendors/tabulator/js/modules/download.js|10252 +./app/static/vendors/tabulator/js/modules/download.min.js|5477 +./app/static/vendors/tabulator/js/modules/edit.js|52433 +./app/static/vendors/tabulator/js/modules/edit.min.js|26101 +./app/static/vendors/tabulator/js/modules/export.js|17440 +./app/static/vendors/tabulator/js/modules/export.min.js|11581 +./app/static/vendors/tabulator/js/modules/filter.js|22917 +./app/static/vendors/tabulator/js/modules/filter.min.js|12654 +./app/static/vendors/tabulator/js/modules/format.js|23323 +./app/static/vendors/tabulator/js/modules/format.min.js|13624 +./app/static/vendors/tabulator/js/modules/frozen_columns.js|6978 +./app/static/vendors/tabulator/js/modules/frozen_columns.min.js|4477 +./app/static/vendors/tabulator/js/modules/frozen_rows.js|2249 +./app/static/vendors/tabulator/js/modules/frozen_rows.min.js|1645 +./app/static/vendors/tabulator/js/modules/group_rows.js|27024 +./app/static/vendors/tabulator/js/modules/group_rows.min.js|18258 +./app/static/vendors/tabulator/js/modules/history.js|3500 +./app/static/vendors/tabulator/js/modules/history.min.js|2521 +./app/static/vendors/tabulator/js/modules/html_table_import.js|4868 +./app/static/vendors/tabulator/js/modules/html_table_import.min.js|2528 +./app/static/vendors/tabulator/js/modules/keybindings.js|8114 +./app/static/vendors/tabulator/js/modules/keybindings.min.js|5025 +./app/static/vendors/tabulator/js/modules/menu.js|5510 +./app/static/vendors/tabulator/js/modules/menu.min.js|3914 +./app/static/vendors/tabulator/js/modules/moveable_columns.js|8666 +./app/static/vendors/tabulator/js/modules/moveable_columns.min.js|5383 +./app/static/vendors/tabulator/js/modules/moveable_rows.js|18323 +./app/static/vendors/tabulator/js/modules/moveable_rows.min.js|12603 +./app/static/vendors/tabulator/js/modules/mutator.js|3107 +./app/static/vendors/tabulator/js/modules/mutator.min.js|1793 +./app/static/vendors/tabulator/js/modules/page.js|18523 +./app/static/vendors/tabulator/js/modules/page.min.js|12598 +./app/static/vendors/tabulator/js/modules/persistence.js|10453 +./app/static/vendors/tabulator/js/modules/persistence.min.js|6497 +./app/static/vendors/tabulator/js/modules/print.js|2981 +./app/static/vendors/tabulator/js/modules/print.min.js|2279 +./app/static/vendors/tabulator/js/modules/reactive_data.js|5286 +./app/static/vendors/tabulator/js/modules/reactive_data.min.js|3051 +./app/static/vendors/tabulator/js/modules/resize_columns.js|5130 +./app/static/vendors/tabulator/js/modules/resize_columns.min.js|3117 +./app/static/vendors/tabulator/js/modules/resize_rows.js|2885 +./app/static/vendors/tabulator/js/modules/resize_rows.min.js|1741 +./app/static/vendors/tabulator/js/modules/resize_table.js|3033 +./app/static/vendors/tabulator/js/modules/resize_table.min.js|2148 +./app/static/vendors/tabulator/js/modules/responsive_layout.js|7489 +./app/static/vendors/tabulator/js/modules/responsive_layout.min.js|4816 +./app/static/vendors/tabulator/js/modules/select_row.js|10843 +./app/static/vendors/tabulator/js/modules/select_row.min.js|6751 +./app/static/vendors/tabulator/js/modules/sort.js|14058 +./app/static/vendors/tabulator/js/modules/sort.min.js|7206 +./app/static/vendors/tabulator/js/modules/validate.js|6993 +./app/static/vendors/tabulator/js/modules/validate.min.js|3649 +./app/static/vendors/tabulator/js/tabulator_core.js|221964 +./app/static/vendors/tabulator/js/tabulator_core.min.js|137602 +./app/static/vendors/tabulator/js/tabulator.js|587608 +./app/static/vendors/tabulator/js/tabulator.min.js|337830 +./app/static/vendors/tinymce/changelog.txt|131850 +./app/static/vendors/tinymce/js/tinymce/jquery.tinymce.min.js|6635 +./app/static/vendors/tinymce/js/tinymce/langs/de.js|10334 +./app/static/vendors/tinymce/js/tinymce/langs/fr_FR.js|10140 +./app/static/vendors/tinymce/js/tinymce/langs/readme.md|151 +./app/static/vendors/tinymce/js/tinymce/license.txt|26441 +./app/static/vendors/tinymce/js/tinymce/plugins/advlist/plugin.min.js|3995 +./app/static/vendors/tinymce/js/tinymce/plugins/anchor/plugin.min.js|2120 +./app/static/vendors/tinymce/js/tinymce/plugins/autolink/plugin.min.js|2534 +./app/static/vendors/tinymce/js/tinymce/plugins/autoresize/plugin.min.js|2298 +./app/static/vendors/tinymce/js/tinymce/plugins/autosave/plugin.min.js|3493 +./app/static/vendors/tinymce/js/tinymce/plugins/bbcode/plugin.min.js|3117 +./app/static/vendors/tinymce/js/tinymce/plugins/charmap/plugin.min.js|11948 +./app/static/vendors/tinymce/js/tinymce/plugins/code/plugin.min.js|1226 +./app/static/vendors/tinymce/js/tinymce/plugins/codesample/plugin.min.js|21028 +./app/static/vendors/tinymce/js/tinymce/plugins/colorpicker/plugin.min.js|550 +./app/static/vendors/tinymce/js/tinymce/plugins/contextmenu/plugin.min.js|550 +./app/static/vendors/tinymce/js/tinymce/plugins/directionality/plugin.min.js|4315 +./app/static/vendors/tinymce/js/tinymce/plugins/emoticons/js/emojis.js|251845 +./app/static/vendors/tinymce/js/tinymce/plugins/emoticons/js/emojis.min.js|193222 +./app/static/vendors/tinymce/js/tinymce/plugins/emoticons/plugin.min.js|6921 +./app/static/vendors/tinymce/js/tinymce/plugins/fullpage/plugin.min.js|8196 +./app/static/vendors/tinymce/js/tinymce/plugins/fullscreen/plugin.min.js|9920 +./app/static/vendors/tinymce/js/tinymce/plugins/help/plugin.min.js|14402 +./app/static/vendors/tinymce/js/tinymce/plugins/hr/plugin.min.js|841 +./app/static/vendors/tinymce/js/tinymce/plugins/image/plugin.min.js|29711 +./app/static/vendors/tinymce/js/tinymce/plugins/imagetools/plugin.min.js|22336 +./app/static/vendors/tinymce/js/tinymce/plugins/importcss/plugin.min.js|5008 +./app/static/vendors/tinymce/js/tinymce/plugins/insertdatetime/plugin.min.js|3212 +./app/static/vendors/tinymce/js/tinymce/plugins/legacyoutput/plugin.min.js|2973 +./app/static/vendors/tinymce/js/tinymce/plugins/link/plugin.min.js|22929 +./app/static/vendors/tinymce/js/tinymce/plugins/lists/plugin.min.js|28276 +./app/static/vendors/tinymce/js/tinymce/plugins/media/plugin.min.js|18033 +./app/static/vendors/tinymce/js/tinymce/plugins/nonbreaking/plugin.min.js|1585 +./app/static/vendors/tinymce/js/tinymce/plugins/noneditable/plugin.min.js|1842 +./app/static/vendors/tinymce/js/tinymce/plugins/pagebreak/plugin.min.js|1842 +./app/static/vendors/tinymce/js/tinymce/plugins/paste/plugin.min.js|31463 +./app/static/vendors/tinymce/js/tinymce/plugins/preview/plugin.min.js|2095 +./app/static/vendors/tinymce/js/tinymce/plugins/print/plugin.min.js|887 +./app/static/vendors/tinymce/js/tinymce/plugins/quickbars/plugin.min.js|10795 +./app/static/vendors/tinymce/js/tinymce/plugins/save/plugin.min.js|1823 +./app/static/vendors/tinymce/js/tinymce/plugins/searchreplace/plugin.min.js|10019 +./app/static/vendors/tinymce/js/tinymce/plugins/spellchecker/plugin.min.js|10404 +./app/static/vendors/tinymce/js/tinymce/plugins/tabfocus/plugin.min.js|1938 +./app/static/vendors/tinymce/js/tinymce/plugins/table/plugin.min.js|122173 +./app/static/vendors/tinymce/js/tinymce/plugins/template/plugin.min.js|8077 +./app/static/vendors/tinymce/js/tinymce/plugins/textcolor/plugin.min.js|546 +./app/static/vendors/tinymce/js/tinymce/plugins/textpattern/plugin.min.js|18459 +./app/static/vendors/tinymce/js/tinymce/plugins/toc/plugin.min.js|3592 +./app/static/vendors/tinymce/js/tinymce/plugins/visualblocks/plugin.min.js|1649 +./app/static/vendors/tinymce/js/tinymce/plugins/visualchars/plugin.min.js|7060 +./app/static/vendors/tinymce/js/tinymce/plugins/wordcount/plugin.min.js|13186 +./app/static/vendors/tinymce/js/tinymce/skins/content/dark/content.min.css|1082 +./app/static/vendors/tinymce/js/tinymce/skins/content/default/content.min.css|982 +./app/static/vendors/tinymce/js/tinymce/skins/content/document/content.min.css|1040 +./app/static/vendors/tinymce/js/tinymce/skins/content/writer/content.min.css|978 +./app/static/vendors/tinymce/js/tinymce/skins/ui/oxide/content.inline.min.css|18087 +./app/static/vendors/tinymce/js/tinymce/skins/ui/oxide/content.min.css|17883 +./app/static/vendors/tinymce/js/tinymce/skins/ui/oxide/content.mobile.min.css|544 +./app/static/vendors/tinymce/js/tinymce/skins/ui/oxide-dark/content.inline.min.css|18087 +./app/static/vendors/tinymce/js/tinymce/skins/ui/oxide-dark/content.min.css|17510 +./app/static/vendors/tinymce/js/tinymce/skins/ui/oxide-dark/content.mobile.min.css|544 +./app/static/vendors/tinymce/js/tinymce/skins/ui/oxide-dark/fonts/tinymce-mobile.woff|4624 +./app/static/vendors/tinymce/js/tinymce/skins/ui/oxide-dark/skin.min.css|52080 +./app/static/vendors/tinymce/js/tinymce/skins/ui/oxide-dark/skin.mobile.min.css|21004 +./app/static/vendors/tinymce/js/tinymce/skins/ui/oxide/fonts/tinymce-mobile.woff|4624 +./app/static/vendors/tinymce/js/tinymce/skins/ui/oxide/skin.min.css|52178 +./app/static/vendors/tinymce/js/tinymce/skins/ui/oxide/skin.mobile.min.css|21004 +./app/static/vendors/tinymce/js/tinymce/themes/mobile/theme.min.js|179424 +./app/static/vendors/tinymce/js/tinymce/themes/silver/theme.min.js|385268 +./app/static/vendors/tinymce/js/tinymce/tinymce.min.js|438407 +./app/tmpl/block/cgu.tt|9355 +./app/tmpl/block/dlgdataload.tt|1183 +./app/tmpl/block/dlgdeleterow.tt|2877 +./app/tmpl/block/dlginfo.tt|2109 +./app/tmpl/block/dlgmessage.tt|914 +./app/tmpl/block/dlg_replacestaffdayworkplan.tt|2724 +./app/tmpl/block/dlgstaffpayedhours.tt|1877 +./app/tmpl/block/dlgstaffperioddays.tt|10600 +./app/tmpl/block/head.tt|1815 +./app/tmpl/block/pnl_nodata.tt|317 +./app/tmpl/block/snackbar.tt|25 +./app/tmpl/file.tt|21 +./app/tmpl/.htaccess|169 +./app/tmpl/index.tt|4488 +./app/tmpl/login.tt|2759 +./app/tmpl/macro/fields.tt|10618 +./app/tmpl/module/admin/companies.js|5815 +./app/tmpl/module/admin/dlg_dataset.tt|2040 +./app/tmpl/module/admin/dlg_staffgroups.tt|1252 +./app/tmpl/module/admin/dlg_users.tt|3625 +./app/tmpl/module/admin/dlg_worktimes.tt|3868 +./app/tmpl/module/admin/pnl_basedata.tt|7253 +./app/tmpl/module/admin/schemadataset.js|1760 +./app/tmpl/module/admin/staffgroups.js|2682 +./app/tmpl/module/admin.tt|3735 +./app/tmpl/module/admin/users.js|6825 +./app/tmpl/module/admin/worktimes.js|3593 +./app/tmpl/module/company/company.js|1863 +./app/tmpl/module/company/dlg_staffgroups.tt|1311 +./app/tmpl/module/company/dlg_users.tt|4193 +./app/tmpl/module/company/pnl_basedata.tt|6868 +./app/tmpl/module/company/staffgroups.js|2299 +./app/tmpl/module/company.tt|1971 +./app/tmpl/module/company/users.js|6658 +./app/tmpl/module/index/index.js|656 +./app/tmpl/module/index.tt|2742 +./app/tmpl/module/login/forgotpassword.tt|835 +./app/tmpl/module/login/login.tt|921 +./app/tmpl/module/login/message.tt|626 +./app/tmpl/module/periods/reportperiod.js|5992 +./app/tmpl/module/periods/staffperiodweeks.js|13824 +./app/tmpl/module/periods/tlb_staffperiodweeks.tt|878 +./app/tmpl/module/periods.tt|3195 +./app/tmpl/module/profile/dlgpassword.tt|2869 +./app/tmpl/module/profile/dlgusername.tt|4225 +./app/tmpl/module/profile/profile.js|401 +./app/tmpl/module/profile.tt|1958 +./app/tmpl/module/staff/dlg_staffcontract.tt|2332 +./app/tmpl/module/staff/pnl_basedata.tt|6455 +./app/tmpl/module/staff/staffcontract.js|7148 +./app/tmpl/module/staff/staff.js|4813 +./app/tmpl/module/staff/staffperiods.js|3036 +./app/tmpl/module/staff.tt|3224 +./app/tmpl/module/timetrackers/index.js|401 +./app/tmpl/module/timetrackers/index.tt|1208 +./app/tmpl/module/workplans/dlg_workplanday.tt|6284 +./app/tmpl/module/workplans/dlg_workplan.tt|1656 +./app/tmpl/module/workplans.tt|2329 +./app/tmpl/module/workplans/workplans.js|9153 +./css/site.css|24964 +./.htaccess|0 ./img/favicon/android-icon-144x144.png|12179 ./img/favicon/android-icon-192x192.png|16669 ./img/favicon/android-icon-36x36.png|2527 @@ -1201,14 +1015,8 @@ ./img/favicon/ms-icon-150x150.png|12985 ./img/favicon/ms-icon-310x310.png|40744 ./img/favicon/ms-icon-70x70.png|5051 -./img/htlogo.png|44729 +./img/macos_badge.png|11188 ./img/potbg.jpg|663960 ./img/pot_big.png|31456 -./img/slides/slide1.jpg|582011 -./img/slides/slide2.jpg|61860 -./img/slides/slide3.jpg|58120 -./img/slides/slide4.jpg|124615 -./index.cgi|2355 -./js/slides.js|669 -./tmpl/skeleton/index_next.tt|11738 -./tmpl/skeleton/index.tt|3321 +./img/windows_badge.png|10374 +./index.html|2925 diff --git a/dev/sourcefiles.remote.txt b/dev/sourcefiles.remote.txt index d2c1c399..e33efcb3 100644 --- a/dev/sourcefiles.remote.txt +++ b/dev/sourcefiles.remote.txt @@ -1,1183 +1,1016 @@ -./backoffice/api/db.cgi|4588 -./backoffice/api/file.cgi|4381 -./backoffice/api/index.cgi|6962 -./backoffice/api/lib/dksconfig.pm|1525 -./backoffice/api/lib/dksdb.pm|10832 -./backoffice/api/lib/dkssavefile.pm|991 -./backoffice/api/lib/pdfreport.pm|4180 -./backoffice/api/lib/perl5/Business/Tax/VAT/Validation.pm|14797 -./backoffice/api/lib/perl5/CGI/Cookie.pm|6599 -./backoffice/api/lib/perl5/CGI/File/Temp.pm|969 -./backoffice/api/lib/perl5/CGI.pm|125242 -./backoffice/api/lib/perl5/CGI/Util.pm|10881 -./backoffice/api/lib/perl5/DBD/PgPP.pm|48674 -./backoffice/api/lib/perl5/Devel/Cycle.pm|13667 -./backoffice/api/lib/perl5/Digest/SHA/PurePerl.pm|46933 -./backoffice/api/lib/perl5/Font/TTF/AATKern.pm|2958 -./backoffice/api/lib/perl5/Font/TTF/AATutils.pm|23626 -./backoffice/api/lib/perl5/Font/TTF/Anchor.pm|4911 -./backoffice/api/lib/perl5/Font/TTF/Bsln.pm|3806 -./backoffice/api/lib/perl5/Font/TTF/Changes_old.txt|2223 -./backoffice/api/lib/perl5/Font/TTF/Cmap.pm|24487 -./backoffice/api/lib/perl5/Font/TTF/Coverage.pm|8579 -./backoffice/api/lib/perl5/Font/TTF/Cvt_.pm|1431 -./backoffice/api/lib/perl5/Font/TTF/Delta.pm|3470 -./backoffice/api/lib/perl5/Font/TTF/DSIG.pm|2020 -./backoffice/api/lib/perl5/Font/TTF/Dumper.pm|2618 -./backoffice/api/lib/perl5/Font/TTF/EBDT.pm|7328 -./backoffice/api/lib/perl5/Font/TTF/EBLC.pm|6456 -./backoffice/api/lib/perl5/Font/TTF/Fdsc.pm|2234 -./backoffice/api/lib/perl5/Font/TTF/Feat.pm|4547 -./backoffice/api/lib/perl5/Font/TTF/Features/Cvar.pm|3021 -./backoffice/api/lib/perl5/Font/TTF/Features/Size.pm|1996 -./backoffice/api/lib/perl5/Font/TTF/Features/Sset.pm|1752 -./backoffice/api/lib/perl5/Font/TTF/Fmtx.pm|2002 -./backoffice/api/lib/perl5/Font/TTF/Font.pm|29765 -./backoffice/api/lib/perl5/Font/TTF/Fpgm.pm|1703 -./backoffice/api/lib/perl5/Font/TTF/GDEF.pm|13967 -./backoffice/api/lib/perl5/Font/TTF/Glat.pm|3507 -./backoffice/api/lib/perl5/Font/TTF/Gloc.pm|2625 -./backoffice/api/lib/perl5/Font/TTF/Glyf.pm|3769 -./backoffice/api/lib/perl5/Font/TTF/Glyph.pm|25861 -./backoffice/api/lib/perl5/Font/TTF/GPOS.pm|21238 -./backoffice/api/lib/perl5/Font/TTF/GrFeat.pm|8525 -./backoffice/api/lib/perl5/Font/TTF/GSUB.pm|8843 -./backoffice/api/lib/perl5/Font/TTF/Hdmx.pm|3195 -./backoffice/api/lib/perl5/Font/TTF/Head.pm|5984 -./backoffice/api/lib/perl5/Font/TTF/Hhea.pm|3626 -./backoffice/api/lib/perl5/Font/TTF/Hmtx.pm|4724 -./backoffice/api/lib/perl5/Font/TTF/Kern/ClassArray.pm|3255 -./backoffice/api/lib/perl5/Font/TTF/Kern/CompactClassArray.pm|1293 -./backoffice/api/lib/perl5/Font/TTF/Kern/OrderedList.pm|2141 -./backoffice/api/lib/perl5/Font/TTF/Kern.pm|8705 -./backoffice/api/lib/perl5/Font/TTF/Kern/StateTable.pm|3034 -./backoffice/api/lib/perl5/Font/TTF/Kern/Subtable.pm|3710 -./backoffice/api/lib/perl5/Font/TTF/Loca.pm|4837 -./backoffice/api/lib/perl5/Font/TTF/LTSH.pm|1705 -./backoffice/api/lib/perl5/Font/TTF/Manual.pod|9180 -./backoffice/api/lib/perl5/Font/TTF/Maxp.pm|4268 -./backoffice/api/lib/perl5/Font/TTF/Mort/Chain.pm|5140 -./backoffice/api/lib/perl5/Font/TTF/Mort/Contextual.pm|3975 -./backoffice/api/lib/perl5/Font/TTF/Mort/Insertion.pm|4576 -./backoffice/api/lib/perl5/Font/TTF/Mort/Ligature.pm|7568 -./backoffice/api/lib/perl5/Font/TTF/Mort/Noncontextual.pm|1896 -./backoffice/api/lib/perl5/Font/TTF/Mort.pm|2154 -./backoffice/api/lib/perl5/Font/TTF/Mort/Rearrangement.pm|2392 -./backoffice/api/lib/perl5/Font/TTF/Mort/Subtable.pm|4659 -./backoffice/api/lib/perl5/Font/TTF/Name.pm|28443 -./backoffice/api/lib/perl5/Font/TTF/OldCmap.pm|9888 -./backoffice/api/lib/perl5/Font/TTF/OldMort.pm|26139 -./backoffice/api/lib/perl5/Font/TTF/OS_2.pm|38981 -./backoffice/api/lib/perl5/Font/TTF/OTTags.pm|43967 -./backoffice/api/lib/perl5/Font/TTF/PCLT.pm|2552 -./backoffice/api/lib/perl5/Font/TTF.pm|2248 -./backoffice/api/lib/perl5/Font/TTF/Post.pm|9754 -./backoffice/api/lib/perl5/Font/TTF/Prep.pm|1645 -./backoffice/api/lib/perl5/Font/TTF/Prop.pm|3556 -./backoffice/api/lib/perl5/Font/TTF/PSNames.pm|135961 -./backoffice/api/lib/perl5/Font/TTF/Segarr.pm|9758 -./backoffice/api/lib/perl5/Font/TTF/Silf.pm|28913 -./backoffice/api/lib/perl5/Font/TTF/Sill.pm|3272 -./backoffice/api/lib/perl5/Font/TTF/Table.pm|11415 -./backoffice/api/lib/perl5/Font/TTF/Ttc.pm|3967 -./backoffice/api/lib/perl5/Font/TTF/Ttopen.pm|45301 -./backoffice/api/lib/perl5/Font/TTF/Useall.pm|2215 -./backoffice/api/lib/perl5/Font/TTF/Utils.pm|18957 -./backoffice/api/lib/perl5/Font/TTF/Vhea.pm|3655 -./backoffice/api/lib/perl5/Font/TTF/Vmtx.pm|1702 -./backoffice/api/lib/perl5/Font/TTF/Win32.pm|1111 -./backoffice/api/lib/perl5/Font/TTF/Woff/MetaData.pm|548 -./backoffice/api/lib/perl5/Font/TTF/Woff.pm|1117 -./backoffice/api/lib/perl5/Font/TTF/Woff/PrivateData.pm|559 -./backoffice/api/lib/perl5/Font/TTF/XMLparse.pm|5623 -./backoffice/api/lib/perl5/Image/Size.pm|46926 -./backoffice/api/lib/perl5/lib/core/only.pm|3229 -./backoffice/api/lib/perl5/local/lib.pm|41186 -./backoffice/api/lib/perl5/Math/Base/Convert/Bases.pm|5661 -./backoffice/api/lib/perl5/Math/Base/Convert/Bitmaps.pm|22263 -./backoffice/api/lib/perl5/Math/Base/Convert/CalcPP.pm|5422 -./backoffice/api/lib/perl5/Math/Base/Convert.pm|16834 -./backoffice/api/lib/perl5/Math/Base/Convert/Shortcuts.pm|11553 -./backoffice/api/lib/perl5/MIME/Type.pm|2911 -./backoffice/api/lib/perl5/MIME/Type.pod|6361 -./backoffice/api/lib/perl5/MIME/types.db|121715 -./backoffice/api/lib/perl5/MIME/Types.pm|7043 -./backoffice/api/lib/perl5/MIME/Types.pod|8611 -./backoffice/api/lib/perl5/MLDBM.pm|16594 -./backoffice/api/lib/perl5/MLDBM/Serializer/Data/Dumper.pm|2043 -./backoffice/api/lib/perl5/MLDBM/Serializer/FreezeThaw.pm|351 -./backoffice/api/lib/perl5/MLDBM/Serializer/Storable.pm|922 -./backoffice/api/lib/perl5/MojoX/MIME/Types.pm|1468 -./backoffice/api/lib/perl5/MojoX/MIME/Types.pod|5933 -./backoffice/api/lib/perl5/PDF/API2/Annotation.pm|10305 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Array.pm|2863 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Bool.pm|1015 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Dict.pm|10332 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/File.pm|43842 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Filter/ASCII85Decode.pm|2399 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Filter/ASCIIHexDecode.pm|1513 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Filter/FlateDecode.pm|4427 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Filter/LZWDecode.pm|3122 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Filter.pm|3378 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Filter/RunLengthDecode.pm|3315 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Literal.pm|2201 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Name.pm|3001 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Null.pm|1562 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Number.pm|973 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Objind.pm|7440 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Page.pm|3285 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Pages.pm|10886 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/String.pm|5347 -./backoffice/api/lib/perl5/PDF/API2/Basic/PDF/Utils.pm|2627 -./backoffice/api/lib/perl5/PDF/API2/Content.pm|53753 -./backoffice/api/lib/perl5/PDF/API2/Content/Text.pm|248 -./backoffice/api/lib/perl5/PDF/API2/Lite.pm|11649 -./backoffice/api/lib/perl5/PDF/API2/Matrix.pm|1541 -./backoffice/api/lib/perl5/PDF/API2/NamedDestination.pm|7159 -./backoffice/api/lib/perl5/PDF/API2/Outline.pm|9690 -./backoffice/api/lib/perl5/PDF/API2/Outlines.pm|306 -./backoffice/api/lib/perl5/PDF/API2/Page.pm|8994 -./backoffice/api/lib/perl5/PDF/API2.pm|64581 -./backoffice/api/lib/perl5/PDF/API2/Resource/BaseFont.pm|17514 -./backoffice/api/lib/perl5/PDF/API2/Resource/CIDFont/CJKFont/adobemingstdlightacro.data|247405 -./backoffice/api/lib/perl5/PDF/API2/Resource/CIDFont/CJKFont/adobemyungjostdmediumacro.data|278186 -./backoffice/api/lib/perl5/PDF/API2/Resource/CIDFont/CJKFont/adobesongstdlightacro.data|772180 -./backoffice/api/lib/perl5/PDF/API2/Resource/CIDFont/CJKFont/kozgopromediumacro.data|21508 -./backoffice/api/lib/perl5/PDF/API2/Resource/CIDFont/CJKFont/kozminproregularacro.data|21556 -./backoffice/api/lib/perl5/PDF/API2/Resource/CIDFont/CJKFont.pm|9706 -./backoffice/api/lib/perl5/PDF/API2/Resource/CIDFont/CMap/japanese.cmap|4629356 -./backoffice/api/lib/perl5/PDF/API2/Resource/CIDFont/CMap/korean.cmap|2817142 -./backoffice/api/lib/perl5/PDF/API2/Resource/CIDFont/CMap/simplified.cmap|4845677 -./backoffice/api/lib/perl5/PDF/API2/Resource/CIDFont/CMap/traditional.cmap|3431298 -./backoffice/api/lib/perl5/PDF/API2/Resource/CIDFont.pm|7527 -./backoffice/api/lib/perl5/PDF/API2/Resource/CIDFont/TrueType/FontFile.pm|19532 -./backoffice/api/lib/perl5/PDF/API2/Resource/CIDFont/TrueType.pm|4265 -./backoffice/api/lib/perl5/PDF/API2/Resource/ColorSpace/DeviceN.pm|2650 -./backoffice/api/lib/perl5/PDF/API2/Resource/ColorSpace/Indexed/ACTFile.pm|1669 -./backoffice/api/lib/perl5/PDF/API2/Resource/ColorSpace/Indexed/Hue.pm|1393 -./backoffice/api/lib/perl5/PDF/API2/Resource/ColorSpace/Indexed.pm|2916 -./backoffice/api/lib/perl5/PDF/API2/Resource/ColorSpace/Indexed/WebColor.pm|1891 -./backoffice/api/lib/perl5/PDF/API2/Resource/ColorSpace.pm|1557 -./backoffice/api/lib/perl5/PDF/API2/Resource/ColorSpace/Separation.pm|4036 -./backoffice/api/lib/perl5/PDF/API2/Resource/Colors.pm|29469 -./backoffice/api/lib/perl5/PDF/API2/Resource/ExtGState.pm|5842 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/BdFont.pm|8220 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/bankgothic.pm|34011 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/courierboldoblique.pm|34150 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/courierbold.pm|34133 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/courieroblique.pm|34139 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/courier.pm|44056 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/georgiabolditalic.pm|54809 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/georgiabold.pm|54793 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/georgiaitalic.pm|54794 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/georgia.pm|54780 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/helveticaboldoblique.pm|34126 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/helveticabold.pm|34139 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/helveticaoblique.pm|34116 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/helvetica.pm|34128 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont.pm|9713 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/symbol.pm|31542 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/timesbolditalic.pm|34116 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/timesbold.pm|34130 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/timesitalic.pm|34153 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/timesroman.pm|30061 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/trebuchetbolditalic.pm|41135 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/trebuchetbold.pm|37639 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/trebuchetitalic.pm|41122 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/trebuchet.pm|37625 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/verdanabolditalic.pm|53911 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/verdanabold.pm|53894 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/verdanaitalic.pm|53837 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/verdana.pm|53641 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/webdings.pm|37901 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/wingdings.pm|33783 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/CoreFont/zapfdingbats.pm|25945 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font.pm|5623 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/Postscript.pm|14378 -./backoffice/api/lib/perl5/PDF/API2/Resource/Font/SynFont.pm|7683 -./backoffice/api/lib/perl5/PDF/API2/Resource/Glyphs.pm|280116 -./backoffice/api/lib/perl5/PDF/API2/Resource/PaperSizes.pm|1500 -./backoffice/api/lib/perl5/PDF/API2/Resource/Pattern.pm|281 -./backoffice/api/lib/perl5/PDF/API2/Resource.pm|1481 -./backoffice/api/lib/perl5/PDF/API2/Resource/Shading.pm|137 -./backoffice/api/lib/perl5/PDF/API2/Resource/UniFont.pm|6466 -./backoffice/api/lib/perl5/PDF/API2/Resource/uniglyph.txt|550967 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Form/BarCode/codabar.pm|788 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Form/BarCode/code128.pm|7479 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Form/BarCode/code3of9.pm|3537 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Form/BarCode/ean13.pm|1834 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Form/BarCode/int2of5.pm|1434 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Form/BarCode.pm|5650 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Form/Hybrid.pm|1645 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Form.pm|1790 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Image/GD.pm|1484 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Image/GIF.pm|6387 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Image/JPEG.pm|2189 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Image.pm|2691 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Image/PNG.pm|26450 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Image/PNM.pm|4398 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Image/TIFF/File.pm|9874 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject/Image/TIFF.pm|8903 -./backoffice/api/lib/perl5/PDF/API2/Resource/XObject.pm|778 -./backoffice/api/lib/perl5/PDF/API2/UniWrap.pm|9341 -./backoffice/api/lib/perl5/PDF/API2/Util.pm|17014 -./backoffice/api/lib/perl5/PDF/API2/Win32.pm|2104 -./backoffice/api/lib/perl5/PDF/Table.pm|55410 -./backoffice/api/lib/perl5/POD2/DE/local/lib.pod|16690 -./backoffice/api/lib/perl5/POD2/PT_BR/local/lib.pod|16094 -./backoffice/api/lib/perl5/SQL/Dialects/ANSI.pm|3724 -./backoffice/api/lib/perl5/SQL/Dialects/AnyData.pm|2092 -./backoffice/api/lib/perl5/SQL/Dialects/CSV.pm|1962 -./backoffice/api/lib/perl5/SQL/Dialects/Role.pm|2560 -./backoffice/api/lib/perl5/SQL/Eval.pm|16638 -./backoffice/api/lib/perl5/SQL/Parser.pm|102983 -./backoffice/api/lib/perl5/SQL/Statement/Embed.pod|11893 -./backoffice/api/lib/perl5/SQL/Statement/Function.pm|10791 -./backoffice/api/lib/perl5/SQL/Statement/Functions.pm|34973 -./backoffice/api/lib/perl5/SQL/Statement/GetInfo.pm|27647 -./backoffice/api/lib/perl5/SQL/Statement/Operation.pm|23477 -./backoffice/api/lib/perl5/SQL/Statement/Placeholder.pm|2246 -./backoffice/api/lib/perl5/SQL/Statement.pm|80949 -./backoffice/api/lib/perl5/SQL/Statement/RAM.pm|6037 -./backoffice/api/lib/perl5/SQL/Statement/Roadmap.pod|8701 -./backoffice/api/lib/perl5/SQL/Statement/Structure.pod|13001 -./backoffice/api/lib/perl5/SQL/Statement/Syntax.pod|19784 -./backoffice/api/lib/perl5/SQL/Statement/TermFactory.pm|6771 -./backoffice/api/lib/perl5/SQL/Statement/Term.pm|5609 -./backoffice/api/lib/perl5/SQL/Statement/Util.pm|4310 -./backoffice/api/lib/perl5/Sub/Uplevel.pm|18092 -./backoffice/api/lib/perl5/Template/Base.pm|7569 -./backoffice/api/lib/perl5/Template/Config.pm|13621 -./backoffice/api/lib/perl5/Template/Constants.pm|9747 -./backoffice/api/lib/perl5/Template/Context.pm|53723 -./backoffice/api/lib/perl5/Template/DBI.pod|1534 -./backoffice/api/lib/perl5/Template/Directive.pm|29394 -./backoffice/api/lib/perl5/Template/Document.pm|16569 -./backoffice/api/lib/perl5/Template/Exception.pm|6402 -./backoffice/api/lib/perl5/Template/FAQ.pod|8809 -./backoffice/api/lib/perl5/Template/Filters.pm|26123 -./backoffice/api/lib/perl5/Template/Grammar.pm|98751 -./backoffice/api/lib/perl5/Template/Iterator.pm|13751 -./backoffice/api/lib/perl5/Template/Manual/Config.pod|64128 -./backoffice/api/lib/perl5/Template/Manual/Credits.pod|4624 -./backoffice/api/lib/perl5/Template/Manual/Directives.pod|61980 -./backoffice/api/lib/perl5/Template/Manual/Filters.pod|14138 -./backoffice/api/lib/perl5/Template/Manual/Internals.pod|18353 -./backoffice/api/lib/perl5/Template/Manual/Intro.pod|9692 -./backoffice/api/lib/perl5/Template/Manual/Plugins.pod|9110 -./backoffice/api/lib/perl5/Template/Manual.pod|2433 -./backoffice/api/lib/perl5/Template/Manual/Syntax.pod|9181 -./backoffice/api/lib/perl5/Template/Manual/Variables.pod|25025 -./backoffice/api/lib/perl5/Template/Manual/Views.pod|19264 -./backoffice/api/lib/perl5/Template/Manual/VMethods.pod|20701 -./backoffice/api/lib/perl5/Template/Modules.pod|5503 -./backoffice/api/lib/perl5/Template/Namespace/Constants.pm|4460 -./backoffice/api/lib/perl5/Template/Parser.pm|41281 -./backoffice/api/lib/perl5/Template/Plugin/Assert.pm|3504 -./backoffice/api/lib/perl5/Template/Plugin/CGI.pm|3087 -./backoffice/api/lib/perl5/Template/Plugin/Datafile.pm|4243 -./backoffice/api/lib/perl5/Template/Plugin/Date.pm|10698 -./backoffice/api/lib/perl5/Template/Plugin/DBI.pm|31354 -./backoffice/api/lib/perl5/Template/Plugin/Directory.pm|11220 -./backoffice/api/lib/perl5/Template/Plugin/Dumper.pm|3607 -./backoffice/api/lib/perl5/Template/Plugin/File.pm|11259 -./backoffice/api/lib/perl5/Template/Plugin/Filter.pm|10074 -./backoffice/api/lib/perl5/Template/Plugin/Format.pm|1835 -./backoffice/api/lib/perl5/Template/Plugin/HTML.pm|6024 -./backoffice/api/lib/perl5/Template/Plugin/Image.pm|11730 -./backoffice/api/lib/perl5/Template/Plugin/Iterator.pm|2003 -./backoffice/api/lib/perl5/Template/Plugin/Math.pm|4089 -./backoffice/api/lib/perl5/Template/Plugin.pm|10700 -./backoffice/api/lib/perl5/Template/Plugin/Pod.pm|1652 -./backoffice/api/lib/perl5/Template/Plugin/Procedural.pm|3678 -./backoffice/api/lib/perl5/Template/Plugin/Scalar.pm|3769 -./backoffice/api/lib/perl5/Template/Plugins.pm|15187 -./backoffice/api/lib/perl5/Template/Plugin/String.pm|18167 -./backoffice/api/lib/perl5/Template/Plugin/Table.pm|12705 -./backoffice/api/lib/perl5/Template/Plugin/URL.pm|5841 -./backoffice/api/lib/perl5/Template/Plugin/View.pm|2476 -./backoffice/api/lib/perl5/Template/Plugin/Wrap.pm|3271 -./backoffice/api/lib/perl5/Template.pm|25037 -./backoffice/api/lib/perl5/Template/Provider.pm|48074 -./backoffice/api/lib/perl5/Template/Service.pm|18567 -./backoffice/api/lib/perl5/Template/Stash/Context.pm|27389 -./backoffice/api/lib/perl5/Template/Stash.pm|30224 -./backoffice/api/lib/perl5/Template/Stash/XS.pm|3351 -./backoffice/api/lib/perl5/Template/Test.pm|22242 -./backoffice/api/lib/perl5/Template/Toolkit.pm|5711 -./backoffice/api/lib/perl5/Template/Tools.pod|1527 -./backoffice/api/lib/perl5/Template/Tools/tpage.pod|1640 -./backoffice/api/lib/perl5/Template/Tools/ttree.pod|10568 -./backoffice/api/lib/perl5/Template/Tutorial/Datafile.pod|14388 -./backoffice/api/lib/perl5/Template/Tutorial.pod|1043 -./backoffice/api/lib/perl5/Template/Tutorial/Web.pod|26939 -./backoffice/api/lib/perl5/Template/View.pm|24090 -./backoffice/api/lib/perl5/Template/VMethods.pm|15499 -./backoffice/api/lib/perl5/Test/Deep/All.pm|702 -./backoffice/api/lib/perl5/Test/Deep/Any.pm|908 -./backoffice/api/lib/perl5/Test/Deep/ArrayEach.pm|517 -./backoffice/api/lib/perl5/Test/Deep/ArrayElementsOnly.pm|677 -./backoffice/api/lib/perl5/Test/Deep/ArrayLengthOnly.pm|654 -./backoffice/api/lib/perl5/Test/Deep/ArrayLength.pm|374 -./backoffice/api/lib/perl5/Test/Deep/Array.pm|477 -./backoffice/api/lib/perl5/Test/Deep/Blessed.pm|564 -./backoffice/api/lib/perl5/Test/Deep/Boolean.pm|558 -./backoffice/api/lib/perl5/Test/Deep/Cache.pm|1032 -./backoffice/api/lib/perl5/Test/Deep/Cache/Simple.pm|1205 -./backoffice/api/lib/perl5/Test/Deep/Class.pm|363 -./backoffice/api/lib/perl5/Test/Deep/Cmp.pm|1153 -./backoffice/api/lib/perl5/Test/Deep/Code.pm|705 -./backoffice/api/lib/perl5/Test/Deep/HashEach.pm|326 -./backoffice/api/lib/perl5/Test/Deep/HashElements.pm|1267 -./backoffice/api/lib/perl5/Test/Deep/HashKeysOnly.pm|1541 -./backoffice/api/lib/perl5/Test/Deep/HashKeys.pm|999 -./backoffice/api/lib/perl5/Test/Deep/Hash.pm|1413 -./backoffice/api/lib/perl5/Test/Deep/Ignore.pm|186 -./backoffice/api/lib/perl5/Test/Deep/Isa.pm|538 -./backoffice/api/lib/perl5/Test/Deep/ListMethods.pm|288 -./backoffice/api/lib/perl5/Test/Deep/Methods.pm|1312 -./backoffice/api/lib/perl5/Test/Deep/MM.pm|922 -./backoffice/api/lib/perl5/Test/Deep/None.pm|869 -./backoffice/api/lib/perl5/Test/Deep/NoTest.pm|766 -./backoffice/api/lib/perl5/Test/Deep/Number.pm|1088 -./backoffice/api/lib/perl5/Test/Deep/Obj.pm|522 -./backoffice/api/lib/perl5/Test/Deep.pm|49727 -./backoffice/api/lib/perl5/Test/Deep/Ref.pm|490 -./backoffice/api/lib/perl5/Test/Deep/RefType.pm|547 -./backoffice/api/lib/perl5/Test/Deep/RegexpMatches.pm|662 -./backoffice/api/lib/perl5/Test/Deep/RegexpOnly.pm|521 -./backoffice/api/lib/perl5/Test/Deep/Regexp.pm|1408 -./backoffice/api/lib/perl5/Test/Deep/RegexpRefOnly.pm|423 -./backoffice/api/lib/perl5/Test/Deep/RegexpRef.pm|639 -./backoffice/api/lib/perl5/Test/Deep/RegexpVersion.pm|280 -./backoffice/api/lib/perl5/Test/Deep/ScalarRefOnly.pm|384 -./backoffice/api/lib/perl5/Test/Deep/ScalarRef.pm|432 -./backoffice/api/lib/perl5/Test/Deep/Set.pm|3696 -./backoffice/api/lib/perl5/Test/Deep/Shallow.pm|597 -./backoffice/api/lib/perl5/Test/Deep/Stack.pm|1076 -./backoffice/api/lib/perl5/Test/Deep/String.pm|369 -./backoffice/api/lib/perl5/Test/Exception.pm|15465 -./backoffice/api/lib/perl5/Test/Memory/Cycle.pm|7390 -./backoffice/api/lib/perl5/Text/Unidecode.pm|28162 -./backoffice/api/lib/perl5/Text/Unidecode/x00.pm|3903 -./backoffice/api/lib/perl5/Text/Unidecode/x01.pm|1430 -./backoffice/api/lib/perl5/Text/Unidecode/x02.pm|2566 -./backoffice/api/lib/perl5/Text/Unidecode/x03.pm|1696 -./backoffice/api/lib/perl5/Text/Unidecode/x04.pm|1659 -./backoffice/api/lib/perl5/Text/Unidecode/x05.pm|1598 -./backoffice/api/lib/perl5/Text/Unidecode/x06.pm|1537 -./backoffice/api/lib/perl5/Text/Unidecode/x07.pm|1696 -./backoffice/api/lib/perl5/Text/Unidecode/x08.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x09.pm|1631 -./backoffice/api/lib/perl5/Text/Unidecode/x0a.pm|1650 -./backoffice/api/lib/perl5/Text/Unidecode/x0b.pm|1671 -./backoffice/api/lib/perl5/Text/Unidecode/x0c.pm|1635 -./backoffice/api/lib/perl5/Text/Unidecode/x0d.pm|1650 -./backoffice/api/lib/perl5/Text/Unidecode/x0e.pm|1638 -./backoffice/api/lib/perl5/Text/Unidecode/x0f.pm|1658 -./backoffice/api/lib/perl5/Text/Unidecode/x10.pm|1676 -./backoffice/api/lib/perl5/Text/Unidecode/x11.pm|1746 -./backoffice/api/lib/perl5/Text/Unidecode/x12.pm|1887 -./backoffice/api/lib/perl5/Text/Unidecode/x13.pm|1803 -./backoffice/api/lib/perl5/Text/Unidecode/x14.pm|1853 -./backoffice/api/lib/perl5/Text/Unidecode/x15.pm|1877 -./backoffice/api/lib/perl5/Text/Unidecode/x16.pm|1677 -./backoffice/api/lib/perl5/Text/Unidecode/x17.pm|1734 -./backoffice/api/lib/perl5/Text/Unidecode/x18.pm|1646 -./backoffice/api/lib/perl5/Text/Unidecode/x19.pm|1889 -./backoffice/api/lib/perl5/Text/Unidecode/x1a.pm|1889 -./backoffice/api/lib/perl5/Text/Unidecode/x1b.pm|1889 -./backoffice/api/lib/perl5/Text/Unidecode/x1c.pm|1889 -./backoffice/api/lib/perl5/Text/Unidecode/x1d.pm|1889 -./backoffice/api/lib/perl5/Text/Unidecode/x1e.pm|2269 -./backoffice/api/lib/perl5/Text/Unidecode/x1f.pm|1444 -./backoffice/api/lib/perl5/Text/Unidecode/x20.pm|1707 -./backoffice/api/lib/perl5/Text/Unidecode/x21.pm|1708 -./backoffice/api/lib/perl5/Text/Unidecode/x22.pm|1871 -./backoffice/api/lib/perl5/Text/Unidecode/x23.pm|1871 -./backoffice/api/lib/perl5/Text/Unidecode/x24.pm|1304 -./backoffice/api/lib/perl5/Text/Unidecode/x25.pm|1847 -./backoffice/api/lib/perl5/Text/Unidecode/x26.pm|1544 -./backoffice/api/lib/perl5/Text/Unidecode/x27.pm|1310 -./backoffice/api/lib/perl5/Text/Unidecode/x28.pm|3056 -./backoffice/api/lib/perl5/Text/Unidecode/x29.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x2a.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x2b.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x2c.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x2d.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x2e.pm|2216 -./backoffice/api/lib/perl5/Text/Unidecode/x2f.pm|2549 -./backoffice/api/lib/perl5/Text/Unidecode/x30.pm|1654 -./backoffice/api/lib/perl5/Text/Unidecode/x31.pm|1664 -./backoffice/api/lib/perl5/Text/Unidecode/x32.pm|2326 -./backoffice/api/lib/perl5/Text/Unidecode/x33.pm|2121 -./backoffice/api/lib/perl5/Text/Unidecode/x34.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x35.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x36.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x37.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x38.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x39.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x3a.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x3b.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x3c.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x3d.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x3e.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x3f.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x40.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x41.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x42.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x43.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x44.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x45.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x46.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x47.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x48.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x49.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x4a.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x4b.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x4c.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/x4d.pm|2417 -./backoffice/api/lib/perl5/Text/Unidecode/x4e.pm|2186 -./backoffice/api/lib/perl5/Text/Unidecode/x4f.pm|2165 -./backoffice/api/lib/perl5/Text/Unidecode/x50.pm|2236 -./backoffice/api/lib/perl5/Text/Unidecode/x51.pm|2237 -./backoffice/api/lib/perl5/Text/Unidecode/x52.pm|2202 -./backoffice/api/lib/perl5/Text/Unidecode/x53.pm|2172 -./backoffice/api/lib/perl5/Text/Unidecode/x54.pm|2137 -./backoffice/api/lib/perl5/Text/Unidecode/x55.pm|2151 -./backoffice/api/lib/perl5/Text/Unidecode/x56.pm|2171 -./backoffice/api/lib/perl5/Text/Unidecode/x57.pm|2183 -./backoffice/api/lib/perl5/Text/Unidecode/x58.pm|2240 -./backoffice/api/lib/perl5/Text/Unidecode/x59.pm|2196 -./backoffice/api/lib/perl5/Text/Unidecode/x5a.pm|2188 -./backoffice/api/lib/perl5/Text/Unidecode/x5b.pm|2218 -./backoffice/api/lib/perl5/Text/Unidecode/x5c.pm|2170 -./backoffice/api/lib/perl5/Text/Unidecode/x5d.pm|2228 -./backoffice/api/lib/perl5/Text/Unidecode/x5e.pm|2222 -./backoffice/api/lib/perl5/Text/Unidecode/x5f.pm|2212 -./backoffice/api/lib/perl5/Text/Unidecode/x60.pm|2192 -./backoffice/api/lib/perl5/Text/Unidecode/x61.pm|2216 -./backoffice/api/lib/perl5/Text/Unidecode/x62.pm|2172 -./backoffice/api/lib/perl5/Text/Unidecode/x63.pm|2212 -./backoffice/api/lib/perl5/Text/Unidecode/x64.pm|2207 -./backoffice/api/lib/perl5/Text/Unidecode/x65.pm|2190 -./backoffice/api/lib/perl5/Text/Unidecode/x66.pm|2227 -./backoffice/api/lib/perl5/Text/Unidecode/x67.pm|2191 -./backoffice/api/lib/perl5/Text/Unidecode/x68.pm|2226 -./backoffice/api/lib/perl5/Text/Unidecode/x69.pm|2229 -./backoffice/api/lib/perl5/Text/Unidecode/x6a.pm|2234 -./backoffice/api/lib/perl5/Text/Unidecode/x6b.pm|2164 -./backoffice/api/lib/perl5/Text/Unidecode/x6c.pm|2197 -./backoffice/api/lib/perl5/Text/Unidecode/x6d.pm|2203 -./backoffice/api/lib/perl5/Text/Unidecode/x6e.pm|2198 -./backoffice/api/lib/perl5/Text/Unidecode/x6f.pm|2210 -./backoffice/api/lib/perl5/Text/Unidecode/x70.pm|2257 -./backoffice/api/lib/perl5/Text/Unidecode/x71.pm|2244 -./backoffice/api/lib/perl5/Text/Unidecode/x72.pm|2221 -./backoffice/api/lib/perl5/Text/Unidecode/x73.pm|2198 -./backoffice/api/lib/perl5/Text/Unidecode/x74.pm|2254 -./backoffice/api/lib/perl5/Text/Unidecode/x75.pm|2223 -./backoffice/api/lib/perl5/Text/Unidecode/x76.pm|2191 -./backoffice/api/lib/perl5/Text/Unidecode/x77.pm|2225 -./backoffice/api/lib/perl5/Text/Unidecode/x78.pm|2214 -./backoffice/api/lib/perl5/Text/Unidecode/x79.pm|2162 -./backoffice/api/lib/perl5/Text/Unidecode/x7a.pm|2227 -./backoffice/api/lib/perl5/Text/Unidecode/x7b.pm|2219 -./backoffice/api/lib/perl5/Text/Unidecode/x7c.pm|2227 -./backoffice/api/lib/perl5/Text/Unidecode/x7d.pm|2226 -./backoffice/api/lib/perl5/Text/Unidecode/x7e.pm|2232 -./backoffice/api/lib/perl5/Text/Unidecode/x7f.pm|2218 -./backoffice/api/lib/perl5/Text/Unidecode/x80.pm|2207 -./backoffice/api/lib/perl5/Text/Unidecode/x81.pm|2223 -./backoffice/api/lib/perl5/Text/Unidecode/x82.pm|2205 -./backoffice/api/lib/perl5/Text/Unidecode/x83.pm|2199 -./backoffice/api/lib/perl5/Text/Unidecode/x84.pm|2210 -./backoffice/api/lib/perl5/Text/Unidecode/x85.pm|2192 -./backoffice/api/lib/perl5/Text/Unidecode/x86.pm|2168 -./backoffice/api/lib/perl5/Text/Unidecode/x87.pm|2205 -./backoffice/api/lib/perl5/Text/Unidecode/x88.pm|2199 -./backoffice/api/lib/perl5/Text/Unidecode/x89.pm|2180 -./backoffice/api/lib/perl5/Text/Unidecode/x8a.pm|2195 -./backoffice/api/lib/perl5/Text/Unidecode/x8b.pm|2195 -./backoffice/api/lib/perl5/Text/Unidecode/x8c.pm|2180 -./backoffice/api/lib/perl5/Text/Unidecode/x8d.pm|2190 -./backoffice/api/lib/perl5/Text/Unidecode/x8e.pm|2211 -./backoffice/api/lib/perl5/Text/Unidecode/x8f.pm|2201 -./backoffice/api/lib/perl5/Text/Unidecode/x90.pm|2183 -./backoffice/api/lib/perl5/Text/Unidecode/x91.pm|2205 -./backoffice/api/lib/perl5/Text/Unidecode/x92.pm|2200 -./backoffice/api/lib/perl5/Text/Unidecode/x93.pm|2234 -./backoffice/api/lib/perl5/Text/Unidecode/x94.pm|2217 -./backoffice/api/lib/perl5/Text/Unidecode/x95.pm|2223 -./backoffice/api/lib/perl5/Text/Unidecode/x96.pm|2160 -./backoffice/api/lib/perl5/Text/Unidecode/x97.pm|2201 -./backoffice/api/lib/perl5/Text/Unidecode/x98.pm|2195 -./backoffice/api/lib/perl5/Text/Unidecode/x99.pm|2179 -./backoffice/api/lib/perl5/Text/Unidecode/x9a.pm|2171 -./backoffice/api/lib/perl5/Text/Unidecode/x9b.pm|2205 -./backoffice/api/lib/perl5/Text/Unidecode/x9c.pm|2207 -./backoffice/api/lib/perl5/Text/Unidecode/x9d.pm|2182 -./backoffice/api/lib/perl5/Text/Unidecode/x9e.pm|2165 -./backoffice/api/lib/perl5/Text/Unidecode/x9f.pm|2034 -./backoffice/api/lib/perl5/Text/Unidecode/xa0.pm|1976 -./backoffice/api/lib/perl5/Text/Unidecode/xa1.pm|2017 -./backoffice/api/lib/perl5/Text/Unidecode/xa2.pm|2051 -./backoffice/api/lib/perl5/Text/Unidecode/xa3.pm|2069 -./backoffice/api/lib/perl5/Text/Unidecode/xa4.pm|1962 -./backoffice/api/lib/perl5/Text/Unidecode/xa5.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xa6.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xa7.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xa8.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xa9.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xaa.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xab.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xac.pm|2257 -./backoffice/api/lib/perl5/Text/Unidecode/xad.pm|2314 -./backoffice/api/lib/perl5/Text/Unidecode/xae.pm|2423 -./backoffice/api/lib/perl5/Text/Unidecode/xaf.pm|2560 -./backoffice/api/lib/perl5/Text/Unidecode/xb0.pm|2401 -./backoffice/api/lib/perl5/Text/Unidecode/xb1.pm|2294 -./backoffice/api/lib/perl5/Text/Unidecode/xb2.pm|2228 -./backoffice/api/lib/perl5/Text/Unidecode/xb3.pm|2289 -./backoffice/api/lib/perl5/Text/Unidecode/xb4.pm|2310 -./backoffice/api/lib/perl5/Text/Unidecode/xb5.pm|2467 -./backoffice/api/lib/perl5/Text/Unidecode/xb6.pm|2544 -./backoffice/api/lib/perl5/Text/Unidecode/xb7.pm|2381 -./backoffice/api/lib/perl5/Text/Unidecode/xb8.pm|2262 -./backoffice/api/lib/perl5/Text/Unidecode/xb9.pm|2252 -./backoffice/api/lib/perl5/Text/Unidecode/xba.pm|2313 -./backoffice/api/lib/perl5/Text/Unidecode/xbb.pm|2278 -./backoffice/api/lib/perl5/Text/Unidecode/xbc.pm|2255 -./backoffice/api/lib/perl5/Text/Unidecode/xbd.pm|2300 -./backoffice/api/lib/perl5/Text/Unidecode/xbe.pm|2397 -./backoffice/api/lib/perl5/Text/Unidecode/xbf.pm|2558 -./backoffice/api/lib/perl5/Text/Unidecode/xc0.pm|2404 -./backoffice/api/lib/perl5/Text/Unidecode/xc1.pm|2313 -./backoffice/api/lib/perl5/Text/Unidecode/xc2.pm|2258 -./backoffice/api/lib/perl5/Text/Unidecode/xc3.pm|2523 -./backoffice/api/lib/perl5/Text/Unidecode/xc4.pm|2572 -./backoffice/api/lib/perl5/Text/Unidecode/xc5.pm|2129 -./backoffice/api/lib/perl5/Text/Unidecode/xc6.pm|2038 -./backoffice/api/lib/perl5/Text/Unidecode/xc7.pm|2112 -./backoffice/api/lib/perl5/Text/Unidecode/xc8.pm|2281 -./backoffice/api/lib/perl5/Text/Unidecode/xc9.pm|2270 -./backoffice/api/lib/perl5/Text/Unidecode/xca.pm|2555 -./backoffice/api/lib/perl5/Text/Unidecode/xcb.pm|2560 -./backoffice/api/lib/perl5/Text/Unidecode/xcc.pm|2297 -./backoffice/api/lib/perl5/Text/Unidecode/xcd.pm|2286 -./backoffice/api/lib/perl5/Text/Unidecode/xce.pm|2256 -./backoffice/api/lib/perl5/Text/Unidecode/xcf.pm|2261 -./backoffice/api/lib/perl5/Text/Unidecode/xd0.pm|2254 -./backoffice/api/lib/perl5/Text/Unidecode/xd1.pm|2315 -./backoffice/api/lib/perl5/Text/Unidecode/xd2.pm|2272 -./backoffice/api/lib/perl5/Text/Unidecode/xd3.pm|2253 -./backoffice/api/lib/perl5/Text/Unidecode/xd4.pm|2306 -./backoffice/api/lib/perl5/Text/Unidecode/xd5.pm|2228 -./backoffice/api/lib/perl5/Text/Unidecode/xd6.pm|2313 -./backoffice/api/lib/perl5/Text/Unidecode/xd7.pm|2084 -./backoffice/api/lib/perl5/Text/Unidecode/xd8.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xd9.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xda.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xdb.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xdc.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xdd.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xde.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xdf.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xe0.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xe1.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xe2.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xe3.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xe4.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xe5.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xe6.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xe7.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xe8.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xe9.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xea.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xeb.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xec.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xed.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xee.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xef.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xf0.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xf1.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xf2.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xf3.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xf4.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xf5.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xf6.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xf7.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xf8.pm|134 -./backoffice/api/lib/perl5/Text/Unidecode/xf9.pm|2115 -./backoffice/api/lib/perl5/Text/Unidecode/xfa.pm|1955 -./backoffice/api/lib/perl5/Text/Unidecode/xfb.pm|1390 -./backoffice/api/lib/perl5/Text/Unidecode/xfc.pm|1143 -./backoffice/api/lib/perl5/Text/Unidecode/xfd.pm|2676 -./backoffice/api/lib/perl5/Text/Unidecode/xfe.pm|1479 -./backoffice/api/lib/perl5/Text/Unidecode/xff.pm|1646 -./backoffice/api/lib/perl5/ttfmod.pl|7073 -./backoffice/api/lib/perl5/URI/Encode.pm|8444 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/DBD/PgPP/.packlist|83 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Devel/Cycle/.packlist|89 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Digest/SHA/PurePerl/.packlist|178 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Font/TTF/.packlist|7735 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Image/Size/.packlist|157 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/local/lib/.packlist|393 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Math/Base/Convert/.packlist|576 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/MIME/Types/.packlist|452 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/MLDBM/.packlist|255 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PDF/API2/.packlist|10118 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PDF/Table/.packlist|85 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/SQL/Statement/.packlist|2113 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Sub/Uplevel/.packlist|89 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Template/DBI/.packlist|198 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Template/.packlist|7059 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Test/Deep/.packlist|2257 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Test/Exception/.packlist|95 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Test/LeakTrace/LeakTrace.so|88640 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Test/LeakTrace/.packlist|490 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Test/Memory/Cycle/.packlist|102 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Text/Soundex/.packlist|209 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Text/Soundex/Soundex.so|60680 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Text/Unidecode/.packlist|13151 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/auto/URI/Encode/.packlist|87 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/perllocal.pod|4676 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/Test/LeakTrace/JA.pod|10261 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/Test/LeakTrace.pm|7262 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/Test/LeakTrace/Script.pm|986 -./backoffice/api/lib/perl5/x86_64-linux-gnu-thread-multi/Text/Soundex.pm|8345 -./backoffice/api/lib/sendemail_new.pm|4865 -./backoffice/api/lib/sendemail.pm|3038 -./backoffice/api/lib/session.pm|9669 -./backoffice/api/report.cgi|3938 -./backoffice/api/sendEmail|80246 -./backoffice/api/tmp/mailbody_fiduciairetiger_gmail.com.txt|1026 -./backoffice/api/tmp/mailbody_ksaffran_dks.lu.txt|831 -./backoffice/api/tmp/mailbody_max.dibartolomeo_dbe.lu.txt|1030 -./backoffice/api/tmp/mailbody_pierre.eberhard_dbe.lu.txt|1027 -./backoffice/api/upload.cgi|9418 -./backoffice/css/module.css|181 -./backoffice/css/w3pro.css|27227 -./backoffice/css/w3pro.min.css|25940 -./backoffice/data/.htaccess|169 -./backoffice/data/mail/block/greeting.tt|180 -./backoffice/data/mail/block/signature.tt|62 -./backoffice/data/mail/body/user_forgotpasswd.tt|243 -./backoffice/data/mail/body/user_registration.tt|551 -./backoffice/data/mail/mail.tt|709 -./backoffice/data/reports/invoices/dks-deutsch.conf|244 -./backoffice/data/reports/invoices/dks-deutsch/dks_500.png|19377 -./backoffice/data/reports/invoices/dks-deutsch.footer.tt|1595 -./backoffice/data/reports/invoices/dks-deutsch.header.tt|685 -./backoffice/data/reports/invoices/dks-deutsch/sitc.png|57392 -./backoffice/data/reports/invoices/dks-deutsch.tt|3712 -./backoffice/data/reports/invoices/staff_department.conf|262 -./backoffice/data/reports/invoices/staff_department.footer.tt|1595 -./backoffice/data/reports/invoices/staff_department.header.tt|685 -./backoffice/data/reports/invoices/staff_department.tt|3712 -./backoffice/data/reports/invoices/staff_workplan.conf|258 -./backoffice/data/reports/invoices/staff_workplan.footer.tt|1595 -./backoffice/data/reports/invoices/staff_workplan.header.tt|685 -./backoffice/data/reports/invoices/staff_workplan.tt|1568 -./backoffice/data/reports/pot/pot_period.conf|259 -./backoffice/data/reports/pot/pot_period.footer.tt|1381 -./backoffice/data/reports/pot/pot_period.header.tt|1205 -./backoffice/data/reports/pot/pot_period.tt|3247 -./backoffice/data/schemata/defaultcompany.schema.sql|47179 -./backoffice/data/schemata/.htaccess|167 -./backoffice/.htaccess|214 -./backoffice/img/bg1.jpg|135161 -./backoffice/img/favicon/android-icon-144x144.png|12179 -./backoffice/img/favicon/android-icon-192x192.png|16669 -./backoffice/img/favicon/android-icon-36x36.png|2527 -./backoffice/img/favicon/android-icon-48x48.png|3489 -./backoffice/img/favicon/android-icon-72x72.png|5250 -./backoffice/img/favicon/android-icon-96x96.png|7086 -./backoffice/img/favicon/apple-icon-114x114.png|8487 -./backoffice/img/favicon/apple-icon-120x120.png|9134 -./backoffice/img/favicon/apple-icon-144x144.png|12179 -./backoffice/img/favicon/apple-icon-152x152.png|13278 -./backoffice/img/favicon/apple-icon-180x180.png|17376 -./backoffice/img/favicon/apple-icon-57x57.png|4122 -./backoffice/img/favicon/apple-icon-60x60.png|4312 -./backoffice/img/favicon/apple-icon-72x72.png|5250 -./backoffice/img/favicon/apple-icon-76x76.png|5550 -./backoffice/img/favicon/apple-icon.png|17158 -./backoffice/img/favicon/apple-icon-precomposed.png|17158 -./backoffice/img/favicon/browserconfig.xml|281 -./backoffice/img/favicon/favicon-16x16.png|1251 -./backoffice/img/favicon/favicon-32x32.png|2246 -./backoffice/img/favicon/favicon-96x96.png|7086 -./backoffice/img/favicon/favicon.ico|1150 -./backoffice/img/favicon/manifest.json|720 -./backoffice/img/favicon/ms-icon-144x144.png|12179 -./backoffice/img/favicon/ms-icon-150x150.png|12985 -./backoffice/img/favicon/ms-icon-310x310.png|40744 -./backoffice/img/favicon/ms-icon-70x70.png|5051 -./backoffice/img/hourtrax.png|44729 -./backoffice/img/icons/access.svg|1553 -./backoffice/img/icons/access_white.svg|1569 -./backoffice/img/icons/address.svg|800 -./backoffice/img/icons/address_white.svg|812 -./backoffice/img/icons/Agreement_01.svg|5234 -./backoffice/img/icons/apps.svg|781 -./backoffice/img/icons/apps_white.svg|793 -./backoffice/img/icons/archive.svg|641 -./backoffice/img/icons/archive_white.svg|658 -./backoffice/img/icons/Bill.svg|3185 -./backoffice/img/icons/calendar.svg|1038 -./backoffice/img/icons/calendar_white.svg|1038 -./backoffice/img/icons/clubs.svg|1033 -./backoffice/img/icons/club.svg|823 -./backoffice/img/icons/clubs_white.svg|1045 -./backoffice/img/icons/club_white.svg|835 -./backoffice/img/icons/code.svg|589 -./backoffice/img/icons/coin.svg|2323 -./backoffice/img/icons/company.svg|1482 -./backoffice/img/icons/company_white.svg|1498 -./backoffice/img/icons/cubelight.svg|1023 -./backoffice/img/icons/cubelight_white.svg|1036 -./backoffice/img/icons/cube.svg|365 -./backoffice/img/icons/cube_white.svg|378 -./backoffice/img/icons/dashboard.svg|1085 -./backoffice/img/icons/dashboard_white.svg|1098 -./backoffice/img/icons/data_refresh.svg|2969 -./backoffice/img/icons/data_refresh_white.svg|2985 -./backoffice/img/icons/Document_Save.svg|729 -./backoffice/img/icons/documents.svg|987 -./backoffice/img/icons/documents_white.svg|1003 -./backoffice/img/icons/download.svg|339 -./backoffice/img/icons/download_white.svg|351 -./backoffice/img/icons/duplicate.svg|430 -./backoffice/img/icons/duplicate_white.svg|442 -./backoffice/img/icons/edit.svg|750 -./backoffice/img/icons/edit_white.svg|725 -./backoffice/img/icons/excel.svg|1394 -./backoffice/img/icons/excel_white.svg|1410 -./backoffice/img/icons/expand.svg|322 -./backoffice/img/icons/file/dir.png|6937 -./backoffice/img/icons/file/doc.png|6455 -./backoffice/img/icons/file/docx.png|6455 -./backoffice/img/icons/file/file.png|4540 -./backoffice/img/icons/file/folderup.svg|917 -./backoffice/img/icons/file/folderup_white.svg|929 -./backoffice/img/icons/file/jpg.png|6297 -./backoffice/img/icons/file/pdf.png|8783 -./backoffice/img/icons/file/png.png|6297 -./backoffice/img/icons/file.svg|272 -./backoffice/img/icons/file/txt.png|6049 -./backoffice/img/icons/file_white.svg|284 -./backoffice/img/icons/file/xls.png|6065 -./backoffice/img/icons/file/xlsx.png|6065 -./backoffice/img/icons/Floppy.svg|1058 -./backoffice/img/icons/folder_add.svg|1438 -./backoffice/img/icons/folder_add_white.svg|1454 -./backoffice/img/icons/Folder_Delete_01.svg|1254 -./backoffice/img/icons/Folder_Find_01.svg|1371 -./backoffice/img/icons/folder.svg|404 -./backoffice/img/icons/folder_white.svg|417 -./backoffice/img/icons/globe.svg|1242 -./backoffice/img/icons/globe_white.svg|1254 -./backoffice/img/icons/group.svg|1994 -./backoffice/img/icons/group_white.svg|2006 -./backoffice/img/icons/home.svg|531 -./backoffice/img/icons/inbox.svg|413 -./backoffice/img/icons/inbox_white.svg|425 -./backoffice/img/icons/library.svg|968 -./backoffice/img/icons/library_white.svg|980 -./backoffice/img/icons/license.svg|478 -./backoffice/img/icons/license_white.svg|490 -./backoffice/img/icons/list.svg|640 -./backoffice/img/icons/list_white.svg|652 -./backoffice/img/icons/logout.svg|402 -./backoffice/img/icons/logout_white.svg|414 -./backoffice/img/icons/log.svg|1710 -./backoffice/img/icons/log_white.svg|1726 -./backoffice/img/icons/menu.svg|336 -./backoffice/img/icons/menu_white.svg|348 -./backoffice/img/icons/newspaper.svg|812 -./backoffice/img/icons/newspaper_white.svg|824 -./backoffice/img/icons/numberlist.svg|908 -./backoffice/img/icons/numberlist_white.svg|920 -./backoffice/img/icons/package.svg|408 -./backoffice/img/icons/package_white.svg|420 -./backoffice/img/icons/pay.svg|3048 -./backoffice/img/icons/pdfexport.svg|2730 -./backoffice/img/icons/pdfexport_white.svg|2730 -./backoffice/img/icons/pdf.svg|3436 -./backoffice/img/icons/pdf_white.svg|3452 -./backoffice/img/icons/pictures.svg|1420 -./backoffice/img/icons/pictures_white.svg|1436 -./backoffice/img/icons/plus2.svg|535 -./backoffice/img/icons/plus.svg|404 -./backoffice/img/icons/plus_white.svg|547 -./backoffice/img/icons/poticon.svg|10061 -./backoffice/img/icons/projects.svg|939 -./backoffice/img/icons/projects_white.svg|955 -./backoffice/img/icons/remove_2.svg|816 -./backoffice/img/icons/remove.svg|447 -./backoffice/img/icons/remove_white.svg|828 -./backoffice/img/icons/rename.svg|1136 -./backoffice/img/icons/Save.svg|477 -./backoffice/img/icons/squares.svg|502 -./backoffice/img/icons/squares_white.svg|514 -./backoffice/img/icons/table.svg|454 -./backoffice/img/icons/target.svg|780 -./backoffice/img/icons/target_white.svg|792 -./backoffice/img/icons/upload.svg|507 -./backoffice/img/icons/upload_white.svg|523 -./backoffice/img/icons/user.svg|780 -./backoffice/img/icons/user_white.svg|792 -./backoffice/img/logo_512.png|31456 -./backoffice/img/logo_512_xx.png|14719 -./backoffice/img/no-image-icon.png|20003 -./backoffice/img/no-news-img.png|17922 -./backoffice/img/pottop.png|2689 -./backoffice/img/toplogo.png|31456 -./backoffice/index.cgi|5552 -./backoffice/js/admin.js|2596 -./backoffice/js/formsave.js|8472 -./backoffice/js/module_global.js|4107 -./backoffice/js/request.js|3007 -./backoffice/tmpl/block/cgu.tt|9358 -./backoffice/tmpl/block/dlgaction.tt|2865 -./backoffice/tmpl/block/dlgdataload.tt|1293 -./backoffice/tmpl/block/dlgdeleterow.tt|2736 -./backoffice/tmpl/block/dlgmessage.tt|950 -./backoffice/tmpl/block/dlgreport.tt|2354 -./backoffice/tmpl/block/dlguploadfile.tt|3399 -./backoffice/tmpl/block/head.tt|1782 -./backoffice/tmpl/block/snackbar.tt|25 -./backoffice/tmpl/block/toolbars.tt|519 -./backoffice/tmpl/macro/fields.tt|12382 -./backoffice/tmpl/module/companies/companies.js|4239 -./backoffice/tmpl/module/companies/index.js|186 -./backoffice/tmpl/module/companies/index.tt|8478 -./backoffice/tmpl/module/companies/staffgroups.js|2346 -./backoffice/tmpl/module/companies/worktimes.js|3616 -./backoffice/tmpl/module/dashboard/index.js|165 -./backoffice/tmpl/module/dashboard/index.tt|1163 -./backoffice/tmpl/module/periods/index.js|219 -./backoffice/tmpl/module/periods/index.tt|7831 -./backoffice/tmpl/module/periods/reportperiod.js|4442 -./backoffice/tmpl/module/periods/staffperiodweeks.js|10895 -./backoffice/tmpl/module/profile/dlgpassword.tt|2911 -./backoffice/tmpl/module/profile/dlgusername.tt|3814 -./backoffice/tmpl/module/profile/index.js|403 -./backoffice/tmpl/module/profile/index.tt|1767 -./backoffice/tmpl/module/staff/index.js|199 -./backoffice/tmpl/module/staff/index.tt|5754 -./backoffice/tmpl/module/staff/staffcontract.js|6449 -./backoffice/tmpl/module/staff/staff.js|3528 -./backoffice/tmpl/module/timetrackers/index.js|401 -./backoffice/tmpl/module/timetrackers/index.tt|1310 -./backoffice/tmpl/module/users/index.js|126 -./backoffice/tmpl/module/users/index.tt|3043 -./backoffice/tmpl/module/users/users.js|6741 -./backoffice/tmpl/module/workplans/index.js|169 -./backoffice/tmpl/module/workplans/index.tt|5446 -./backoffice/tmpl/module/workplans/workplans.js|6385 -./backoffice/tmpl/skeleton/index.tt|4407 -./backoffice/tmpl/skeleton/login/accountreset.tt|1679 -./backoffice/tmpl/skeleton/login/forgotpassword.tt|874 -./backoffice/tmpl/skeleton/login/login.tt|1231 -./backoffice/tmpl/skeleton/login/message.tt|638 -./backoffice/tmpl/skeleton/login/register.tt|2545 -./backoffice/tmpl/skeleton/login.tt|1171 -./backoffice/tmpl/skeleton/login/validationcode.tt|954 -./backoffice/tmpl/skeleton/module_file.tt|84 -./backoffice/tmpl/skeleton/module.tt|2584 -./backoffice/tmp/sql.log|2224 -./backoffice/vendors/choices/base.css|2320 -./backoffice/vendors/choices/base.min.css|1391 -./backoffice/vendors/choices/choices.css|8549 -./backoffice/vendors/choices/choices.js|217424 -./backoffice/vendors/choices/choices.min.css|6293 -./backoffice/vendors/choices/choices.min.js|91604 -./backoffice/vendors/choices/choices.min.orig.css|6735 -./backoffice/vendors/choices/choices.orig.css|8099 -./backoffice/vendors/choices/scripts/choices.js|217424 -./backoffice/vendors/choices/scripts/choices.min.js|91604 -./backoffice/vendors/flatpickr/flatpickr.css|18831 -./backoffice/vendors/flatpickr/flatpickr.js|118005 -./backoffice/vendors/flatpickr/flatpickr.min.css|15556 -./backoffice/vendors/flatpickr/flatpickr.min.js|48355 -./backoffice/vendors/flatpickr/flatpickr.min.orig.css|15954 -./backoffice/vendors/flatpickr/ie.css|260 -./backoffice/vendors/flatpickr/index.d.ts|138 -./backoffice/vendors/flatpickr/l10n/de.d.ts|2272 -./backoffice/vendors/flatpickr/l10n/default.d.ts|104 -./backoffice/vendors/flatpickr/l10n/default.js|2150 -./backoffice/vendors/flatpickr/l10n/de.js|1757 -./backoffice/vendors/flatpickr/l10n/fr.d.ts|2272 -./backoffice/vendors/flatpickr/l10n/fr.js|1893 -./backoffice/vendors/flatpickr/l10n/lu.d.ts|2314 -./backoffice/vendors/flatpickr/l10n/lu.js|1802 -./backoffice/vendors/flatpickr/plugins/confirmDate/confirmDate.css|373 -./backoffice/vendors/flatpickr/plugins/confirmDate/confirmDate.d.ts|272 -./backoffice/vendors/flatpickr/plugins/confirmDate/confirmDate.js|4236 -./backoffice/vendors/flatpickr/plugins/labelPlugin/labelPlugin.d.ts|114 -./backoffice/vendors/flatpickr/plugins/labelPlugin/labelPlugin.js|964 -./backoffice/vendors/flatpickr/plugins/minMaxTimePlugin.d.ts|491 -./backoffice/vendors/flatpickr/plugins/minMaxTimePlugin.js|12386 -./backoffice/vendors/flatpickr/plugins/monthSelect/index.d.ts|367 -./backoffice/vendors/flatpickr/plugins/monthSelect/index.js|7757 -./backoffice/vendors/flatpickr/plugins/monthSelect/style.css|1561 -./backoffice/vendors/flatpickr/plugins/monthSelect/tests.spec.d.ts|11 -./backoffice/vendors/flatpickr/plugins/rangePlugin.d.ts|312 -./backoffice/vendors/flatpickr/plugins/rangePlugin.js|6475 -./backoffice/vendors/flatpickr/plugins/scrollPlugin.d.ts|113 -./backoffice/vendors/flatpickr/plugins/scrollPlugin.js|2026 -./backoffice/vendors/flatpickr/plugins/weekSelect/weekSelect.d.ts|218 -./backoffice/vendors/flatpickr/plugins/weekSelect/weekSelect.js|3500 -./backoffice/vendors/flatpickr/themes/airbnb.css|21148 -./backoffice/vendors/flatpickr/themes/airbnb.min.css|17638 -./backoffice/vendors/flatpickr/types/globals.d.ts|546 -./backoffice/vendors/flatpickr/types/instance.d.ts|4386 -./backoffice/vendors/flatpickr/types/locale.d.ts|2263 -./backoffice/vendors/flatpickr/types/options.d.ts|4564 -./backoffice/vendors/flatpickr/typings.d.ts|1001 -./backoffice/vendors/flatpickr/utils/dates.d.ts|922 -./backoffice/vendors/flatpickr/utils/dom.d.ts|585 -./backoffice/vendors/flatpickr/utils/formatting.d.ts|834 -./backoffice/vendors/flatpickr/utils/index.d.ts|393 -./backoffice/vendors/flatpickr/utils/polyfills.d.ts|0 -./backoffice/vendors/moment/moment.js|150941 -./backoffice/vendors/moment/moment.min.js|53324 -./backoffice/vendors/moment/moment-with-locales.js|541363 -./backoffice/vendors/moment/moment-with-locales.min.js|336451 -./backoffice/vendors/tabulator/css.old/tabulator.css|18678 -./backoffice/vendors/tabulator/css.old/tabulator_midnight.css|18806 -./backoffice/vendors/tabulator/css.old/tabulator_midnight.min.css|16278 -./backoffice/vendors/tabulator/css.old/tabulator_midnight.min.css.map|30296 -./backoffice/vendors/tabulator/css.old/tabulator.min.css|16153 -./backoffice/vendors/tabulator/css.old/tabulator.min.css.map|30054 -./backoffice/vendors/tabulator/css.old/tabulator_modern.css|19468 -./backoffice/vendors/tabulator/css.old/tabulator_modern.min.css|16838 -./backoffice/vendors/tabulator/css.old/tabulator_modern.min.css.map|31647 -./backoffice/vendors/tabulator/css.old/tabulator_simple.css|18618 -./backoffice/vendors/tabulator/css.old/tabulator_simple.min.css|16106 -./backoffice/vendors/tabulator/css.old/tabulator_simple.min.css.map|30033 -./backoffice/vendors/tabulator/css.old/tabulator_site.css|18507 -./backoffice/vendors/tabulator/css.old/tabulator_site.min.css|16002 -./backoffice/vendors/tabulator/css.old/tabulator_site.min.css.map|30389 -./backoffice/vendors/tabulator/css/tabulator.css|18763 -./backoffice/vendors/tabulator/css/tabulator_midnight.css|18891 -./backoffice/vendors/tabulator/css/tabulator_midnight.min.css|16354 -./backoffice/vendors/tabulator/css/tabulator_midnight.min.css.map|30395 -./backoffice/vendors/tabulator/css/tabulator.min.css|16229 -./backoffice/vendors/tabulator/css/tabulator.min.css.map|30157 -./backoffice/vendors/tabulator/css/tabulator_modern.css|19553 -./backoffice/vendors/tabulator/css/tabulator_modern.min.css|16914 -./backoffice/vendors/tabulator/css/tabulator_modern.min.css.map|31750 -./backoffice/vendors/tabulator/css/tabulator_simple.css|18703 -./backoffice/vendors/tabulator/css/tabulator_simple.min.css|16182 -./backoffice/vendors/tabulator/css/tabulator_simple.min.css.map|30132 -./backoffice/vendors/tabulator/css/tabulator_site.css|18592 -./backoffice/vendors/tabulator/css/tabulator_site.min.css|16078 -./backoffice/vendors/tabulator/css/tabulator_site.min.css.map|30488 -./backoffice/vendors/tabulator/js/modules/accessor.js|2558 -./backoffice/vendors/tabulator/js/modules/accessor.min.js|1455 -./backoffice/vendors/tabulator/js/modules/ajax.js|12023 -./backoffice/vendors/tabulator/js/modules/ajax.min.js|8064 -./backoffice/vendors/tabulator/js/modules/calculation_colums.js|11652 -./backoffice/vendors/tabulator/js/modules/calculation_colums.min.js|7395 -./backoffice/vendors/tabulator/js/modules/clipboard.js|25859 -./backoffice/vendors/tabulator/js/modules/clipboard.min.js|15228 -./backoffice/vendors/tabulator/js/modules/data_tree.js|9018 -./backoffice/vendors/tabulator/js/modules/data_tree.min.js|6175 -./backoffice/vendors/tabulator/js/modules/download.js|21137 -./backoffice/vendors/tabulator/js/modules/download.min.js|10295 -./backoffice/vendors/tabulator/js/modules/edit.js|44926 -./backoffice/vendors/tabulator/js/modules/edit.min.js|22906 -./backoffice/vendors/tabulator/js/modules/filter.js|20729 -./backoffice/vendors/tabulator/js/modules/filter.min.js|11588 -./backoffice/vendors/tabulator/js/modules/format.js|21705 -./backoffice/vendors/tabulator/js/modules/format.min.js|12745 -./backoffice/vendors/tabulator/js/modules/frozen_columns.js|6116 -./backoffice/vendors/tabulator/js/modules/frozen_columns.min.js|3946 -./backoffice/vendors/tabulator/js/modules/frozen_rows.js|2249 -./backoffice/vendors/tabulator/js/modules/frozen_rows.min.js|1645 -./backoffice/vendors/tabulator/js/modules/group_rows.js|26170 -./backoffice/vendors/tabulator/js/modules/group_rows.min.js|17661 -./backoffice/vendors/tabulator/js/modules/history.js|3469 -./backoffice/vendors/tabulator/js/modules/history.min.js|2494 -./backoffice/vendors/tabulator/js/modules/html_table_export.js|11041 -./backoffice/vendors/tabulator/js/modules/html_table_export.min.js|7149 -./backoffice/vendors/tabulator/js/modules/html_table_import.js|5208 -./backoffice/vendors/tabulator/js/modules/html_table_import.min.js|2721 -./backoffice/vendors/tabulator/js/modules/keybindings.js|8024 -./backoffice/vendors/tabulator/js/modules/keybindings.min.js|5002 -./backoffice/vendors/tabulator/js/modules/moveable_columns.js|8666 -./backoffice/vendors/tabulator/js/modules/moveable_columns.min.js|5383 -./backoffice/vendors/tabulator/js/modules/moveable_rows.js|16514 -./backoffice/vendors/tabulator/js/modules/moveable_rows.min.js|11212 -./backoffice/vendors/tabulator/js/modules/mutator.js|3060 -./backoffice/vendors/tabulator/js/modules/mutator.min.js|1770 -./backoffice/vendors/tabulator/js/modules/page.js|16518 -./backoffice/vendors/tabulator/js/modules/page.min.js|11281 -./backoffice/vendors/tabulator/js/modules/persistence.js|10369 -./backoffice/vendors/tabulator/js/modules/persistence.min.js|6452 -./backoffice/vendors/tabulator/js/modules/print.js|3008 -./backoffice/vendors/tabulator/js/modules/print.min.js|2306 -./backoffice/vendors/tabulator/js/modules/reactive_data.js|5286 -./backoffice/vendors/tabulator/js/modules/reactive_data.min.js|3051 -./backoffice/vendors/tabulator/js/modules/resize_columns.js|5130 -./backoffice/vendors/tabulator/js/modules/resize_columns.min.js|3117 -./backoffice/vendors/tabulator/js/modules/resize_rows.js|2885 -./backoffice/vendors/tabulator/js/modules/resize_rows.min.js|1741 -./backoffice/vendors/tabulator/js/modules/resize_table.js|1073 -./backoffice/vendors/tabulator/js/modules/resize_table.min.js|797 -./backoffice/vendors/tabulator/js/modules/responsive_layout.js|7489 -./backoffice/vendors/tabulator/js/modules/responsive_layout.min.js|4816 -./backoffice/vendors/tabulator/js/modules/select_row.js|9573 -./backoffice/vendors/tabulator/js/modules/select_row.min.js|6106 -./backoffice/vendors/tabulator/js/modules/sort.js|13926 -./backoffice/vendors/tabulator/js/modules/sort.min.js|7247 -./backoffice/vendors/tabulator/js/modules/validate.js|5308 -./backoffice/vendors/tabulator/js/modules/validate.min.js|2606 -./backoffice/vendors/tabulator/js.old/modules/accessor.js|2558 -./backoffice/vendors/tabulator/js.old/modules/accessor.min.js|1455 -./backoffice/vendors/tabulator/js.old/modules/ajax.js|11994 -./backoffice/vendors/tabulator/js.old/modules/ajax.min.js|8042 -./backoffice/vendors/tabulator/js.old/modules/calculation_colums.js|11664 -./backoffice/vendors/tabulator/js.old/modules/calculation_colums.min.js|7402 -./backoffice/vendors/tabulator/js.old/modules/clipboard.js|25247 -./backoffice/vendors/tabulator/js.old/modules/clipboard.min.js|14973 -./backoffice/vendors/tabulator/js.old/modules/data_tree.js|9018 -./backoffice/vendors/tabulator/js.old/modules/data_tree.min.js|6175 -./backoffice/vendors/tabulator/js.old/modules/download.js|20203 -./backoffice/vendors/tabulator/js.old/modules/download.min.js|9822 -./backoffice/vendors/tabulator/js.old/modules/edit.js|43671 -./backoffice/vendors/tabulator/js.old/modules/edit.min.js|22359 -./backoffice/vendors/tabulator/js.old/modules/filter.js|20864 -./backoffice/vendors/tabulator/js.old/modules/filter.min.js|11521 -./backoffice/vendors/tabulator/js.old/modules/format.js|21091 -./backoffice/vendors/tabulator/js.old/modules/format.min.js|12566 -./backoffice/vendors/tabulator/js.old/modules/frozen_columns.js|6116 -./backoffice/vendors/tabulator/js.old/modules/frozen_columns.min.js|3946 -./backoffice/vendors/tabulator/js.old/modules/frozen_rows.js|2249 -./backoffice/vendors/tabulator/js.old/modules/frozen_rows.min.js|1645 -./backoffice/vendors/tabulator/js.old/modules/group_rows.js|25932 -./backoffice/vendors/tabulator/js.old/modules/group_rows.min.js|17645 -./backoffice/vendors/tabulator/js.old/modules/history.js|3469 -./backoffice/vendors/tabulator/js.old/modules/history.min.js|2494 -./backoffice/vendors/tabulator/js.old/modules/html_table_export.js|10621 -./backoffice/vendors/tabulator/js.old/modules/html_table_export.min.js|6908 -./backoffice/vendors/tabulator/js.old/modules/html_table_import.js|5208 -./backoffice/vendors/tabulator/js.old/modules/html_table_import.min.js|2721 -./backoffice/vendors/tabulator/js.old/modules/keybindings.js|8024 -./backoffice/vendors/tabulator/js.old/modules/keybindings.min.js|5002 -./backoffice/vendors/tabulator/js.old/modules/moveable_columns.js|8666 -./backoffice/vendors/tabulator/js.old/modules/moveable_columns.min.js|5383 -./backoffice/vendors/tabulator/js.old/modules/moveable_rows.js|16514 -./backoffice/vendors/tabulator/js.old/modules/moveable_rows.min.js|11212 -./backoffice/vendors/tabulator/js.old/modules/mutator.js|2940 -./backoffice/vendors/tabulator/js.old/modules/mutator.min.js|1722 -./backoffice/vendors/tabulator/js.old/modules/page.js|16067 -./backoffice/vendors/tabulator/js.old/modules/page.min.js|10966 -./backoffice/vendors/tabulator/js.old/modules/persistence.js|4822 -./backoffice/vendors/tabulator/js.old/modules/persistence.min.js|2767 -./backoffice/vendors/tabulator/js.old/modules/print.js|3008 -./backoffice/vendors/tabulator/js.old/modules/print.min.js|2306 -./backoffice/vendors/tabulator/js.old/modules/reactive_data.js|5286 -./backoffice/vendors/tabulator/js.old/modules/reactive_data.min.js|3051 -./backoffice/vendors/tabulator/js.old/modules/resize_columns.js|5035 -./backoffice/vendors/tabulator/js.old/modules/resize_columns.min.js|3034 -./backoffice/vendors/tabulator/js.old/modules/resize_rows.js|2885 -./backoffice/vendors/tabulator/js.old/modules/resize_rows.min.js|1741 -./backoffice/vendors/tabulator/js.old/modules/resize_table.js|895 -./backoffice/vendors/tabulator/js.old/modules/resize_table.min.js|669 -./backoffice/vendors/tabulator/js.old/modules/responsive_layout.js|6383 -./backoffice/vendors/tabulator/js.old/modules/responsive_layout.min.js|4076 -./backoffice/vendors/tabulator/js.old/modules/select_row.js|9450 -./backoffice/vendors/tabulator/js.old/modules/select_row.min.js|6035 -./backoffice/vendors/tabulator/js.old/modules/sort.js|13879 -./backoffice/vendors/tabulator/js.old/modules/sort.min.js|7200 -./backoffice/vendors/tabulator/js.old/modules/validate.js|5351 -./backoffice/vendors/tabulator/js.old/modules/validate.min.js|2629 -./backoffice/vendors/tabulator/js.old/tabulator_core.js|192142 -./backoffice/vendors/tabulator/js.old/tabulator_core.min.js|118193 -./backoffice/vendors/tabulator/js.old/tabulator.js|534179 -./backoffice/vendors/tabulator/js.old/tabulator.min.js|303456 -./backoffice/vendors/tabulator/js/tabulator_core.js|205898 -./backoffice/vendors/tabulator/js/tabulator_core.min.js|127408 -./backoffice/vendors/tabulator/js/tabulator.js|560304 -./backoffice/vendors/tabulator/js/tabulator.min.js|319423 -./backoffice/vendors/tinymce/changelog.txt|131850 -./backoffice/vendors/tinymce/js/tinymce/jquery.tinymce.min.js|6635 -./backoffice/vendors/tinymce/js/tinymce/langs/de.js|10334 -./backoffice/vendors/tinymce/js/tinymce/langs/fr_FR.js|10140 -./backoffice/vendors/tinymce/js/tinymce/langs/readme.md|151 -./backoffice/vendors/tinymce/js/tinymce/license.txt|26441 -./backoffice/vendors/tinymce/js/tinymce/plugins/advlist/plugin.min.js|3995 -./backoffice/vendors/tinymce/js/tinymce/plugins/anchor/plugin.min.js|2120 -./backoffice/vendors/tinymce/js/tinymce/plugins/autolink/plugin.min.js|2534 -./backoffice/vendors/tinymce/js/tinymce/plugins/autoresize/plugin.min.js|2298 -./backoffice/vendors/tinymce/js/tinymce/plugins/autosave/plugin.min.js|3493 -./backoffice/vendors/tinymce/js/tinymce/plugins/bbcode/plugin.min.js|3117 -./backoffice/vendors/tinymce/js/tinymce/plugins/charmap/plugin.min.js|11948 -./backoffice/vendors/tinymce/js/tinymce/plugins/code/plugin.min.js|1226 -./backoffice/vendors/tinymce/js/tinymce/plugins/codesample/plugin.min.js|21028 -./backoffice/vendors/tinymce/js/tinymce/plugins/colorpicker/plugin.min.js|550 -./backoffice/vendors/tinymce/js/tinymce/plugins/contextmenu/plugin.min.js|550 -./backoffice/vendors/tinymce/js/tinymce/plugins/directionality/plugin.min.js|4315 -./backoffice/vendors/tinymce/js/tinymce/plugins/emoticons/js/emojis.js|251845 -./backoffice/vendors/tinymce/js/tinymce/plugins/emoticons/js/emojis.min.js|193222 -./backoffice/vendors/tinymce/js/tinymce/plugins/emoticons/plugin.min.js|6921 -./backoffice/vendors/tinymce/js/tinymce/plugins/fullpage/plugin.min.js|8196 -./backoffice/vendors/tinymce/js/tinymce/plugins/fullscreen/plugin.min.js|9920 -./backoffice/vendors/tinymce/js/tinymce/plugins/help/plugin.min.js|14402 -./backoffice/vendors/tinymce/js/tinymce/plugins/hr/plugin.min.js|841 -./backoffice/vendors/tinymce/js/tinymce/plugins/image/plugin.min.js|29711 -./backoffice/vendors/tinymce/js/tinymce/plugins/imagetools/plugin.min.js|22336 -./backoffice/vendors/tinymce/js/tinymce/plugins/importcss/plugin.min.js|5008 -./backoffice/vendors/tinymce/js/tinymce/plugins/insertdatetime/plugin.min.js|3212 -./backoffice/vendors/tinymce/js/tinymce/plugins/legacyoutput/plugin.min.js|2973 -./backoffice/vendors/tinymce/js/tinymce/plugins/link/plugin.min.js|22929 -./backoffice/vendors/tinymce/js/tinymce/plugins/lists/plugin.min.js|28276 -./backoffice/vendors/tinymce/js/tinymce/plugins/media/plugin.min.js|18033 -./backoffice/vendors/tinymce/js/tinymce/plugins/nonbreaking/plugin.min.js|1585 -./backoffice/vendors/tinymce/js/tinymce/plugins/noneditable/plugin.min.js|1842 -./backoffice/vendors/tinymce/js/tinymce/plugins/pagebreak/plugin.min.js|1842 -./backoffice/vendors/tinymce/js/tinymce/plugins/paste/plugin.min.js|31463 -./backoffice/vendors/tinymce/js/tinymce/plugins/preview/plugin.min.js|2095 -./backoffice/vendors/tinymce/js/tinymce/plugins/print/plugin.min.js|887 -./backoffice/vendors/tinymce/js/tinymce/plugins/quickbars/plugin.min.js|10795 -./backoffice/vendors/tinymce/js/tinymce/plugins/save/plugin.min.js|1823 -./backoffice/vendors/tinymce/js/tinymce/plugins/searchreplace/plugin.min.js|10019 -./backoffice/vendors/tinymce/js/tinymce/plugins/spellchecker/plugin.min.js|10404 -./backoffice/vendors/tinymce/js/tinymce/plugins/tabfocus/plugin.min.js|1938 -./backoffice/vendors/tinymce/js/tinymce/plugins/table/plugin.min.js|122173 -./backoffice/vendors/tinymce/js/tinymce/plugins/template/plugin.min.js|8077 -./backoffice/vendors/tinymce/js/tinymce/plugins/textcolor/plugin.min.js|546 -./backoffice/vendors/tinymce/js/tinymce/plugins/textpattern/plugin.min.js|18459 -./backoffice/vendors/tinymce/js/tinymce/plugins/toc/plugin.min.js|3592 -./backoffice/vendors/tinymce/js/tinymce/plugins/visualblocks/plugin.min.js|1649 -./backoffice/vendors/tinymce/js/tinymce/plugins/visualchars/plugin.min.js|7060 -./backoffice/vendors/tinymce/js/tinymce/plugins/wordcount/plugin.min.js|13186 -./backoffice/vendors/tinymce/js/tinymce/skins/content/dark/content.min.css|1082 -./backoffice/vendors/tinymce/js/tinymce/skins/content/default/content.min.css|982 -./backoffice/vendors/tinymce/js/tinymce/skins/content/document/content.min.css|1040 -./backoffice/vendors/tinymce/js/tinymce/skins/content/writer/content.min.css|978 -./backoffice/vendors/tinymce/js/tinymce/skins/ui/oxide/content.inline.min.css|18087 -./backoffice/vendors/tinymce/js/tinymce/skins/ui/oxide/content.min.css|17883 -./backoffice/vendors/tinymce/js/tinymce/skins/ui/oxide/content.mobile.min.css|544 -./backoffice/vendors/tinymce/js/tinymce/skins/ui/oxide-dark/content.inline.min.css|18087 -./backoffice/vendors/tinymce/js/tinymce/skins/ui/oxide-dark/content.min.css|17510 -./backoffice/vendors/tinymce/js/tinymce/skins/ui/oxide-dark/content.mobile.min.css|544 -./backoffice/vendors/tinymce/js/tinymce/skins/ui/oxide-dark/fonts/tinymce-mobile.woff|4624 -./backoffice/vendors/tinymce/js/tinymce/skins/ui/oxide-dark/skin.min.css|52080 -./backoffice/vendors/tinymce/js/tinymce/skins/ui/oxide-dark/skin.mobile.min.css|21004 -./backoffice/vendors/tinymce/js/tinymce/skins/ui/oxide/fonts/tinymce-mobile.woff|4624 -./backoffice/vendors/tinymce/js/tinymce/skins/ui/oxide/skin.min.css|52178 -./backoffice/vendors/tinymce/js/tinymce/skins/ui/oxide/skin.mobile.min.css|21004 -./backoffice/vendors/tinymce/js/tinymce/themes/mobile/theme.min.js|179424 -./backoffice/vendors/tinymce/js/tinymce/themes/silver/theme.min.js|385268 -./backoffice/vendors/tinymce/js/tinymce/tinymce.min.js|438407 -./css/site.css|181 -./css/w3pro.css|26847 -./.htaccess|592 +./app/app.cgi|3412 +./app/data/.htaccess|169 +./app/data/mail/body/user_forgotpasswd.tt|422 +./app/data/mail/body/user_registration.tt|730 +./app/data/mail/mail.tt|709 +./app/data/reports/pot/pot_period.conf|259 +./app/data/reports/pot/pot_period.footer.tt|1381 +./app/data/reports/pot/pot_period.header.tt|1070 +./app/data/reports/pot/pot_period.tt|4181 +./app/data/reports/pot/pot_staffmember_period.conf|255 +./app/data/reports/pot/pot_staffmember_period.footer.tt|1411 +./app/data/reports/pot/pot_staffmember_period.header.tt|1085 +./app/data/reports/pot/pot_staffmember_period/pot.ttf|1372 +./app/data/reports/pot/pot_staffmember_period/pot.ttf.b64.txt|1869 +./app/data/reports/pot/pot_staffmember_period.tt|10495 +./app/data/schemata/defaultcompany.schema.sql|41762 +./app/data/schemata/.htaccess|167 +./app/db.cgi|10932 +./app/file.cgi|4381 +./app/.htaccess|197 +./app/index.cgi|5303 +./app/lib/dksconfig.pm|1202 +./app/lib/dksdb.pm|10832 +./app/lib/dkssavefile.pm|991 +./app/lib/.htaccess|169 +./app/lib/pdfreport.pm|4213 +./app/lib/perl5/Business/Tax/VAT/Validation.pm|14797 +./app/lib/perl5/CGI/Cookie.pm|6599 +./app/lib/perl5/CGI/File/Temp.pm|969 +./app/lib/perl5/CGI.pm|125242 +./app/lib/perl5/CGI/Util.pm|10881 +./app/lib/perl5/DBD/PgPP.pm|48674 +./app/lib/perl5/Devel/Cycle.pm|13667 +./app/lib/perl5/Digest/SHA/PurePerl.pm|46933 +./app/lib/perl5/Font/TTF/AATKern.pm|2958 +./app/lib/perl5/Font/TTF/AATutils.pm|23626 +./app/lib/perl5/Font/TTF/Anchor.pm|4911 +./app/lib/perl5/Font/TTF/Bsln.pm|3806 +./app/lib/perl5/Font/TTF/Changes_old.txt|2223 +./app/lib/perl5/Font/TTF/Cmap.pm|24487 +./app/lib/perl5/Font/TTF/Coverage.pm|8579 +./app/lib/perl5/Font/TTF/Cvt_.pm|1431 +./app/lib/perl5/Font/TTF/Delta.pm|3470 +./app/lib/perl5/Font/TTF/DSIG.pm|2020 +./app/lib/perl5/Font/TTF/Dumper.pm|2618 +./app/lib/perl5/Font/TTF/EBDT.pm|7328 +./app/lib/perl5/Font/TTF/EBLC.pm|6456 +./app/lib/perl5/Font/TTF/Fdsc.pm|2234 +./app/lib/perl5/Font/TTF/Feat.pm|4547 +./app/lib/perl5/Font/TTF/Features/Cvar.pm|3021 +./app/lib/perl5/Font/TTF/Features/Size.pm|1996 +./app/lib/perl5/Font/TTF/Features/Sset.pm|1752 +./app/lib/perl5/Font/TTF/Fmtx.pm|2002 +./app/lib/perl5/Font/TTF/Font.pm|29765 +./app/lib/perl5/Font/TTF/Fpgm.pm|1703 +./app/lib/perl5/Font/TTF/GDEF.pm|13967 +./app/lib/perl5/Font/TTF/Glat.pm|3507 +./app/lib/perl5/Font/TTF/Gloc.pm|2625 +./app/lib/perl5/Font/TTF/Glyf.pm|3769 +./app/lib/perl5/Font/TTF/Glyph.pm|25861 +./app/lib/perl5/Font/TTF/GPOS.pm|21238 +./app/lib/perl5/Font/TTF/GrFeat.pm|8525 +./app/lib/perl5/Font/TTF/GSUB.pm|8843 +./app/lib/perl5/Font/TTF/Hdmx.pm|3195 +./app/lib/perl5/Font/TTF/Head.pm|5984 +./app/lib/perl5/Font/TTF/Hhea.pm|3626 +./app/lib/perl5/Font/TTF/Hmtx.pm|4724 +./app/lib/perl5/Font/TTF/Kern/ClassArray.pm|3255 +./app/lib/perl5/Font/TTF/Kern/CompactClassArray.pm|1293 +./app/lib/perl5/Font/TTF/Kern/OrderedList.pm|2141 +./app/lib/perl5/Font/TTF/Kern.pm|8705 +./app/lib/perl5/Font/TTF/Kern/StateTable.pm|3034 +./app/lib/perl5/Font/TTF/Kern/Subtable.pm|3710 +./app/lib/perl5/Font/TTF/Loca.pm|4837 +./app/lib/perl5/Font/TTF/LTSH.pm|1705 +./app/lib/perl5/Font/TTF/Manual.pod|9180 +./app/lib/perl5/Font/TTF/Maxp.pm|4268 +./app/lib/perl5/Font/TTF/Mort/Chain.pm|5140 +./app/lib/perl5/Font/TTF/Mort/Contextual.pm|3975 +./app/lib/perl5/Font/TTF/Mort/Insertion.pm|4576 +./app/lib/perl5/Font/TTF/Mort/Ligature.pm|7568 +./app/lib/perl5/Font/TTF/Mort/Noncontextual.pm|1896 +./app/lib/perl5/Font/TTF/Mort.pm|2154 +./app/lib/perl5/Font/TTF/Mort/Rearrangement.pm|2392 +./app/lib/perl5/Font/TTF/Mort/Subtable.pm|4659 +./app/lib/perl5/Font/TTF/Name.pm|28443 +./app/lib/perl5/Font/TTF/OldCmap.pm|9888 +./app/lib/perl5/Font/TTF/OldMort.pm|26139 +./app/lib/perl5/Font/TTF/OS_2.pm|38981 +./app/lib/perl5/Font/TTF/OTTags.pm|43967 +./app/lib/perl5/Font/TTF/PCLT.pm|2552 +./app/lib/perl5/Font/TTF.pm|2248 +./app/lib/perl5/Font/TTF/Post.pm|9754 +./app/lib/perl5/Font/TTF/Prep.pm|1645 +./app/lib/perl5/Font/TTF/Prop.pm|3556 +./app/lib/perl5/Font/TTF/PSNames.pm|135961 +./app/lib/perl5/Font/TTF/Segarr.pm|9758 +./app/lib/perl5/Font/TTF/Silf.pm|28913 +./app/lib/perl5/Font/TTF/Sill.pm|3272 +./app/lib/perl5/Font/TTF/Table.pm|11415 +./app/lib/perl5/Font/TTF/Ttc.pm|3967 +./app/lib/perl5/Font/TTF/Ttopen.pm|45301 +./app/lib/perl5/Font/TTF/Useall.pm|2215 +./app/lib/perl5/Font/TTF/Utils.pm|18957 +./app/lib/perl5/Font/TTF/Vhea.pm|3655 +./app/lib/perl5/Font/TTF/Vmtx.pm|1702 +./app/lib/perl5/Font/TTF/Win32.pm|1111 +./app/lib/perl5/Font/TTF/Woff/MetaData.pm|548 +./app/lib/perl5/Font/TTF/Woff.pm|1117 +./app/lib/perl5/Font/TTF/Woff/PrivateData.pm|559 +./app/lib/perl5/Font/TTF/XMLparse.pm|5623 +./app/lib/perl5/Image/Size.pm|46926 +./app/lib/perl5/lib/core/only.pm|3229 +./app/lib/perl5/local/lib.pm|41186 +./app/lib/perl5/Math/Base/Convert/Bases.pm|5661 +./app/lib/perl5/Math/Base/Convert/Bitmaps.pm|22263 +./app/lib/perl5/Math/Base/Convert/CalcPP.pm|5422 +./app/lib/perl5/Math/Base/Convert.pm|16834 +./app/lib/perl5/Math/Base/Convert/Shortcuts.pm|11553 +./app/lib/perl5/MIME/Type.pm|2911 +./app/lib/perl5/MIME/Type.pod|6361 +./app/lib/perl5/MIME/types.db|121715 +./app/lib/perl5/MIME/Types.pm|7043 +./app/lib/perl5/MIME/Types.pod|8611 +./app/lib/perl5/MLDBM.pm|16594 +./app/lib/perl5/MLDBM/Serializer/Data/Dumper.pm|2043 +./app/lib/perl5/MLDBM/Serializer/FreezeThaw.pm|351 +./app/lib/perl5/MLDBM/Serializer/Storable.pm|922 +./app/lib/perl5/MojoX/MIME/Types.pm|1468 +./app/lib/perl5/MojoX/MIME/Types.pod|5933 +./app/lib/perl5/PDF/API2/Annotation.pm|10305 +./app/lib/perl5/PDF/API2/Basic/PDF/Array.pm|2863 +./app/lib/perl5/PDF/API2/Basic/PDF/Bool.pm|1015 +./app/lib/perl5/PDF/API2/Basic/PDF/Dict.pm|10332 +./app/lib/perl5/PDF/API2/Basic/PDF/File.pm|43842 +./app/lib/perl5/PDF/API2/Basic/PDF/Filter/ASCII85Decode.pm|2399 +./app/lib/perl5/PDF/API2/Basic/PDF/Filter/ASCIIHexDecode.pm|1513 +./app/lib/perl5/PDF/API2/Basic/PDF/Filter/FlateDecode.pm|4427 +./app/lib/perl5/PDF/API2/Basic/PDF/Filter/LZWDecode.pm|3122 +./app/lib/perl5/PDF/API2/Basic/PDF/Filter.pm|3378 +./app/lib/perl5/PDF/API2/Basic/PDF/Filter/RunLengthDecode.pm|3315 +./app/lib/perl5/PDF/API2/Basic/PDF/Literal.pm|2201 +./app/lib/perl5/PDF/API2/Basic/PDF/Name.pm|3001 +./app/lib/perl5/PDF/API2/Basic/PDF/Null.pm|1562 +./app/lib/perl5/PDF/API2/Basic/PDF/Number.pm|973 +./app/lib/perl5/PDF/API2/Basic/PDF/Objind.pm|7440 +./app/lib/perl5/PDF/API2/Basic/PDF/Page.pm|3285 +./app/lib/perl5/PDF/API2/Basic/PDF/Pages.pm|10886 +./app/lib/perl5/PDF/API2/Basic/PDF/String.pm|5347 +./app/lib/perl5/PDF/API2/Basic/PDF/Utils.pm|2627 +./app/lib/perl5/PDF/API2/Content.pm|53753 +./app/lib/perl5/PDF/API2/Content/Text.pm|248 +./app/lib/perl5/PDF/API2/Lite.pm|11649 +./app/lib/perl5/PDF/API2/Matrix.pm|1541 +./app/lib/perl5/PDF/API2/NamedDestination.pm|7159 +./app/lib/perl5/PDF/API2/Outline.pm|9690 +./app/lib/perl5/PDF/API2/Outlines.pm|306 +./app/lib/perl5/PDF/API2/Page.pm|8994 +./app/lib/perl5/PDF/API2.pm|64581 +./app/lib/perl5/PDF/API2/Resource/BaseFont.pm|17514 +./app/lib/perl5/PDF/API2/Resource/CIDFont/CJKFont/adobemingstdlightacro.data|247405 +./app/lib/perl5/PDF/API2/Resource/CIDFont/CJKFont/adobemyungjostdmediumacro.data|278186 +./app/lib/perl5/PDF/API2/Resource/CIDFont/CJKFont/adobesongstdlightacro.data|772180 +./app/lib/perl5/PDF/API2/Resource/CIDFont/CJKFont/kozgopromediumacro.data|21508 +./app/lib/perl5/PDF/API2/Resource/CIDFont/CJKFont/kozminproregularacro.data|21556 +./app/lib/perl5/PDF/API2/Resource/CIDFont/CJKFont.pm|9706 +./app/lib/perl5/PDF/API2/Resource/CIDFont/CMap/japanese.cmap|4629356 +./app/lib/perl5/PDF/API2/Resource/CIDFont/CMap/korean.cmap|2817142 +./app/lib/perl5/PDF/API2/Resource/CIDFont/CMap/simplified.cmap|4845677 +./app/lib/perl5/PDF/API2/Resource/CIDFont/CMap/traditional.cmap|3431298 +./app/lib/perl5/PDF/API2/Resource/CIDFont.pm|7527 +./app/lib/perl5/PDF/API2/Resource/CIDFont/TrueType/FontFile.pm|19532 +./app/lib/perl5/PDF/API2/Resource/CIDFont/TrueType.pm|4265 +./app/lib/perl5/PDF/API2/Resource/ColorSpace/DeviceN.pm|2650 +./app/lib/perl5/PDF/API2/Resource/ColorSpace/Indexed/ACTFile.pm|1669 +./app/lib/perl5/PDF/API2/Resource/ColorSpace/Indexed/Hue.pm|1393 +./app/lib/perl5/PDF/API2/Resource/ColorSpace/Indexed.pm|2916 +./app/lib/perl5/PDF/API2/Resource/ColorSpace/Indexed/WebColor.pm|1891 +./app/lib/perl5/PDF/API2/Resource/ColorSpace.pm|1557 +./app/lib/perl5/PDF/API2/Resource/ColorSpace/Separation.pm|4036 +./app/lib/perl5/PDF/API2/Resource/Colors.pm|29469 +./app/lib/perl5/PDF/API2/Resource/ExtGState.pm|5842 +./app/lib/perl5/PDF/API2/Resource/Font/BdFont.pm|8220 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/bankgothic.pm|34011 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/courierboldoblique.pm|34150 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/courierbold.pm|34133 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/courieroblique.pm|34139 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/courier.pm|44056 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/georgiabolditalic.pm|54809 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/georgiabold.pm|54793 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/georgiaitalic.pm|54794 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/georgia.pm|54780 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/helveticaboldoblique.pm|34126 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/helveticabold.pm|34139 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/helveticaoblique.pm|34116 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/helvetica.pm|34128 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont.pm|9713 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/symbol.pm|31542 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/timesbolditalic.pm|34116 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/timesbold.pm|34130 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/timesitalic.pm|34153 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/timesroman.pm|30061 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/trebuchetbolditalic.pm|41135 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/trebuchetbold.pm|37639 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/trebuchetitalic.pm|41122 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/trebuchet.pm|37625 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/verdanabolditalic.pm|53911 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/verdanabold.pm|53894 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/verdanaitalic.pm|53837 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/verdana.pm|53641 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/webdings.pm|37901 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/wingdings.pm|33783 +./app/lib/perl5/PDF/API2/Resource/Font/CoreFont/zapfdingbats.pm|25945 +./app/lib/perl5/PDF/API2/Resource/Font.pm|5623 +./app/lib/perl5/PDF/API2/Resource/Font/Postscript.pm|14378 +./app/lib/perl5/PDF/API2/Resource/Font/SynFont.pm|7683 +./app/lib/perl5/PDF/API2/Resource/Glyphs.pm|280116 +./app/lib/perl5/PDF/API2/Resource/PaperSizes.pm|1500 +./app/lib/perl5/PDF/API2/Resource/Pattern.pm|281 +./app/lib/perl5/PDF/API2/Resource.pm|1481 +./app/lib/perl5/PDF/API2/Resource/Shading.pm|137 +./app/lib/perl5/PDF/API2/Resource/UniFont.pm|6466 +./app/lib/perl5/PDF/API2/Resource/uniglyph.txt|550967 +./app/lib/perl5/PDF/API2/Resource/XObject/Form/BarCode/codabar.pm|788 +./app/lib/perl5/PDF/API2/Resource/XObject/Form/BarCode/code128.pm|7479 +./app/lib/perl5/PDF/API2/Resource/XObject/Form/BarCode/code3of9.pm|3537 +./app/lib/perl5/PDF/API2/Resource/XObject/Form/BarCode/ean13.pm|1834 +./app/lib/perl5/PDF/API2/Resource/XObject/Form/BarCode/int2of5.pm|1434 +./app/lib/perl5/PDF/API2/Resource/XObject/Form/BarCode.pm|5650 +./app/lib/perl5/PDF/API2/Resource/XObject/Form/Hybrid.pm|1645 +./app/lib/perl5/PDF/API2/Resource/XObject/Form.pm|1790 +./app/lib/perl5/PDF/API2/Resource/XObject/Image/GD.pm|1484 +./app/lib/perl5/PDF/API2/Resource/XObject/Image/GIF.pm|6387 +./app/lib/perl5/PDF/API2/Resource/XObject/Image/JPEG.pm|2189 +./app/lib/perl5/PDF/API2/Resource/XObject/Image.pm|2691 +./app/lib/perl5/PDF/API2/Resource/XObject/Image/PNG.pm|26450 +./app/lib/perl5/PDF/API2/Resource/XObject/Image/PNM.pm|4398 +./app/lib/perl5/PDF/API2/Resource/XObject/Image/TIFF/File.pm|9874 +./app/lib/perl5/PDF/API2/Resource/XObject/Image/TIFF.pm|8903 +./app/lib/perl5/PDF/API2/Resource/XObject.pm|778 +./app/lib/perl5/PDF/API2/UniWrap.pm|9341 +./app/lib/perl5/PDF/API2/Util.pm|17014 +./app/lib/perl5/PDF/API2/Win32.pm|2104 +./app/lib/perl5/PDF/Table.pm|55410 +./app/lib/perl5/POD2/DE/local/lib.pod|16690 +./app/lib/perl5/POD2/PT_BR/local/lib.pod|16094 +./app/lib/perl5/SQL/Dialects/ANSI.pm|3724 +./app/lib/perl5/SQL/Dialects/AnyData.pm|2092 +./app/lib/perl5/SQL/Dialects/CSV.pm|1962 +./app/lib/perl5/SQL/Dialects/Role.pm|2560 +./app/lib/perl5/SQL/Eval.pm|16638 +./app/lib/perl5/SQL/Parser.pm|102983 +./app/lib/perl5/SQL/Statement/Embed.pod|11893 +./app/lib/perl5/SQL/Statement/Function.pm|10791 +./app/lib/perl5/SQL/Statement/Functions.pm|34973 +./app/lib/perl5/SQL/Statement/GetInfo.pm|27647 +./app/lib/perl5/SQL/Statement/Operation.pm|23477 +./app/lib/perl5/SQL/Statement/Placeholder.pm|2246 +./app/lib/perl5/SQL/Statement.pm|80949 +./app/lib/perl5/SQL/Statement/RAM.pm|6037 +./app/lib/perl5/SQL/Statement/Roadmap.pod|8701 +./app/lib/perl5/SQL/Statement/Structure.pod|13001 +./app/lib/perl5/SQL/Statement/Syntax.pod|19784 +./app/lib/perl5/SQL/Statement/TermFactory.pm|6771 +./app/lib/perl5/SQL/Statement/Term.pm|5609 +./app/lib/perl5/SQL/Statement/Util.pm|4310 +./app/lib/perl5/Sub/Uplevel.pm|18092 +./app/lib/perl5/Template/Base.pm|7569 +./app/lib/perl5/Template/Config.pm|13621 +./app/lib/perl5/Template/Constants.pm|9747 +./app/lib/perl5/Template/Context.pm|53723 +./app/lib/perl5/Template/DBI.pod|1534 +./app/lib/perl5/Template/Directive.pm|29394 +./app/lib/perl5/Template/Document.pm|16569 +./app/lib/perl5/Template/Exception.pm|6402 +./app/lib/perl5/Template/FAQ.pod|8809 +./app/lib/perl5/Template/Filters.pm|26123 +./app/lib/perl5/Template/Grammar.pm|98751 +./app/lib/perl5/Template/Iterator.pm|13751 +./app/lib/perl5/Template/Manual/Config.pod|64128 +./app/lib/perl5/Template/Manual/Credits.pod|4624 +./app/lib/perl5/Template/Manual/Directives.pod|61980 +./app/lib/perl5/Template/Manual/Filters.pod|14138 +./app/lib/perl5/Template/Manual/Internals.pod|18353 +./app/lib/perl5/Template/Manual/Intro.pod|9692 +./app/lib/perl5/Template/Manual/Plugins.pod|9110 +./app/lib/perl5/Template/Manual.pod|2433 +./app/lib/perl5/Template/Manual/Syntax.pod|9181 +./app/lib/perl5/Template/Manual/Variables.pod|25025 +./app/lib/perl5/Template/Manual/Views.pod|19264 +./app/lib/perl5/Template/Manual/VMethods.pod|20701 +./app/lib/perl5/Template/Modules.pod|5503 +./app/lib/perl5/Template/Namespace/Constants.pm|4460 +./app/lib/perl5/Template/Parser.pm|41281 +./app/lib/perl5/Template/Plugin/Assert.pm|3504 +./app/lib/perl5/Template/Plugin/CGI.pm|3087 +./app/lib/perl5/Template/Plugin/Datafile.pm|4243 +./app/lib/perl5/Template/Plugin/Date.pm|10698 +./app/lib/perl5/Template/Plugin/DBI.pm|31354 +./app/lib/perl5/Template/Plugin/Directory.pm|11220 +./app/lib/perl5/Template/Plugin/Dumper.pm|3607 +./app/lib/perl5/Template/Plugin/File.pm|11259 +./app/lib/perl5/Template/Plugin/Filter.pm|10074 +./app/lib/perl5/Template/Plugin/Format.pm|1835 +./app/lib/perl5/Template/Plugin/HTML.pm|6024 +./app/lib/perl5/Template/Plugin/Image.pm|11730 +./app/lib/perl5/Template/Plugin/Iterator.pm|2003 +./app/lib/perl5/Template/Plugin/Math.pm|4089 +./app/lib/perl5/Template/Plugin.pm|10700 +./app/lib/perl5/Template/Plugin/Pod.pm|1652 +./app/lib/perl5/Template/Plugin/Procedural.pm|3678 +./app/lib/perl5/Template/Plugin/Scalar.pm|3769 +./app/lib/perl5/Template/Plugins.pm|15187 +./app/lib/perl5/Template/Plugin/String.pm|18167 +./app/lib/perl5/Template/Plugin/Table.pm|12705 +./app/lib/perl5/Template/Plugin/URL.pm|5841 +./app/lib/perl5/Template/Plugin/View.pm|2476 +./app/lib/perl5/Template/Plugin/Wrap.pm|3271 +./app/lib/perl5/Template.pm|25037 +./app/lib/perl5/Template/Provider.pm|48074 +./app/lib/perl5/Template/Service.pm|18567 +./app/lib/perl5/Template/Stash/Context.pm|27389 +./app/lib/perl5/Template/Stash.pm|30224 +./app/lib/perl5/Template/Stash/XS.pm|3351 +./app/lib/perl5/Template/Test.pm|22242 +./app/lib/perl5/Template/Toolkit.pm|5711 +./app/lib/perl5/Template/Tools.pod|1527 +./app/lib/perl5/Template/Tools/tpage.pod|1640 +./app/lib/perl5/Template/Tools/ttree.pod|10568 +./app/lib/perl5/Template/Tutorial/Datafile.pod|14388 +./app/lib/perl5/Template/Tutorial.pod|1043 +./app/lib/perl5/Template/Tutorial/Web.pod|26939 +./app/lib/perl5/Template/View.pm|24090 +./app/lib/perl5/Template/VMethods.pm|15499 +./app/lib/perl5/Test/Deep/All.pm|702 +./app/lib/perl5/Test/Deep/Any.pm|908 +./app/lib/perl5/Test/Deep/ArrayEach.pm|517 +./app/lib/perl5/Test/Deep/ArrayElementsOnly.pm|677 +./app/lib/perl5/Test/Deep/ArrayLengthOnly.pm|654 +./app/lib/perl5/Test/Deep/ArrayLength.pm|374 +./app/lib/perl5/Test/Deep/Array.pm|477 +./app/lib/perl5/Test/Deep/Blessed.pm|564 +./app/lib/perl5/Test/Deep/Boolean.pm|558 +./app/lib/perl5/Test/Deep/Cache.pm|1032 +./app/lib/perl5/Test/Deep/Cache/Simple.pm|1205 +./app/lib/perl5/Test/Deep/Class.pm|363 +./app/lib/perl5/Test/Deep/Cmp.pm|1153 +./app/lib/perl5/Test/Deep/Code.pm|705 +./app/lib/perl5/Test/Deep/HashEach.pm|326 +./app/lib/perl5/Test/Deep/HashElements.pm|1267 +./app/lib/perl5/Test/Deep/HashKeysOnly.pm|1541 +./app/lib/perl5/Test/Deep/HashKeys.pm|999 +./app/lib/perl5/Test/Deep/Hash.pm|1413 +./app/lib/perl5/Test/Deep/Ignore.pm|186 +./app/lib/perl5/Test/Deep/Isa.pm|538 +./app/lib/perl5/Test/Deep/ListMethods.pm|288 +./app/lib/perl5/Test/Deep/Methods.pm|1312 +./app/lib/perl5/Test/Deep/MM.pm|922 +./app/lib/perl5/Test/Deep/None.pm|869 +./app/lib/perl5/Test/Deep/NoTest.pm|766 +./app/lib/perl5/Test/Deep/Number.pm|1088 +./app/lib/perl5/Test/Deep/Obj.pm|522 +./app/lib/perl5/Test/Deep.pm|49727 +./app/lib/perl5/Test/Deep/Ref.pm|490 +./app/lib/perl5/Test/Deep/RefType.pm|547 +./app/lib/perl5/Test/Deep/RegexpMatches.pm|662 +./app/lib/perl5/Test/Deep/RegexpOnly.pm|521 +./app/lib/perl5/Test/Deep/Regexp.pm|1408 +./app/lib/perl5/Test/Deep/RegexpRefOnly.pm|423 +./app/lib/perl5/Test/Deep/RegexpRef.pm|639 +./app/lib/perl5/Test/Deep/RegexpVersion.pm|280 +./app/lib/perl5/Test/Deep/ScalarRefOnly.pm|384 +./app/lib/perl5/Test/Deep/ScalarRef.pm|432 +./app/lib/perl5/Test/Deep/Set.pm|3696 +./app/lib/perl5/Test/Deep/Shallow.pm|597 +./app/lib/perl5/Test/Deep/Stack.pm|1076 +./app/lib/perl5/Test/Deep/String.pm|369 +./app/lib/perl5/Test/Exception.pm|15465 +./app/lib/perl5/Test/Memory/Cycle.pm|7390 +./app/lib/perl5/Text/Unidecode.pm|28162 +./app/lib/perl5/Text/Unidecode/x00.pm|3903 +./app/lib/perl5/Text/Unidecode/x01.pm|1430 +./app/lib/perl5/Text/Unidecode/x02.pm|2566 +./app/lib/perl5/Text/Unidecode/x03.pm|1696 +./app/lib/perl5/Text/Unidecode/x04.pm|1659 +./app/lib/perl5/Text/Unidecode/x05.pm|1598 +./app/lib/perl5/Text/Unidecode/x06.pm|1537 +./app/lib/perl5/Text/Unidecode/x07.pm|1696 +./app/lib/perl5/Text/Unidecode/x08.pm|134 +./app/lib/perl5/Text/Unidecode/x09.pm|1631 +./app/lib/perl5/Text/Unidecode/x0a.pm|1650 +./app/lib/perl5/Text/Unidecode/x0b.pm|1671 +./app/lib/perl5/Text/Unidecode/x0c.pm|1635 +./app/lib/perl5/Text/Unidecode/x0d.pm|1650 +./app/lib/perl5/Text/Unidecode/x0e.pm|1638 +./app/lib/perl5/Text/Unidecode/x0f.pm|1658 +./app/lib/perl5/Text/Unidecode/x10.pm|1676 +./app/lib/perl5/Text/Unidecode/x11.pm|1746 +./app/lib/perl5/Text/Unidecode/x12.pm|1887 +./app/lib/perl5/Text/Unidecode/x13.pm|1803 +./app/lib/perl5/Text/Unidecode/x14.pm|1853 +./app/lib/perl5/Text/Unidecode/x15.pm|1877 +./app/lib/perl5/Text/Unidecode/x16.pm|1677 +./app/lib/perl5/Text/Unidecode/x17.pm|1734 +./app/lib/perl5/Text/Unidecode/x18.pm|1646 +./app/lib/perl5/Text/Unidecode/x19.pm|1889 +./app/lib/perl5/Text/Unidecode/x1a.pm|1889 +./app/lib/perl5/Text/Unidecode/x1b.pm|1889 +./app/lib/perl5/Text/Unidecode/x1c.pm|1889 +./app/lib/perl5/Text/Unidecode/x1d.pm|1889 +./app/lib/perl5/Text/Unidecode/x1e.pm|2269 +./app/lib/perl5/Text/Unidecode/x1f.pm|1444 +./app/lib/perl5/Text/Unidecode/x20.pm|1707 +./app/lib/perl5/Text/Unidecode/x21.pm|1708 +./app/lib/perl5/Text/Unidecode/x22.pm|1871 +./app/lib/perl5/Text/Unidecode/x23.pm|1871 +./app/lib/perl5/Text/Unidecode/x24.pm|1304 +./app/lib/perl5/Text/Unidecode/x25.pm|1847 +./app/lib/perl5/Text/Unidecode/x26.pm|1544 +./app/lib/perl5/Text/Unidecode/x27.pm|1310 +./app/lib/perl5/Text/Unidecode/x28.pm|3056 +./app/lib/perl5/Text/Unidecode/x29.pm|134 +./app/lib/perl5/Text/Unidecode/x2a.pm|134 +./app/lib/perl5/Text/Unidecode/x2b.pm|134 +./app/lib/perl5/Text/Unidecode/x2c.pm|134 +./app/lib/perl5/Text/Unidecode/x2d.pm|134 +./app/lib/perl5/Text/Unidecode/x2e.pm|2216 +./app/lib/perl5/Text/Unidecode/x2f.pm|2549 +./app/lib/perl5/Text/Unidecode/x30.pm|1654 +./app/lib/perl5/Text/Unidecode/x31.pm|1664 +./app/lib/perl5/Text/Unidecode/x32.pm|2326 +./app/lib/perl5/Text/Unidecode/x33.pm|2121 +./app/lib/perl5/Text/Unidecode/x34.pm|134 +./app/lib/perl5/Text/Unidecode/x35.pm|134 +./app/lib/perl5/Text/Unidecode/x36.pm|134 +./app/lib/perl5/Text/Unidecode/x37.pm|134 +./app/lib/perl5/Text/Unidecode/x38.pm|134 +./app/lib/perl5/Text/Unidecode/x39.pm|134 +./app/lib/perl5/Text/Unidecode/x3a.pm|134 +./app/lib/perl5/Text/Unidecode/x3b.pm|134 +./app/lib/perl5/Text/Unidecode/x3c.pm|134 +./app/lib/perl5/Text/Unidecode/x3d.pm|134 +./app/lib/perl5/Text/Unidecode/x3e.pm|134 +./app/lib/perl5/Text/Unidecode/x3f.pm|134 +./app/lib/perl5/Text/Unidecode/x40.pm|134 +./app/lib/perl5/Text/Unidecode/x41.pm|134 +./app/lib/perl5/Text/Unidecode/x42.pm|134 +./app/lib/perl5/Text/Unidecode/x43.pm|134 +./app/lib/perl5/Text/Unidecode/x44.pm|134 +./app/lib/perl5/Text/Unidecode/x45.pm|134 +./app/lib/perl5/Text/Unidecode/x46.pm|134 +./app/lib/perl5/Text/Unidecode/x47.pm|134 +./app/lib/perl5/Text/Unidecode/x48.pm|134 +./app/lib/perl5/Text/Unidecode/x49.pm|134 +./app/lib/perl5/Text/Unidecode/x4a.pm|134 +./app/lib/perl5/Text/Unidecode/x4b.pm|134 +./app/lib/perl5/Text/Unidecode/x4c.pm|134 +./app/lib/perl5/Text/Unidecode/x4d.pm|2417 +./app/lib/perl5/Text/Unidecode/x4e.pm|2186 +./app/lib/perl5/Text/Unidecode/x4f.pm|2165 +./app/lib/perl5/Text/Unidecode/x50.pm|2236 +./app/lib/perl5/Text/Unidecode/x51.pm|2237 +./app/lib/perl5/Text/Unidecode/x52.pm|2202 +./app/lib/perl5/Text/Unidecode/x53.pm|2172 +./app/lib/perl5/Text/Unidecode/x54.pm|2137 +./app/lib/perl5/Text/Unidecode/x55.pm|2151 +./app/lib/perl5/Text/Unidecode/x56.pm|2171 +./app/lib/perl5/Text/Unidecode/x57.pm|2183 +./app/lib/perl5/Text/Unidecode/x58.pm|2240 +./app/lib/perl5/Text/Unidecode/x59.pm|2196 +./app/lib/perl5/Text/Unidecode/x5a.pm|2188 +./app/lib/perl5/Text/Unidecode/x5b.pm|2218 +./app/lib/perl5/Text/Unidecode/x5c.pm|2170 +./app/lib/perl5/Text/Unidecode/x5d.pm|2228 +./app/lib/perl5/Text/Unidecode/x5e.pm|2222 +./app/lib/perl5/Text/Unidecode/x5f.pm|2212 +./app/lib/perl5/Text/Unidecode/x60.pm|2192 +./app/lib/perl5/Text/Unidecode/x61.pm|2216 +./app/lib/perl5/Text/Unidecode/x62.pm|2172 +./app/lib/perl5/Text/Unidecode/x63.pm|2212 +./app/lib/perl5/Text/Unidecode/x64.pm|2207 +./app/lib/perl5/Text/Unidecode/x65.pm|2190 +./app/lib/perl5/Text/Unidecode/x66.pm|2227 +./app/lib/perl5/Text/Unidecode/x67.pm|2191 +./app/lib/perl5/Text/Unidecode/x68.pm|2226 +./app/lib/perl5/Text/Unidecode/x69.pm|2229 +./app/lib/perl5/Text/Unidecode/x6a.pm|2234 +./app/lib/perl5/Text/Unidecode/x6b.pm|2164 +./app/lib/perl5/Text/Unidecode/x6c.pm|2197 +./app/lib/perl5/Text/Unidecode/x6d.pm|2203 +./app/lib/perl5/Text/Unidecode/x6e.pm|2198 +./app/lib/perl5/Text/Unidecode/x6f.pm|2210 +./app/lib/perl5/Text/Unidecode/x70.pm|2257 +./app/lib/perl5/Text/Unidecode/x71.pm|2244 +./app/lib/perl5/Text/Unidecode/x72.pm|2221 +./app/lib/perl5/Text/Unidecode/x73.pm|2198 +./app/lib/perl5/Text/Unidecode/x74.pm|2254 +./app/lib/perl5/Text/Unidecode/x75.pm|2223 +./app/lib/perl5/Text/Unidecode/x76.pm|2191 +./app/lib/perl5/Text/Unidecode/x77.pm|2225 +./app/lib/perl5/Text/Unidecode/x78.pm|2214 +./app/lib/perl5/Text/Unidecode/x79.pm|2162 +./app/lib/perl5/Text/Unidecode/x7a.pm|2227 +./app/lib/perl5/Text/Unidecode/x7b.pm|2219 +./app/lib/perl5/Text/Unidecode/x7c.pm|2227 +./app/lib/perl5/Text/Unidecode/x7d.pm|2226 +./app/lib/perl5/Text/Unidecode/x7e.pm|2232 +./app/lib/perl5/Text/Unidecode/x7f.pm|2218 +./app/lib/perl5/Text/Unidecode/x80.pm|2207 +./app/lib/perl5/Text/Unidecode/x81.pm|2223 +./app/lib/perl5/Text/Unidecode/x82.pm|2205 +./app/lib/perl5/Text/Unidecode/x83.pm|2199 +./app/lib/perl5/Text/Unidecode/x84.pm|2210 +./app/lib/perl5/Text/Unidecode/x85.pm|2192 +./app/lib/perl5/Text/Unidecode/x86.pm|2168 +./app/lib/perl5/Text/Unidecode/x87.pm|2205 +./app/lib/perl5/Text/Unidecode/x88.pm|2199 +./app/lib/perl5/Text/Unidecode/x89.pm|2180 +./app/lib/perl5/Text/Unidecode/x8a.pm|2195 +./app/lib/perl5/Text/Unidecode/x8b.pm|2195 +./app/lib/perl5/Text/Unidecode/x8c.pm|2180 +./app/lib/perl5/Text/Unidecode/x8d.pm|2190 +./app/lib/perl5/Text/Unidecode/x8e.pm|2211 +./app/lib/perl5/Text/Unidecode/x8f.pm|2201 +./app/lib/perl5/Text/Unidecode/x90.pm|2183 +./app/lib/perl5/Text/Unidecode/x91.pm|2205 +./app/lib/perl5/Text/Unidecode/x92.pm|2200 +./app/lib/perl5/Text/Unidecode/x93.pm|2234 +./app/lib/perl5/Text/Unidecode/x94.pm|2217 +./app/lib/perl5/Text/Unidecode/x95.pm|2223 +./app/lib/perl5/Text/Unidecode/x96.pm|2160 +./app/lib/perl5/Text/Unidecode/x97.pm|2201 +./app/lib/perl5/Text/Unidecode/x98.pm|2195 +./app/lib/perl5/Text/Unidecode/x99.pm|2179 +./app/lib/perl5/Text/Unidecode/x9a.pm|2171 +./app/lib/perl5/Text/Unidecode/x9b.pm|2205 +./app/lib/perl5/Text/Unidecode/x9c.pm|2207 +./app/lib/perl5/Text/Unidecode/x9d.pm|2182 +./app/lib/perl5/Text/Unidecode/x9e.pm|2165 +./app/lib/perl5/Text/Unidecode/x9f.pm|2034 +./app/lib/perl5/Text/Unidecode/xa0.pm|1976 +./app/lib/perl5/Text/Unidecode/xa1.pm|2017 +./app/lib/perl5/Text/Unidecode/xa2.pm|2051 +./app/lib/perl5/Text/Unidecode/xa3.pm|2069 +./app/lib/perl5/Text/Unidecode/xa4.pm|1962 +./app/lib/perl5/Text/Unidecode/xa5.pm|134 +./app/lib/perl5/Text/Unidecode/xa6.pm|134 +./app/lib/perl5/Text/Unidecode/xa7.pm|134 +./app/lib/perl5/Text/Unidecode/xa8.pm|134 +./app/lib/perl5/Text/Unidecode/xa9.pm|134 +./app/lib/perl5/Text/Unidecode/xaa.pm|134 +./app/lib/perl5/Text/Unidecode/xab.pm|134 +./app/lib/perl5/Text/Unidecode/xac.pm|2257 +./app/lib/perl5/Text/Unidecode/xad.pm|2314 +./app/lib/perl5/Text/Unidecode/xae.pm|2423 +./app/lib/perl5/Text/Unidecode/xaf.pm|2560 +./app/lib/perl5/Text/Unidecode/xb0.pm|2401 +./app/lib/perl5/Text/Unidecode/xb1.pm|2294 +./app/lib/perl5/Text/Unidecode/xb2.pm|2228 +./app/lib/perl5/Text/Unidecode/xb3.pm|2289 +./app/lib/perl5/Text/Unidecode/xb4.pm|2310 +./app/lib/perl5/Text/Unidecode/xb5.pm|2467 +./app/lib/perl5/Text/Unidecode/xb6.pm|2544 +./app/lib/perl5/Text/Unidecode/xb7.pm|2381 +./app/lib/perl5/Text/Unidecode/xb8.pm|2262 +./app/lib/perl5/Text/Unidecode/xb9.pm|2252 +./app/lib/perl5/Text/Unidecode/xba.pm|2313 +./app/lib/perl5/Text/Unidecode/xbb.pm|2278 +./app/lib/perl5/Text/Unidecode/xbc.pm|2255 +./app/lib/perl5/Text/Unidecode/xbd.pm|2300 +./app/lib/perl5/Text/Unidecode/xbe.pm|2397 +./app/lib/perl5/Text/Unidecode/xbf.pm|2558 +./app/lib/perl5/Text/Unidecode/xc0.pm|2404 +./app/lib/perl5/Text/Unidecode/xc1.pm|2313 +./app/lib/perl5/Text/Unidecode/xc2.pm|2258 +./app/lib/perl5/Text/Unidecode/xc3.pm|2523 +./app/lib/perl5/Text/Unidecode/xc4.pm|2572 +./app/lib/perl5/Text/Unidecode/xc5.pm|2129 +./app/lib/perl5/Text/Unidecode/xc6.pm|2038 +./app/lib/perl5/Text/Unidecode/xc7.pm|2112 +./app/lib/perl5/Text/Unidecode/xc8.pm|2281 +./app/lib/perl5/Text/Unidecode/xc9.pm|2270 +./app/lib/perl5/Text/Unidecode/xca.pm|2555 +./app/lib/perl5/Text/Unidecode/xcb.pm|2560 +./app/lib/perl5/Text/Unidecode/xcc.pm|2297 +./app/lib/perl5/Text/Unidecode/xcd.pm|2286 +./app/lib/perl5/Text/Unidecode/xce.pm|2256 +./app/lib/perl5/Text/Unidecode/xcf.pm|2261 +./app/lib/perl5/Text/Unidecode/xd0.pm|2254 +./app/lib/perl5/Text/Unidecode/xd1.pm|2315 +./app/lib/perl5/Text/Unidecode/xd2.pm|2272 +./app/lib/perl5/Text/Unidecode/xd3.pm|2253 +./app/lib/perl5/Text/Unidecode/xd4.pm|2306 +./app/lib/perl5/Text/Unidecode/xd5.pm|2228 +./app/lib/perl5/Text/Unidecode/xd6.pm|2313 +./app/lib/perl5/Text/Unidecode/xd7.pm|2084 +./app/lib/perl5/Text/Unidecode/xd8.pm|134 +./app/lib/perl5/Text/Unidecode/xd9.pm|134 +./app/lib/perl5/Text/Unidecode/xda.pm|134 +./app/lib/perl5/Text/Unidecode/xdb.pm|134 +./app/lib/perl5/Text/Unidecode/xdc.pm|134 +./app/lib/perl5/Text/Unidecode/xdd.pm|134 +./app/lib/perl5/Text/Unidecode/xde.pm|134 +./app/lib/perl5/Text/Unidecode/xdf.pm|134 +./app/lib/perl5/Text/Unidecode/xe0.pm|134 +./app/lib/perl5/Text/Unidecode/xe1.pm|134 +./app/lib/perl5/Text/Unidecode/xe2.pm|134 +./app/lib/perl5/Text/Unidecode/xe3.pm|134 +./app/lib/perl5/Text/Unidecode/xe4.pm|134 +./app/lib/perl5/Text/Unidecode/xe5.pm|134 +./app/lib/perl5/Text/Unidecode/xe6.pm|134 +./app/lib/perl5/Text/Unidecode/xe7.pm|134 +./app/lib/perl5/Text/Unidecode/xe8.pm|134 +./app/lib/perl5/Text/Unidecode/xe9.pm|134 +./app/lib/perl5/Text/Unidecode/xea.pm|134 +./app/lib/perl5/Text/Unidecode/xeb.pm|134 +./app/lib/perl5/Text/Unidecode/xec.pm|134 +./app/lib/perl5/Text/Unidecode/xed.pm|134 +./app/lib/perl5/Text/Unidecode/xee.pm|134 +./app/lib/perl5/Text/Unidecode/xef.pm|134 +./app/lib/perl5/Text/Unidecode/xf0.pm|134 +./app/lib/perl5/Text/Unidecode/xf1.pm|134 +./app/lib/perl5/Text/Unidecode/xf2.pm|134 +./app/lib/perl5/Text/Unidecode/xf3.pm|134 +./app/lib/perl5/Text/Unidecode/xf4.pm|134 +./app/lib/perl5/Text/Unidecode/xf5.pm|134 +./app/lib/perl5/Text/Unidecode/xf6.pm|134 +./app/lib/perl5/Text/Unidecode/xf7.pm|134 +./app/lib/perl5/Text/Unidecode/xf8.pm|134 +./app/lib/perl5/Text/Unidecode/xf9.pm|2115 +./app/lib/perl5/Text/Unidecode/xfa.pm|1955 +./app/lib/perl5/Text/Unidecode/xfb.pm|1390 +./app/lib/perl5/Text/Unidecode/xfc.pm|1143 +./app/lib/perl5/Text/Unidecode/xfd.pm|2676 +./app/lib/perl5/Text/Unidecode/xfe.pm|1479 +./app/lib/perl5/Text/Unidecode/xff.pm|1646 +./app/lib/perl5/ttfmod.pl|7073 +./app/lib/perl5/URI/Encode.pm|8444 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/DBD/PgPP/.packlist|83 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Devel/Cycle/.packlist|89 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Digest/SHA/PurePerl/.packlist|178 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Font/TTF/.packlist|7735 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Image/Size/.packlist|157 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/local/lib/.packlist|393 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Math/Base/Convert/.packlist|576 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/MIME/Types/.packlist|452 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/MLDBM/.packlist|255 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PDF/API2/.packlist|10118 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PDF/Table/.packlist|85 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/SQL/Statement/.packlist|2113 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Sub/Uplevel/.packlist|89 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Template/DBI/.packlist|198 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Template/.packlist|7059 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Test/Deep/.packlist|2257 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Test/Exception/.packlist|95 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Test/LeakTrace/LeakTrace.so|88640 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Test/LeakTrace/.packlist|490 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Test/Memory/Cycle/.packlist|102 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Text/Soundex/.packlist|209 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Text/Soundex/Soundex.so|60680 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Text/Unidecode/.packlist|13151 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/auto/URI/Encode/.packlist|87 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/perllocal.pod|4676 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/Test/LeakTrace/JA.pod|10261 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/Test/LeakTrace.pm|7262 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/Test/LeakTrace/Script.pm|986 +./app/lib/perl5/x86_64-linux-gnu-thread-multi/Text/Soundex.pm|8345 +./app/lib/sendemail_new.pm|4850 +./app/lib/sendemail.pm|2296 +./app/lib/session.pm|9608 +./app/report.cgi|4144 +./app/static/css/fonts/pot.svg|67407 +./app/static/css/fonts/pot.ttf|18180 +./app/static/css/fonts/pot.woff|18256 +./app/static/css/icons.css|5157 +./app/static/css/theme.css|41856 +./app/static/img/bg1.jpg|135161 +./app/static/img/favicon/android-icon-144x144.png|12179 +./app/static/img/favicon/android-icon-192x192.png|16669 +./app/static/img/favicon/android-icon-36x36.png|2527 +./app/static/img/favicon/android-icon-48x48.png|3489 +./app/static/img/favicon/android-icon-72x72.png|5250 +./app/static/img/favicon/android-icon-96x96.png|7086 +./app/static/img/favicon/apple-icon-114x114.png|8487 +./app/static/img/favicon/apple-icon-120x120.png|9134 +./app/static/img/favicon/apple-icon-144x144.png|12179 +./app/static/img/favicon/apple-icon-152x152.png|13278 +./app/static/img/favicon/apple-icon-180x180.png|17376 +./app/static/img/favicon/apple-icon-57x57.png|4122 +./app/static/img/favicon/apple-icon-60x60.png|4312 +./app/static/img/favicon/apple-icon-72x72.png|5250 +./app/static/img/favicon/apple-icon-76x76.png|5550 +./app/static/img/favicon/apple-icon.png|17158 +./app/static/img/favicon/apple-icon-precomposed.png|17158 +./app/static/img/favicon/browserconfig.xml|281 +./app/static/img/favicon/favicon-16x16.png|1251 +./app/static/img/favicon/favicon-32x32.png|2246 +./app/static/img/favicon/favicon-96x96.png|7086 +./app/static/img/favicon/favicon.ico|1150 +./app/static/img/favicon/manifest.json|720 +./app/static/img/favicon/ms-icon-144x144.png|12179 +./app/static/img/favicon/ms-icon-150x150.png|12985 +./app/static/img/favicon/ms-icon-310x310.png|40744 +./app/static/img/favicon/ms-icon-70x70.png|5051 +./app/static/img/logo_512.png|31456 +./app/static/img/logo_512_xx.png|14719 +./app/static/img/potbg.jpg|663960 +./app/static/img/poticon512.png|31211 +./app/static/img/POT-logo.png|20930 +./app/static/img/potlogowhite.svg|11940 +./app/static/img/pottop.png|2689 +./app/static/img/toplogo.png|31456 +./app/static/js/app.js|2971 +./app/static/js/form.js|8207 +./app/static/js/report.js|475 +./app/static/js/request.js|3804 +./app/static/js/timecalc.js|3470 +./app/static/vendors/choices/base.css|2320 +./app/static/vendors/choices/base.min.css|1391 +./app/static/vendors/choices/choices.css|8620 +./app/static/vendors/choices/choices.js|217424 +./app/static/vendors/choices/choices.min.css|6293 +./app/static/vendors/choices/choices.min.js|91604 +./app/static/vendors/choices/choices.min.orig.css|6735 +./app/static/vendors/choices/choices.orig.css|8099 +./app/static/vendors/choices/scripts/choices.js|217424 +./app/static/vendors/choices/scripts/choices.min.js|91604 +./app/static/vendors/flatpickr/flatpickr.css|18831 +./app/static/vendors/flatpickr/flatpickr.js|118005 +./app/static/vendors/flatpickr/flatpickr.min.css|15556 +./app/static/vendors/flatpickr/flatpickr.min.js|48355 +./app/static/vendors/flatpickr/flatpickr.min.orig.css|15954 +./app/static/vendors/flatpickr/ie.css|260 +./app/static/vendors/flatpickr/index.d.ts|138 +./app/static/vendors/flatpickr/l10n/de.d.ts|2272 +./app/static/vendors/flatpickr/l10n/default.d.ts|104 +./app/static/vendors/flatpickr/l10n/default.js|2150 +./app/static/vendors/flatpickr/l10n/de.js|1757 +./app/static/vendors/flatpickr/l10n/fr.d.ts|2272 +./app/static/vendors/flatpickr/l10n/fr.js|1893 +./app/static/vendors/flatpickr/l10n/lu.d.ts|2314 +./app/static/vendors/flatpickr/l10n/lu.js|1802 +./app/static/vendors/flatpickr/plugins/confirmDate/confirmDate.css|373 +./app/static/vendors/flatpickr/plugins/confirmDate/confirmDate.d.ts|272 +./app/static/vendors/flatpickr/plugins/confirmDate/confirmDate.js|4212 +./app/static/vendors/flatpickr/plugins/labelPlugin/labelPlugin.d.ts|114 +./app/static/vendors/flatpickr/plugins/labelPlugin/labelPlugin.js|964 +./app/static/vendors/flatpickr/plugins/minMaxTimePlugin.d.ts|491 +./app/static/vendors/flatpickr/plugins/minMaxTimePlugin.js|12386 +./app/static/vendors/flatpickr/plugins/monthSelect/index.d.ts|367 +./app/static/vendors/flatpickr/plugins/monthSelect/index.js|7733 +./app/static/vendors/flatpickr/plugins/monthSelect/style.css|1561 +./app/static/vendors/flatpickr/plugins/monthSelect/tests.spec.d.ts|11 +./app/static/vendors/flatpickr/plugins/rangePlugin.d.ts|312 +./app/static/vendors/flatpickr/plugins/rangePlugin.js|6475 +./app/static/vendors/flatpickr/plugins/scrollPlugin.d.ts|113 +./app/static/vendors/flatpickr/plugins/scrollPlugin.js|2026 +./app/static/vendors/flatpickr/plugins/weekSelect/weekSelect.d.ts|218 +./app/static/vendors/flatpickr/plugins/weekSelect/weekSelect.js|3500 +./app/static/vendors/flatpickr/themes/airbnb.css|21148 +./app/static/vendors/flatpickr/themes/airbnb.min.css|17638 +./app/static/vendors/flatpickr/types/globals.d.ts|546 +./app/static/vendors/flatpickr/types/instance.d.ts|4386 +./app/static/vendors/flatpickr/types/locale.d.ts|2263 +./app/static/vendors/flatpickr/types/options.d.ts|4564 +./app/static/vendors/flatpickr/typings.d.ts|1001 +./app/static/vendors/flatpickr/utils/dates.d.ts|922 +./app/static/vendors/flatpickr/utils/dom.d.ts|585 +./app/static/vendors/flatpickr/utils/formatting.d.ts|834 +./app/static/vendors/flatpickr/utils/index.d.ts|393 +./app/static/vendors/flatpickr/utils/polyfills.d.ts|0 +./app/static/vendors/moment/moment.js|150941 +./app/static/vendors/moment/moment.min.js|53324 +./app/static/vendors/moment/moment-with-locales.js|541363 +./app/static/vendors/moment/moment-with-locales.min.js|336451 +./app/static/vendors/slimselect/slimselect.css|8849 +./app/static/vendors/slimselect/slimselect.js|74826 +./app/static/vendors/slimselect/slimselect.min.css|6326 +./app/static/vendors/slimselect/slimselect.min.js|35553 +./app/static/vendors/slimselect/slimselect.scss|8343 +./app/static/vendors/tabulator/css/tabulator.css|23179 +./app/static/vendors/tabulator/css/tabulator_midnight.css|23343 +./app/static/vendors/tabulator/css/tabulator_midnight.min.css|20181 +./app/static/vendors/tabulator/css/tabulator_midnight.min.css.map|36547 +./app/static/vendors/tabulator/css/tabulator.min.css|20052 +./app/static/vendors/tabulator/css/tabulator.min.css.map|36290 +./app/static/vendors/tabulator/css/tabulator_modern.css|24285 +./app/static/vendors/tabulator/css/tabulator_modern.min.css|21020 +./app/static/vendors/tabulator/css/tabulator_modern.min.css.map|38358 +./app/static/vendors/tabulator/css/tabulator_simple.css|23119 +./app/static/vendors/tabulator/css/tabulator_simple.min.css|20005 +./app/static/vendors/tabulator/css/tabulator_simple.min.css.map|36261 +./app/static/vendors/tabulator/css/tabulator_site.css|23078 +./app/static/vendors/tabulator/css/tabulator_site.min.css|19920 +./app/static/vendors/tabulator/css/tabulator_site.min.css.map|36753 +./app/static/vendors/tabulator/js/modules/accessor.js|2582 +./app/static/vendors/tabulator/js/modules/accessor.min.js|1476 +./app/static/vendors/tabulator/js/modules/ajax.js|12088 +./app/static/vendors/tabulator/js/modules/ajax.min.js|8072 +./app/static/vendors/tabulator/js/modules/calculation_colums.js|12394 +./app/static/vendors/tabulator/js/modules/calculation_colums.min.js|7930 +./app/static/vendors/tabulator/js/modules/clipboard.js|8541 +./app/static/vendors/tabulator/js/modules/clipboard.min.js|5437 +./app/static/vendors/tabulator/js/modules/data_tree.js|12908 +./app/static/vendors/tabulator/js/modules/data_tree.min.js|8509 +./app/static/vendors/tabulator/js/modules/download.js|10252 +./app/static/vendors/tabulator/js/modules/download.min.js|5477 +./app/static/vendors/tabulator/js/modules/edit.js|52433 +./app/static/vendors/tabulator/js/modules/edit.min.js|26101 +./app/static/vendors/tabulator/js/modules/export.js|17440 +./app/static/vendors/tabulator/js/modules/export.min.js|11581 +./app/static/vendors/tabulator/js/modules/filter.js|22917 +./app/static/vendors/tabulator/js/modules/filter.min.js|12654 +./app/static/vendors/tabulator/js/modules/format.js|23323 +./app/static/vendors/tabulator/js/modules/format.min.js|13624 +./app/static/vendors/tabulator/js/modules/frozen_columns.js|6978 +./app/static/vendors/tabulator/js/modules/frozen_columns.min.js|4477 +./app/static/vendors/tabulator/js/modules/frozen_rows.js|2249 +./app/static/vendors/tabulator/js/modules/frozen_rows.min.js|1645 +./app/static/vendors/tabulator/js/modules/group_rows.js|27024 +./app/static/vendors/tabulator/js/modules/group_rows.min.js|18258 +./app/static/vendors/tabulator/js/modules/history.js|3500 +./app/static/vendors/tabulator/js/modules/history.min.js|2521 +./app/static/vendors/tabulator/js/modules/html_table_import.js|4868 +./app/static/vendors/tabulator/js/modules/html_table_import.min.js|2528 +./app/static/vendors/tabulator/js/modules/keybindings.js|8114 +./app/static/vendors/tabulator/js/modules/keybindings.min.js|5025 +./app/static/vendors/tabulator/js/modules/menu.js|5510 +./app/static/vendors/tabulator/js/modules/menu.min.js|3914 +./app/static/vendors/tabulator/js/modules/moveable_columns.js|8666 +./app/static/vendors/tabulator/js/modules/moveable_columns.min.js|5383 +./app/static/vendors/tabulator/js/modules/moveable_rows.js|18323 +./app/static/vendors/tabulator/js/modules/moveable_rows.min.js|12603 +./app/static/vendors/tabulator/js/modules/mutator.js|3107 +./app/static/vendors/tabulator/js/modules/mutator.min.js|1793 +./app/static/vendors/tabulator/js/modules/page.js|18523 +./app/static/vendors/tabulator/js/modules/page.min.js|12598 +./app/static/vendors/tabulator/js/modules/persistence.js|10453 +./app/static/vendors/tabulator/js/modules/persistence.min.js|6497 +./app/static/vendors/tabulator/js/modules/print.js|2981 +./app/static/vendors/tabulator/js/modules/print.min.js|2279 +./app/static/vendors/tabulator/js/modules/reactive_data.js|5286 +./app/static/vendors/tabulator/js/modules/reactive_data.min.js|3051 +./app/static/vendors/tabulator/js/modules/resize_columns.js|5130 +./app/static/vendors/tabulator/js/modules/resize_columns.min.js|3117 +./app/static/vendors/tabulator/js/modules/resize_rows.js|2885 +./app/static/vendors/tabulator/js/modules/resize_rows.min.js|1741 +./app/static/vendors/tabulator/js/modules/resize_table.js|3033 +./app/static/vendors/tabulator/js/modules/resize_table.min.js|2148 +./app/static/vendors/tabulator/js/modules/responsive_layout.js|7489 +./app/static/vendors/tabulator/js/modules/responsive_layout.min.js|4816 +./app/static/vendors/tabulator/js/modules/select_row.js|10843 +./app/static/vendors/tabulator/js/modules/select_row.min.js|6751 +./app/static/vendors/tabulator/js/modules/sort.js|14058 +./app/static/vendors/tabulator/js/modules/sort.min.js|7206 +./app/static/vendors/tabulator/js/modules/validate.js|6993 +./app/static/vendors/tabulator/js/modules/validate.min.js|3649 +./app/static/vendors/tabulator/js/tabulator_core.js|221964 +./app/static/vendors/tabulator/js/tabulator_core.min.js|137602 +./app/static/vendors/tabulator/js/tabulator.js|587608 +./app/static/vendors/tabulator/js/tabulator.min.js|337830 +./app/static/vendors/tinymce/changelog.txt|131850 +./app/static/vendors/tinymce/js/tinymce/jquery.tinymce.min.js|6635 +./app/static/vendors/tinymce/js/tinymce/langs/de.js|10075 +./app/static/vendors/tinymce/js/tinymce/langs/fr_FR.js|9880 +./app/static/vendors/tinymce/js/tinymce/langs/readme.md|151 +./app/static/vendors/tinymce/js/tinymce/license.txt|26441 +./app/static/vendors/tinymce/js/tinymce/plugins/advlist/plugin.min.js|3995 +./app/static/vendors/tinymce/js/tinymce/plugins/anchor/plugin.min.js|2120 +./app/static/vendors/tinymce/js/tinymce/plugins/autolink/plugin.min.js|2534 +./app/static/vendors/tinymce/js/tinymce/plugins/autoresize/plugin.min.js|2298 +./app/static/vendors/tinymce/js/tinymce/plugins/autosave/plugin.min.js|3493 +./app/static/vendors/tinymce/js/tinymce/plugins/bbcode/plugin.min.js|3117 +./app/static/vendors/tinymce/js/tinymce/plugins/charmap/plugin.min.js|11948 +./app/static/vendors/tinymce/js/tinymce/plugins/code/plugin.min.js|1226 +./app/static/vendors/tinymce/js/tinymce/plugins/codesample/plugin.min.js|21028 +./app/static/vendors/tinymce/js/tinymce/plugins/colorpicker/plugin.min.js|550 +./app/static/vendors/tinymce/js/tinymce/plugins/contextmenu/plugin.min.js|550 +./app/static/vendors/tinymce/js/tinymce/plugins/directionality/plugin.min.js|4315 +./app/static/vendors/tinymce/js/tinymce/plugins/emoticons/js/emojis.js|251845 +./app/static/vendors/tinymce/js/tinymce/plugins/emoticons/js/emojis.min.js|193222 +./app/static/vendors/tinymce/js/tinymce/plugins/emoticons/plugin.min.js|6921 +./app/static/vendors/tinymce/js/tinymce/plugins/fullpage/plugin.min.js|8196 +./app/static/vendors/tinymce/js/tinymce/plugins/fullscreen/plugin.min.js|9920 +./app/static/vendors/tinymce/js/tinymce/plugins/help/plugin.min.js|14402 +./app/static/vendors/tinymce/js/tinymce/plugins/hr/plugin.min.js|841 +./app/static/vendors/tinymce/js/tinymce/plugins/image/plugin.min.js|29711 +./app/static/vendors/tinymce/js/tinymce/plugins/imagetools/plugin.min.js|22336 +./app/static/vendors/tinymce/js/tinymce/plugins/importcss/plugin.min.js|5008 +./app/static/vendors/tinymce/js/tinymce/plugins/insertdatetime/plugin.min.js|3212 +./app/static/vendors/tinymce/js/tinymce/plugins/legacyoutput/plugin.min.js|2973 +./app/static/vendors/tinymce/js/tinymce/plugins/link/plugin.min.js|22929 +./app/static/vendors/tinymce/js/tinymce/plugins/lists/plugin.min.js|28276 +./app/static/vendors/tinymce/js/tinymce/plugins/media/plugin.min.js|18033 +./app/static/vendors/tinymce/js/tinymce/plugins/nonbreaking/plugin.min.js|1585 +./app/static/vendors/tinymce/js/tinymce/plugins/noneditable/plugin.min.js|1842 +./app/static/vendors/tinymce/js/tinymce/plugins/pagebreak/plugin.min.js|1842 +./app/static/vendors/tinymce/js/tinymce/plugins/paste/plugin.min.js|31463 +./app/static/vendors/tinymce/js/tinymce/plugins/preview/plugin.min.js|2095 +./app/static/vendors/tinymce/js/tinymce/plugins/print/plugin.min.js|887 +./app/static/vendors/tinymce/js/tinymce/plugins/quickbars/plugin.min.js|10795 +./app/static/vendors/tinymce/js/tinymce/plugins/save/plugin.min.js|1823 +./app/static/vendors/tinymce/js/tinymce/plugins/searchreplace/plugin.min.js|10019 +./app/static/vendors/tinymce/js/tinymce/plugins/spellchecker/plugin.min.js|10404 +./app/static/vendors/tinymce/js/tinymce/plugins/tabfocus/plugin.min.js|1938 +./app/static/vendors/tinymce/js/tinymce/plugins/table/plugin.min.js|122173 +./app/static/vendors/tinymce/js/tinymce/plugins/template/plugin.min.js|8077 +./app/static/vendors/tinymce/js/tinymce/plugins/textcolor/plugin.min.js|546 +./app/static/vendors/tinymce/js/tinymce/plugins/textpattern/plugin.min.js|18459 +./app/static/vendors/tinymce/js/tinymce/plugins/toc/plugin.min.js|3592 +./app/static/vendors/tinymce/js/tinymce/plugins/visualblocks/plugin.min.js|1649 +./app/static/vendors/tinymce/js/tinymce/plugins/visualchars/plugin.min.js|7060 +./app/static/vendors/tinymce/js/tinymce/plugins/wordcount/plugin.min.js|13186 +./app/static/vendors/tinymce/js/tinymce/skins/content/dark/content.min.css|1082 +./app/static/vendors/tinymce/js/tinymce/skins/content/default/content.min.css|982 +./app/static/vendors/tinymce/js/tinymce/skins/content/document/content.min.css|1040 +./app/static/vendors/tinymce/js/tinymce/skins/content/writer/content.min.css|978 +./app/static/vendors/tinymce/js/tinymce/skins/ui/oxide/content.min.css|17883 +./app/static/vendors/tinymce/js/tinymce/skins/ui/oxide/content.mobile.min.css|544 +./app/static/vendors/tinymce/js/tinymce/skins/ui/oxide-dark/content.inline.min.css|18087 +./app/static/vendors/tinymce/js/tinymce/skins/ui/oxide-dark/content.min.css|17510 +./app/static/vendors/tinymce/js/tinymce/skins/ui/oxide-dark/content.mobile.min.css|544 +./app/static/vendors/tinymce/js/tinymce/skins/ui/oxide-dark/fonts/tinymce-mobile.woff|4624 +./app/static/vendors/tinymce/js/tinymce/skins/ui/oxide-dark/skin.min.css|52080 +./app/static/vendors/tinymce/js/tinymce/skins/ui/oxide-dark/skin.mobile.min.css|21004 +./app/static/vendors/tinymce/js/tinymce/skins/ui/oxide/fonts/tinymce-mobile.woff|4624 +./app/static/vendors/tinymce/js/tinymce/skins/ui/oxide/skin.min.css|52178 +./app/static/vendors/tinymce/js/tinymce/skins/ui/oxide/skin.mobile.min.css|21004 +./app/static/vendors/tinymce/js/tinymce/themes/mobile/theme.min.js|179424 +./app/static/vendors/tinymce/js/tinymce/themes/silver/theme.min.js|385268 +./app/static/vendors/tinymce/js/tinymce/tinymce.min.js|438407 +./app/tmpl/block/cgu.tt|9355 +./app/tmpl/block/dlgdataload.tt|1183 +./app/tmpl/block/dlgdeleterow.tt|2720 +./app/tmpl/block/dlginfo.tt|2109 +./app/tmpl/block/dlgmessage.tt|914 +./app/tmpl/block/dlg_replacestaffdayworkplan.tt|1846 +./app/tmpl/block/dlgstaffpayedhours.tt|1509 +./app/tmpl/block/dlgstaffperioddays.tt|3435 +./app/tmpl/block/head.tt|1815 +./app/tmpl/block/pnl_nodata.tt|317 +./app/tmpl/block/snackbar.tt|25 +./app/tmpl/file.tt|84 +./app/tmpl/.htaccess|169 +./app/tmpl/index.tt|5098 +./app/tmpl/list/labels.tt|130 +./app/tmpl/list/schemaaccess.tt|62 +./app/tmpl/login.tt|3285 +./app/tmpl/macro/fields.tt|10618 +./app/tmpl/module/admin/admin.js|0 +./app/tmpl/module/admin.tt|1583 +./app/tmpl/module/companies/companies.js|5879 +./app/tmpl/module/companies/dlg_dataset.tt|1525 +./app/tmpl/module/companies/dlg_staffgroups.tt|1026 +./app/tmpl/module/companies/dlg_users.tt|2507 +./app/tmpl/module/companies/dlg_worktimes.tt|1781 +./app/tmpl/module/companies/pnl_basedata.tt|7253 +./app/tmpl/module/companies/schemadataset.js|1760 +./app/tmpl/module/companies/staffgroups.js|2682 +./app/tmpl/module/companies.tt|3877 +./app/tmpl/module/companies/users.js|6658 +./app/tmpl/module/companies/worktimes.js|3593 +./app/tmpl/module/company/company.js|1863 +./app/tmpl/module/company/dlg_staffgroups.tt|1026 +./app/tmpl/module/company/dlg_users.tt|2507 +./app/tmpl/module/company/pnl_basedata.tt|6868 +./app/tmpl/module/company/staffgroups.js|2299 +./app/tmpl/module/company.tt|1959 +./app/tmpl/module/company/users.js|6658 +./app/tmpl/module/index/index.js|656 +./app/tmpl/module/index.tt|2589 +./app/tmpl/module/login/accountreset.tt|1619 +./app/tmpl/module/login/forgotpassword.tt|835 +./app/tmpl/module/login/login.tt|1181 +./app/tmpl/module/login/message.tt|626 +./app/tmpl/module/login/register.tt|2448 +./app/tmpl/module/login/validationcode.tt|918 +./app/tmpl/module/periods/reportperiod.js|5921 +./app/tmpl/module/periods/staffperiodweeks.js|13370 +./app/tmpl/module/periods/tlb_staffperiodweeks.tt|878 +./app/tmpl/module/periods.tt|3187 +./app/tmpl/module/profile/dlgpassword.tt|2869 +./app/tmpl/module/profile/dlgusername.tt|3737 +./app/tmpl/module/profile/profile.js|381 +./app/tmpl/module/profile.tt|2857 +./app/tmpl/module/staff/dlg_staffcontract.tt|2332 +./app/tmpl/module/staff/pnl_basedata.tt|6455 +./app/tmpl/module/staff/staffcontract.js|7148 +./app/tmpl/module/staff/staff.js|4813 +./app/tmpl/module/staff/staffperiods.js|3036 +./app/tmpl/module/staff.tt|3208 +./app/tmpl/module/timetrackers/index.js|401 +./app/tmpl/module/timetrackers/index.tt|1208 +./app/tmpl/module/workplans/dlg_workplanday.tt|2267 +./app/tmpl/module/workplans/dlg_workplan.tt|1365 +./app/tmpl/module/workplans.tt|2325 +./app/tmpl/module/workplans/workplans.js|9153 +./app/tools/bin/sendEmail|80246 +./app/tools/bin/wkhtmltoimage|44327296 +./app/tools/bin/wkhtmltopdf|44405120 +./app/tools/data.tar.xz|14863940 +./app/tools/.htaccess|169 +./app/tools/include/wkhtmltox/dllbegin.inc|1642 +./app/tools/include/wkhtmltox/dllend.inc|1078 +./app/tools/include/wkhtmltox/image.h|3700 +./app/tools/include/wkhtmltox/pdf.h|4273 +./app/tools/lib/libwkhtmltox.so.0.12.6|44250312 +./app/tools/share/man/man1/wkhtmltoimage.1.gz|3500 +./app/tools/share/man/man1/wkhtmltopdf.1.gz|7870 +./app/tools/usr/share/doc/wkhtmltox/changelog.gz|159 +./app/upload.cgi|9382 +./css/site.css|24964 +./.htaccess|0 ./img/favicon/android-icon-144x144.png|12179 ./img/favicon/android-icon-192x192.png|16669 ./img/favicon/android-icon-36x36.png|2527 @@ -1205,14 +1038,8 @@ ./img/favicon/ms-icon-150x150.png|12985 ./img/favicon/ms-icon-310x310.png|40744 ./img/favicon/ms-icon-70x70.png|5051 -./img/htlogo.png|44729 +./img/macos_badge.png|11188 ./img/potbg.jpg|663960 ./img/pot_big.png|31456 -./img/slides/slide1.jpg|582011 -./img/slides/slide2.jpg|61860 -./img/slides/slide3.jpg|58120 -./img/slides/slide4.jpg|124615 -./index.cgi|2355 -./js/slides.js|669 -./tmpl/skeleton/index_next.tt|11738 -./tmpl/skeleton/index.tt|3321 +./img/windows_badge.png|10374 +./index.html|2925 diff --git a/website/app/.htaccess b/website/app/.htaccess index 4457c95d..2d11d59a 100644 --- a/website/app/.htaccess +++ b/website/app/.htaccess @@ -3,4 +3,6 @@ DirectoryIndex index.cgi index.html AddHandler cgi-script .cgi RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d +# RewriteRule "db.cgi" "db.cgi" [NC,L,QSA] +# RewriteRule "report.cgi" "report.cgi" [NC,L,QSA] RewriteRule "^(.*)$" "index.cgi" [NC,L,QSA] \ No newline at end of file diff --git a/website/app/app.cgi b/website/app/app.cgi deleted file mode 100644 index a42bddcb..00000000 --- a/website/app/app.cgi +++ /dev/null @@ -1,108 +0,0 @@ -#!/usr/local/bin/perl -use strict; -use lib ('./lib/perl5'); -use lib ('./lib'); -use CGI; -use CGI::Cookie; -#use CGI::Carp qw/fatalsToBrowser/; -use File::Basename; -use Business::Tax::VAT::Validation; -use JSON::PP; -use Data::Dumper; -use dksconfig qw/$sitecfg/; -use dksdb; - -use session; -use sendemail; -my $cgi = new CGI(); -my $scriptpath = $cgi->url(-absolute => 1); -my $p = (); -my @params = $cgi->param(); -foreach my $pe (@params){ - $p->{$pe} = $cgi->param($pe); -} -my $html->{result} = (); -$p->{sid} = $cgi->cookie($sitecfg->{cookiename}); -my $se = session->new(); -my $sess = $se->getsession($p->{sid}); -print $cgi->header(-type=>"application/json", -charset => "utf-8"); -if ($sess == undef){ - $html->{error} = "No Authorisation"; - print JSON::PP::encode_json($html); - exit(0); -} -#$html->{p} = $p; -# $html->{sess} =$sess; -#my $datapath = $ENV{"DOCUMENT_ROOT"}.dirname(dirname($scriptpath)).'/data/'; -if (($cgi->request_method() eq "GET") || ($cgi->request_method() eq "POST")){ - my @params = $cgi->param(); - foreach my $pp (@params){ - $p->{$pp} = $cgi->param($pp); - } - - if (exists($p->{fn})){ - - my $db = dksdb->new(); - if($p->{fn} eq "savepassword"){ - if ((length($p->{pwd}) > 7) && ($p->{pwd} =~ /\d/) && ($p->{pwd} =~ /[a-z]/) && ($p->{pwd} =~ /[A-Z]/) ){ - $se->savepassword($sess->{id},$p->{pwd}); - $html->{result} = "OK"; - }else { - $html->{result} = "NOT OK"; - } - - } - if ($p->{fn} eq "sendmailvcode"){ - my $vcode = $se->randomstring(6); - $vcode = lc($vcode); - $db->exec("UPDATE users set vcode='".$vcode."' where id=".$sess->{id}.";"); - my $eml = sendemail->new(); - my $mret = $eml->sendemail('user_verification',$sess->{id},$p->{mail},{vcode => $vcode},undef); - if ($mret == 0){ - $html->{result}->{vcode} = $vcode; - } else { - $html->{result}->{vcode} = $vcode; - $html->{result}->{error} = $mret; - } - } - if ($p->{fn} eq "sendnewpassword"){ - #my $vcode = $se->randomstring(6); - #$vcode = lc($vcode); - #$db->exec("UPDATE users set vcode='".$vcode."' where id=".$sess->{id}.";"); - my $ret = $se->admin_sendpassword($p->{email}); - $html->{result}->{status} = $ret; - } - if ($p->{fn} eq "savenewemail"){ - $db->exec("update users set username='".$p->{email}."' where id=".$sess->{id}." and vcode='".$p->{vcode}."';"); - $html->{result} = "OK"; - } - # if($p->{fn} eq "getsitemedia"){ - # my $path = dirname(dirname($ENV{SCRIPT_FILENAME})).'/img'; - # } - if ($p->{fn} eq "checkvat"){ - my $hvatn=Business::Tax::VAT::Validation->new(); - my $VAT=$p->{vatnumber}; - $VAT =~ s/\s+//g; - if ($hvatn->check($VAT)){ - $html->{result} = $hvatn->informations(); - } else { - $html->{result} = $hvatn->get_last_error; - } - } - -# if ($p->{fn} eq "getschemaaccess"){ -# my $sql = "select * from vw_schemata where schemaname in ( -# select json_array_elements_text(schemaaccess) as schemaaccess from users where id='".$sess->{id}."') order by company;"; -# if ($sess->{usergroup} eq "admin"){ -# $sql = "select * from vw_schemata;"; -# } -# $html->{result} = $db->querysorted($sql); -# } - if ($p->{fn} eq "sendemail"){ - my $eml = sendemailnew->new(); - $eml->gentemplate($p->{tmpl},$sess->{id}); - } - } - -} -print JSON::PP::encode_json($html); diff --git a/website/app/data/schemata/defaultcompany.schema.sql b/website/app/data/schemata/defaultcompany.schema.sql index de629159..7411fef9 100644 --- a/website/app/data/schemata/defaultcompany.schema.sql +++ b/website/app/data/schemata/defaultcompany.schema.sql @@ -10,8 +10,7 @@ declare rplength int4; rpparentid text; rpunit text; - r_stgrps record; - rpsql text; + allstaff record; newperiodid text; begin select reportperiodunit,reportperiodlength,reportperiodstart into rpunit,rplength,rpstart from public.companies where schemata='%%NEWSCHEMA%%'; @@ -20,12 +19,153 @@ begin select max(id) into rpparentid from %%NEWSCHEMA%%.reportperiod; --raise notice 'ADD NEW PERIOD: %->%',rpstart,rpend; INSERT INTO %%NEWSCHEMA%%.reportperiod (startdate, enddate, id_parentreportperiod) VALUES(rpstart,rpend,rpparentid) returning id into newperiodid; - perform %%NEWSCHEMA%%.update_all_staff_in_period(newperiodid); + for allstaff in select id_staff from %%NEWSCHEMA%%.staff where isdeleted is null + loop + perform %%NEWSCHEMA%%.set_staffperioddays(newperiodid,allstaff.id_staff); + end loop; + return newperiodid; end; $$; -CREATE FUNCTION %%NEWSCHEMA%%.getperiod_staffcontract(pid text) RETURNS TABLE(id text, id_staff text, startdate date, enddate date, weekhours interval, weekdays integer, id_workplan text, defaultfreedays json) +CREATE FUNCTION %%NEWSCHEMA%%.add_staff() RETURNS text + LANGUAGE plpgsql + AS $$ +declare + newuuid text; + stgrid text; + iddef_workplan text; +begin + select id into iddef_workplan from %%NEWSCHEMA%%.workplans where isdefault = true; + select id into stgrid from %%NEWSCHEMA%%.staffgroups where isdefault is null; + if (stgrid is null) then + select id into stgrid from %%NEWSCHEMA%%.staffgroups limit 1; + end if; + insert into %%NEWSCHEMA%%.staff (id_staffgroup) values (stgrid) returning id into newuuid; + insert into %%NEWSCHEMA%%.staffcontract (id_staff,startdate,id_contractworkplan) values (newuuid,CURRENT_DATE,iddef_workplan); + return newuuid; +end; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.add_workplan(pwkname text) RETURNS text + LANGUAGE plpgsql + AS $$ +declare + newuuid text; +begin + insert into %%NEWSCHEMA%%.workplans (workplan) values (pwkname) returning id into newuuid; + for cntwd in 1..7 LOOP + insert into %%NEWSCHEMA%%.workplandays (id_workplan,weeknum,weekday) values (newuuid,1,cntwd); + end loop; + return newuuid; +end; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.clean_staffperiodday(vid_staffperioddays json) RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + rcopy record; + begin + --select id_reportperiod,id_staff into rcopy from %%NEWSCHEMA%%.staffreportperioddays where id in (vid_staffperioddays) group by id_reportperiod, id_staff; + update %%NEWSCHEMA%%.staffreportperioddays set timestart1 = null, + timeend1 =null, + timestart2 = null, + timeend2 = null, + timepause = null, + vacancyhours = null, + id_vacancytype = null, + id_recuperationtype = null, + recuperationhours = null, + workhours=null, + dayhours=null + where id in (select value from json_array_elements_text(vid_staffperioddays) aa); + for rcopy in select id_reportperiod,id_staff from %%NEWSCHEMA%%.staffreportperioddays where id in (select value from json_array_elements_text(vid_staffperioddays) aa) group by id_reportperiod, id_staff + loop + perform %%NEWSCHEMA%%.update_staff_in_period(rcopy.id_reportperiod, rcopy.id_staff); + end loop; + RETURN true; + END; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.clone_staffperiodweekdayhours(vcopyid text, vpasteids json) RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + rcopy record; + + begin + + select * into rcopy from %%NEWSCHEMA%%.staffreportperioddays where id=vcopyid; + update %%NEWSCHEMA%%.staffreportperioddays set timestart1=rcopy.timestart1, + timeend1=rcopy.timeend1, + timestart2= rcopy.timestart2, + timeend2=rcopy.timeend2, + timepause=rcopy.timepause, + vacancyhours=rcopy.vacancyhours, + id_vacancytype=rcopy.id_vacancytype, + id_recuperationtype=rcopy.id_recuperationtype, + recuperationhours=rcopy.recuperationhours + where id in (select value from json_array_elements_text(vpasteids) aa); + perform %%NEWSCHEMA%%.update_staff_in_period(rcopy.id_reportperiod, rcopy.id_staff); + RETURN true; + END; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.del_staff(pid_staff text) RETURNS boolean + LANGUAGE plpgsql + AS $$ +begin + update %%NEWSCHEMA%%.staff set isdeleted = true; + return true; +end; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.del_staffcontract(pid_staffcontract text) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + idstaff text; + rps record; +begin + select id_staff into idstaff from %%NEWSCHEMA%%.staffcontract where id=pid_staffcontract; + delete from %%NEWSCHEMA%%.staffcontract where id=pid_staffcontract; + for rps in select id from %%NEWSCHEMA%%.reportperiod + loop + perform %%NEWSCHEMA%%.set_staffperioddays(rps.id, idstaff); + end loop; + return true; +end; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.delete_workplan(pid_workplan text) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare +begin + delete from %%NEWSCHEMA%%.workplandays where id_workplan=pid_workplan; + --update %%NEWSCHEMA%%.staffcontract set id_worplan=null where id_workplan=pid_workplan; + delete from %%NEWSCHEMA%%.workplans where id=pid_workplan; + return true; +end; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.duplicate_workplan(pid_workplan text) RETURNS text + LANGUAGE plpgsql + AS $$ +declare + newuuid text; + wkname text; +begin + select workplan || ' Copy' into wkname from %%NEWSCHEMA%%.workplans where id=pid_workplan; + insert into %%NEWSCHEMA%%.workplans (workplan) values (wkname) returning id into newuuid; + insert into %%NEWSCHEMA%%.workplandays (id_workplan, weekday, start1, end1, start2, end2, pause, weeknum) + select newuuid as id_workplan, weekday,start1,end1,start2,end2,pause,weeknum from %%NEWSCHEMA%%.workplandays where id_workplan = pid_workplan; + return newuuid; +end; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.getperiod_staffcontract(pid text) RETURNS TABLE(id text, id_staff text, startdate date, enddate date) LANGUAGE plpgsql AS $$ declare @@ -34,45 +174,36 @@ CREATE FUNCTION %%NEWSCHEMA%%.getperiod_staffcontract(pid text) RETURNS TABLE(id begin select prd.startdate as prdstart,prd.enddate as prdend into pstart,pend from %%NEWSCHEMA%%.reportperiod prd where prd.id=pid; return QUERY -select sc.id,sc.id_staff, +select sc.id,sc.id_staff,sc.weekdays,sc.weekhours, sc.weekhours/sc.weekdays as wdcontracthours, case when sc.startdate < pstart then pstart else sc.startdate end as startdate, -case when sc.enddate is null then pend when sc.enddate > pend then pend else sc.enddate end as enddate, -sc.weekhours,sc.weekdays,sc.id_workplan,sc.defaultfreedays -from %%NEWSCHEMA%%.staffcontract sc where sc.startdate<= pend and (sc.enddate is null or sc.enddate >= pstart) +case when sc.enddate is null then pend when sc.enddate > pend then pend else sc.enddate end as enddate +from %%NEWSCHEMA%%.staffcontract sc +join %%NEWSCHEMA%%.staff st on st.id=sc.id_staff +where sc.startdate<= pend and (sc.enddate is null or sc.enddate >= pstart) and st.isdeleted is null order by sc.id_staff,sc.startdate,sc.enddate; END; $$; -CREATE FUNCTION %%NEWSCHEMA%%.getperiod_staffcontract(pstart date, pend date) RETURNS TABLE(id text, id_staff text, startdate date, enddate date, weekhours interval, weekdays integer, id_workplan text) +CREATE FUNCTION %%NEWSCHEMA%%.getperiod_staffcontractdata(pid text) RETURNS TABLE(id text, id_staff text, startdate date, enddate date, weekdays integer, weekhours interval, wdcontracthours interval) LANGUAGE plpgsql AS $$ - BEGIN + declare + pstart date; + pend date; + begin + select prd.startdate as prdstart,prd.enddate as prdend into pstart,pend from %%NEWSCHEMA%%.reportperiod prd where prd.id=pid; return QUERY -select id,id_staff,case when startdate < pstart then pstart else startdate end as startdate,case when enddate is null then pend when enddate > pend then pend else enddate end as enddate, -weekdays, -id_workplan, -weekhours from %%NEWSCHEMA%%.staffcontract where startdate<= pend and (enddate is null or enddate >= pstart) order by id_staff,startdate,enddate; +select sc.id,sc.id_staff, +case when sc.startdate < pstart then pstart else sc.startdate end as startdate, +case when sc.enddate is null then pend when sc.enddate > pend then pend else sc.enddate end as enddate +,sc.weekdays,sc.weekhours, sc.weekhours/case when sc.weekdays = 0 or sc.weekdays is null then 7 else sc.weekdays end as wdcontracthours +from %%NEWSCHEMA%%.staffcontract sc +join %%NEWSCHEMA%%.staff st on st.id=sc.id_staff +where sc.startdate<= pend and (sc.enddate is null or sc.enddate >= pstart) and st.isdeleted is null +order by sc.id_staff,sc.startdate,sc.enddate; END; $$; -CREATE FUNCTION %%NEWSCHEMA%%.onchange_reportperiod(pid_period text) RETURNS boolean - LANGUAGE plpgsql - AS $$ -declare - prdstart date; - prdend date; - strec record; -begin - select startdate,enddate into prdstart,prdend from %%NEWSCHEMA%%.reportperiod where id=pid_period; - for strec in select id_staff,startdate,enddate from %%NEWSCHEMA%%.staffcontract where startdate <= prdend and (enddate is null or enddate >= prdstart) group by id_staff - loop - --raise notice 'Start Update period % staffworkplan for % from % to %',pid_period,strec.id_staff,strec.startdate,strec.enddate; - perform %%NEWSCHEMA%%.update_staffworkplan(pid_period,strec.id_staff); - end loop; - return true; -end; -$$; - CREATE FUNCTION %%NEWSCHEMA%%.refresh_periods() RETURNS boolean LANGUAGE plpgsql AS $$ @@ -87,7 +218,91 @@ CREATE FUNCTION %%NEWSCHEMA%%.refresh_periods() RETURNS boolean END; $$; -CREATE FUNCTION %%NEWSCHEMA%%.set_periodday_sums(pid_periodday text) RETURNS text +CREATE FUNCTION %%NEWSCHEMA%%.replace_staffperiodweekdayhours(vworkplanid text, vkeepvac boolean, vkeeprec boolean, vreplaceids json) RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + rcopy record; + + begin + for rcopy in select * from %%NEWSCHEMA%%.workplandays w where id_workplan=vworkplanid + loop + update %%NEWSCHEMA%%.staffreportperioddays set timestart1=rcopy.start1,timeend1=rcopy.end1,timestart2=rcopy.start2,timeend2=rcopy.end2, timepause=rcopy.pause + where id in (select value from json_array_elements_text(vreplaceids) aa) and date_part('isodow',daydate)::INT4=rcopy.weekday; + if vkeepvac = false then + update %%NEWSCHEMA%%.staffreportperioddays set vacancyhours=null,id_vacancytype=null + where id in (select value from json_array_elements_text(vreplaceids) aa) and date_part('isodow',daydate)::INT4=rcopy.weekday; + end if; + if vkeeprec = false then + update %%NEWSCHEMA%%.staffreportperioddays set recuperationhours=null,id_recuperationtype=null + where id in (select value from json_array_elements_text(vreplaceids) aa) and date_part('isodow',daydate)::INT4=rcopy.weekday; + end if; + end loop; + perform %%NEWSCHEMA%%.update_periodsums_byid(vreplaceids); + RETURN true; + END; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.set_staffperiod(pid_period text, pid_staff text) RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + weekrec record; + BEGIN + for weekrec in select id_staff,id_reportperiod, +sum(contracthours) as contracthours, +sum(workhours) as workhours, +sum(vacancyhours) as vacancyhours, +sum(recuperationhours) as recuperationhours, +sum(diffhours) as hoursdiff, +sum(totalhours) as totalhours +from %%NEWSCHEMA%%.staffreportperiodweeks where id_staff=pid_staff and id_reportperiod=pid_period group by id_reportperiod,id_staff + loop + insert into %%NEWSCHEMA%%.staffreportperiod (id_staff,id_reportperiod,contracthours,workhours,vacancyhours,recuperationhours,hoursdiff,totalhours) + values (pid_staff,pid_period ,weekrec.contracthours,weekrec.workhours,weekrec.vacancyhours,weekrec.recuperationhours,weekrec.hoursdiff,weekrec.totalhours) + on conflict on constraint uniq_staffreportperiod_cal do update set contracthours=weekrec.contracthours, + workhours=weekrec.workhours, + vacancyhours=weekrec.vacancyhours, + recuperationhours=weekrec.recuperationhours, + hoursdiff=weekrec.hoursdiff, + totalhours=weekrec.totalhours; + end loop; + --set periodstaffdata (based on periodweeks) + --set nextperiodsdata(based on) + return true; + END; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.set_staffperiod_sums(pid_period text, pid_staff text) RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + weekrec record; + BEGIN + for weekrec in select id_staff,id_reportperiod, +sum(case when contracthours is not null then contracthours else '00:00:00'::interval end) as contracthours, +sum(case when workhours is not null then workhours else '00:00:00'::interval end) as workhours, +sum(case when vacancyhours is not null then vacancyhours else '00:00:00'::interval end) as vacancyhours, +sum(case when recuperationhours is not null then recuperationhours else '00:00:00'::interval end) as recuperationhours, +sum(case when diffhours is not null then diffhours else '00:00:00'::interval end) as hoursdiff, +sum(case when totalhours is not null then totalhours else '00:00:00'::interval end) as totalhours +from %%NEWSCHEMA%%.staffreportperiodweeks where id_staff=pid_staff and id_reportperiod=pid_period group by id_reportperiod,id_staff + loop + update %%NEWSCHEMA%%.staffreportperiod set contracthours=weekrec.contracthours, + workhours=weekrec.workhours, + vacancyhours=weekrec.vacancyhours, + recuperationhours=weekrec.recuperationhours, + hoursdiff=weekrec.hoursdiff, + totalhours=weekrec.totalhours + where id_staff=pid_staff and id_reportperiod=pid_period; + end loop; + --set periodstaffdata (based on periodweeks) + --set nextperiodsdata(based on) + return true; + END; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.set_staffperiodday_sums(pid_periodday text) RETURNS text LANGUAGE plpgsql AS $$ declare @@ -96,101 +311,141 @@ declare dt2 interval := '00:00:00'::interval; dp interval := '00:00:00'::interval; cworkhours interval := '00:00:00'::interval; - cvacancyhours interval := '00:00:00'::interval; - crecuperationhours interval := '00:00:00'::interval; + --cvacancyhours interval := '00:00:00'::interval; + --crecuperationhours interval := '00:00:00'::interval; cdayhours interval := '00:00:00'::interval; cinterruptionhours interval := '00:00:00'::interval; + ccontracthours interval := '00:00:00'::interval; begin - + --raise notice 'set Period Day: %s', pid_periodday; select * into stw from %%NEWSCHEMA%%.staffreportperioddays where id=pid_periodday; if stw.timestart1 is not null and stw.timeend1 is not null then - dt1 := stw.timeend1-stw.timestart1; + if stw.timeend1 < stw.timestart1 then + dt1 := '24:00:00'::interval + stw.timeend1::interval - stw.timestart1::interval; + else + dt1 := stw.timeend1-stw.timestart1; + end if; end if; if stw.timestart2 is not null and stw.timeend2 is not null then - dt2 := stw.timeend2-stw.timestart2; + if stw.timeend2 < stw.timestart2 then + dt2 := '24:00:00'::interval + stw.timeend2::interval - stw.timestart2::interval; + else + dt2 := stw.timeend2-stw.timestart2; + end if; end if; if stw.timepause is not null then dp := stw.timepause; end if; cworkhours := (dt1+dt2)-dp; if (dt1 > '00:00:00'::interval and dt2 > '00:00:00'::interval) then - cinterruptionhours := stw.timestart2 -stw.timeend1; + cinterruptionhours := stw.timestart2 - stw.timeend1; end if; - if stw.vacancyhours is not null then + /*if stw.vacancyhours is not null then if stw.vacancyhours <= stw.contracthours then cvacancyhours := stw.vacancyhours; else cvacancyhours := stw.contracthours; end if; - end if; - if stw.recuperationhours is not null then + end if;*/ + /*if stw.recuperationhours is not null then if stw.recuperationhours <= stw.contracthours then crecuperationhours := stw.recuperationhours; else crecuperationhours := stw.contracthours; end if; + end if;*/ + cdayhours := cworkhours::interval+coalesce(stw.vacancyhours::interval,'00:00:00'::interval)-coalesce(stw.recuperationhours::interval,'00:00:00'::interval); + if cdayhours > '00:00:00'::interval then + ccontracthours := stw.wdcontracthours; end if; - cdayhours := cworkhours+cvacancyhours+crecuperationhours; - - update %%NEWSCHEMA%%.staffreportperioddays set workhours=cworkhours,interruptionhours=cinterruptionhours,dayhours=cdayhours,vacancyhours=cvacancyhours,recuperationhours=crecuperationhours where id=pid_periodday; + update %%NEWSCHEMA%%.staffreportperioddays set workhours=cworkhours,interruptionhours=cinterruptionhours,dayhours=cdayhours,contracthours=ccontracthours where id=pid_periodday; return pid_periodday; end; $$; -CREATE FUNCTION %%NEWSCHEMA%%.set_staffperiod_sums(pid_period text, pid_staff text) RETURNS boolean +CREATE FUNCTION %%NEWSCHEMA%%.set_staffperioddays(pid_period text, pid_staff text) RETURNS boolean LANGUAGE plpgsql AS $$ - declare - weekrec record; - BEGIN - for weekrec in select id_staff,id_reportperiod, -sum(contracthours) as contracthours, -sum(workhours) as workhours, -sum(vacancyhours) as vacancyhours, -sum(recuperationhours) as recuperationhours, -sum(diffhours) as hoursdiff, -sum(totalhours) as totalhours -from %%NEWSCHEMA%%.staffreportperiodweeks where id_staff=pid_staff and id_reportperiod=pid_period group by id_reportperiod,id_staff - loop - update %%NEWSCHEMA%%.staffreportperiod set contracthours=weekrec.contracthours, - workhours=weekrec.workhours, - vacancyhours=weekrec.vacancyhours, - recuperationhours=weekrec.recuperationhours, - hoursdiff=weekrec.hoursdiff, - totalhours=weekrec.totalhours - where id_staff=pid_staff and id_reportperiod=pid_period; +declare + cont record; + prd record; + pday record; + cdate date; + cid_staffworkplan text; +begin + select * into prd from %%NEWSCHEMA%%.reportperiod where id= pid_period; + for cont in select * from %%NEWSCHEMA%%.getperiod_staffcontractdata(pid_period) where id_staff=pid_staff + loop + cdate := cont.startdate; + + while cdate <= cont.enddate loop + --raise notice 'cdate %: % <=> %',cdate, prd.startdate,prd.enddate; + if cdate between prd.startdate and prd.enddate then + --raise notice 'insert %: % <=> %',cdate, prd.startdate,prd.enddate; + insert into %%NEWSCHEMA%%.staffreportperioddays (id_staff,daydate,id_reportperiod,wdcontracthours ) values ( pid_staff , cdate , pid_period,cont.wdcontracthours) + on conflict on constraint uniq_staffworplan_staffday do update set wdcontracthours=cont.wdcontracthours; + end if; + cdate = cdate + interval '1 day'; end loop; - --set periodstaffdata (based on periodweeks) - --set nextperiodsdata(based on) - return true; - END; + + end loop; + perform %%NEWSCHEMA%%.verify_perioddays(pid_period,pid_staff); + for pday in select id from %%NEWSCHEMA%%.staffreportperioddays where id_staff=pid_staff and pid_period=pid_period + loop + perform %%NEWSCHEMA%%.set_staffperiodday_sums(pday.id); + end loop; + raise notice 'start set_staffperiodweeks % % ',pid_period,pid_staff; + perform %%NEWSCHEMA%%.set_staffperiodweeks(pid_period,pid_staff); + return true; +end; $$; CREATE FUNCTION %%NEWSCHEMA%%.set_staffperiodweek_sums(pid_reportperiod text, pid_staff text) RETURNS boolean LANGUAGE plpgsql AS $$ declare - wkcon record; + sweek record; tmpcontrhours interval; freedays int4 := 0; begin - -- INSERT Contract data into Week -for wkcon in select srpw.id,srpw.calweek,srpw.weekstart,srpw.calyear,rp.startdate as periodstart,psc.startdate,rp.enddate as periodend,psc.enddate,psc.weekhours,psc.weekdays,srpw.contractdays,srpw.caldays,srpw.diffhours,srpw.contracthours,srpw.totalhours,psc.defaultfreedays -from %%NEWSCHEMA%%.staffreportperiodweeks srpw -left join (select xa.id_staff,xa.startdate,xa.enddate,xa.weekhours,xa.weekdays,xa.defaultfreedays from %%NEWSCHEMA%%.getperiod_staffcontract(pid_reportperiod) xa where xa.id_staff=pid_staff) psc -on (srpw.weekstart between date_trunc('week',psc.startdate) and psc.enddate) -left join %%NEWSCHEMA%%.reportperiod rp on (srpw.id_reportperiod =rp.id) -where srpw.id_reportperiod=pid_reportperiod and srpw.id_staff=pid_staff + +for sweek in +select srpd.id_staff,srpd.id_reportperiod,date(date_trunc('week',srpd.daydate)) as weekstart,date_part('week',srpd.daydate) as calweek, +date_part('isoyear',srpd.daydate) as calyear, +sum(case when srpd.workhours is null then '00:00:00'::interval else srpd.workhours::interval end) as workhours, +'00:00:00'::interval as trackedhours, +sum(case when srpd.vacancyhours is null then '00:00:00'::interval else srpd.vacancyhours::interval end ) as vacancyhours, +sum(case when srpd.recuperationhours is null then '00:00:00'::interval else srpd.recuperationhours::interval end) as recuperationhours, +sum(case when srpd.dayhours is null then '00:00:00'::interval else srpd.dayhours::interval end) as totalhours, +sum(case when srpd.workhours != '00:00:00'::time then 1 else 0 end) as workdays, +sum(case when srpd.contracthours is null then '00:00:00'::interval else srpd.contracthours::interval end) as contracthours +from %%NEWSCHEMA%%.staffreportperioddays srpd +join %%NEWSCHEMA%%.reportperiod rp on (rp.id=srpd.id_reportperiod) +where srpd.id_reportperiod =pid_reportperiod and srpd.id_staff=pid_staff +group by weekstart,calweek,calyear,srpd.id_staff,srpd.id_reportperiod loop - --raise notice 'id=%',wkcon; - if wkcon.defaultfreedays is not null then + update %%NEWSCHEMA%%.staffreportperiodweeks set + workhours=sweek.workhours, + trackedhours=sweek.trackedhours, + vacancyhours=sweek.vacancyhours, + recuperationhours=sweek.recuperationhours, + diffhours=case when sweek.contracthours is null or sweek.contracthours::interval='00:00:00'::interval then null else sweek.totalhours-sweek.contracthours end, + totalhours=sweek.totalhours, + workdays=sweek.workdays, + contracthours=sweek.contracthours + where id_staff=sweek.id_staff and id_reportperiod=sweek.id_reportperiod and weekstart=sweek.weekstart; +end loop; + --raise notice 'UPDATE WEEK SUMS %',sweek; + /**/ + /*if wkcon.defaultfreedays is not null then freedays = json_array_length(wkcon.defaultfreedays); end if; wkcon.contracthours=wkcon.weekhours; wkcon.contractdays=wkcon.weekdays; if wkcon.calweek= date_part('week',wkcon.periodstart)::int4 and wkcon.calyear= date_part('isoyear',wkcon.periodstart)::int4 then wkcon.contracthours = wkcon.contracthours - ((wkcon.weekhours/wkcon.weekdays) * (wkcon.startdate-wkcon.periodstart)::int4); - end if; + end if;*/ + --if wkcon.startdate > wkcon.periodstart then -- wkcon.contractdays = wkcon.contractdays-(wkcon.startdate-wkcon.periodstart)::int4; -- wkcon.contracthours = (wkcon.weekhours/wkcon.weekdays) * wkcon.contractdays; @@ -201,65 +456,47 @@ loop --end if; - wkcon.diffhours = wkcon.totalhours-wkcon.contracthours; - raise notice 'contractdays: % contracthours: % totalhours: % diffhours: %',wkcon.contractdays,wkcon.contracthours,wkcon.totalhours,wkcon.diffhours; + /*wkcon.diffhours = wkcon.totalhours-wkcon.contracthours; + raise notice 'contractdays: % contracthours: % totalhours: % diffhours: %',wkcon.contractdays,wkcon.contracthours,wkcon.totalhours,wkcon.diffhours;*/ --raise notice 'id=% cdays=% chours=% diffhours=%',wkcon.id,wkcon.contractdays,wkcon.contracthours,wkcon.diffhours; - update %%NEWSCHEMA%%.staffreportperiodweeks set contracthours=wkcon.contracthours,contractdays=wkcon.contractdays,diffhours=wkcon.diffhours where id=wkcon.id; -end loop; + + return true; end; $$; -CREATE FUNCTION %%NEWSCHEMA%%.set_stafftoperioddays(pid_period text, pid_staff text) RETURNS boolean +CREATE FUNCTION %%NEWSCHEMA%%.set_staffperiodweeks(pid_reportperiod text, pid_staff text) RETURNS boolean LANGUAGE plpgsql AS $$ declare - cont record; - prd record; - cdl record; - cdate date; - edate date; - wday text; - wdaynum int4; - wdayplan record; - cid_staffworkplan text; - cdaytime interval; + wkpd record; + wkcon record; begin - select * into prd from %%NEWSCHEMA%%.reportperiod where id= pid_period; - for cont in select * from %%NEWSCHEMA%%.getperiod_staffcontract(pid_period) where id_staff=pid_staff - loop - cdate := cont.startdate; - while cdate <= cont.enddate loop - if cdate between prd.startdate and prd.enddate then - wdaynum = date_part('isodow',cdate)::INT4; - cdaytime := null; - - if position('"' || wdaynum || '"' in cont.defaultfreedays::text) = 0 then - cdaytime := cont.weekhours/cont.weekdays; - end if; - raise notice 'wday % => % => %',wdaynum,position('"' || wdaynum || '"' in cont.defaultfreedays::text),cdaytime; - if (cont.id_workplan is not null) then - wday := substr(to_char(cdate,'day'),1,3); - execute 'select ' || wday || '_timestart1 as ts1,' || wday || '_timeend1 as te1,' || wday || '_timestart2 as ts2,' || wday ||'_timeend2 as te2,'|| wday ||'_timepause as tp from %%NEWSCHEMA%%.workplans where id=''' || cont.id_workplan || ''';' into wdayplan; - - insert into %%NEWSCHEMA%%.staffreportperioddays (id_staff,daydate,id_reportperiod,timestart1,timeend1,timestart2,timeend2,timepause,contracthours,wdcontracthours) - values (pid_staff,cdate,pid_period,wdayplan.ts1,wdayplan.te1,wdayplan.ts2,wdayplan.te2,wdayplan.tp,cont.weekhours/cont.weekdays,cdaytime) - on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays,wdcontracthours=cdaytime - returning id into cid_staffworkplan; - else - insert into %%NEWSCHEMA%%.staffreportperioddays (id_staff,daydate,id_reportperiod,contracthours,wdcontracthours) values ( pid_staff , cdate , pid_period,cont.weekhours/cont.weekdays,cdaytime) - on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays,wdcontracthours=cdaytime - returning id into cid_staffworkplan; - end if; - end if; - perform %%NEWSCHEMA%%.set_periodday_sums(cid_staffworkplan); - cdate = cdate + interval '1 day'; - end loop; - + for wkpd in select srpd.id_staff,srpd.id_reportperiod,date(date_trunc('week',srpd.daydate)) as weekstart,date_part('week',srpd.daydate) as calweek, +date_part('isoyear',srpd.daydate) as calyear, +coalesce(sum(srpd.workhours::interval),'00:00:00'::interval) as workhours, +coalesce(sum('00:00:00'::interval),'00:00:00'::interval) as trackedhours, +coalesce(sum(srpd.vacancyhours::interval),'00:00:00'::interval) as vacancyhours, +coalesce(sum(srpd.recuperationhours::interval),'00:00:00'::interval) as recuperationhours, +coalesce(sum(srpd.dayhours::interval),'00:00:00'::interval) as totalhours, +sum(case when srpd.workhours != '00:00:00'::time then 1 else 0 end) as workdays, +coalesce(sum(contracthours::interval),'00:00:00'::interval) as contracthours +from %%NEWSCHEMA%%.staffreportperioddays srpd +join %%NEWSCHEMA%%.reportperiod rp on (rp.id=srpd.id_reportperiod) +where srpd.id_reportperiod =pid_reportperiod and srpd.id_staff=pid_staff +group by weekstart,calweek,calyear,srpd.id_staff,srpd.id_reportperiod + loop + raise notice 'CHECK WEEK % % ',wkpd.calweek,wkpd.calyear; + --raise notice 'id_staff: % id_period: % calweek: % calyear: %',pid_staff,pid_reportperiod,wkpd.calweek,wkpd.calyear; + insert into %%NEWSCHEMA%%.staffreportperiodweeks (id_staff, id_reportperiod, calyear, calweek, workhours,vacancyhours, recuperationhours, weekstart,totalhours,workdays,contracthours,diffhours) + VALUES(wkpd.id_staff, wkpd.id_reportperiod, wkpd.calyear, wkpd.calweek, wkpd.workhours, wkpd.vacancyhours, wkpd.recuperationhours, wkpd.weekstart,wkpd.totalhours,wkpd.workdays,wkpd.contracthours,wkpd.contracthours-wkpd.totalhours) + on conflict on constraint uniq_staffweekplan_cal do nothing; + perform %%NEWSCHEMA%%.set_staffperiodweek_sums(wkpd.id_reportperiod,wkpd.id_staff); end loop; - perform %%NEWSCHEMA%%.verify_perioddays(pid_period,pid_staff); + perform %%NEWSCHEMA%%.set_staffperiod(pid_reportperiod, pid_staff); + return true; end; $$; @@ -297,12 +534,84 @@ where swp.id_reportperiod= pid_reportperiod and swp.id_staff=pid_staff) wkwp gro VALUES(wkpd.id_staff, wkpd.id_reportperiod, wkpd.calyear, wkpd.calweek, wkpd.workhours, wkpd.vacancyhours, wkpd.recuperationhours, wkpd.weekstart,wkpd.totalhours,wkpd.caldays,wkpd.contracthours,wkpd.contracthours-wkpd.totalhours) on conflict on constraint uniq_staffweekplan_cal do update set workhours=wkpd.workhours, vacancyhours=wkpd.vacancyhours, recuperationhours=wkpd.recuperationhours,totalhours=wkpd.totalhours,caldays=wkpd.caldays,contracthours=wkpd.contracthours,diffhours=wkpd.contracthours-wkpd.totalhours; end loop; - perform %%NEWSCHEMA%%.set_staffperiodweek_sums(pid_reportperiod, pid_staff); + --perform %%NEWSCHEMA%%.set_staffperiodweek_sums(pid_reportperiod, pid_staff); return true; end; $$; +CREATE FUNCTION %%NEWSCHEMA%%.setworkplan_weekdata(pid_workplan text) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + freedays text; + wdcnt int4; + xweekhours interval; +begin + select '["' || string_agg(weekday::text,'","') || '"]' into freedays from %%NEWSCHEMA%%.workplandays where id_workplan=pid_workplan and start1 is null and start2 is null group by id_workplan; + select count(*) into wdcnt from %%NEWSCHEMA%%.workplandays where id_workplan=pid_workplan and start1 is not null group by id_workplan; + if wdcnt is null then + wdcnt=0; + end if; + SELECT sum( + coalesce(CASE WHEN start1 > end1 THEN '24:00:00'::time without time zone - (start1 - end1)::time without time zone ELSE end1 - start1 end,'00:00:00'::interval) + + coalesce(CASE WHEN start2 > end2 and start1 is not null THEN '24:00:00'::time without time zone - (start2 - end2)::time without time zone ELSE end2 - start2 end,'00:00:00'::interval) - + coalesce(pause,'00:00:00'::time without time zone)) into xweekhours FROM %%NEWSCHEMA%%.workplandays where id_workplan=pid_workplan group by id_workplan ; + update %%NEWSCHEMA%%.workplans set weekhours = xweekhours, weekdays = wdcnt, freeweekdayslist = freedays::JSON where id=pid_workplan; + --update %%NEWSCHEMA%%.staffcontract set weekdays= wdcnt, weekhours= xweekhours, defaultfreedays= freedays::JSON where id_contractworkplan=pid_workplan; + return true; +end; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.trg_after_upd_staffcontract() RETURNS trigger + LANGUAGE plpgsql + AS $$ + declare + idstaff text; + datestart date; + dateend date; + rp record; + begin + raise notice 'After update exec %',new.id; + UPDATE %%NEWSCHEMA%%.staffcontract sc SET weekdays = wp.weekdays , weekhours = wp.weekhours,defaultfreedays= wp.freeweekdayslist from %%NEWSCHEMA%%.workplans wp where wp.id =sc.id_contractworkplan and sc.id=new.id + returning id_staff,startdate,enddate into idstaff,datestart,dateend; + raise notice 'idstaff % startdate % enddate %',idstaff,datestart,dateend; + if datestart is not null and dateend is null then + for rp in select id from %%NEWSCHEMA%%.reportperiod where datestart between startdate and enddate or startdate > datestart + loop + raise notice 'run update_staff_in_period startdate % => %',datestart ,rp.id; + perform %%NEWSCHEMA%%.set_staffperioddays(rp.id, idstaff); + end loop; + elsif dateend is not null then + for rp in select id from %%NEWSCHEMA%%.reportperiod where enddate >= datestart and (startdate <= dateend) + loop + raise notice 'run update_staff_in_period startdate % enddate % => %',datestart,dateend,rp.id; + perform %%NEWSCHEMA%%.set_staffperioddays(rp.id, idstaff); + end loop; + end if; + + RETURN NEW; + END; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.trg_after_upd_worplanday() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + perform %%NEWSCHEMA%%.setworkplan_weekdata((select id_workplan from %%NEWSCHEMA%%.workplandays where id=new.id)); + RETURN NEW; + END; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.trg_before_upd_schematable() RETURNS trigger + LANGUAGE plpgsql + AS $$ + begin + new.modified = now(); + RETURN NEW; + END; +$$; + CREATE FUNCTION %%NEWSCHEMA%%.update_all_staff_in_period(pid_period text) RETURNS boolean LANGUAGE plpgsql AS $$ @@ -318,17 +627,43 @@ CREATE FUNCTION %%NEWSCHEMA%%.update_all_staff_in_period(pid_period text) RETURN END; $$; +CREATE FUNCTION %%NEWSCHEMA%%.update_periodsums_byid(vdayids json) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + rday record; + rweek record; + rperiod record; +BEGIN + for rday in select id from %%NEWSCHEMA%%.staffreportperioddays where id in (select value from json_array_elements_text(vdayids) aa) group by id + loop + perform %%NEWSCHEMA%%.set_staffperiodday_sums(rday.id); + end loop; + for rweek in select id_staff,id_reportperiod from %%NEWSCHEMA%%.staffreportperioddays where id in (select value from json_array_elements_text(vdayids) aa) group by id_reportperiod,id_staff + loop + perform %%NEWSCHEMA%%.set_staffperiodweek_sums(rweek.id_reportperiod,rweek.id_staff); + perform %%NEWSCHEMA%%.set_staffperiod_sums(rweek.id_reportperiod,rweek.id_staff); + end loop; + return true; + END; +$$; + CREATE FUNCTION %%NEWSCHEMA%%.update_staff_in_period(pid_period text, pid_staff text) RETURNS boolean LANGUAGE plpgsql AS $$ declare staffreportid text; - BEGIN - insert into %%NEWSCHEMA%%.staffreportperiod (id_reportperiod,id_staff) values (pid_period,pid_staff) - on conflict on constraint uniq_staffreportperiod_cal do nothing returning id into staffreportid; - perform %%NEWSCHEMA%%.set_stafftoperioddays(pid_period,pid_staff); - perform %%NEWSCHEMA%%.set_stafftoperiodweeks(pid_period,pid_staff); - perform %%NEWSCHEMA%%.set_staffperiod_sums(pid_period,pid_staff); + rdays record; + begin + raise notice 'update staff in period called rp: % st: %',pid_period,pid_staff; + if (pid_period is not null and pid_staff is not null) then + for rdays in select id from %%NEWSCHEMA%%.staffreportperioddays where id_staff=pid_staff and id_reportperiod=pid_period + loop + perform %%NEWSCHEMA%%.set_staffperiodday_sums(rdays.id); + end loop; + perform %%NEWSCHEMA%%.set_staffperiodweek_sums(pid_period,pid_staff); + perform %%NEWSCHEMA%%.set_staffperiod_sums(pid_period,pid_staff); + end if; return true; END; $$; @@ -350,72 +685,6 @@ begin end; $$; -CREATE FUNCTION %%NEWSCHEMA%%.update_staffweeksums(pid_staffworkplan text) RETURNS void - LANGUAGE plpgsql - AS $$ -declare - wkpl_record record; - wkpltt time without time zone := '00:00:00'::interval; -begin - select - case WHEN timestart1 > timeend1 THEN '24:00:00'::time without time zone - (timestart1 - timeend1)::time without time zone ELSE timeend1 - timestart1 END AS time1, - CASE WHEN timestart2 > timeend2 THEN '24:00:00'::time without time zone - (timestart2 - timeend2)::time without time zone ELSE timeend2 - timestart2 END AS time2, - timepause - into wkpl_record - from %%NEWSCHEMA%%.staffworkplan where id= pid_staffworkplan; - - wkpltt := wkpl_record.time1 + wkpl_record.time2 - wkpl_record.timepause::interval; - update %%NEWSCHEMA%%.staffworkplan set totaltime=wkpltt where id=pid_staffworkplan; -end; -$$; - -CREATE FUNCTION %%NEWSCHEMA%%.update_staffworkplan(pid_period text, pid_staff text) RETURNS boolean - LANGUAGE plpgsql - AS $$ -declare - cont record; - prd record; - cdl record; - cdate date; - edate date; - wday text; - wdayplan record; - cid_staffworkplan text; -begin - select * into prd from %%NEWSCHEMA%%.reportperiod where id= pid_period; - for cont in select * from %%NEWSCHEMA%%.staffcontract where id_staff= pid_staff and (enddate >= prd.startdate or (enddate is null and startdate <= prd.enddate)) /*order by startdate,enddate nulls last*/ - loop - if cont.enddate is null then - cont.enddate := prd.enddate; - end if; - cdate := cont.startdate; - while cdate <= cont.enddate loop - if cdate between prd.startdate and prd.enddate then - if (cont.id_workplan is not null) then - wday := substr(to_char(cdate,'day'),1,3); - execute 'select ' || wday || '_timestart1 as ts1,' || wday || '_timeend1 as te1,' || wday || '_timestart2 as ts2,' || wday ||'_timeend2 as te2,'|| wday ||'_timepause as tp from %%NEWSCHEMA%%.workplans where id=' || cont.id_workplan || ';' into wdayplan; - insert into %%NEWSCHEMA%%.staffworkplan (id_staff,daydate,id_reportperiod,timestart1,timeend1,timestart2,timeend2,timepause,contracthours,id_staffgroup,fullweeksplithours) - values (pid_staff,cdate,pid_period,wdayplan.ts1,wdayplan.te1,wdayplan.ts2,wdayplan.te2,wdayplan.tp,cont.weekhours/cont.weekdays,cont.id_staffgroup,cont.weekhours/7) - on conflict on constraint uniq_staffworplan_staffday do update set id_reportperiod = pid_period,contracthours=cont.weekhours/cont.weekdays,id_staffgroup=cont.id_staffgroup,fullweeksplithours=cont.weekhours/7 - returning id into cid_staffworkplan; - else - insert into %%NEWSCHEMA%%.staffworkplan (id_staff,daydate,id_reportperiod,contracthours,id_staffgrou) values ( pid_staff , cdate , pid_period,cont.weekhours/cont.weekdays,cont.id_staffgroup,fullweeksplithours) - on conflict on constraint uniq_staffworplan_staffday do update set id_reportperiod = pid_period,contracthours=cont.weekhours/cont.weekdays,id_staffgroup=cont.id_staffgroup,fullweeksplithours=cont.weekhours/7 - returning id into cid_staffworkplan; - end if; - end if; - perform %%NEWSCHEMA%%.update_staffworkplan_sums(cid_staffworkplan); - cdate = cdate + interval '1 day'; - end loop; - - end loop; - perform %%NEWSCHEMA%%.verify_staffworplan_with_contractdates(pid_period,pid_staff); - --perform %%NEWSCHEMA%%.update_staffweekplan(pid_period,pid_staff); - --perform %%NEWSCHEMA%%.set_staffperiod_data(pid_period,pid_staff); - return true; -end; -$$; - CREATE FUNCTION %%NEWSCHEMA%%.verify_perioddays(pid_period text, pid_staff text) RETURNS boolean LANGUAGE plpgsql AS $$ @@ -429,73 +698,55 @@ begin select startdate,enddate into rpstart,rpend from %%NEWSCHEMA%%.reportperiod where id=pid_period; for wkpd in select id_staff,case when startdate <= rpstart then rpstart else startdate end as startdate,case when enddate is null then rpend else enddate end as enddate from %%NEWSCHEMA%%.staffcontract where id_staff=pid_staff and startdate <= rpend and (enddate is null or enddate >= rpstart) loop - --raise notice '%: % => % ',wkpd.id_staff,wkpd.startdate,wkpd.enddate; qlnotin := qlnotin || ' and daydate not between date(''' || wkpd.startdate || ''') AND date(''' || wkpd.enddate || ''')'; - --raise notice 'xx: %',qlnotin; end loop; sqlcheck := 'delete from %%NEWSCHEMA%%.staffreportperioddays where id in (select id from %%NEWSCHEMA%%.staffreportperioddays where id_staff=''' || pid_staff || ''' and id_reportperiod=''' || pid_period || ''' ' || qlnotin || ');'; - --raise notice 'SQL: %',sqlcheck; execute sqlcheck; - /*update %%NEWSCHEMA%%.staffworkplan - set contracthours=(select weekhours2/weekdays as contracthours - from %%NEWSCHEMA%%.staffcontract where id_staff=pid_staff - and ((%%NEWSCHEMA%%.staffworkplan.daydate between startdate and enddate) or - (startdate <= %%NEWSCHEMA%%.staffworkplan.daydate and enddate is null))), - id_staffgroup=(select id_staffgroup - from %%NEWSCHEMA%%.staffcontract where id_staff=pid_staff - and ((%%NEWSCHEMA%%.staffworkplan.daydate between startdate and enddate) or - (startdate <= %%NEWSCHEMA%%.staffworkplan.daydate and enddate is null))) - where id_staff=pid_staff and id_reportperiod=pid_period; */ return true; end; $$; -CREATE FUNCTION %%NEWSCHEMA%%.zzold_onchange_reportperiod(pid_period text) RETURNS boolean +CREATE FUNCTION %%NEWSCHEMA%%.workplan_replaceday(pid_copy text, pid_paste text) RETURNS boolean LANGUAGE plpgsql AS $$ declare - prdstart date; - prdend date; - strec record; + rday record; begin - select startdate,enddate into prdstart,prdend from %%NEWSCHEMA%%.reportperiod where id=pid_period; - for strec in select id_staff,startdate,enddate from %%NEWSCHEMA%%.staffcontract where startdate <= prdend and (enddate is null or enddate >= prdstart) group by id_staff - loop - raise notice 'Start Update period % staffworkplan for % from % to %',pid_period,strec.id_staff,strec.startdate,strec.enddate; - perform %%NEWSCHEMA%%.update_staffworkplan(pid_period,strec.id_staff); - end loop; + select * into rday from %%NEWSCHEMA%%.workplandays where id=pid_copy; + update %%NEWSCHEMA%%.workplandays set start1=rday.start1,end1=rday.end1,start2=rday.start2,end2=rday.end2, pause=rday.pause where id=pid_paste; return true; end; $$; -CREATE FUNCTION %%NEWSCHEMA%%.zzold_set_staffperiod(pid_period text) RETURNS boolean - LANGUAGE plpgsql - AS $$ - declare - periodstart date; - periodend date; - staffrec record; - staffreportid int4; - BEGIN - select startdate,enddate into periodstart,periodend from %%NEWSCHEMA%%.reportperiod where id= pid_period; - for staffrec in select id_staff from %%NEWSCHEMA%%.staffcontract where (enddate >= periodstart or (enddate is null and startdate <= periodend)) group by id_staff - loop - insert into %%NEWSCHEMA%%.staffreportperiod (id_reportperiod,id_staff) values (pid_period,staffrec.id_staff) - on conflict on constraint uniq_staffreportperiod_cal do nothing returning id into staffreportid; - raise notice 'staffreport ID: %',staffreportid; - perform %%NEWSCHEMA%%.set_staffperioddays(pid_period,staffrec.id_staff); - perform %%NEWSCHEMA%%.set_staffperiodweeks(pid_period,staffrec.id_staff); - end loop; - return true; - END; -$$; - CREATE TABLE %%NEWSCHEMA%%.reportperiod ( periodname text, startdate date, enddate date, id_parentreportperiod text, - id text DEFAULT public.getuuid() NOT NULL + id text DEFAULT public.getuuid() NOT NULL, + modified timestamp without time zone DEFAULT now(), + created timestamp without time zone DEFAULT now() +); + +CREATE TABLE %%NEWSCHEMA%%.reports ( + id text DEFAULT public.getuuid() NOT NULL, + report text, + pdftop numeric, + pdfbottom numeric, + pdfleft numeric, + pdfright numeric, + pdfunit text, + pdfsize text, + pdforientation text, + pdfencoding text, + footer text, + header text, + content text, + prefix text, + sqlfilename text, + actioncase text, + templatetype text, + pdfform boolean ); CREATE TABLE %%NEWSCHEMA%%.staff ( @@ -512,19 +763,23 @@ CREATE TABLE %%NEWSCHEMA%%.staff ( country text, address text, id_staffgroup text, - id text DEFAULT public.getuuid() NOT NULL + id text DEFAULT public.getuuid() NOT NULL, + isdeleted boolean, + modified timestamp without time zone DEFAULT now(), + created timestamp without time zone DEFAULT now() ); CREATE TABLE %%NEWSCHEMA%%.staffcontract ( id_staff text, startdate date, - id_staffgroup text, - weekdays integer, enddate date, - id_workplan text, + id text DEFAULT public.getuuid() NOT NULL, + modified timestamp without time zone DEFAULT now(), + created timestamp without time zone DEFAULT now(), + weekdays integer, weekhours interval, defaultfreedays json, - id text DEFAULT public.getuuid() NOT NULL + id_contractworkplan text ); CREATE TABLE %%NEWSCHEMA%%.staffgroups ( @@ -532,7 +787,9 @@ CREATE TABLE %%NEWSCHEMA%%.staffgroups ( groupcolor text, editoruser_ids json, isdefault boolean, - id text DEFAULT public.getuuid() NOT NULL + id text DEFAULT public.getuuid() NOT NULL, + modified timestamp without time zone DEFAULT now(), + created timestamp without time zone DEFAULT now() ); CREATE TABLE %%NEWSCHEMA%%.staffreportperiod ( @@ -546,7 +803,9 @@ CREATE TABLE %%NEWSCHEMA%%.staffreportperiod ( hoursdiff interval, payedhours interval, diffhourspayed interval, - id text DEFAULT public.getuuid() NOT NULL + id text DEFAULT public.getuuid() NOT NULL, + modified timestamp without time zone DEFAULT now(), + created timestamp without time zone DEFAULT now() ); CREATE TABLE %%NEWSCHEMA%%.staffreportperioddays ( @@ -570,7 +829,9 @@ CREATE TABLE %%NEWSCHEMA%%.staffreportperioddays ( id_recuperationtype text, interruptionhours time without time zone, wdcontracthours time without time zone, - id text DEFAULT public.getuuid() NOT NULL + id text DEFAULT public.getuuid() NOT NULL, + modified timestamp without time zone DEFAULT now(), + created timestamp without time zone DEFAULT now() ); CREATE TABLE %%NEWSCHEMA%%.staffreportperiodweeks ( @@ -590,7 +851,9 @@ CREATE TABLE %%NEWSCHEMA%%.staffreportperiodweeks ( caldays integer, contractdays integer, workdays integer, - id text DEFAULT public.getuuid() NOT NULL + id text DEFAULT public.getuuid() NOT NULL, + modified timestamp without time zone DEFAULT now(), + created timestamp without time zone DEFAULT now() ); CREATE TABLE %%NEWSCHEMA%%.staffvacancy ( @@ -598,13 +861,17 @@ CREATE TABLE %%NEWSCHEMA%%.staffvacancy ( daydate date, id_vacancytype text, vacancyhours time without time zone, - id text DEFAULT public.getuuid() NOT NULL + id text DEFAULT public.getuuid() NOT NULL, + modified timestamp without time zone DEFAULT now(), + created timestamp without time zone DEFAULT now() ); CREATE TABLE %%NEWSCHEMA%%.vacancydays ( daydate date, vacancyname text, - id text DEFAULT public.getuuid() NOT NULL + id text DEFAULT public.getuuid() NOT NULL, + modified timestamp without time zone DEFAULT now(), + created timestamp without time zone DEFAULT now() ); CREATE TABLE %%NEWSCHEMA%%.vacancytypes ( @@ -612,7 +879,9 @@ CREATE TABLE %%NEWSCHEMA%%.vacancytypes ( isworktime boolean, isfreetime boolean, color text, - id text DEFAULT public.getuuid() NOT NULL + id text DEFAULT public.getuuid() NOT NULL, + modified timestamp without time zone DEFAULT now(), + created timestamp without time zone DEFAULT now() ); CREATE VIEW %%NEWSCHEMA%%.vw_reportperioddata AS @@ -645,47 +914,45 @@ CREATE VIEW %%NEWSCHEMA%%.vw_rplbygrpname AS ORDER BY sgr.groupname, rp.startdate, rp.enddate; CREATE VIEW %%NEWSCHEMA%%.vw_staffcontractdata AS - SELECT staffcontract.id, - staffcontract.id_staff, - staffcontract.startdate, - to_char(staffcontract.weekhours, 'HH24:MI'::text) AS weekhours, - staffcontract.weekdays, - staffcontract.id_staffgroup, - staffcontract.enddate, - staffcontract.id AS id_staffcontract, - staffcontract.id_workplan, - staffcontract.defaultfreedays - FROM %%NEWSCHEMA%%.staffcontract; + SELECT sc.id, + sc.id_staff, + sc.startdate, + sc.enddate, + sc.id AS id_staffcontract, + sc.weekdays, + sc.weekhours, + sc.id_contractworkplan, + sc.defaultfreedays + FROM (%%NEWSCHEMA%%.staffcontract sc + JOIN %%NEWSCHEMA%%.staff st ON ((st.id = sc.id_staff))) + WHERE (st.isdeleted IS NULL); CREATE TABLE %%NEWSCHEMA%%.workplans ( workplan text, weekhours interval, weekdays integer, - weekdayslist json, - id text DEFAULT public.getuuid() NOT NULL + freeweekdayslist json, + id text DEFAULT public.getuuid() NOT NULL, + modified timestamp without time zone DEFAULT now(), + created timestamp without time zone DEFAULT now(), + isdefault boolean ); CREATE VIEW %%NEWSCHEMA%%.vw_staffcontractlist AS SELECT sc.id, sc.id_staff, sc.startdate, - to_char(sc.weekhours, 'HH24:MI'::text) AS weekhours, - sc.weekdays, - sc.id_staffgroup, - sg.groupname, - sg.groupcolor, sc.enddate, - sc.id_workplan, - ddf.defaultfreedays, + sc.weekdays, + sc.weekhours, + sc.id_contractworkplan, + ( SELECT string_agg(ww.wday, ','::text) AS string_agg + FROM ( SELECT public.day_name(json_array_elements_text(sc.defaultfreedays)) AS wday) ww) AS defaultfreedays, wp.workplan - FROM (((%%NEWSCHEMA%%.staffcontract sc - LEFT JOIN %%NEWSCHEMA%%.staffgroups sg ON ((sc.id_staffgroup = sg.id))) - LEFT JOIN %%NEWSCHEMA%%.workplans wp ON ((sc.id_workplan = wp.id))) - LEFT JOIN ( SELECT dfd.id, - replace(replace(replace(replace(replace(replace(replace(dfd.defaultfreedays, '7'::text, 'di'::text), '6'::text, 'sa'::text), '5'::text, 've'::text), '4'::text, 'je'::text), '3'::text, 'me'::text), '2'::text, 'ma'::text), '1'::text, 'lu'::text) AS defaultfreedays - FROM ( SELECT staffcontract.id, - json_array_elements_text(staffcontract.defaultfreedays) AS defaultfreedays - FROM %%NEWSCHEMA%%.staffcontract) dfd) ddf ON ((sc.id = ddf.id))) + FROM ((%%NEWSCHEMA%%.staffcontract sc + JOIN %%NEWSCHEMA%%.staff st ON ((st.id = sc.id_staff))) + LEFT JOIN %%NEWSCHEMA%%.workplans wp ON ((sc.id_contractworkplan = wp.id))) + WHERE (st.isdeleted IS NULL) ORDER BY sc.startdate DESC, sc.enddate DESC; CREATE VIEW %%NEWSCHEMA%%.vw_staffdata AS @@ -703,20 +970,23 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffdata AS staff.job, staff.birthdate, staff.id_staffgroup - FROM %%NEWSCHEMA%%.staff; + FROM %%NEWSCHEMA%%.staff + WHERE (staff.isdeleted IS NULL); CREATE VIEW %%NEWSCHEMA%%.vw_staffgroupsdata AS - SELECT staffgroups.id, - staffgroups.groupname, - staffgroups.groupcolor, - staffgroups.isdefault - FROM %%NEWSCHEMA%%.staffgroups; +SELECT + NULL::text AS id, + NULL::text AS groupname, + NULL::text AS groupcolor, + NULL::boolean AS isdefault, + NULL::bigint AS staffmembers; CREATE VIEW %%NEWSCHEMA%%.vw_staffgroupslist AS - SELECT staffgroups.id, - staffgroups.groupname, - staffgroups.isdefault - FROM %%NEWSCHEMA%%.staffgroups; +SELECT + NULL::text AS id, + NULL::text AS groupname, + NULL::boolean AS isdefault, + NULL::bigint AS staffmembers; CREATE VIEW %%NEWSCHEMA%%.vw_stafflist AS SELECT st.id, @@ -734,6 +1004,7 @@ CREATE VIEW %%NEWSCHEMA%%.vw_stafflist AS min(staffcontract.startdate) AS entrydate FROM %%NEWSCHEMA%%.staffcontract GROUP BY staffcontract.id_staff) stentry ON ((st.id = stentry.id_staff))) + WHERE (st.isdeleted IS NULL) ORDER BY st.surname, st.prename; CREATE VIEW %%NEWSCHEMA%%.vw_staffreportperioddays AS @@ -788,9 +1059,15 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffreportperioddays AS WHEN (pw.diffhours < '00:00:00'::interval) THEN ('-'::text || replace(to_char(pw.diffhours, 'HH24:MI'::text), '-'::text, ''::text)) ELSE to_char(pw.diffhours, 'HH24:MI'::text) END AS week_diffhours, - ((pw.calyear || '-'::text) || lpad((pw.calweek)::text, 2, '0'::text)) AS weekident - FROM (%%NEWSCHEMA%%.staffreportperiodweeks pw + ((pw.calyear || '-'::text) || lpad((pw.calweek)::text, 2, '0'::text)) AS weekident, + ((pw.calyear || '-'::text) || lpad((pw.calweek)::text, 2, '0'::text)) AS dspweekshort, + rp.startdate AS periodstart, + rp.enddate AS periodend + FROM (((%%NEWSCHEMA%%.staffreportperiodweeks pw LEFT JOIN %%NEWSCHEMA%%.staffreportperioddays pd ON (((pw.weekstart = date_trunc('week'::text, (pd.daydate)::timestamp with time zone)) AND (pw.id_staff = pd.id_staff) AND (pw.id_reportperiod = pd.id_reportperiod)))) + JOIN %%NEWSCHEMA%%.reportperiod rp ON ((pw.id_reportperiod = rp.id))) + JOIN %%NEWSCHEMA%%.staff st ON ((pd.id_staff = st.id))) + WHERE (st.isdeleted IS NULL) ORDER BY pd.id_reportperiod, pd.id_staff, pd.daydate; CREATE VIEW %%NEWSCHEMA%%.vw_staffreportperiodlist AS @@ -818,6 +1095,7 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffreportperiodlist AS LEFT JOIN %%NEWSCHEMA%%.staff st ON ((srp.id_staff = st.id))) LEFT JOIN %%NEWSCHEMA%%.reportperiod rp ON ((srp.id_reportperiod = rp.id))) LEFT JOIN %%NEWSCHEMA%%.staffgroups sgr ON ((st.id_staffgroup = sgr.id))) + WHERE (st.isdeleted IS NULL) ORDER BY st.surname, st.prename, srp.id_staff, rp.startdate, rp.enddate; CREATE VIEW %%NEWSCHEMA%%.vw_vacancylist AS @@ -835,7 +1113,9 @@ CREATE TABLE %%NEWSCHEMA%%.workplandays ( end2 time without time zone, pause time without time zone, id text DEFAULT public.getuuid() NOT NULL, - weeknum integer + weeknum integer, + modified timestamp without time zone DEFAULT now(), + created timestamp without time zone DEFAULT now() ); CREATE VIEW %%NEWSCHEMA%%.vw_workplandaysdata AS @@ -863,12 +1143,18 @@ SELECT NULL::text AS pause, NULL::text AS dayhours, NULL::bigint AS staffcount, - NULL::integer AS weeknum; + NULL::integer AS weeknum, + NULL::text AS interruption; CREATE VIEW %%NEWSCHEMA%%.vw_workplanlist AS - SELECT workplans.id, - workplans.workplan - FROM %%NEWSCHEMA%%.workplans; + SELECT wp.id, + wp.workplan, + ((((((wp.workplan || ' / '::text) || "substring"((wp.weekhours)::text, 1, 5)) || 'h / '::text) || wp.weekdays) || 'j / libre: '::text) || ( SELECT string_agg(ww.wday, ','::text) AS string_agg + FROM ( SELECT public.day_name(json_array_elements_text(wp.freeweekdayslist)) AS wday) ww)) AS dspworkplandetail, + wp.isdefault, + NULL::bigint AS staffcount + FROM %%NEWSCHEMA%%.workplans wp + ORDER BY wp.isdefault, wp.workplan; CREATE TABLE %%NEWSCHEMA%%.worktimes ( startdate date, @@ -879,7 +1165,9 @@ CREATE TABLE %%NEWSCHEMA%%.worktimes ( maxweekhours interval, maxinterruptionhours interval, isdefault boolean, - id text DEFAULT public.getuuid() NOT NULL + id text DEFAULT public.getuuid() NOT NULL, + modified timestamp without time zone DEFAULT now(), + created timestamp without time zone DEFAULT now() ); CREATE VIEW %%NEWSCHEMA%%.vw_worktimeslist AS @@ -898,6 +1186,9 @@ CREATE VIEW %%NEWSCHEMA%%.vw_worktimeslist AS ALTER TABLE ONLY %%NEWSCHEMA%%.reportperiod ADD CONSTRAINT reportperiod_pkey PRIMARY KEY (id); +ALTER TABLE ONLY %%NEWSCHEMA%%.reports + ADD CONSTRAINT reports_pkey PRIMARY KEY (id); + ALTER TABLE ONLY %%NEWSCHEMA%%.staff ADD CONSTRAINT staff_pkey PRIMARY KEY (id); @@ -946,8 +1237,31 @@ ALTER TABLE ONLY %%NEWSCHEMA%%.workplans ALTER TABLE ONLY %%NEWSCHEMA%%.worktimes ADD CONSTRAINT worktimes_pkey PRIMARY KEY (id); +CREATE OR REPLACE VIEW %%NEWSCHEMA%%.vw_staffgroupsdata AS + SELECT sg.id, + sg.groupname, + sg.groupcolor, + sg.isdefault, + count(st.id) AS staffmembers + FROM (%%NEWSCHEMA%%.staffgroups sg + LEFT JOIN %%NEWSCHEMA%%.staff st ON ((st.id_staffgroup = sg.id))) + WHERE (st.isdeleted IS NULL) + GROUP BY sg.id + ORDER BY sg.groupname; + +CREATE OR REPLACE VIEW %%NEWSCHEMA%%.vw_staffgroupslist AS + SELECT sg.id, + sg.groupname, + sg.isdefault, + count(st.id) AS staffmembers + FROM (%%NEWSCHEMA%%.staffgroups sg + LEFT JOIN %%NEWSCHEMA%%.staff st ON ((st.id_staffgroup = sg.id))) + WHERE (st.isdeleted IS NULL) + GROUP BY sg.id + ORDER BY sg.groupname; + CREATE OR REPLACE VIEW %%NEWSCHEMA%%.vw_workplandayslist AS - SELECT (((wp.workplan || ' - Salarié(s): '::text) || count(DISTINCT sc.id_staff)) || ''::text) AS workplan, + SELECT wp.workplan, to_char(wp.weekhours, 'HH24:MI'::text) AS weekhours, wpd.id, wpd.id_workplan, @@ -957,20 +1271,62 @@ CREATE OR REPLACE VIEW %%NEWSCHEMA%%.vw_workplandayslist AS to_char((wpd.start2)::interval, 'HH24:MI'::text) AS start2, to_char((wpd.end2)::interval, 'HH24:MI'::text) AS end2, to_char((wpd.pause)::interval, 'HH24:MI'::text) AS pause, - to_char((((wpd.end1 - wpd.start1) + COALESCE((wpd.end2 - wpd.start2), '00:00:00'::interval)) - COALESCE((wpd.pause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS dayhours, - count(DISTINCT sc.id_staff) AS staffcount, - wpd.weeknum - FROM ((%%NEWSCHEMA%%.workplandays wpd + to_char(((( + CASE + WHEN (wpd.end1 < wpd.start1) THEN ((wpd.end1)::interval + '24:00:00'::interval) + ELSE (wpd.end1)::interval + END - (wpd.start1)::interval) + COALESCE(( + CASE + WHEN (wpd.end2 < wpd.start2) THEN ((wpd.end2)::interval + '24:00:00'::interval) + ELSE (wpd.end2)::interval + END - (wpd.start2)::interval), '00:00:00'::interval)) - COALESCE((wpd.pause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS dayhours, + NULL::bigint AS staffcount, + wpd.weeknum, + CASE + WHEN ((wpd.start2 IS NOT NULL) AND (wpd.end1 IS NOT NULL)) THEN to_char(((wpd.start2)::interval - (wpd.end1)::interval), 'HH24:MI'::text) + ELSE NULL::text + END AS interruption + FROM (%%NEWSCHEMA%%.workplandays wpd LEFT JOIN %%NEWSCHEMA%%.workplans wp ON ((wpd.id_workplan = wp.id))) - LEFT JOIN %%NEWSCHEMA%%.staffcontract sc ON ((sc.id_workplan = wp.id))) GROUP BY wpd.id, wp.id ORDER BY wp.workplan, wpd.weekday; -ALTER TABLE ONLY %%NEWSCHEMA%%.staffcontract - ADD CONSTRAINT staffcontract_fk FOREIGN KEY (id_staff) REFERENCES %%NEWSCHEMA%%.staff(id); +CREATE TRIGGER trg_after_insert_staffcontract AFTER INSERT ON %%NEWSCHEMA%%.staffcontract FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_after_upd_staffcontract(); + +CREATE TRIGGER trg_after_update_staffcontract AFTER UPDATE OF id_contractworkplan, startdate, enddate ON %%NEWSCHEMA%%.staffcontract FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_after_upd_staffcontract(); + +CREATE TRIGGER trg_dks_after_ins_workplandays AFTER INSERT ON %%NEWSCHEMA%%.workplandays FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_after_upd_worplanday(); + +CREATE TRIGGER trg_dks_after_upd_workplandays AFTER UPDATE OF start1, end1, start2, end2, pause ON %%NEWSCHEMA%%.workplandays FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_after_upd_worplanday(); + +CREATE TRIGGER trg_%%NEWSCHEMA%%_before_upd_reportperiod BEFORE UPDATE ON %%NEWSCHEMA%%.reportperiod FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_before_upd_schematable(); + +CREATE TRIGGER trg_%%NEWSCHEMA%%_before_upd_staff BEFORE UPDATE ON %%NEWSCHEMA%%.staff FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_before_upd_schematable(); + +CREATE TRIGGER trg_%%NEWSCHEMA%%_before_upd_staffcontract BEFORE UPDATE ON %%NEWSCHEMA%%.staffcontract FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_before_upd_schematable(); + +CREATE TRIGGER trg_%%NEWSCHEMA%%_before_upd_staffgroups BEFORE UPDATE ON %%NEWSCHEMA%%.staffgroups FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_before_upd_schematable(); + +CREATE TRIGGER trg_%%NEWSCHEMA%%_before_upd_staffreportperiod BEFORE UPDATE ON %%NEWSCHEMA%%.staffreportperiod FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_before_upd_schematable(); + +CREATE TRIGGER trg_%%NEWSCHEMA%%_before_upd_staffreportperioddays BEFORE UPDATE ON %%NEWSCHEMA%%.staffreportperioddays FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_before_upd_schematable(); + +CREATE TRIGGER trg_%%NEWSCHEMA%%_before_upd_staffreportperiodweeks BEFORE UPDATE ON %%NEWSCHEMA%%.staffreportperiodweeks FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_before_upd_schematable(); + +CREATE TRIGGER trg_%%NEWSCHEMA%%_before_upd_staffvacancy BEFORE UPDATE ON %%NEWSCHEMA%%.staffvacancy FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_before_upd_schematable(); + +CREATE TRIGGER trg_%%NEWSCHEMA%%_before_upd_vacancydays BEFORE UPDATE ON %%NEWSCHEMA%%.vacancydays FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_before_upd_schematable(); + +CREATE TRIGGER trg_%%NEWSCHEMA%%_before_upd_vacancytypes BEFORE UPDATE ON %%NEWSCHEMA%%.vacancytypes FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_before_upd_schematable(); + +CREATE TRIGGER trg_%%NEWSCHEMA%%_before_upd_workplandays BEFORE UPDATE ON %%NEWSCHEMA%%.workplandays FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_before_upd_schematable(); + +CREATE TRIGGER trg_%%NEWSCHEMA%%_before_upd_workplans BEFORE UPDATE ON %%NEWSCHEMA%%.workplans FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_before_upd_schematable(); + +CREATE TRIGGER trg_%%NEWSCHEMA%%_before_upd_worktimes BEFORE UPDATE ON %%NEWSCHEMA%%.worktimes FOR EACH ROW EXECUTE PROCEDURE %%NEWSCHEMA%%.trg_before_upd_schematable(); ALTER TABLE ONLY %%NEWSCHEMA%%.staffcontract - ADD CONSTRAINT staffcontract_fk_1 FOREIGN KEY (id_staffgroup) REFERENCES %%NEWSCHEMA%%.staffgroups(id); + ADD CONSTRAINT staffcontract_fk FOREIGN KEY (id_staff) REFERENCES %%NEWSCHEMA%%.staff(id); ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperiod ADD CONSTRAINT staffreportperiod_fk FOREIGN KEY (id_staff) REFERENCES %%NEWSCHEMA%%.staff(id); diff --git a/website/app/db.cgi b/website/app/db.cgi index 1beb5147..e8bcb1f9 100644 --- a/website/app/db.cgi +++ b/website/app/db.cgi @@ -46,7 +46,12 @@ if (($cgi->request_method() eq "GET") || ($cgi->request_method() eq "POST")){ $p->{$pp} = $cgi->param($pp); } if (exists($p->{"POSTDATA"})){ - my $pdj = JSON::PP::decode_json($p->{"POSTDATA"}); + print STDERR $p->{"POSTDATA"}; + my $pdj = (); + if ($p->{"POSTDATA"} =~ /^\{.*\}$/ ){ + $pdj = JSON::PP::decode_json($p->{"POSTDATA"}); + } + foreach my $k (keys(%{$pdj})){ $p->{$k} = $pdj->{$k}; } @@ -57,15 +62,15 @@ if (($cgi->request_method() eq "GET") || ($cgi->request_method() eq "POST")){ if (exists($p->{schemata})){ $schema = $p->{schemata}; } - my $sql = "select * from ".$schema.".vw_".$p->{get}; + my $sql = "select * from ".$schema.".vw_".$p->{get}." "; if (exists($p->{fields}) ){ $sql = "select ".$p->{fields}." from ".$schema.".vw_".$p->{get}; } if (exists($p->{filter})){ - $sql .= " WHERE ".$p->{filter}.";"; + $sql .= " WHERE ".$p->{filter}.""; } $html->{result}->{sql} = $sql; - $html->{result}->{sqldata} = $db->queryarray($sql); + $html->{result}->{sqldata} = $db->queryarray($sql.";"); } elsif (exists($p->{set})){ my $type = "ins"; @@ -93,59 +98,7 @@ if (($cgi->request_method() eq "GET") || ($cgi->request_method() eq "POST")){ } } } - elsif (exists($p->{upsert})){ - my $idents = (); - my $type=""; - foreach my $l (keys(%{$p})){ - if (($l =~ /^ident_/) && ($p->{$l} ne "")){ - $idents->{$l} = $l; - $idents->{$l} =~ s/^ident_//; - } - } - #print Dumper($idents); - - my $x = $p; - delete $x->{sid}; - delete $x->{upsert}; - #$html->{result}->{p} = $x; - if (keys(%{$idents}) > 0){ - my @cntsql = $db->create_cnt_statement($x); - #print Dumper(@cntsql); - my $cntres = $db->query($cntsql[0]); - if ($cntres->{cnt} eq "0"){ - $type = "ins"; - foreach my $c (keys(%{$idents})){ - $x->{$idents->{$c}} = $x->{$c}; - delete($x->{$c}); - } - } else { - $type = "upd"; - } - #print Dumper($type); - #print Dumper($x); - my @sql = (); - if ($type eq "ins"){ - @sql = $db->create_ddl_insert($x); - }else { - @sql = $db->create_ddl_update($x); - #print Dumper(@sql); - } - - $html->{test}->{sql} = \@sql; - #print Dumper(@sql); - if (scalar(@sql) > 0 ){ - #print Dumper($sql[0]); - #my $rid = $db->querysorted($sql[0]); - my $rid = {}; - if (keys(%{$rid}) > 0 ){ - $html->{result} = $rid->{0}; - } - } - } else { - $html->{result} = "ERROR: no idents!"; - } - print Dumper($html); - } + elsif (exists($p->{del})){ my $x = $p; my $schema = "public"; @@ -255,7 +208,7 @@ if (($cgi->request_method() eq "GET") || ($cgi->request_method() eq "POST")){ @sql = $db->create_ddl_update($p); } - + print STDERR Dumper(@sql); $html->{sql} = \@sql; if (scalar(@sql) > 0){ diff --git a/website/app/file.cgi b/website/app/file.cgi deleted file mode 100644 index c7673a80..00000000 --- a/website/app/file.cgi +++ /dev/null @@ -1,136 +0,0 @@ -#!/usr/local/bin/perl - -use strict; -use lib ('./lib/perl5'); -use lib ('./lib'); -use CGI; -use CGI::Cookie; -# use CGI::Carp qw/fatalsToBrowser/; -use File::Basename; -use File::Path qw/make_path/; -use JSON::PP; -use Image::Size; -use dksconfig qw/$sitecfg/; -use dksdb; - -use session; -#use sendemail; -my $cgi = new CGI(); -my $scriptpath = $cgi->url(-absolute => 1); -my $p = (); -my @params = $cgi->param(); -foreach my $pe (@params){ - $p->{$pe} = $cgi->param($pe); -} -# if ($sitecfg->{basepath} ne "/"){ -$sitecfg->{docroot} = $sitecfg->{docroot}.substr($sitecfg->{basepath},0,index($sitecfg->{basepath},'backoffice')-1); -# } -my $html->{result} = (); -$p->{sid} = $cgi->cookie($sitecfg->{cookiename}); -my $se = session->new(); -my $sess = $se->getsession($p->{sid}); -print $cgi->header(-type=>"application/json", -charset => "utf-8"); -if ($sess == undef){ - $html->{error} = "No Authorisation"; - print JSON::PP::encode_json($html); - exit(0); -} -$html->{docroot} = $sitecfg->{docroot}; -# $html->{basepath} = $sitecfg->{basepath}; -if (($cgi->request_method() eq "GET") || ($cgi->request_method() eq "POST")){ - - if (exists($p->{fn}) && $p->{fn} eq "list"){ - if (exists($p->{folder})){ - - $p->{folder} =~ s/\.\.\///g; - my $cpath = $sitecfg->{docroot}.'/'.$p->{folder}; - my @items = (); - my $up = (); - # if (index($p->{folder},'/') > 0){ - # $up->{type} = "dir"; - # $up->{name} = ".."; - # $up->{sitepath} = $p->{folder}; - # $up->{path} = $p->{folder}; - # $up->{mimtype} = 'directory'; - # $up->{size} = ''; - # $up->{dimension}; - # $up->{thumb} = ''; - # push (@items,$up); - # } - opendir(DIR,$cpath); - - while (my $d = readdir(DIR)){ - if ($d =~ /^\./){ next; } - if ($d eq "thb"){ next; } - my $e = (); - if (-d $cpath.'/'.$d){ - $e->{type} = "dir"; - $e->{name} = $d; - $e->{sitepath} = $p->{folder}.'/'.$d; - $e->{path} = $p->{folder}.'/'.$d; - $e->{mimtype} = 'directory'; - $e->{size} = ''; - - my $cmd = 'find "'.$cpath.'/'.$d.'" -type f | grep -v \'/thb/\' | wc -l'; - my $dim = `$cmd`; - chomp($dim); - $e->{dimension} = $dim; - - $e->{thumb} = ''; - } - if (-f $cpath.'/'.$d){ - my $cmd = 'file -i "'.$cpath.'/'.$d.'" | awk -F": " \'{ print $2 }\' | awk -F";" \'{ print $1 }\''; - my $mt = `$cmd`; - chomp($mt); - #if (($mt !~ /^image/ ) || ($mt !~ /^application\/pdf/ )) { next; } - if (($mt =~ /^image/ ) || ($mt !~ /^application\/pdf/ )) { - if (! -f $cpath.'/thb/'.$d.'.thb.png'){ - if (! -d $cpath.'/thb'){ - make_path($cpath.'/thb'); - } - system('convert -thumbnail x96 -background white -alpha remove "'.$cpath.'/'.$d.'" "'.$cpath.'/thb/'.$d.'.thb.png"'); - } - if ($mt =~ /^image/ ){ - my ($ix, $iy) = imgsize($cpath.'/'.$d); - $e->{dimension} = $ix."x".$iy; - } - } - my @st = stat($cpath.'/'.$d); - $e->{type} = "file"; - $e->{mimetype} = $mt; - my $s = $st[7]; - my $hrs =""; - if ($s > 1000000024){ - $s = $s/1024; - $s = $s/1024; - $s = $s/1024; - ($hrs) = $s =~ m/^(\d+\.\d\d).*/; - $hrs = $hrs." GB"; - } elsif ($s > 1000024){ - $s = $s/1024; - $s = $s/1024; - ($hrs) = $s =~ m/^(\d+\.\d\d).*/; - $hrs = $hrs." MB"; - } elsif ($s > 1024){ - $s = $s/1024; - ($hrs) = $s =~ m/^(\d+\.\d\d).*/; - $hrs = $hrs." KB"; - } else { - $hrs = $s." B"; - } - $e->{hrsize} = $hrs; - $e->{size} = $st[7]; - $e->{name} = $d; - $e->{sitepath} = $p->{folder}.'/'.$d; - $e->{thumb} = ''; - $e->{path} = '../../../'.$p->{folder}.'/'.$d; - } - push (@items,$e); - } - closedir(DIR); - $html->{result} = \@items; - - } - } -} -print JSON::PP::encode_json($html); diff --git a/website/app/index.cgi b/website/app/index.cgi index 98f66b1d..3be5e968 100644 --- a/website/app/index.cgi +++ b/website/app/index.cgi @@ -7,7 +7,7 @@ use File::Basename qw/dirname basename/; use Template; # use Template::Constants qw( :debug ); use CGI; -#use CGI::Carp qw(fatalsToBrowser); +use CGI::Carp qw(fatalsToBrowser); use CGI::Cookie; use Data::Dumper; use JSON::PP; @@ -31,14 +31,15 @@ $vars->{ua} = $ENV{HTTP_USER_AGENT}; # exit(0); # # # exit(0); # } +$vars->{realpath} = $cgi->url({-absolute=>1}); $vars->{filepath} = substr($cgi->url({-absolute=>1}),length($vars->{basepath})+1); $vars->{baseurl} = $cgi->url({-base=>1}).$vars->{basepath}; if ($vars->{basepath} eq "/"){ $vars->{siteurl} = $cgi->url({-base=>1}); }else { - $vars->{siteurl} = $cgi->url({-base=>1}).dirname($vars->{basepath}); - $vars->{docroot} = $vars->{docroot}.dirname($vars->{basepath}); + $vars->{siteurl} = $cgi->url({-base=>1}).$vars->{basepath}; + $vars->{docroot} = $vars->{docroot}.$vars->{basepath}; #$vars->{sitepath} = dirname($vars->{basepath}); } @@ -81,54 +82,44 @@ if (($cgi->request_method() eq "POST") || ($cgi->request_method() eq "GET")){ $vars->{page} = "message.tt"; } } - if (exists($p->{'btnregister'})){ + # if (exists($p->{'btnregister'})){ - my $ret = $se->registeruser($p); + # my $ret = $se->registeruser($p); - $vars->{message} = $ret->{message}; - $vars->{messagetype} = $ret->{messagetype}; - $vars->{page} = $ret->{page}; - } + # $vars->{message} = $ret->{message}; + # $vars->{messagetype} = $ret->{messagetype}; + # $vars->{page} = $ret->{page}; + # } if (exists($p->{'btnforgotpassword'})){ my $ret = $se->passwordforgotten($p->{email}); $vars->{message} = $ret->{message}; $vars->{messagetype} = $ret->{messagetype}; $vars->{page} = "message.tt"; } - if (exists($p->{'btnvalidateemail'})){ - my $ret = $se->validateaccount($p); - $vars->{message} = $ret->{message}; - $vars->{messagetype} = $ret->{messagetype}; - $vars->{page} = "message.tt"; - } - if (exists($p->{'btnresendcode'})){ - my $ret = $se->resendcode($p->{email}); - $vars->{message} = $ret->{message}; - $vars->{messagetype} = $ret->{messagetype}; - $vars->{page} = "message.tt"; - } - if (exists($p->{'btnaccountreset'})){ - my $ret = $se->accountreset($p); - $vars->{message} = $ret->{message}; - $vars->{messagetype} = $ret->{messagetype}; - $vars->{page} = "message.tt"; - } + # if (exists($p->{'btnvalidateemail'})){ + # my $ret = $se->validateaccount($p); + # $vars->{message} = $ret->{message}; + # $vars->{messagetype} = $ret->{messagetype}; + # $vars->{page} = "message.tt"; + # } + # if (exists($p->{'btnresendcode'})){ + # my $ret = $se->resendcode($p->{email}); + # $vars->{message} = $ret->{message}; + # $vars->{messagetype} = $ret->{messagetype}; + # $vars->{page} = "message.tt"; + # } + # if (exists($p->{'btnaccountreset'})){ + # my $ret = $se->accountreset($p); + # $vars->{message} = $ret->{message}; + # $vars->{messagetype} = $ret->{messagetype}; + # $vars->{page} = "message.tt"; + # } if (exists($p->{logout})){ $se->deletesession($p->{sid}); $p->{sid} = ""; $cookie = CGI::Cookie->new(-name=>$vars->{cookiename},-value=>"",-httponly => 1); } - # if (exists($p->{btndeleteprofile})){ - # my $ret = $se->deleteprofile($p->{deleteprofile}); - # $vars->{message} = $ret->{message}; - # $vars->{messagetype} = $ret->{messagetype}; - # $vars->{page} = "message.tt"; - # if (exists($ret->{sid})){ - # $p->{sid} = ""; - # } - # $cookie = CGI::Cookie->new(-name=>$vars->{cookiename},-value=>"",-httponly => 1); - # } } if ($p->{sid} ne ""){ $sess = $se->getsession($p->{sid}); @@ -168,21 +159,16 @@ $vars->{pagename} = basename($vars->{page}); $vars->{pagename} =~ s/\.tt$//; $vars->{params}= $p; -# my ($browserlang) = $ENV{HTTP_ACCEPT_LANGUAGE} =~ /^(\w+)[,|;|-]/; $vars->{lang} = 'fr'; -# if (-e $sitecfg->{tmplpath}.'/lang/'.$browserlang.'.tt'){ -# $vars->{lang} = $browserlang; -# } + $vars->{skl} = $skl; -#print '
'.Dumper($vars)."
";
-#print Dumper(%ENV);
+
 $vars->{ua} = $ENV{HTTP_USER_AGENT};
-#print STDERR "TMPLPATH:".$sitecfg->{tmplpath}."\n";
 my $template = Template->new({INCLUDE_PATH => [$sitecfg->{tmplpath}]});
 $template->process($skl,$vars) || die "Template process failed: ", $template->error(), "\n";
 
 if ($vars->{page} =~ /\.tt/){
-   print '
'.Dumper($vars)."
";
+    print '
'.Dumper($vars)."
";
 } 
 
 
diff --git a/website/app/lib/dksconfig.pm b/website/app/lib/dksconfig.pm
index 0656c89e..482e4cc0 100644
--- a/website/app/lib/dksconfig.pm
+++ b/website/app/lib/dksconfig.pm
@@ -11,14 +11,16 @@ our @EXPORT_OK = qw($sitecfg);
 our $sitecfg ={
   cookiename => 'potlu',
   dbtype => 'PgPP',
-  #dsn => 'DBI:PgPP:dbname=potlu_db;host=localhost',
-  dsn => 'DBI:PgPP:dbname=potlu2_db;host=sql12.your-server.de',
-  dbuser => 'potlu2_user',
-  dbpassword => 'dMY8xGB6cBLzrDGE',
+  dsn => 'DBI:PgPP:dbname=potlu_db;host=localhost',
+  dbuser => 'potlu_user',
+  dbpassword => 'r2btTTRfuJz4whez',
+  #dsn => 'DBI:PgPP:dbname=potlu2_db;host=sql12.your-server.de',
+  #dbuser => 'potlu2_user',
+  #dbpassword => 'dMY8xGB6cBLzrDGE',
   page => 'index.tt',
   pagename => 'index',
-  basepath => substr(dirname($0),length($ENV{"DOCUMENT_ROOT"})),
-  datapath => substr(dirname($0),length($ENV{"DOCUMENT_ROOT"})).'/data/',
+  basepath => 'app/',
+  datapath => 'app/data/',
   docroot => $ENV{"DOCUMENT_ROOT"},
   tmplpath => dirname($0).'/tmpl',
   registration_enabled => '0',
diff --git a/website/app/lib/dksdb.pm b/website/app/lib/dksdb.pm
index 2105c010..98c407b2 100644
--- a/website/app/lib/dksdb.pm
+++ b/website/app/lib/dksdb.pm
@@ -1,10 +1,10 @@
 package dksdb;
 
 use strict;
-use lib ('./lib/perl5');
+#use lib ('./lib/perl5');
 use lib ('./lib');
 use lib ('./');
-BEGIN { $ENV{DBI_PUREPERL} = 2 }
+#BEGIN { $ENV{DBI_PUREPERL} = 2 }
 use DBI;
 use File::Basename;
 
@@ -137,6 +137,7 @@ sub exec(){
     # open FILE,">>tmp/sql.log";
     # print FILE "\n==\n$stat\n==\n";
     # close FILE;
+    
     my $sth = $dbh->prepare($stat) or return $retdata->{error} = "exec ".$dbh->errstr. "- SQL: ".$stat;;
    $retdata->{success}  = $dbh->do($stat) or return $retdata->{error} = "exec ".$dbh->errstr. "- SQL: ".$stat;
    $dbh->disconnect();
@@ -147,35 +148,39 @@ sub queryarray(){
    my $self = shift;
    my $stat = shift;
    my @retdata = ();
-    my $dbh = DBI->connect($sitecfg->{dsn},$sitecfg->{dbuser},$sitecfg->{dbpassword},{AutoCommit=>1})  or return \@retdata;
-   #$stat = encode("utf8", $stat);
-  #  open FILE,">>tmp/sql.log";
-  #  print  "$stat\n";
-  #  close FILE;
-  
-  my $sth = $dbh->prepare($stat);
-
-  $sth->execute() or return \@retdata;
-  my $count = 0;
-  
-  while(my $data = $sth->fetchrow_hashref())
-  {
-  	my $row = ();
-    #print Dumper($data);
-		foreach my $k (keys %{$data}){
-      if ($data->{$k} =~ /^{.*}$/){
-        #print Dumper($data->{$k});
-        $row->{$k} = JSON::PP::decode_json($data->{$k});  
-      } else {
-        $row->{$k} = decode("utf-8",$data->{$k});
-      }
-    }
-    #print Dumper($row);
-		push @retdata,$row;
+   #my $dbh = DBI->connect($sitecfg->{dsn},$sitecfg->{dbuser},$sitecfg->{dbpassword},{AutoCommit=>1}) or return \@retdata;
+   
+  print STDERR $stat."\n";
+  my $res = $self->querysorted($stat);
+  foreach my $r (sort {$a <=> $b} keys(%{$res})){
+    push(@retdata,$res->{$r});
   }
+  # #  $stat = encode("utf8", $stat);
+  # #  open FILE,">>tmp/sql.log";
+  # #  print FILE "$stat\n";
+  # #  close FILE;
+  # #   print STDERR "Prep:".$stat."\n";
+  # my $sth = $dbh->prepare($stat);
+  # #print STDERR "STH:".$stat.Dumper($sth)."\n";
+  # my $count = 0;
+  
+  # while(my $xdata = $sth->fetchrow_hashref()){
+  # 	# my $row = ();
+  #   # #print Dumper($data);
+	# 	# foreach my $k (keys %{$xdata}){
+  #   #   if ($xdata->{$k} =~ /^{.*}$/){
+  #   #     #print Dumper($data->{$k});
+  #   #     $row->{$k} = JSON::PP::decode_json($xdata->{$k});  
+  #   #   } else {
+  #   #     $row->{$k} = decode("utf-8",$xdata->{$k});
+  #   #   }
+  #   # }
+  #   # #print Dumper($row);
+	# 	# push @retdata,$row;
+  # }
 
-  $sth->finish();
-  $dbh->disconnect();
+  # $sth->finish();
+  # $dbh->disconnect();
   #%retdata = sort {$a <=> $b} keys %retdata;
   return \@retdata;
 }
diff --git a/website/app/lib/dkssavefile.pm b/website/app/lib/dkssavefile.pm
deleted file mode 100644
index 55c260f2..00000000
--- a/website/app/lib/dkssavefile.pm
+++ /dev/null
@@ -1,49 +0,0 @@
-package dkssavefile;
-
-
-use strict;
-use lib ('./lib/perl5');
-use lib ('./lib');
-use lib ('./');
-use MIME::Base64;
-use MIME::Types;
-use URI;
-use Data::Dumper;
-use File::Path qw(make_path);
-
-sub new {
-    my $class = shift;
-    my $self = bless {}, $class;
-    return $self;
-}
-
-sub saveb64toFile(){
-  my $self = shift;
-  # my $fd = shift;
-  my $filename = shift;
-  my $sitepath = shift;
-  my $filepath = shift;
-  my $data = shift;
-  my $ds = URI->new($data);
-  my $mimetype= $ds->media_type();
-  my $mt = MIME::Types->new();
-  my $sfx = $mt->type($mimetype);
-  my $ext = $sfx->{MT_extensions};
-  my $nfsfx = "";
-  if (scalar(@$ext) > 0){
-     $nfsfx = @$ext[0];
-  }
-  if (! -d $sitepath.'/'.$filepath){
-    make_path($sitepath.'/'.$filepath);
-  }
-  open (NF,">".$sitepath.'/'.$filepath.'/'.$filename.'.'.$nfsfx);
-  binmode(1);
-  print NF $ds->data();
-  close(NF);
-  if (-e $sitepath.'/'.$filepath.'/'.$filename.'.'.$nfsfx){
-    return $filepath.'/'.$filename.'.'.$nfsfx;
-  } 
-  return "";
-}
-
-1;
\ No newline at end of file
diff --git a/website/app/report.cgi b/website/app/report.cgi
index 5551f809..07775b4d 100644
--- a/website/app/report.cgi
+++ b/website/app/report.cgi
@@ -1,10 +1,8 @@
 #!/usr/local/bin/perl
 use strict;
 use FindBin qw($RealBin $Bin);
-# use lib ('CGI/api/lib/perl5');
-# use lib ('CGI/api/lib');
-use lib ($Bin.'/CGI/api/lib/perl5');
-use lib ($Bin.'/CGI/api/lib');
+
+
 use lib ($RealBin.'/lib/perl5');
 use lib ($RealBin.'/lib');
 use CGI;
@@ -21,8 +19,6 @@ use dksdb;
 use session;
 use pdfreport;
 
-# use session;
-#use sendemail;
 my $cgi = new CGI();
 my $scriptpath = $cgi->url(-absolute => 1); 
 my $p = ();
diff --git a/website/app/static/js/app.js b/website/app/static/js/app.js
index cfc90fee..0cd02446 100644
--- a/website/app/static/js/app.js
+++ b/website/app/static/js/app.js
@@ -23,7 +23,9 @@ let app = {
       let csel = document.getElementById("current_schemata").value;
       console.log(csel);
       schemata =  csel;
-      postData("db.cgi",{"fn":"setsessiondata","params":"[\"schemata\",\"" + csel +"\"]"}).then(data => {});
+      postData("db.cgi",{"fn":"setsessiondata","params":"[\"schemata\",\"" + csel +"\"]"}).then(data => {
+        document.getElementById("current_schemata").dataset.selected = csel;
+      });
     },
     setschemata(data){
       // if (data && data.setsessiondata){
diff --git a/website/app/static/js/form.js b/website/app/static/js/form.js
index 5a16def1..f7454729 100644
--- a/website/app/static/js/form.js
+++ b/website/app/static/js/form.js
@@ -52,7 +52,7 @@ formsaved: function(data){
 // },
 getformcontent: function(frmid,dataflds){
   var frm = document.getElementById("frm_" + frmid);
-  var flds = [];
+  var flds = {};
   if (dataflds){
     flds = dataflds;
   } 
@@ -88,7 +88,7 @@ getformcontent: function(frmid,dataflds){
             }
           }
           if (vals.length > 0) {
-            flds[field.getAttribute("name")] = vals;
+            flds[field.getAttribute("name")] = JSON.stringify(vals);
           } else {
             flds[field.getAttribute("name")] = "";
           }    
@@ -178,22 +178,15 @@ cleanform2: function(frmname,choices){
 },
 fillformbydataclass2: function(dataclass,choices,data,onblur){
   var frm = document.querySelectorAll('.data_'+ dataclass);
-  //console.log("Data to fill");
-  //console.log(data);
+
   if (data){
     for (var f in frm){
-      //console.log(frm[f].id);
+
       if (frm[f].id){
         frm[f].dataset.id=data['id'];
       }
       if (data[frm[f].id]){
-        //console.log("=>");
-        //console.log(data[frm[f].id]);
-        // if (onblur){
-        //   frm[f].addEventListener('blur',onblur);
-        // }
-        
-        //frm[f].dataset.id=data['id'];
+
         if (frm[f].tagName == 'INPUT'){
           if (frm[f].type == "checkbox"){
             if (data[frm[f].id] == "1"){
@@ -203,12 +196,10 @@ fillformbydataclass2: function(dataclass,choices,data,onblur){
             }
           } 
           else if (frm[f].classList.contains("datefield")){ 
-            console.log("set flatpickr value:" + data[frm[f].id]);
             frm[f]._flatpickr.setDate(data[frm[f].id]);
           } 
           else if (frm[f].classList.contains("timefield")){
             frm[f].value = timecalc.StringToTime(data[frm[f].id]);
-          //   frm[f]._flatpickr.setDate(data[frm[f].id]);
           }
           else {
             frm[f].value=data[frm[f].id];
@@ -216,8 +207,7 @@ fillformbydataclass2: function(dataclass,choices,data,onblur){
         }
         if (frm[f].tagName == 'SELECT'){
           if (frm[f].multiple == true){
-            console.log("Set Multiple:" + frm[f].id);
-            console.log(data[frm[f].id]);
+       
             choices[frm[f].id].set(JSON.parse(data[frm[f].id]));
           } else {
             frm[f].value=data[frm[f].id];
@@ -231,12 +221,17 @@ fillselectlist: function(obj,data,vidcol,vvalcol){
   var sellist = [];
   let csel = obj.value;
   //console.log("selected value =" + csel);
+  
   if (data){
     for (var i in data){
       sellist.push({value:data[i][vidcol],text:data[i][vvalcol]});
     }
   }
   obj.setData(sellist);
+  console.log(obj);
+  if (obj.select.element.dataset.selected && obj.select.element.dataset.selected != ""){
+     obj.set(obj.select.element.dataset.selected);
+  }
   return false;
 },
 
diff --git a/website/app/static/js/request.js b/website/app/static/js/request.js
index 7c32606b..455d4d0e 100644
--- a/website/app/static/js/request.js
+++ b/website/app/static/js/request.js
@@ -4,7 +4,6 @@ var api = location.origin + location.pathname.substring(0,location.pathname.last
 // }
 
 async function postData(url = '', data = {}) {
-  // Default options are marked with *
   const response = await fetch(api + url, {
     method: 'POST', 
     mode: 'same-origin', 
@@ -18,7 +17,7 @@ async function postData(url = '', data = {}) {
     referrerPolicy: 'strict-origin', 
     body: JSON.stringify(data) 
   });
-  console.log(response.body);
+  
   return response.json();
 }
 
diff --git a/website/app/static/vendors/choices/base.css b/website/app/static/vendors/choices/base.css
deleted file mode 100644
index c9d3fc99..00000000
--- a/website/app/static/vendors/choices/base.css
+++ /dev/null
@@ -1,191 +0,0 @@
-/*=============================================
-=            Generic styling                  =
-=============================================*/
-* {
-  -webkit-font-smoothing: antialiased;
-  -moz-osx-font-smoothing: grayscale;
-}
-
-*,
-*:before,
-*:after {
-  box-sizing: border-box;
-}
-
-html,
-body {
-  position: relative;
-  margin: 0;
-  width: 100%;
-  height: 100%;
-}
-
-body {
-  font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
-  font-size: 16px;
-  line-height: 1.4;
-  color: #FFFFFF;
-  background-color: #333;
-  overflow-x: hidden;
-}
-
-label {
-  display: block;
-  margin-bottom: 8px;
-  font-size: 14px;
-  font-weight: 500;
-  cursor: pointer;
-}
-
-p {
-  margin-top: 0;
-}
-
-hr {
-  display: block;
-  margin: 30px 0;
-  border: 0;
-  border-bottom: 1px solid #eaeaea;
-  height: 1px;
-}
-
-h1,
-h2,
-h3,
-h4,
-h5,
-h6 {
-  margin-top: 0;
-  margin-bottom: 12px;
-  font-weight: 400;
-  line-height: 1.2;
-}
-
-a,
-a:visited,
-a:focus {
-  color: #FFFFFF;
-  text-decoration: none;
-  font-weight: 600;
-}
-
-/* .form-control {
-  display: block;
-  width: 100%;
-  background-color: #f9f9f9;
-  padding: 12px;
-  border: 1px solid #ddd;
-  border-radius: 2.5px;
-  font-size: 14px;
-  -webkit-appearance: none;
-  -moz-appearance: none;
-       appearance: none;
-  margin-bottom: 24px;
-} */
-
-h1,
-.h1 {
-  font-size: 32px;
-}
-
-h2,
-.h2 {
-  font-size: 24px;
-}
-
-h3,
-.h3 {
-  font-size: 20px;
-}
-
-h4,
-.h4 {
-  font-size: 18px;
-}
-
-h5,
-.h5 {
-  font-size: 16px;
-}
-
-h6,
-.h6 {
-  font-size: 14px;
-}
-
-p {
-  margin-bottom: 8px;
-}
-
-label + p {
-  margin-top: -4px;
-}
-
-.container {
-  display: block;
-  margin: auto;
-  max-width: 40em;
-  padding: 48px;
-}
-
-@media (max-width: 620px) {
-  .container {
-    padding: 0;
-  }
-}
-
-.section {
-  background-color: #FFFFFF;
-  padding: 24px;
-  color: #333;
-}
-
-.section a,
-.section a:visited,
-.section a:focus {
-  color: #00bcd4;
-}
-
-.logo {
-  display: block;
-  margin-bottom: 12px;
-}
-
-.logo__img {
-  width: 100%;
-  height: auto;
-  display: inline-block;
-  max-width: 100%;
-  vertical-align: top;
-  padding: 6px 0;
-}
-
-.visible-ie {
-  display: none;
-}
-
-.push-bottom {
-  margin-bottom: 24px;
-}
-
-.zero-bottom {
-  margin-bottom: 0;
-}
-
-.zero-top {
-  margin-top: 0;
-}
-
-.text-center {
-  text-align: center;
-}
-
-.is-hidden {
-  display: none;
-}
-
-[data-test-hook] {
-  margin-bottom: 24px;
-}
-
-/*=====  End of Section comment block  ======*/
diff --git a/website/app/static/vendors/choices/base.min.css b/website/app/static/vendors/choices/base.min.css
deleted file mode 100644
index 375ec110..00000000
--- a/website/app/static/vendors/choices/base.min.css
+++ /dev/null
@@ -1,2 +0,0 @@
-*{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}*,:after,:before{box-sizing:border-box}body,html{position:relative;margin:0;width:100%;height:100%}body{font-family:"Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;font-size:16px;line-height:1.4;color:#fff;background-color:#333;overflow-x:hidden}hr,label{display:block}label,p{margin-bottom:8px}label{font-size:14px;font-weight:500;cursor:pointer}p{margin-top:0}hr{margin:30px 0;border:0;border-bottom:1px solid #eaeaea;height:1px}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:12px;font-weight:400;line-height:1.2}a,a:focus,a:visited{color:#fff;text-decoration:none;font-weight:600}
-.h1,h1{font-size:32px}.h2,h2{font-size:24px}.h3,h3{font-size:20px}.h4,h4{font-size:18px}.h5,h5{font-size:16px}.h6,h6{font-size:14px}label+p{margin-top:-4px}.container{display:block;margin:auto;max-width:40em;padding:48px}@media (max-width:620px){.container{padding:0}}.section{background-color:#fff;padding:24px;color:#333}.section a,.section a:focus,.section a:visited{color:#00bcd4}.logo{display:block;margin-bottom:12px}.logo__img{width:100%;height:auto;display:inline-block;max-width:100%;vertical-align:top;padding:6px 0}.visible-ie{display:none}.push-bottom{margin-bottom:24px}.zero-bottom{margin-bottom:0}.zero-top{margin-top:0}.text-center{text-align:center}.is-hidden{display:none}[data-test-hook]{margin-bottom:24px}
\ No newline at end of file
diff --git a/website/app/static/vendors/choices/choices.css b/website/app/static/vendors/choices/choices.css
deleted file mode 100644
index e75be05c..00000000
--- a/website/app/static/vendors/choices/choices.css
+++ /dev/null
@@ -1,377 +0,0 @@
-/*===============================
-=            Choices            =
-===============================*/
-
-.choices {
-    position: relative;
-    margin-bottom: 0px;
-    font-size: 11pt;
-}
-
-.choices:focus {
-    outline: none;
-}
-
-.choices:last-child {
-    margin-bottom: 0;
-}
-
-.choices.is-disabled .choices__inner,
-.choices.is-disabled .choices__input {
-    background-color: #EAEAEA;
-    cursor: not-allowed;
-    user-select: none;
-}
-
-.choices.is-disabled .choices__item {
-    cursor: not-allowed;
-}
-
-.choices[data-type*="select-one"] {
-    cursor: pointer;
-}
-
-.choices[data-type*="select-one"] .choices__inner {
-    padding-bottom: 0px;
-}
-
-.choices[data-type*="select-one"] .choices__input {
-    display: block;
-    width: 100%;
-    padding: 4px;
-    border: 0;
-    border-bottom: 1px solid #DDDDDD;
-    background-color: #FFFFFF;
-    margin: 0;
-}
-
-.choices[data-type*="select-one"] .choices__button {
-    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
-    padding: 0;
-    background-size: 8px;
-    position: absolute;
-    top: 50%;
-    right: 0;
-    margin-top: -10px;
-    margin-right: 25px;
-    height: 20px;
-    width: 20px;
-    /* border-radius: 10em; */
-    opacity: .5;
-}
-
-.choices[data-type*="select-one"] .choices__button:hover,
-.choices[data-type*="select-one"] .choices__button:focus {
-    opacity: 1;
-}
-
-.choices[data-type*="select-one"] .choices__button:focus {
-    box-shadow: 0px 0px 0px 2px #00BCD4;
-}
-
-.choices[data-type*="select-one"]:after {
-    content: "";
-    height: 0;
-    width: 0;
-    border-style: solid;
-    border-color: #333333 transparent transparent transparent;
-    border-width: 5px;
-    position: absolute;
-    right: 11.5px;
-    top: 50%;
-    margin-top: -2.5px;
-    pointer-events: none;
-}
-
-.choices[data-type*="select-one"].is-open:after {
-    border-color: transparent transparent #333333 transparent;
-    margin-top: -7.5px;
-}
-
-.choices[data-type*="select-one"][dir="rtl"]:after {
-    left: 11.5px;
-    right: auto;
-}
-
-.choices[data-type*="select-one"][dir="rtl"] .choices__button {
-    right: auto;
-    left: 0;
-    margin-left: 25px;
-    margin-right: 0;
-}
-
-.choices[data-type*="select-multiple"] .choices__inner,
-.choices[data-type*="text"] .choices__inner {
-    cursor: text;
-}
-
-.choices[data-type*="select-multiple"] .choices__button,
-.choices[data-type*="text"] .choices__button {
-    position: relative;
-    display: inline-block;
-    margin-top: 0;
-    margin-right: -4px;
-    margin-bottom: 0;
-    margin-left: 8px;
-    padding-left: 16px;
-    border-left: 1px solid #008fa1;
-    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
-    background-size: 8px;
-    width: 8px;
-    line-height: 1;
-    opacity: .75;
-    border-radius: 0;
-}
-
-.choices[data-type*="select-multiple"] .choices__button:hover,
-.choices[data-type*="select-multiple"] .choices__button:focus,
-.choices[data-type*="text"] .choices__button:hover,
-.choices[data-type*="text"] .choices__button:focus {
-    opacity: 1;
-}
-
-.choices__inner {
-    display: inline-block;
-    vertical-align: top;
-    width: 100%;
-    /* background-color: #e8f0fe; */
-    background-color: #fff;
-    padding: 0px 0px 0px;
-    border: 0;
-
-    border-bottom: 1px solid #ccc;
-    /* border-radius: 2.5px; */
-    /* font-size: 14px; */
-    min-height: 28px;
-    overflow: hidden;
-    /* font-weight: bold; */
-}
-
-.is-focused .choices__inner,
-.is-open .choices__inner {
-    border-color: #b7b7b7;
-}
-
-.is-open .choices__inner {
-    /* border-radius: 2.5px 2.5px 0 0; */
-}
-
-.is-flipped.is-open .choices__inner {
-    /* border-radius: 0 0 2.5px 2.5px; */
-}
-
-.choices__list {
-    margin: 0;
-    padding-left: 0;
-    list-style: none;
-}
-
-.choices__list--single {
-    display: inline-block;
-    padding: 2px 2px 2px 2px;
-    width: 100%;
-}
-
-[dir="rtl"] .choices__list--single {
-    padding-right: 4px;
-    padding-left: 16px;
-}
-
-.choices__list--single .choices__item {
-    width: 100%;
-}
-
-.choices__list--multiple {
-    display: inline;
-}
-
-.choices__list--multiple .choices__item {
-    display: inline-block;
-    vertical-align: middle;
-    /* border-radius: 20px; */
-    padding: 4px 6px;
-    font-size: 16px;
-    height: 40px;
-    /* font-size: 12px; */
-    /* font-weight: 500; */
-    margin-right: 3.75px;
-    /* margin-bottom: 3.75px; */
-    background-color: #607d8b;
-    border: 1px solid #607d8b;
-    color: #FFFFFF;
-    /* font-weightfont-weight: bold; */
-    word-break: break-all;
-}
-
-.choices__list--multiple .choices__item[data-deletable] {
-    padding-right: 5px;
-}
-
-[dir="rtl"] .choices__list--multiple .choices__item {
-    margin-right: 0;
-    margin-left: 3.75px;
-}
-
-.choices__list--multiple .choices__item.is-highlighted {
-    background-color: #00a5bb;
-    border: 1px solid #008fa1;
-}
-
-.is-disabled .choices__list--multiple .choices__item {
-    background-color: #aaaaaa;
-    border: 1px solid #919191;
-}
-
-.choices__list--dropdown {
-    display: none;
-    z-index: 1;
-    position: absolute;
-    width: 100%;
-    background-color: #FFFFFF;
-    border: 1px solid #DDDDDD;
-    top: 100%;
-    margin-top: -1px;
-    /* border-bottom-left-radius: 2.5px; */
-    /* border-bottom-right-radius: 2.5px; */
-    overflow: hidden;
-    word-break: break-word;
-}
-
-.choices__list--dropdown.is-active {
-    display: block;
-}
-
-.is-open .choices__list--dropdown {
-    border-color: #b7b7b7;
-}
-
-.is-flipped .choices__list--dropdown {
-    top: auto;
-    bottom: 100%;
-    margin-top: 0;
-    margin-bottom: -1px;
-    /* border-radius: .25rem .25rem 0 0; */
-}
-
-.choices__list--dropdown .choices__list {
-    position: relative;
-    max-height: 300px;
-    overflow: auto;
-    -webkit-overflow-scrolling: touch;
-    will-change: scroll-position;
-}
-
-.choices__list--dropdown .choices__item {
-    position: relative;
-    padding: 10px;
-    font-size: 14px;
-}
-
-[dir="rtl"] .choices__list--dropdown .choices__item {
-    text-align: right;
-}
-
-@media (min-width: 640px) {
-    .choices__list--dropdown .choices__item--selectable {
-        padding-right: 10px;
-        word-wrap: none;
-        overflow: hidden;
-    }
-    .choices__list--dropdown .choices__item--selectable:after {
-        content: attr(data-select-text);
-        font-size: 12px;
-        opacity: 0;
-        position: absolute;
-        right: 10px;
-        top: 50%;
-        transform: translateY(-50%);
-    }
-    [dir="rtl"] .choices__list--dropdown .choices__item--selectable {
-        text-align: right;
-        padding-left: 10px;
-        padding-right: 10px;
-    }
-    [dir="rtl"] .choices__list--dropdown .choices__item--selectable:after {
-        right: auto;
-        left: 10px;
-    }
-}
-
-.choices__list--dropdown .choices__item--selectable.is-highlighted {
-    background-color: #f2f2f2;
-}
-
-.choices__list--dropdown .choices__item--selectable.is-highlighted:after {
-    opacity: .5;
-}
-
-.choices__item {
-    cursor: default;
-}
-
-.choices__item--selectable {
-    cursor: pointer;
-}
-
-.choices__item--disabled {
-    cursor: not-allowed;
-    user-select: none;
-    opacity: .5;
-}
-
-.choices__heading {
-    /* font-weight: 600; */
-    font-size: 12px;
-    padding: 10px;
-    border-bottom: 1px solid #f7f7f7;
-    color: gray;
-}
-
-.choices__button {
-    text-indent: -9999px;
-    -webkit-appearance: none;
-    appearance: none;
-    border: 0;
-    background-color: transparent;
-    background-repeat: no-repeat;
-    background-position: center;
-    cursor: pointer;
-}
-
-.choices__button:focus {
-    outline: none;
-}
-
-.choices__input {
-    display: inline-block;
-    vertical-align: baseline;
-    background-color: #f9f9f9;
-    font-size: 14px;
-    margin-bottom: 5px;
-    border: 0;
-    border-radius: 0;
-    max-width: 100%;
-    padding: 4px 0 4px 2px;
-}
-
-.choices__input:focus {
-    outline: 0;
-}
-
-[dir="rtl"] .choices__input {
-    padding-right: 2px;
-    padding-left: 0;
-}
-
-.choices__placeholder {
-    opacity: .5;
-}
-
-.choices__input.is-hidden,
-.choices[data-type*="select-one"] .choices__input.is-hidden,
-.choices[data-type*="select-multiple"] .choices__input.is-hidden {
-    display: none;
-}
-
-
-/*=====  End of Choices  ======*/
\ No newline at end of file
diff --git a/website/app/static/vendors/choices/choices.js b/website/app/static/vendors/choices/choices.js
deleted file mode 100644
index 93e8b4e7..00000000
--- a/website/app/static/vendors/choices/choices.js
+++ /dev/null
@@ -1,6787 +0,0 @@
-(function webpackUniversalModuleDefinition(root, factory) {
-	//CommonJS2
-	if(typeof exports === 'object' && typeof module === 'object')
-		module.exports = factory();
-	//AMD
-	else if(typeof define === 'function' && define.amd)
-		define([], factory);
-	//CommonJS
-	else if(typeof exports === 'object')
-		exports["Choices"] = factory();
-	//Window
-	else
-		root["Choices"] = factory();
-})(window, function() {
-return /******/ (function(modules) { // webpackBootstrap
-/******/ 	// The module cache
-/******/ 	var installedModules = {};
-/******/
-/******/ 	// The require function
-/******/ 	function __webpack_require__(moduleId) {
-/******/
-/******/ 		// Check if module is in cache
-/******/ 		if(installedModules[moduleId]) {
-/******/ 			return installedModules[moduleId].exports;
-/******/ 		}
-/******/ 		// Create a new module (and put it into the cache)
-/******/ 		var module = installedModules[moduleId] = {
-/******/ 			i: moduleId,
-/******/ 			l: false,
-/******/ 			exports: {}
-/******/ 		};
-/******/
-/******/ 		// Execute the module function
-/******/ 		modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
-/******/
-/******/ 		// Flag the module as loaded
-/******/ 		module.l = true;
-/******/
-/******/ 		// Return the exports of the module
-/******/ 		return module.exports;
-/******/ 	}
-/******/
-/******/
-/******/ 	// expose the modules object (__webpack_modules__)
-/******/ 	__webpack_require__.m = modules;
-/******/
-/******/ 	// expose the module cache
-/******/ 	__webpack_require__.c = installedModules;
-/******/
-/******/ 	// define getter function for harmony exports
-/******/ 	__webpack_require__.d = function(exports, name, getter) {
-/******/ 		if(!__webpack_require__.o(exports, name)) {
-/******/ 			Object.defineProperty(exports, name, { enumerable: true, get: getter });
-/******/ 		}
-/******/ 	};
-/******/
-/******/ 	// define __esModule on exports
-/******/ 	__webpack_require__.r = function(exports) {
-/******/ 		if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
-/******/ 			Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
-/******/ 		}
-/******/ 		Object.defineProperty(exports, '__esModule', { value: true });
-/******/ 	};
-/******/
-/******/ 	// create a fake namespace object
-/******/ 	// mode & 1: value is a module id, require it
-/******/ 	// mode & 2: merge all properties of value into the ns
-/******/ 	// mode & 4: return value when already ns object
-/******/ 	// mode & 8|1: behave like require
-/******/ 	__webpack_require__.t = function(value, mode) {
-/******/ 		if(mode & 1) value = __webpack_require__(value);
-/******/ 		if(mode & 8) return value;
-/******/ 		if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
-/******/ 		var ns = Object.create(null);
-/******/ 		__webpack_require__.r(ns);
-/******/ 		Object.defineProperty(ns, 'default', { enumerable: true, value: value });
-/******/ 		if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
-/******/ 		return ns;
-/******/ 	};
-/******/
-/******/ 	// getDefaultExport function for compatibility with non-harmony modules
-/******/ 	__webpack_require__.n = function(module) {
-/******/ 		var getter = module && module.__esModule ?
-/******/ 			function getDefault() { return module['default']; } :
-/******/ 			function getModuleExports() { return module; };
-/******/ 		__webpack_require__.d(getter, 'a', getter);
-/******/ 		return getter;
-/******/ 	};
-/******/
-/******/ 	// Object.prototype.hasOwnProperty.call
-/******/ 	__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
-/******/
-/******/ 	// __webpack_public_path__
-/******/ 	__webpack_require__.p = "/public/assets/scripts/";
-/******/
-/******/
-/******/ 	// Load entry module and return exports
-/******/ 	return __webpack_require__(__webpack_require__.s = 9);
-/******/ })
-/************************************************************************/
-/******/ ([
-/* 0 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-
-Object.defineProperty(exports, "__esModule", {
-  value: true
-});
-exports.diff = exports.cloneObject = exports.existsInArray = exports.isIE11 = exports.fetchFromObject = exports.getWindowHeight = exports.dispatchEvent = exports.sortByScore = exports.sortByAlpha = exports.calcWidthOfInput = exports.strToEl = exports.sanitise = exports.isScrolledIntoView = exports.getAdjacentEl = exports.findAncestorByAttrName = exports.wrap = exports.isElement = exports.isType = exports.getType = exports.generateId = exports.generateChars = exports.getRandomNumber = void 0;
-
-var _this = void 0;
-
-var getRandomNumber = function getRandomNumber(min, max) {
-  return Math.floor(Math.random() * (max - min) + min);
-};
-
-exports.getRandomNumber = getRandomNumber;
-
-var generateChars = function generateChars(length) {
-  var chars = '';
-
-  for (var i = 0; i < length; i++) {
-    var randomChar = getRandomNumber(0, 36);
-    chars += randomChar.toString(36);
-  }
-
-  return chars;
-};
-
-exports.generateChars = generateChars;
-
-var generateId = function generateId(element, prefix) {
-  var id = element.id || element.name && "".concat(element.name, "-").concat(generateChars(2)) || generateChars(4);
-  id = id.replace(/(:|\.|\[|\]|,)/g, '');
-  id = "".concat(prefix, "-").concat(id);
-  return id;
-};
-
-exports.generateId = generateId;
-
-var getType = function getType(obj) {
-  return Object.prototype.toString.call(obj).slice(8, -1);
-};
-
-exports.getType = getType;
-
-var isType = function isType(type, obj) {
-  return obj !== undefined && obj !== null && getType(obj) === type;
-};
-
-exports.isType = isType;
-
-var isElement = function isElement(element) {
-  return element instanceof Element;
-};
-
-exports.isElement = isElement;
-
-var wrap = function wrap(element) {
-  var wrapper = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : document.createElement('div');
-
-  if (element.nextSibling) {
-    element.parentNode.insertBefore(wrapper, element.nextSibling);
-  } else {
-    element.parentNode.appendChild(wrapper);
-  }
-
-  return wrapper.appendChild(element);
-};
-
-exports.wrap = wrap;
-
-var findAncestorByAttrName = function findAncestorByAttrName(el, attr) {
-  var target = el;
-
-  while (target) {
-    if (target.hasAttribute(attr)) {
-      return target;
-    }
-
-    target = target.parentElement;
-  }
-
-  return null;
-};
-
-exports.findAncestorByAttrName = findAncestorByAttrName;
-
-var getAdjacentEl = function getAdjacentEl(startEl, className) {
-  var direction = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 1;
-
-  if (!startEl || !className) {
-    return;
-  }
-
-  var parent = startEl.parentNode.parentNode;
-  var children = Array.from(parent.querySelectorAll(className));
-  var startPos = children.indexOf(startEl);
-  var operatorDirection = direction > 0 ? 1 : -1;
-  return children[startPos + operatorDirection];
-};
-
-exports.getAdjacentEl = getAdjacentEl;
-
-var isScrolledIntoView = function isScrolledIntoView(el, parent) {
-  var direction = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 1;
-
-  if (!el) {
-    return;
-  }
-
-  var isVisible;
-
-  if (direction > 0) {
-    // In view from bottom
-    isVisible = parent.scrollTop + parent.offsetHeight >= el.offsetTop + el.offsetHeight;
-  } else {
-    // In view from top
-    isVisible = el.offsetTop >= parent.scrollTop;
-  }
-
-  return isVisible;
-};
-
-exports.isScrolledIntoView = isScrolledIntoView;
-
-var sanitise = function sanitise(value) {
-  if (!isType('String', value)) {
-    return value;
-  }
-
-  return value.replace(/&/g, '&').replace(/>/g, '&rt;').replace(/".concat(sanitise(value), ""));
-    testEl.style.position = 'absolute';
-    testEl.style.padding = '0';
-    testEl.style.top = '-9999px';
-    testEl.style.left = '-9999px';
-    testEl.style.width = 'auto';
-    testEl.style.whiteSpace = 'pre';
-
-    if (document.body.contains(input) && window.getComputedStyle) {
-      var inputStyle = window.getComputedStyle(input);
-
-      if (inputStyle) {
-        testEl.style.fontSize = inputStyle.fontSize;
-        testEl.style.fontFamily = inputStyle.fontFamily;
-        testEl.style.fontWeight = inputStyle.fontWeight;
-        testEl.style.fontStyle = inputStyle.fontStyle;
-        testEl.style.letterSpacing = inputStyle.letterSpacing;
-        testEl.style.textTransform = inputStyle.textTransform;
-        testEl.style.padding = inputStyle.padding;
-      }
-    }
-
-    document.body.appendChild(testEl);
-    requestAnimationFrame(function () {
-      if (value && testEl.offsetWidth !== input.offsetWidth) {
-        width = testEl.offsetWidth + 4;
-      }
-
-      document.body.removeChild(testEl);
-      callback.call(_this, "".concat(width, "px"));
-    });
-  } else {
-    callback.call(_this, "".concat(width, "px"));
-  }
-};
-
-exports.calcWidthOfInput = calcWidthOfInput;
-
-var sortByAlpha = function sortByAlpha(a, b) {
-  var labelA = "".concat(a.label || a.value).toLowerCase();
-  var labelB = "".concat(b.label || b.value).toLowerCase();
-
-  if (labelA < labelB) {
-    return -1;
-  }
-
-  if (labelA > labelB) {
-    return 1;
-  }
-
-  return 0;
-};
-
-exports.sortByAlpha = sortByAlpha;
-
-var sortByScore = function sortByScore(a, b) {
-  return a.score - b.score;
-};
-
-exports.sortByScore = sortByScore;
-
-var dispatchEvent = function dispatchEvent(element, type) {
-  var customArgs = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;
-  var event = new CustomEvent(type, {
-    detail: customArgs,
-    bubbles: true,
-    cancelable: true
-  });
-  return element.dispatchEvent(event);
-};
-
-exports.dispatchEvent = dispatchEvent;
-
-var getWindowHeight = function getWindowHeight() {
-  var body = document.body;
-  var html = document.documentElement;
-  return Math.max(body.scrollHeight, body.offsetHeight, html.clientHeight, html.scrollHeight, html.offsetHeight);
-};
-
-exports.getWindowHeight = getWindowHeight;
-
-var fetchFromObject = function fetchFromObject(object, path) {
-  var index = path.indexOf('.');
-
-  if (index > -1) {
-    return fetchFromObject(object[path.substring(0, index)], path.substr(index + 1));
-  }
-
-  return object[path];
-};
-
-exports.fetchFromObject = fetchFromObject;
-
-var isIE11 = function isIE11() {
-  return !!(navigator.userAgent.match(/Trident/) && navigator.userAgent.match(/rv[ :]11/));
-};
-
-exports.isIE11 = isIE11;
-
-var existsInArray = function existsInArray(array, value) {
-  var key = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'value';
-  return array.some(function (item) {
-    if (isType('String', value)) {
-      return item[key] === value.trim();
-    }
-
-    return item[key] === value;
-  });
-};
-
-exports.existsInArray = existsInArray;
-
-var cloneObject = function cloneObject(obj) {
-  return JSON.parse(JSON.stringify(obj));
-};
-
-exports.cloneObject = cloneObject;
-
-var diff = function diff(a, b) {
-  var aKeys = Object.keys(a).sort();
-  var bKeys = Object.keys(b).sort();
-  return aKeys.filter(function (i) {
-    return bKeys.indexOf(i) < 0;
-  });
-};
-
-exports.diff = diff;
-
-/***/ }),
-/* 1 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-
-Object.defineProperty(exports, "__esModule", {
-  value: true
-});
-exports.SCROLLING_SPEED = exports.KEY_CODES = exports.ACTION_TYPES = exports.EVENTS = exports.DEFAULT_CONFIG = exports.DEFAULT_CLASSNAMES = void 0;
-
-var _utils = __webpack_require__(0);
-
-var DEFAULT_CLASSNAMES = {
-  containerOuter: 'choices',
-  containerInner: 'choices__inner',
-  input: 'choices__input',
-  inputCloned: 'choices__input--cloned',
-  list: 'choices__list',
-  listItems: 'choices__list--multiple',
-  listSingle: 'choices__list--single',
-  listDropdown: 'choices__list--dropdown',
-  item: 'choices__item',
-  itemSelectable: 'choices__item--selectable',
-  itemDisabled: 'choices__item--disabled',
-  itemChoice: 'choices__item--choice',
-  placeholder: 'choices__placeholder',
-  group: 'choices__group',
-  groupHeading: 'choices__heading',
-  button: 'choices__button',
-  activeState: 'is-active',
-  focusState: 'is-focused',
-  openState: 'is-open',
-  disabledState: 'is-disabled',
-  highlightedState: 'is-highlighted',
-  hiddenState: 'is-hidden',
-  flippedState: 'is-flipped',
-  loadingState: 'is-loading',
-  noResults: 'has-no-results',
-  noChoices: 'has-no-choices'
-};
-exports.DEFAULT_CLASSNAMES = DEFAULT_CLASSNAMES;
-var DEFAULT_CONFIG = {
-  items: [],
-  choices: [],
-  silent: false,
-  renderChoiceLimit: -1,
-  maxItemCount: -1,
-  addItems: true,
-  addItemFilterFn: null,
-  removeItems: true,
-  removeItemButton: false,
-  editItems: false,
-  duplicateItemsAllowed: true,
-  delimiter: ',',
-  paste: true,
-  searchEnabled: true,
-  searchChoices: true,
-  searchFloor: 1,
-  searchResultLimit: 4,
-  searchFields: ['label', 'value'],
-  position: 'auto',
-  resetScrollPosition: true,
-  shouldSort: true,
-  shouldSortItems: false,
-  sortFn: _utils.sortByAlpha,
-  placeholder: true,
-  placeholderValue: null,
-  searchPlaceholderValue: null,
-  prependValue: null,
-  appendValue: null,
-  renderSelectedChoices: 'auto',
-  loadingText: 'Loading...',
-  noResultsText: 'No results found',
-  noChoicesText: 'No choices to choose from',
-  itemSelectText: 'Press to select',
-  uniqueItemText: 'Only unique values can be added',
-  customAddItemText: 'Only values matching specific conditions can be added',
-  addItemText: function addItemText(value) {
-    return "Press Enter to add \"".concat((0, _utils.sanitise)(value), "\"");
-  },
-  maxItemText: function maxItemText(maxItemCount) {
-    return "Only ".concat(maxItemCount, " values can be added");
-  },
-  itemComparer: function itemComparer(choice, item) {
-    return choice === item;
-  },
-  fuseOptions: {
-    includeScore: true
-  },
-  callbackOnInit: null,
-  callbackOnCreateTemplates: null,
-  classNames: DEFAULT_CLASSNAMES
-};
-exports.DEFAULT_CONFIG = DEFAULT_CONFIG;
-var EVENTS = {
-  showDropdown: 'showDropdown',
-  hideDropdown: 'hideDropdown',
-  change: 'change',
-  choice: 'choice',
-  search: 'search',
-  addItem: 'addItem',
-  removeItem: 'removeItem',
-  highlightItem: 'highlightItem',
-  highlightChoice: 'highlightChoice'
-};
-exports.EVENTS = EVENTS;
-var ACTION_TYPES = {
-  ADD_CHOICE: 'ADD_CHOICE',
-  FILTER_CHOICES: 'FILTER_CHOICES',
-  ACTIVATE_CHOICES: 'ACTIVATE_CHOICES',
-  CLEAR_CHOICES: 'CLEAR_CHOICES',
-  ADD_GROUP: 'ADD_GROUP',
-  ADD_ITEM: 'ADD_ITEM',
-  REMOVE_ITEM: 'REMOVE_ITEM',
-  HIGHLIGHT_ITEM: 'HIGHLIGHT_ITEM',
-  CLEAR_ALL: 'CLEAR_ALL'
-};
-exports.ACTION_TYPES = ACTION_TYPES;
-var KEY_CODES = {
-  BACK_KEY: 46,
-  DELETE_KEY: 8,
-  ENTER_KEY: 13,
-  A_KEY: 65,
-  ESC_KEY: 27,
-  UP_KEY: 38,
-  DOWN_KEY: 40,
-  PAGE_UP_KEY: 33,
-  PAGE_DOWN_KEY: 34
-};
-exports.KEY_CODES = KEY_CODES;
-var SCROLLING_SPEED = 4;
-exports.SCROLLING_SPEED = SCROLLING_SPEED;
-
-/***/ }),
-/* 2 */
-/***/ (function(module, __webpack_exports__, __webpack_require__) {
-
-"use strict";
-/* WEBPACK VAR INJECTION */(function(global, module) {/* harmony import */ var _ponyfill_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(7);
-/* global window */
-
-
-var root;
-
-if (typeof self !== 'undefined') {
-  root = self;
-} else if (typeof window !== 'undefined') {
-  root = window;
-} else if (typeof global !== 'undefined') {
-  root = global;
-} else if (true) {
-  root = module;
-} else {}
-
-var result = Object(_ponyfill_js__WEBPACK_IMPORTED_MODULE_0__[/* default */ "a"])(root);
-/* harmony default export */ __webpack_exports__["a"] = (result);
-
-/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(3), __webpack_require__(14)(module)))
-
-/***/ }),
-/* 3 */
-/***/ (function(module, exports) {
-
-var g;
-
-// This works in non-strict mode
-g = (function() {
-	return this;
-})();
-
-try {
-	// This works if eval is allowed (see CSP)
-	g = g || new Function("return this")();
-} catch (e) {
-	// This works if the window reference is available
-	if (typeof window === "object") g = window;
-}
-
-// g can still be undefined, but nothing to do about it...
-// We return undefined, instead of nothing here, so it's
-// easier to handle this case. if(!global) { ...}
-
-module.exports = g;
-
-
-/***/ }),
-/* 4 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-
-Object.defineProperty(exports, "__esModule", {
-  value: true
-});
-exports.default = void 0;
-
-var _utils = __webpack_require__(0);
-
-function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
-
-function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
-
-var WrappedElement =
-/*#__PURE__*/
-function () {
-  function WrappedElement(_ref) {
-    var element = _ref.element,
-        classNames = _ref.classNames;
-
-    _classCallCheck(this, WrappedElement);
-
-    Object.assign(this, {
-      element: element,
-      classNames: classNames
-    });
-
-    if (!(0, _utils.isElement)(element)) {
-      throw new TypeError('Invalid element passed');
-    }
-
-    this.isDisabled = false;
-  }
-
-  _createClass(WrappedElement, [{
-    key: "conceal",
-    value: function conceal() {
-      // Hide passed input
-      this.element.classList.add(this.classNames.input);
-      this.element.classList.add(this.classNames.hiddenState); // Remove element from tab index
-
-      this.element.tabIndex = '-1'; // Backup original styles if any
-
-      var origStyle = this.element.getAttribute('style');
-
-      if (origStyle) {
-        this.element.setAttribute('data-choice-orig-style', origStyle);
-      }
-
-      this.element.setAttribute('aria-hidden', 'true');
-      this.element.setAttribute('data-choice', 'active');
-    }
-  }, {
-    key: "reveal",
-    value: function reveal() {
-      // Reinstate passed element
-      this.element.classList.remove(this.classNames.input);
-      this.element.classList.remove(this.classNames.hiddenState);
-      this.element.removeAttribute('tabindex'); // Recover original styles if any
-
-      var origStyle = this.element.getAttribute('data-choice-orig-style');
-
-      if (origStyle) {
-        this.element.removeAttribute('data-choice-orig-style');
-        this.element.setAttribute('style', origStyle);
-      } else {
-        this.element.removeAttribute('style');
-      }
-
-      this.element.removeAttribute('aria-hidden');
-      this.element.removeAttribute('data-choice'); // Re-assign values - this is weird, I know
-
-      this.element.value = this.element.value;
-    }
-  }, {
-    key: "enable",
-    value: function enable() {
-      this.element.removeAttribute('disabled');
-      this.element.disabled = false;
-      this.isDisabled = false;
-    }
-  }, {
-    key: "disable",
-    value: function disable() {
-      this.element.setAttribute('disabled', '');
-      this.element.disabled = true;
-      this.isDisabled = true;
-    }
-  }, {
-    key: "triggerEvent",
-    value: function triggerEvent(eventType, data) {
-      (0, _utils.dispatchEvent)(this.element, eventType, data);
-    }
-  }, {
-    key: "value",
-    get: function get() {
-      return this.element.value;
-    }
-  }]);
-
-  return WrappedElement;
-}();
-
-exports.default = WrappedElement;
-
-/***/ }),
-/* 5 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-
-Object.defineProperty(exports, "__esModule", {
-  value: true
-});
-exports.default = exports.TEMPLATES = void 0;
-
-var _classnames = _interopRequireDefault(__webpack_require__(27));
-
-var _utils = __webpack_require__(0);
-
-function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
-
-function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
-
-var TEMPLATES = {
-  containerOuter: function containerOuter(globalClasses, direction, isSelectElement, isSelectOneElement, searchEnabled, passedElementType) {
-    var tabIndex = isSelectOneElement ? 'tabindex="0"' : '';
-    var role = isSelectElement ? 'role="listbox"' : '';
-    var ariaAutoComplete = '';
-
-    if (isSelectElement && searchEnabled) {
-      role = 'role="combobox"';
-      ariaAutoComplete = 'aria-autocomplete="list"';
-    }
-
-    return (0, _utils.strToEl)("\n      \n      \n    "));
-  },
-  containerInner: function containerInner(globalClasses) {
-    return (0, _utils.strToEl)("\n      
\n ")); - }, - itemList: function itemList(globalClasses, isSelectOneElement) { - var _classNames; - - var localClasses = (0, _classnames.default)(globalClasses.list, (_classNames = {}, _defineProperty(_classNames, globalClasses.listSingle, isSelectOneElement), _defineProperty(_classNames, globalClasses.listItems, !isSelectOneElement), _classNames)); - return (0, _utils.strToEl)("\n
\n ")); - }, - placeholder: function placeholder(globalClasses, value) { - return (0, _utils.strToEl)("\n
\n ").concat(value, "\n
\n ")); - }, - item: function item(globalClasses, data, removeItemButton) { - var _classNames2; - - var ariaSelected = data.active ? 'aria-selected="true"' : ''; - var ariaDisabled = data.disabled ? 'aria-disabled="true"' : ''; - var localClasses = (0, _classnames.default)(globalClasses.item, (_classNames2 = {}, _defineProperty(_classNames2, globalClasses.highlightedState, data.highlighted), _defineProperty(_classNames2, globalClasses.itemSelectable, !data.highlighted), _defineProperty(_classNames2, globalClasses.placeholder, data.placeholder), _classNames2)); - - if (removeItemButton) { - var _classNames3; - - localClasses = (0, _classnames.default)(globalClasses.item, (_classNames3 = {}, _defineProperty(_classNames3, globalClasses.highlightedState, data.highlighted), _defineProperty(_classNames3, globalClasses.itemSelectable, !data.disabled), _defineProperty(_classNames3, globalClasses.placeholder, data.placeholder), _classNames3)); - return (0, _utils.strToEl)("\n \n ").concat(data.label, "\n Remove item\n \n \n ")); - } - - return (0, _utils.strToEl)("\n \n ").concat(data.label, "\n \n ")); - }, - choiceList: function choiceList(globalClasses, isSelectOneElement) { - var ariaMultiSelectable = !isSelectOneElement ? 'aria-multiselectable="true"' : ''; - return (0, _utils.strToEl)("\n \n \n ")); - }, - choiceGroup: function choiceGroup(globalClasses, data) { - var ariaDisabled = data.disabled ? 'aria-disabled="true"' : ''; - var localClasses = (0, _classnames.default)(globalClasses.group, _defineProperty({}, globalClasses.itemDisabled, data.disabled)); - return (0, _utils.strToEl)("\n \n
").concat(data.value, "
\n \n ")); - }, - choice: function choice(globalClasses, data, itemSelectText) { - var _classNames5; - - var role = data.groupId > 0 ? 'role="treeitem"' : 'role="option"'; - var localClasses = (0, _classnames.default)(globalClasses.item, globalClasses.itemChoice, (_classNames5 = {}, _defineProperty(_classNames5, globalClasses.itemDisabled, data.disabled), _defineProperty(_classNames5, globalClasses.itemSelectable, !data.disabled), _defineProperty(_classNames5, globalClasses.placeholder, data.placeholder), _classNames5)); - return (0, _utils.strToEl)("\n \n ").concat(data.label, "\n \n ")); - }, - input: function input(globalClasses) { - var localClasses = (0, _classnames.default)(globalClasses.input, globalClasses.inputCloned); - return (0, _utils.strToEl)("\n \n ")); - }, - dropdown: function dropdown(globalClasses) { - var localClasses = (0, _classnames.default)(globalClasses.list, globalClasses.listDropdown); - return (0, _utils.strToEl)("\n \n \n ")); - }, - notice: function notice(globalClasses, label) { - var _classNames6; - - var type = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : ''; - var localClasses = (0, _classnames.default)(globalClasses.item, globalClasses.itemChoice, (_classNames6 = {}, _defineProperty(_classNames6, globalClasses.noResults, type === 'no-results'), _defineProperty(_classNames6, globalClasses.noChoices, type === 'no-choices'), _classNames6)); - return (0, _utils.strToEl)("\n
\n ").concat(label, "\n
\n ")); - }, - option: function option(data) { - return (0, _utils.strToEl)("\n \n ")); - } -}; -exports.TEMPLATES = TEMPLATES; -var _default = TEMPLATES; -exports.default = _default; - -/***/ }), -/* 6 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); - -// EXTERNAL MODULE: ./node_modules/lodash-es/_freeGlobal.js -var _freeGlobal = __webpack_require__(8); - -// CONCATENATED MODULE: ./node_modules/lodash-es/_root.js - - -/** Detect free variable `self`. */ -var freeSelf = typeof self == 'object' && self && self.Object === Object && self; - -/** Used as a reference to the global object. */ -var root = _freeGlobal["a" /* default */] || freeSelf || Function('return this')(); - -/* harmony default export */ var _root = (root); - -// CONCATENATED MODULE: ./node_modules/lodash-es/_Symbol.js - - -/** Built-in value references. */ -var Symbol = _root.Symbol; - -/* harmony default export */ var _Symbol = (Symbol); - -// CONCATENATED MODULE: ./node_modules/lodash-es/_getRawTag.js - - -/** Used for built-in method references. */ -var objectProto = Object.prototype; - -/** Used to check objects for own properties. */ -var _getRawTag_hasOwnProperty = objectProto.hasOwnProperty; - -/** - * Used to resolve the - * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) - * of values. - */ -var nativeObjectToString = objectProto.toString; - -/** Built-in value references. */ -var symToStringTag = _Symbol ? _Symbol.toStringTag : undefined; - -/** - * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values. - * - * @private - * @param {*} value The value to query. - * @returns {string} Returns the raw `toStringTag`. - */ -function getRawTag(value) { - var isOwn = _getRawTag_hasOwnProperty.call(value, symToStringTag), - tag = value[symToStringTag]; - - try { - value[symToStringTag] = undefined; - var unmasked = true; - } catch (e) {} - - var result = nativeObjectToString.call(value); - if (unmasked) { - if (isOwn) { - value[symToStringTag] = tag; - } else { - delete value[symToStringTag]; - } - } - return result; -} - -/* harmony default export */ var _getRawTag = (getRawTag); - -// CONCATENATED MODULE: ./node_modules/lodash-es/_objectToString.js -/** Used for built-in method references. */ -var _objectToString_objectProto = Object.prototype; - -/** - * Used to resolve the - * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) - * of values. - */ -var _objectToString_nativeObjectToString = _objectToString_objectProto.toString; - -/** - * Converts `value` to a string using `Object.prototype.toString`. - * - * @private - * @param {*} value The value to convert. - * @returns {string} Returns the converted string. - */ -function objectToString(value) { - return _objectToString_nativeObjectToString.call(value); -} - -/* harmony default export */ var _objectToString = (objectToString); - -// CONCATENATED MODULE: ./node_modules/lodash-es/_baseGetTag.js - - - - -/** `Object#toString` result references. */ -var nullTag = '[object Null]', - undefinedTag = '[object Undefined]'; - -/** Built-in value references. */ -var _baseGetTag_symToStringTag = _Symbol ? _Symbol.toStringTag : undefined; - -/** - * The base implementation of `getTag` without fallbacks for buggy environments. - * - * @private - * @param {*} value The value to query. - * @returns {string} Returns the `toStringTag`. - */ -function baseGetTag(value) { - if (value == null) { - return value === undefined ? undefinedTag : nullTag; - } - return (_baseGetTag_symToStringTag && _baseGetTag_symToStringTag in Object(value)) - ? _getRawTag(value) - : _objectToString(value); -} - -/* harmony default export */ var _baseGetTag = (baseGetTag); - -// CONCATENATED MODULE: ./node_modules/lodash-es/_overArg.js -/** - * Creates a unary function that invokes `func` with its argument transformed. - * - * @private - * @param {Function} func The function to wrap. - * @param {Function} transform The argument transform. - * @returns {Function} Returns the new function. - */ -function overArg(func, transform) { - return function(arg) { - return func(transform(arg)); - }; -} - -/* harmony default export */ var _overArg = (overArg); - -// CONCATENATED MODULE: ./node_modules/lodash-es/_getPrototype.js - - -/** Built-in value references. */ -var getPrototype = _overArg(Object.getPrototypeOf, Object); - -/* harmony default export */ var _getPrototype = (getPrototype); - -// CONCATENATED MODULE: ./node_modules/lodash-es/isObjectLike.js -/** - * Checks if `value` is object-like. A value is object-like if it's not `null` - * and has a `typeof` result of "object". - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is object-like, else `false`. - * @example - * - * _.isObjectLike({}); - * // => true - * - * _.isObjectLike([1, 2, 3]); - * // => true - * - * _.isObjectLike(_.noop); - * // => false - * - * _.isObjectLike(null); - * // => false - */ -function isObjectLike(value) { - return value != null && typeof value == 'object'; -} - -/* harmony default export */ var lodash_es_isObjectLike = (isObjectLike); - -// CONCATENATED MODULE: ./node_modules/lodash-es/isPlainObject.js - - - - -/** `Object#toString` result references. */ -var objectTag = '[object Object]'; - -/** Used for built-in method references. */ -var funcProto = Function.prototype, - isPlainObject_objectProto = Object.prototype; - -/** Used to resolve the decompiled source of functions. */ -var funcToString = funcProto.toString; - -/** Used to check objects for own properties. */ -var isPlainObject_hasOwnProperty = isPlainObject_objectProto.hasOwnProperty; - -/** Used to infer the `Object` constructor. */ -var objectCtorString = funcToString.call(Object); - -/** - * Checks if `value` is a plain object, that is, an object created by the - * `Object` constructor or one with a `[[Prototype]]` of `null`. - * - * @static - * @memberOf _ - * @since 0.8.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a plain object, else `false`. - * @example - * - * function Foo() { - * this.a = 1; - * } - * - * _.isPlainObject(new Foo); - * // => false - * - * _.isPlainObject([1, 2, 3]); - * // => false - * - * _.isPlainObject({ 'x': 0, 'y': 0 }); - * // => true - * - * _.isPlainObject(Object.create(null)); - * // => true - */ -function isPlainObject(value) { - if (!lodash_es_isObjectLike(value) || _baseGetTag(value) != objectTag) { - return false; - } - var proto = _getPrototype(value); - if (proto === null) { - return true; - } - var Ctor = isPlainObject_hasOwnProperty.call(proto, 'constructor') && proto.constructor; - return typeof Ctor == 'function' && Ctor instanceof Ctor && - funcToString.call(Ctor) == objectCtorString; -} - -/* harmony default export */ var lodash_es_isPlainObject = (isPlainObject); - -// EXTERNAL MODULE: ./node_modules/symbol-observable/es/index.js -var es = __webpack_require__(2); - -// CONCATENATED MODULE: ./node_modules/redux/es/createStore.js - - - -/** - * These are private action types reserved by Redux. - * For any unknown actions, you must return the current state. - * If the current state is undefined, you must return the initial state. - * Do not reference these action types directly in your code. - */ -var ActionTypes = { - INIT: '@@redux/INIT' - - /** - * Creates a Redux store that holds the state tree. - * The only way to change the data in the store is to call `dispatch()` on it. - * - * There should only be a single store in your app. To specify how different - * parts of the state tree respond to actions, you may combine several reducers - * into a single reducer function by using `combineReducers`. - * - * @param {Function} reducer A function that returns the next state tree, given - * the current state tree and the action to handle. - * - * @param {any} [preloadedState] The initial state. You may optionally specify it - * to hydrate the state from the server in universal apps, or to restore a - * previously serialized user session. - * If you use `combineReducers` to produce the root reducer function, this must be - * an object with the same shape as `combineReducers` keys. - * - * @param {Function} [enhancer] The store enhancer. You may optionally specify it - * to enhance the store with third-party capabilities such as middleware, - * time travel, persistence, etc. The only store enhancer that ships with Redux - * is `applyMiddleware()`. - * - * @returns {Store} A Redux store that lets you read the state, dispatch actions - * and subscribe to changes. - */ -};function createStore_createStore(reducer, preloadedState, enhancer) { - var _ref2; - - if (typeof preloadedState === 'function' && typeof enhancer === 'undefined') { - enhancer = preloadedState; - preloadedState = undefined; - } - - if (typeof enhancer !== 'undefined') { - if (typeof enhancer !== 'function') { - throw new Error('Expected the enhancer to be a function.'); - } - - return enhancer(createStore_createStore)(reducer, preloadedState); - } - - if (typeof reducer !== 'function') { - throw new Error('Expected the reducer to be a function.'); - } - - var currentReducer = reducer; - var currentState = preloadedState; - var currentListeners = []; - var nextListeners = currentListeners; - var isDispatching = false; - - function ensureCanMutateNextListeners() { - if (nextListeners === currentListeners) { - nextListeners = currentListeners.slice(); - } - } - - /** - * Reads the state tree managed by the store. - * - * @returns {any} The current state tree of your application. - */ - function getState() { - return currentState; - } - - /** - * Adds a change listener. It will be called any time an action is dispatched, - * and some part of the state tree may potentially have changed. You may then - * call `getState()` to read the current state tree inside the callback. - * - * You may call `dispatch()` from a change listener, with the following - * caveats: - * - * 1. The subscriptions are snapshotted just before every `dispatch()` call. - * If you subscribe or unsubscribe while the listeners are being invoked, this - * will not have any effect on the `dispatch()` that is currently in progress. - * However, the next `dispatch()` call, whether nested or not, will use a more - * recent snapshot of the subscription list. - * - * 2. The listener should not expect to see all state changes, as the state - * might have been updated multiple times during a nested `dispatch()` before - * the listener is called. It is, however, guaranteed that all subscribers - * registered before the `dispatch()` started will be called with the latest - * state by the time it exits. - * - * @param {Function} listener A callback to be invoked on every dispatch. - * @returns {Function} A function to remove this change listener. - */ - function subscribe(listener) { - if (typeof listener !== 'function') { - throw new Error('Expected listener to be a function.'); - } - - var isSubscribed = true; - - ensureCanMutateNextListeners(); - nextListeners.push(listener); - - return function unsubscribe() { - if (!isSubscribed) { - return; - } - - isSubscribed = false; - - ensureCanMutateNextListeners(); - var index = nextListeners.indexOf(listener); - nextListeners.splice(index, 1); - }; - } - - /** - * Dispatches an action. It is the only way to trigger a state change. - * - * The `reducer` function, used to create the store, will be called with the - * current state tree and the given `action`. Its return value will - * be considered the **next** state of the tree, and the change listeners - * will be notified. - * - * The base implementation only supports plain object actions. If you want to - * dispatch a Promise, an Observable, a thunk, or something else, you need to - * wrap your store creating function into the corresponding middleware. For - * example, see the documentation for the `redux-thunk` package. Even the - * middleware will eventually dispatch plain object actions using this method. - * - * @param {Object} action A plain object representing “what changed”. It is - * a good idea to keep actions serializable so you can record and replay user - * sessions, or use the time travelling `redux-devtools`. An action must have - * a `type` property which may not be `undefined`. It is a good idea to use - * string constants for action types. - * - * @returns {Object} For convenience, the same action object you dispatched. - * - * Note that, if you use a custom middleware, it may wrap `dispatch()` to - * return something else (for example, a Promise you can await). - */ - function dispatch(action) { - if (!lodash_es_isPlainObject(action)) { - throw new Error('Actions must be plain objects. ' + 'Use custom middleware for async actions.'); - } - - if (typeof action.type === 'undefined') { - throw new Error('Actions may not have an undefined "type" property. ' + 'Have you misspelled a constant?'); - } - - if (isDispatching) { - throw new Error('Reducers may not dispatch actions.'); - } - - try { - isDispatching = true; - currentState = currentReducer(currentState, action); - } finally { - isDispatching = false; - } - - var listeners = currentListeners = nextListeners; - for (var i = 0; i < listeners.length; i++) { - var listener = listeners[i]; - listener(); - } - - return action; - } - - /** - * Replaces the reducer currently used by the store to calculate the state. - * - * You might need this if your app implements code splitting and you want to - * load some of the reducers dynamically. You might also need this if you - * implement a hot reloading mechanism for Redux. - * - * @param {Function} nextReducer The reducer for the store to use instead. - * @returns {void} - */ - function replaceReducer(nextReducer) { - if (typeof nextReducer !== 'function') { - throw new Error('Expected the nextReducer to be a function.'); - } - - currentReducer = nextReducer; - dispatch({ type: ActionTypes.INIT }); - } - - /** - * Interoperability point for observable/reactive libraries. - * @returns {observable} A minimal observable of state changes. - * For more information, see the observable proposal: - * https://github.com/tc39/proposal-observable - */ - function observable() { - var _ref; - - var outerSubscribe = subscribe; - return _ref = { - /** - * The minimal observable subscription method. - * @param {Object} observer Any object that can be used as an observer. - * The observer object should have a `next` method. - * @returns {subscription} An object with an `unsubscribe` method that can - * be used to unsubscribe the observable from the store, and prevent further - * emission of values from the observable. - */ - subscribe: function subscribe(observer) { - if (typeof observer !== 'object') { - throw new TypeError('Expected the observer to be an object.'); - } - - function observeState() { - if (observer.next) { - observer.next(getState()); - } - } - - observeState(); - var unsubscribe = outerSubscribe(observeState); - return { unsubscribe: unsubscribe }; - } - }, _ref[es["a" /* default */]] = function () { - return this; - }, _ref; - } - - // When a store is created, an "INIT" action is dispatched so that every - // reducer returns their initial state. This effectively populates - // the initial state tree. - dispatch({ type: ActionTypes.INIT }); - - return _ref2 = { - dispatch: dispatch, - subscribe: subscribe, - getState: getState, - replaceReducer: replaceReducer - }, _ref2[es["a" /* default */]] = observable, _ref2; -} -// CONCATENATED MODULE: ./node_modules/redux/es/utils/warning.js -/** - * Prints a warning in the console if it exists. - * - * @param {String} message The warning message. - * @returns {void} - */ -function warning(message) { - /* eslint-disable no-console */ - if (typeof console !== 'undefined' && typeof console.error === 'function') { - console.error(message); - } - /* eslint-enable no-console */ - try { - // This error was thrown as a convenience so that if you enable - // "break on all exceptions" in your console, - // it would pause the execution at this line. - throw new Error(message); - /* eslint-disable no-empty */ - } catch (e) {} - /* eslint-enable no-empty */ -} -// CONCATENATED MODULE: ./node_modules/redux/es/combineReducers.js - - - - -function getUndefinedStateErrorMessage(key, action) { - var actionType = action && action.type; - var actionName = actionType && '"' + actionType.toString() + '"' || 'an action'; - - return 'Given action ' + actionName + ', reducer "' + key + '" returned undefined. ' + 'To ignore an action, you must explicitly return the previous state. ' + 'If you want this reducer to hold no value, you can return null instead of undefined.'; -} - -function getUnexpectedStateShapeWarningMessage(inputState, reducers, action, unexpectedKeyCache) { - var reducerKeys = Object.keys(reducers); - var argumentName = action && action.type === ActionTypes.INIT ? 'preloadedState argument passed to createStore' : 'previous state received by the reducer'; - - if (reducerKeys.length === 0) { - return 'Store does not have a valid reducer. Make sure the argument passed ' + 'to combineReducers is an object whose values are reducers.'; - } - - if (!lodash_es_isPlainObject(inputState)) { - return 'The ' + argumentName + ' has unexpected type of "' + {}.toString.call(inputState).match(/\s([a-z|A-Z]+)/)[1] + '". Expected argument to be an object with the following ' + ('keys: "' + reducerKeys.join('", "') + '"'); - } - - var unexpectedKeys = Object.keys(inputState).filter(function (key) { - return !reducers.hasOwnProperty(key) && !unexpectedKeyCache[key]; - }); - - unexpectedKeys.forEach(function (key) { - unexpectedKeyCache[key] = true; - }); - - if (unexpectedKeys.length > 0) { - return 'Unexpected ' + (unexpectedKeys.length > 1 ? 'keys' : 'key') + ' ' + ('"' + unexpectedKeys.join('", "') + '" found in ' + argumentName + '. ') + 'Expected to find one of the known reducer keys instead: ' + ('"' + reducerKeys.join('", "') + '". Unexpected keys will be ignored.'); - } -} - -function assertReducerShape(reducers) { - Object.keys(reducers).forEach(function (key) { - var reducer = reducers[key]; - var initialState = reducer(undefined, { type: ActionTypes.INIT }); - - if (typeof initialState === 'undefined') { - throw new Error('Reducer "' + key + '" returned undefined during initialization. ' + 'If the state passed to the reducer is undefined, you must ' + 'explicitly return the initial state. The initial state may ' + 'not be undefined. If you don\'t want to set a value for this reducer, ' + 'you can use null instead of undefined.'); - } - - var type = '@@redux/PROBE_UNKNOWN_ACTION_' + Math.random().toString(36).substring(7).split('').join('.'); - if (typeof reducer(undefined, { type: type }) === 'undefined') { - throw new Error('Reducer "' + key + '" returned undefined when probed with a random type. ' + ('Don\'t try to handle ' + ActionTypes.INIT + ' or other actions in "redux/*" ') + 'namespace. They are considered private. Instead, you must return the ' + 'current state for any unknown actions, unless it is undefined, ' + 'in which case you must return the initial state, regardless of the ' + 'action type. The initial state may not be undefined, but can be null.'); - } - }); -} - -/** - * Turns an object whose values are different reducer functions, into a single - * reducer function. It will call every child reducer, and gather their results - * into a single state object, whose keys correspond to the keys of the passed - * reducer functions. - * - * @param {Object} reducers An object whose values correspond to different - * reducer functions that need to be combined into one. One handy way to obtain - * it is to use ES6 `import * as reducers` syntax. The reducers may never return - * undefined for any action. Instead, they should return their initial state - * if the state passed to them was undefined, and the current state for any - * unrecognized action. - * - * @returns {Function} A reducer function that invokes every reducer inside the - * passed object, and builds a state object with the same shape. - */ -function combineReducers(reducers) { - var reducerKeys = Object.keys(reducers); - var finalReducers = {}; - for (var i = 0; i < reducerKeys.length; i++) { - var key = reducerKeys[i]; - - if (false) {} - - if (typeof reducers[key] === 'function') { - finalReducers[key] = reducers[key]; - } - } - var finalReducerKeys = Object.keys(finalReducers); - - var unexpectedKeyCache = void 0; - if (false) {} - - var shapeAssertionError = void 0; - try { - assertReducerShape(finalReducers); - } catch (e) { - shapeAssertionError = e; - } - - return function combination() { - var state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; - var action = arguments[1]; - - if (shapeAssertionError) { - throw shapeAssertionError; - } - - if (false) { var warningMessage; } - - var hasChanged = false; - var nextState = {}; - for (var _i = 0; _i < finalReducerKeys.length; _i++) { - var _key = finalReducerKeys[_i]; - var reducer = finalReducers[_key]; - var previousStateForKey = state[_key]; - var nextStateForKey = reducer(previousStateForKey, action); - if (typeof nextStateForKey === 'undefined') { - var errorMessage = getUndefinedStateErrorMessage(_key, action); - throw new Error(errorMessage); - } - nextState[_key] = nextStateForKey; - hasChanged = hasChanged || nextStateForKey !== previousStateForKey; - } - return hasChanged ? nextState : state; - }; -} -// CONCATENATED MODULE: ./node_modules/redux/es/bindActionCreators.js -function bindActionCreator(actionCreator, dispatch) { - return function () { - return dispatch(actionCreator.apply(undefined, arguments)); - }; -} - -/** - * Turns an object whose values are action creators, into an object with the - * same keys, but with every function wrapped into a `dispatch` call so they - * may be invoked directly. This is just a convenience method, as you can call - * `store.dispatch(MyActionCreators.doSomething())` yourself just fine. - * - * For convenience, you can also pass a single function as the first argument, - * and get a function in return. - * - * @param {Function|Object} actionCreators An object whose values are action - * creator functions. One handy way to obtain it is to use ES6 `import * as` - * syntax. You may also pass a single function. - * - * @param {Function} dispatch The `dispatch` function available on your Redux - * store. - * - * @returns {Function|Object} The object mimicking the original object, but with - * every action creator wrapped into the `dispatch` call. If you passed a - * function as `actionCreators`, the return value will also be a single - * function. - */ -function bindActionCreators(actionCreators, dispatch) { - if (typeof actionCreators === 'function') { - return bindActionCreator(actionCreators, dispatch); - } - - if (typeof actionCreators !== 'object' || actionCreators === null) { - throw new Error('bindActionCreators expected an object or a function, instead received ' + (actionCreators === null ? 'null' : typeof actionCreators) + '. ' + 'Did you write "import ActionCreators from" instead of "import * as ActionCreators from"?'); - } - - var keys = Object.keys(actionCreators); - var boundActionCreators = {}; - for (var i = 0; i < keys.length; i++) { - var key = keys[i]; - var actionCreator = actionCreators[key]; - if (typeof actionCreator === 'function') { - boundActionCreators[key] = bindActionCreator(actionCreator, dispatch); - } - } - return boundActionCreators; -} -// CONCATENATED MODULE: ./node_modules/redux/es/compose.js -/** - * Composes single-argument functions from right to left. The rightmost - * function can take multiple arguments as it provides the signature for - * the resulting composite function. - * - * @param {...Function} funcs The functions to compose. - * @returns {Function} A function obtained by composing the argument functions - * from right to left. For example, compose(f, g, h) is identical to doing - * (...args) => f(g(h(...args))). - */ - -function compose() { - for (var _len = arguments.length, funcs = Array(_len), _key = 0; _key < _len; _key++) { - funcs[_key] = arguments[_key]; - } - - if (funcs.length === 0) { - return function (arg) { - return arg; - }; - } - - if (funcs.length === 1) { - return funcs[0]; - } - - return funcs.reduce(function (a, b) { - return function () { - return a(b.apply(undefined, arguments)); - }; - }); -} -// CONCATENATED MODULE: ./node_modules/redux/es/applyMiddleware.js -var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; - - - -/** - * Creates a store enhancer that applies middleware to the dispatch method - * of the Redux store. This is handy for a variety of tasks, such as expressing - * asynchronous actions in a concise manner, or logging every action payload. - * - * See `redux-thunk` package as an example of the Redux middleware. - * - * Because middleware is potentially asynchronous, this should be the first - * store enhancer in the composition chain. - * - * Note that each middleware will be given the `dispatch` and `getState` functions - * as named arguments. - * - * @param {...Function} middlewares The middleware chain to be applied. - * @returns {Function} A store enhancer applying the middleware. - */ -function applyMiddleware() { - for (var _len = arguments.length, middlewares = Array(_len), _key = 0; _key < _len; _key++) { - middlewares[_key] = arguments[_key]; - } - - return function (createStore) { - return function (reducer, preloadedState, enhancer) { - var store = createStore(reducer, preloadedState, enhancer); - var _dispatch = store.dispatch; - var chain = []; - - var middlewareAPI = { - getState: store.getState, - dispatch: function dispatch(action) { - return _dispatch(action); - } - }; - chain = middlewares.map(function (middleware) { - return middleware(middlewareAPI); - }); - _dispatch = compose.apply(undefined, chain)(store.dispatch); - - return _extends({}, store, { - dispatch: _dispatch - }); - }; - }; -} -// CONCATENATED MODULE: ./node_modules/redux/es/index.js -/* concated harmony reexport createStore */__webpack_require__.d(__webpack_exports__, "createStore", function() { return createStore_createStore; }); -/* concated harmony reexport combineReducers */__webpack_require__.d(__webpack_exports__, "combineReducers", function() { return combineReducers; }); -/* concated harmony reexport bindActionCreators */__webpack_require__.d(__webpack_exports__, "bindActionCreators", function() { return bindActionCreators; }); -/* concated harmony reexport applyMiddleware */__webpack_require__.d(__webpack_exports__, "applyMiddleware", function() { return applyMiddleware; }); -/* concated harmony reexport compose */__webpack_require__.d(__webpack_exports__, "compose", function() { return compose; }); - - - - - - - -/* -* This is a dummy function to check if the function name has been altered by minification. -* If the function has been minified and NODE_ENV !== 'production', warn the user. -*/ -function isCrushed() {} - -if (false) {} - - - -/***/ }), -/* 7 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return symbolObservablePonyfill; }); -function symbolObservablePonyfill(root) { - var result; - var Symbol = root.Symbol; - - if (typeof Symbol === 'function') { - if (Symbol.observable) { - result = Symbol.observable; - } else { - result = Symbol('observable'); - Symbol.observable = result; - } - } else { - result = '@@observable'; - } - - return result; -}; - - -/***/ }), -/* 8 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -/* WEBPACK VAR INJECTION */(function(global) {/** Detect free variable `global` from Node.js. */ -var freeGlobal = typeof global == 'object' && global && global.Object === Object && global; - -/* harmony default export */ __webpack_exports__["a"] = (freeGlobal); - -/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(3))) - -/***/ }), -/* 9 */ -/***/ (function(module, exports, __webpack_require__) { - -module.exports = __webpack_require__(10); - - -/***/ }), -/* 10 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -var _fuse = _interopRequireDefault(__webpack_require__(11)); - -var _deepmerge = _interopRequireDefault(__webpack_require__(12)); - -var _store = _interopRequireDefault(__webpack_require__(13)); - -var _components = __webpack_require__(20); - -var _constants = __webpack_require__(1); - -var _templates = __webpack_require__(5); - -var _choices = __webpack_require__(28); - -var _items = __webpack_require__(29); - -var _groups = __webpack_require__(30); - -var _misc = __webpack_require__(31); - -var _general = __webpack_require__(32); - -var _utils = __webpack_require__(0); - -function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } - -function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } - -/** - * Choices - * @author Josh Johnson - */ -var Choices = -/*#__PURE__*/ -function () { - function Choices() { - var element = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '[data-choice]'; - var userConfig = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - - _classCallCheck(this, Choices); - - if ((0, _utils.isType)('String', element)) { - var elements = Array.from(document.querySelectorAll(element)); // If there are multiple elements, create a new instance - // for each element besides the first one (as that already has an instance) - - if (elements.length > 1) { - return this._generateInstances(elements, userConfig); - } - } - - this.config = _deepmerge.default.all([_constants.DEFAULT_CONFIG, Choices.userDefaults, userConfig], // When merging array configs, replace with a copy of the userConfig array, - // instead of concatenating with the default array - { - arrayMerge: function arrayMerge(destinationArray, sourceArray) { - return [].concat(sourceArray); - } - }); - var invalidConfigOptions = (0, _utils.diff)(this.config, _constants.DEFAULT_CONFIG); - - if (invalidConfigOptions.length) { - console.warn('Unknown config option(s) passed', invalidConfigOptions.join(', ')); - } - - if (!['auto', 'always'].includes(this.config.renderSelectedChoices)) { - this.config.renderSelectedChoices = 'auto'; - } // Retrieve triggering element (i.e. element with 'data-choice' trigger) - - - var passedElement = (0, _utils.isType)('String', element) ? document.querySelector(element) : element; - - if (!passedElement) { - return console.error('Could not find passed element or passed element was of an invalid type'); - } - - this._isTextElement = passedElement.type === 'text'; - this._isSelectOneElement = passedElement.type === 'select-one'; - this._isSelectMultipleElement = passedElement.type === 'select-multiple'; - this._isSelectElement = this._isSelectOneElement || this._isSelectMultipleElement; - - if (this._isTextElement) { - this.passedElement = new _components.WrappedInput({ - element: passedElement, - classNames: this.config.classNames, - delimiter: this.config.delimiter - }); - } else if (this._isSelectElement) { - this.passedElement = new _components.WrappedSelect({ - element: passedElement, - classNames: this.config.classNames - }); - } - - if (!this.passedElement) { - return console.error('Passed element was of an invalid type'); - } - - if (this.config.shouldSortItems === true && this._isSelectOneElement && !this.config.silent) { - console.warn("shouldSortElements: Type of passed element is 'select-one', falling back to false."); - } - - this.initialised = false; - this._store = new _store.default(this.render); - this._initialState = {}; - this._currentState = {}; - this._prevState = {}; - this._currentValue = ''; - this._canSearch = this.config.searchEnabled; - this._isScrollingOnIe = false; - this._highlightPosition = 0; - this._wasTap = true; - this._placeholderValue = this._generatePlaceholderValue(); - this._baseId = (0, _utils.generateId)(this.passedElement.element, 'choices-'); - this._direction = this.passedElement.element.getAttribute('dir') || 'ltr'; - this._idNames = { - itemChoice: 'item-choice' - }; // Assign preset choices from passed object - - this._presetChoices = this.config.choices; // Assign preset items from passed object first - - this._presetItems = this.config.items; // Then add any values passed from attribute - - if (this.passedElement.value) { - this._presetItems = this._presetItems.concat(this.passedElement.value.split(this.config.delimiter)); - } - - this._render = this._render.bind(this); - this._onFocus = this._onFocus.bind(this); - this._onBlur = this._onBlur.bind(this); - this._onKeyUp = this._onKeyUp.bind(this); - this._onKeyDown = this._onKeyDown.bind(this); - this._onClick = this._onClick.bind(this); - this._onTouchMove = this._onTouchMove.bind(this); - this._onTouchEnd = this._onTouchEnd.bind(this); - this._onMouseDown = this._onMouseDown.bind(this); - this._onMouseOver = this._onMouseOver.bind(this); - this._onFormReset = this._onFormReset.bind(this); - this._onAKey = this._onAKey.bind(this); - this._onEnterKey = this._onEnterKey.bind(this); - this._onEscapeKey = this._onEscapeKey.bind(this); - this._onDirectionKey = this._onDirectionKey.bind(this); - this._onDeleteKey = this._onDeleteKey.bind(this); // If element has already been initialised with Choices, fail silently - - if (this.passedElement.element.getAttribute('data-choice') === 'active') { - console.warn('Trying to initialise Choices on element already initialised'); - } // Let's go - - - this.init(); - } - /* ======================================== - = Public functions = - ======================================== */ - - - _createClass(Choices, [{ - key: "init", - value: function init() { - if (this.initialised) { - return; - } - - this._createTemplates(); - - this._createElements(); - - this._createStructure(); // Set initial state (We need to clone the state because some reducers - // modify the inner objects properties in the state) 🤢 - - - this._initialState = (0, _utils.cloneObject)(this._store.state); - - this._store.subscribe(this._render); - - this._render(); - - this._addEventListeners(); - - var shouldDisable = !this.config.addItems || this.passedElement.element.hasAttribute('disabled'); - - if (shouldDisable) { - this.disable(); - } - - this.initialised = true; - var callbackOnInit = this.config.callbackOnInit; // Run callback if it is a function - - if (callbackOnInit && (0, _utils.isType)('Function', callbackOnInit)) { - callbackOnInit.call(this); - } - } - }, { - key: "destroy", - value: function destroy() { - if (!this.initialised) { - return; - } - - this._removeEventListeners(); - - this.passedElement.reveal(); - this.containerOuter.unwrap(this.passedElement.element); - - if (this._isSelectElement) { - this.passedElement.options = this._presetChoices; - } - - this.clearStore(); - this.config.templates = null; - this.initialised = false; - } - }, { - key: "enable", - value: function enable() { - if (this.passedElement.isDisabled) { - this.passedElement.enable(); - } - - if (this.containerOuter.isDisabled) { - this._addEventListeners(); - - this.input.enable(); - this.containerOuter.enable(); - } - - return this; - } - }, { - key: "disable", - value: function disable() { - if (!this.passedElement.isDisabled) { - this.passedElement.disable(); - } - - if (!this.containerOuter.isDisabled) { - this._removeEventListeners(); - - this.input.disable(); - this.containerOuter.disable(); - } - - return this; - } - }, { - key: "highlightItem", - value: function highlightItem(item) { - var runEvent = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; - - if (!item) { - return this; - } - - var id = item.id, - _item$groupId = item.groupId, - groupId = _item$groupId === void 0 ? -1 : _item$groupId, - _item$value = item.value, - value = _item$value === void 0 ? '' : _item$value, - _item$label = item.label, - label = _item$label === void 0 ? '' : _item$label; - var group = groupId >= 0 ? this._store.getGroupById(groupId) : null; - - this._store.dispatch((0, _items.highlightItem)(id, true)); - - if (runEvent) { - this.passedElement.triggerEvent(_constants.EVENTS.highlightItem, { - id: id, - value: value, - label: label, - groupValue: group && group.value ? group.value : null - }); - } - - return this; - } - }, { - key: "unhighlightItem", - value: function unhighlightItem(item) { - if (!item) { - return this; - } - - var id = item.id, - _item$groupId2 = item.groupId, - groupId = _item$groupId2 === void 0 ? -1 : _item$groupId2, - _item$value2 = item.value, - value = _item$value2 === void 0 ? '' : _item$value2, - _item$label2 = item.label, - label = _item$label2 === void 0 ? '' : _item$label2; - var group = groupId >= 0 ? this._store.getGroupById(groupId) : null; - - this._store.dispatch((0, _items.highlightItem)(id, false)); - - this.passedElement.triggerEvent(_constants.EVENTS.highlightItem, { - id: id, - value: value, - label: label, - groupValue: group && group.value ? group.value : null - }); - return this; - } - }, { - key: "highlightAll", - value: function highlightAll() { - var _this = this; - - this._store.items.forEach(function (item) { - return _this.highlightItem(item); - }); - - return this; - } - }, { - key: "unhighlightAll", - value: function unhighlightAll() { - var _this2 = this; - - this._store.items.forEach(function (item) { - return _this2.unhighlightItem(item); - }); - - return this; - } - }, { - key: "removeActiveItemsByValue", - value: function removeActiveItemsByValue(value) { - var _this3 = this; - - this._store.activeItems.filter(function (item) { - return item.value === value; - }).forEach(function (item) { - return _this3._removeItem(item); - }); - - return this; - } - }, { - key: "removeActiveItems", - value: function removeActiveItems(excludedId) { - var _this4 = this; - - this._store.activeItems.filter(function (_ref) { - var id = _ref.id; - return id !== excludedId; - }).forEach(function (item) { - return _this4._removeItem(item); - }); - - return this; - } - }, { - key: "removeHighlightedItems", - value: function removeHighlightedItems() { - var _this5 = this; - - var runEvent = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false; - - this._store.highlightedActiveItems.forEach(function (item) { - _this5._removeItem(item); // If this action was performed by the user - // trigger the event - - - if (runEvent) { - _this5._triggerChange(item.value); - } - }); - - return this; - } - }, { - key: "showDropdown", - value: function showDropdown(preventInputFocus) { - var _this6 = this; - - if (this.dropdown.isActive) { - return this; - } - - requestAnimationFrame(function () { - _this6.dropdown.show(); - - _this6.containerOuter.open(_this6.dropdown.distanceFromTopWindow()); - - if (!preventInputFocus && _this6._canSearch) { - _this6.input.focus(); - } - - _this6.passedElement.triggerEvent(_constants.EVENTS.showDropdown, {}); - }); - return this; - } - }, { - key: "hideDropdown", - value: function hideDropdown(preventInputBlur) { - var _this7 = this; - - if (!this.dropdown.isActive) { - return this; - } - - requestAnimationFrame(function () { - _this7.dropdown.hide(); - - _this7.containerOuter.close(); - - if (!preventInputBlur && _this7._canSearch) { - _this7.input.removeActiveDescendant(); - - _this7.input.blur(); - } - - _this7.passedElement.triggerEvent(_constants.EVENTS.hideDropdown, {}); - }); - return this; - } - }, { - key: "getValue", - value: function getValue() { - var valueOnly = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false; - - var values = this._store.activeItems.reduce(function (selectedItems, item) { - var itemValue = valueOnly ? item.value : item; - selectedItems.push(itemValue); - return selectedItems; - }, []); - - return this._isSelectOneElement ? values[0] : values; - } - }, { - key: "setValue", - value: function setValue(args) { - var _this8 = this; - - if (!this.initialised) { - return this; - } - - [].concat(args).forEach(function (value) { - return _this8._setChoiceOrItem(value); - }); - return this; - } - }, { - key: "setChoiceByValue", - value: function setChoiceByValue(value) { - var _this9 = this; - - if (!this.initialised || this._isTextElement) { - return this; - } // If only one value has been passed, convert to array - - - var choiceValue = (0, _utils.isType)('Array', value) ? value : [value]; // Loop through each value and - - choiceValue.forEach(function (val) { - return _this9._findAndSelectChoiceByValue(val); - }); - return this; - } - }, { - key: "setChoices", - value: function setChoices() { - var _this10 = this; - - var choices = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : []; - var value = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : ''; - var label = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : ''; - var replaceChoices = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false; - - if (!this._isSelectElement || !value) { - return this; - } // Clear choices if needed - - - if (replaceChoices) { - this.clearChoices(); - } - - this.containerOuter.removeLoadingState(); - - var addGroupsAndChoices = function addGroupsAndChoices(groupOrChoice) { - if (groupOrChoice.choices) { - _this10._addGroup({ - group: groupOrChoice, - id: groupOrChoice.id || null, - valueKey: value, - labelKey: label - }); - } else { - _this10._addChoice({ - value: groupOrChoice[value], - label: groupOrChoice[label], - isSelected: groupOrChoice.selected, - isDisabled: groupOrChoice.disabled, - customProperties: groupOrChoice.customProperties, - placeholder: groupOrChoice.placeholder - }); - } - }; - - this._setLoading(true); - - choices.forEach(addGroupsAndChoices); - - this._setLoading(false); - - return this; - } - }, { - key: "clearChoices", - value: function clearChoices() { - this._store.dispatch((0, _choices.clearChoices)()); - } - }, { - key: "clearStore", - value: function clearStore() { - this._store.dispatch((0, _misc.clearAll)()); - - return this; - } - }, { - key: "clearInput", - value: function clearInput() { - var shouldSetInputWidth = !this._isSelectOneElement; - this.input.clear(shouldSetInputWidth); - - if (!this._isTextElement && this._canSearch) { - this._isSearching = false; - - this._store.dispatch((0, _choices.activateChoices)(true)); - } - - return this; - } - }, { - key: "ajax", - value: function ajax(fn) { - var _this11 = this; - - if (!this.initialised || !this._isSelectElement || !fn) { - return this; - } - - requestAnimationFrame(function () { - return _this11._handleLoadingState(true); - }); - fn(this._ajaxCallback()); - return this; - } - /* ===== End of Public functions ====== */ - - /* ============================================= - = Private functions = - ============================================= */ - - }, { - key: "_render", - value: function _render() { - if (this._store.isLoading()) { - return; - } - - this._currentState = this._store.state; - var stateChanged = this._currentState.choices !== this._prevState.choices || this._currentState.groups !== this._prevState.groups || this._currentState.items !== this._prevState.items; - var shouldRenderChoices = this._isSelectElement; - var shouldRenderItems = this._currentState.items !== this._prevState.items; - - if (!stateChanged) { - return; - } - - if (shouldRenderChoices) { - this._renderChoices(); - } - - if (shouldRenderItems) { - this._renderItems(); - } - - this._prevState = this._currentState; - } - }, { - key: "_renderChoices", - value: function _renderChoices() { - var _this12 = this; - - var _this$_store = this._store, - activeGroups = _this$_store.activeGroups, - activeChoices = _this$_store.activeChoices; - var choiceListFragment = document.createDocumentFragment(); - this.choiceList.clear(); - - if (this.config.resetScrollPosition) { - requestAnimationFrame(function () { - return _this12.choiceList.scrollToTop(); - }); - } // If we have grouped options - - - if (activeGroups.length >= 1 && !this._isSearching) { - // If we have a placeholder choice along with groups - var activePlaceholders = activeChoices.filter(function (activeChoice) { - return activeChoice.placeholder === true && activeChoice.groupId === -1; - }); - - if (activePlaceholders.length >= 1) { - choiceListFragment = this._createChoicesFragment(activePlaceholders, choiceListFragment); - } - - choiceListFragment = this._createGroupsFragment(activeGroups, activeChoices, choiceListFragment); - } else if (activeChoices.length >= 1) { - choiceListFragment = this._createChoicesFragment(activeChoices, choiceListFragment); - } // If we have choices to show - - - if (choiceListFragment.childNodes && choiceListFragment.childNodes.length > 0) { - var activeItems = this._store.activeItems; - - var canAddItem = this._canAddItem(activeItems, this.input.value); // ...and we can select them - - - if (canAddItem.response) { - // ...append them and highlight the first choice - this.choiceList.append(choiceListFragment); - - this._highlightChoice(); - } else { - // ...otherwise show a notice - this.choiceList.append(this._getTemplate('notice', canAddItem.notice)); - } - } else { - // Otherwise show a notice - var dropdownItem; - var notice; - - if (this._isSearching) { - notice = (0, _utils.isType)('Function', this.config.noResultsText) ? this.config.noResultsText() : this.config.noResultsText; - dropdownItem = this._getTemplate('notice', notice, 'no-results'); - } else { - notice = (0, _utils.isType)('Function', this.config.noChoicesText) ? this.config.noChoicesText() : this.config.noChoicesText; - dropdownItem = this._getTemplate('notice', notice, 'no-choices'); - } - - this.choiceList.append(dropdownItem); - } - } - }, { - key: "_renderItems", - value: function _renderItems() { - var activeItems = this._store.activeItems || []; - this.itemList.clear(); // Create a fragment to store our list items - // (so we don't have to update the DOM for each item) - - var itemListFragment = this._createItemsFragment(activeItems); // If we have items to add, append them - - - if (itemListFragment.childNodes) { - this.itemList.append(itemListFragment); - } - } - }, { - key: "_createGroupsFragment", - value: function _createGroupsFragment(groups, choices, fragment) { - var _this13 = this; - - var groupFragment = fragment || document.createDocumentFragment(); - - var getGroupChoices = function getGroupChoices(group) { - return choices.filter(function (choice) { - if (_this13._isSelectOneElement) { - return choice.groupId === group.id; - } - - return choice.groupId === group.id && (_this13.config.renderSelectedChoices === 'always' || !choice.selected); - }); - }; // If sorting is enabled, filter groups - - - if (this.config.shouldSort) { - groups.sort(this.config.sortFn); - } - - groups.forEach(function (group) { - var groupChoices = getGroupChoices(group); - - if (groupChoices.length >= 1) { - var dropdownGroup = _this13._getTemplate('choiceGroup', group); - - groupFragment.appendChild(dropdownGroup); - - _this13._createChoicesFragment(groupChoices, groupFragment, true); - } - }); - return groupFragment; - } - }, { - key: "_createChoicesFragment", - value: function _createChoicesFragment(choices, fragment) { - var _this14 = this; - - var withinGroup = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false; - // Create a fragment to store our list items (so we don't have to update the DOM for each item) - var choicesFragment = fragment || document.createDocumentFragment(); - var _this$config = this.config, - renderSelectedChoices = _this$config.renderSelectedChoices, - searchResultLimit = _this$config.searchResultLimit, - renderChoiceLimit = _this$config.renderChoiceLimit; - var filter = this._isSearching ? _utils.sortByScore : this.config.sortFn; - - var appendChoice = function appendChoice(choice) { - var shouldRender = renderSelectedChoices === 'auto' ? _this14._isSelectOneElement || !choice.selected : true; - - if (shouldRender) { - var dropdownItem = _this14._getTemplate('choice', choice, _this14.config.itemSelectText); - - choicesFragment.appendChild(dropdownItem); - } - }; - - var rendererableChoices = choices; - - if (renderSelectedChoices === 'auto' && !this._isSelectOneElement) { - rendererableChoices = choices.filter(function (choice) { - return !choice.selected; - }); - } // Split array into placeholders and "normal" choices - - - var _rendererableChoices$ = rendererableChoices.reduce(function (acc, choice) { - if (choice.placeholder) { - acc.placeholderChoices.push(choice); - } else { - acc.normalChoices.push(choice); - } - - return acc; - }, { - placeholderChoices: [], - normalChoices: [] - }), - placeholderChoices = _rendererableChoices$.placeholderChoices, - normalChoices = _rendererableChoices$.normalChoices; // If sorting is enabled or the user is searching, filter choices - - - if (this.config.shouldSort || this._isSearching) { - normalChoices.sort(filter); - } - - var choiceLimit = rendererableChoices.length; // Prepend placeholeder - - var sortedChoices = [].concat(placeholderChoices, normalChoices); - - if (this._isSearching) { - choiceLimit = searchResultLimit; - } else if (renderChoiceLimit > 0 && !withinGroup) { - choiceLimit = renderChoiceLimit; - } // Add each choice to dropdown within range - - - for (var i = 0; i < choiceLimit; i += 1) { - if (sortedChoices[i]) { - appendChoice(sortedChoices[i]); - } - } - - return choicesFragment; - } - }, { - key: "_createItemsFragment", - value: function _createItemsFragment(items) { - var _this15 = this; - - var fragment = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; - // Create fragment to add elements to - var _this$config2 = this.config, - shouldSortItems = _this$config2.shouldSortItems, - sortFn = _this$config2.sortFn, - removeItemButton = _this$config2.removeItemButton; - var itemListFragment = fragment || document.createDocumentFragment(); // If sorting is enabled, filter items - - if (shouldSortItems && !this._isSelectOneElement) { - items.sort(sortFn); - } - - if (this._isTextElement) { - // Update the value of the hidden input - this.passedElement.value = items; - } else { - // Update the options of the hidden input - this.passedElement.options = items; - } - - var addItemToFragment = function addItemToFragment(item) { - // Create new list element - var listItem = _this15._getTemplate('item', item, removeItemButton); // Append it to list - - - itemListFragment.appendChild(listItem); - }; // Add each list item to list - - - items.forEach(function (item) { - return addItemToFragment(item); - }); - return itemListFragment; - } - }, { - key: "_triggerChange", - value: function _triggerChange(value) { - if (value === undefined || value === null) { - return; - } - - this.passedElement.triggerEvent(_constants.EVENTS.change, { - value: value - }); - } - }, { - key: "_selectPlaceholderChoice", - value: function _selectPlaceholderChoice() { - var placeholderChoice = this._store.placeholderChoice; - - if (placeholderChoice) { - this._addItem({ - value: placeholderChoice.value, - label: placeholderChoice.label, - choiceId: placeholderChoice.id, - groupId: placeholderChoice.groupId, - placeholder: placeholderChoice.placeholder - }); - - this._triggerChange(placeholderChoice.value); - } - } - }, { - key: "_handleButtonAction", - value: function _handleButtonAction(activeItems, element) { - if (!activeItems || !element || !this.config.removeItems || !this.config.removeItemButton) { - return; - } - - var itemId = element.parentNode.getAttribute('data-id'); - var itemToRemove = activeItems.find(function (item) { - return item.id === parseInt(itemId, 10); - }); // Remove item associated with button - - this._removeItem(itemToRemove); - - this._triggerChange(itemToRemove.value); - - if (this._isSelectOneElement) { - this._selectPlaceholderChoice(); - } - } - }, { - key: "_handleItemAction", - value: function _handleItemAction(activeItems, element) { - var _this16 = this; - - var hasShiftKey = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false; - - if (!activeItems || !element || !this.config.removeItems || this._isSelectOneElement) { - return; - } - - var passedId = element.getAttribute('data-id'); // We only want to select one item with a click - // so we deselect any items that aren't the target - // unless shift is being pressed - - activeItems.forEach(function (item) { - if (item.id === parseInt(passedId, 10) && !item.highlighted) { - _this16.highlightItem(item); - } else if (!hasShiftKey && item.highlighted) { - _this16.unhighlightItem(item); - } - }); // Focus input as without focus, a user cannot do anything with a - // highlighted item - - this.input.focus(); - } - }, { - key: "_handleChoiceAction", - value: function _handleChoiceAction(activeItems, element) { - if (!activeItems || !element) { - return; - } // If we are clicking on an option - - - var id = element.getAttribute('data-id'); - - var choice = this._store.getChoiceById(id); - - var passedKeyCode = activeItems[0] && activeItems[0].keyCode ? activeItems[0].keyCode : null; - var hasActiveDropdown = this.dropdown.isActive; // Update choice keyCode - - choice.keyCode = passedKeyCode; - this.passedElement.triggerEvent(_constants.EVENTS.choice, { - choice: choice - }); - - if (choice && !choice.selected && !choice.disabled) { - var canAddItem = this._canAddItem(activeItems, choice.value); - - if (canAddItem.response) { - this._addItem({ - value: choice.value, - label: choice.label, - choiceId: choice.id, - groupId: choice.groupId, - customProperties: choice.customProperties, - placeholder: choice.placeholder, - keyCode: choice.keyCode - }); - - this._triggerChange(choice.value); - } - } - - this.clearInput(); // We wont to close the dropdown if we are dealing with a single select box - - if (hasActiveDropdown && this._isSelectOneElement) { - this.hideDropdown(true); - this.containerOuter.focus(); - } - } - }, { - key: "_handleBackspace", - value: function _handleBackspace(activeItems) { - if (!this.config.removeItems || !activeItems) { - return; - } - - var lastItem = activeItems[activeItems.length - 1]; - var hasHighlightedItems = activeItems.some(function (item) { - return item.highlighted; - }); // If editing the last item is allowed and there are not other selected items, - // we can edit the item value. Otherwise if we can remove items, remove all selected items - - if (this.config.editItems && !hasHighlightedItems && lastItem) { - this.input.value = lastItem.value; - this.input.setWidth(); - - this._removeItem(lastItem); - - this._triggerChange(lastItem.value); - } else { - if (!hasHighlightedItems) { - // Highlight last item if none already highlighted - this.highlightItem(lastItem, false); - } - - this.removeHighlightedItems(true); - } - } - }, { - key: "_setLoading", - value: function _setLoading(isLoading) { - this._store.dispatch((0, _general.setIsLoading)(isLoading)); - } - }, { - key: "_handleLoadingState", - value: function _handleLoadingState() { - var setLoading = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true; - var placeholderItem = this.itemList.getChild(".".concat(this.config.classNames.placeholder)); - - if (setLoading) { - this.disable(); - this.containerOuter.addLoadingState(); - - if (this._isSelectOneElement) { - if (!placeholderItem) { - placeholderItem = this._getTemplate('placeholder', this.config.loadingText); - this.itemList.append(placeholderItem); - } else { - placeholderItem.innerHTML = this.config.loadingText; - } - } else { - this.input.placeholder = this.config.loadingText; - } - } else { - this.enable(); - this.containerOuter.removeLoadingState(); - - if (this._isSelectOneElement) { - placeholderItem.innerHTML = this._placeholderValue || ''; - } else { - this.input.placeholder = this._placeholderValue || ''; - } - } - } - }, { - key: "_handleSearch", - value: function _handleSearch(value) { - if (!value || !this.input.isFocussed) { - return; - } - - var choices = this._store.choices; - var _this$config3 = this.config, - searchFloor = _this$config3.searchFloor, - searchChoices = _this$config3.searchChoices; - var hasUnactiveChoices = choices.some(function (option) { - return !option.active; - }); // Check that we have a value to search and the input was an alphanumeric character - - if (value && value.length >= searchFloor) { - var resultCount = searchChoices ? this._searchChoices(value) : 0; // Trigger search event - - this.passedElement.triggerEvent(_constants.EVENTS.search, { - value: value, - resultCount: resultCount - }); - } else if (hasUnactiveChoices) { - // Otherwise reset choices to active - this._isSearching = false; - - this._store.dispatch((0, _choices.activateChoices)(true)); - } - } - }, { - key: "_canAddItem", - value: function _canAddItem(activeItems, value) { - var canAddItem = true; - var notice = (0, _utils.isType)('Function', this.config.addItemText) ? this.config.addItemText(value) : this.config.addItemText; - - if (!this._isSelectOneElement) { - var isDuplicateValue = (0, _utils.existsInArray)(activeItems, value); - - if (this.config.maxItemCount > 0 && this.config.maxItemCount <= activeItems.length) { - // If there is a max entry limit and we have reached that limit - // don't update - canAddItem = false; - notice = (0, _utils.isType)('Function', this.config.maxItemText) ? this.config.maxItemText(this.config.maxItemCount) : this.config.maxItemText; - } - - if (!this.config.duplicateItemsAllowed && isDuplicateValue && canAddItem) { - canAddItem = false; - notice = (0, _utils.isType)('Function', this.config.uniqueItemText) ? this.config.uniqueItemText(value) : this.config.uniqueItemText; - } - - if (this._isTextElement && this.config.addItems && canAddItem && (0, _utils.isType)('Function', this.config.addItemFilterFn) && !this.config.addItemFilterFn(value)) { - canAddItem = false; - notice = (0, _utils.isType)('Function', this.config.customAddItemText) ? this.config.customAddItemText(value) : this.config.customAddItemText; - } - } - - return { - response: canAddItem, - notice: notice - }; - } - }, { - key: "_ajaxCallback", - value: function _ajaxCallback() { - var _this17 = this; - - return function (results, value, label) { - if (!results || !value) { - return; - } - - var parsedResults = (0, _utils.isType)('Object', results) ? [results] : results; - - if (parsedResults && (0, _utils.isType)('Array', parsedResults) && parsedResults.length) { - // Remove loading states/text - _this17._handleLoadingState(false); - - _this17._setLoading(true); // Add each result as a choice - - - parsedResults.forEach(function (result) { - if (result.choices) { - _this17._addGroup({ - group: result, - id: result.id || null, - valueKey: value, - labelKey: label - }); - } else { - _this17._addChoice({ - value: (0, _utils.fetchFromObject)(result, value), - label: (0, _utils.fetchFromObject)(result, label), - isSelected: result.selected, - isDisabled: result.disabled, - customProperties: result.customProperties, - placeholder: result.placeholder - }); - } - }); - - _this17._setLoading(false); - - if (_this17._isSelectOneElement) { - _this17._selectPlaceholderChoice(); - } - } else { - // No results, remove loading state - _this17._handleLoadingState(false); - } - }; - } - }, { - key: "_searchChoices", - value: function _searchChoices(value) { - var newValue = (0, _utils.isType)('String', value) ? value.trim() : value; - var currentValue = (0, _utils.isType)('String', this._currentValue) ? this._currentValue.trim() : this._currentValue; - - if (newValue.length < 1 && newValue === "".concat(currentValue, " ")) { - return 0; - } // If new value matches the desired length and is not the same as the current value with a space - - - var haystack = this._store.searchableChoices; - var needle = newValue; - var keys = [].concat(this.config.searchFields); - var options = Object.assign(this.config.fuseOptions, { - keys: keys - }); - var fuse = new _fuse.default(haystack, options); - var results = fuse.search(needle); - this._currentValue = newValue; - this._highlightPosition = 0; - this._isSearching = true; - - this._store.dispatch((0, _choices.filterChoices)(results)); - - return results.length; - } - }, { - key: "_addEventListeners", - value: function _addEventListeners() { - document.addEventListener('keyup', this._onKeyUp); - document.addEventListener('keydown', this._onKeyDown); - document.addEventListener('click', this._onClick); - document.addEventListener('touchmove', this._onTouchMove); - document.addEventListener('touchend', this._onTouchEnd); - document.addEventListener('mousedown', this._onMouseDown); - document.addEventListener('mouseover', this._onMouseOver); - - if (this._isSelectOneElement) { - this.containerOuter.element.addEventListener('focus', this._onFocus); - this.containerOuter.element.addEventListener('blur', this._onBlur); - } - - this.input.element.addEventListener('focus', this._onFocus); - this.input.element.addEventListener('blur', this._onBlur); - - if (this.input.element.form) { - this.input.element.form.addEventListener('reset', this._onFormReset); - } - - this.input.addEventListeners(); - } - }, { - key: "_removeEventListeners", - value: function _removeEventListeners() { - document.removeEventListener('keyup', this._onKeyUp); - document.removeEventListener('keydown', this._onKeyDown); - document.removeEventListener('click', this._onClick); - document.removeEventListener('touchmove', this._onTouchMove); - document.removeEventListener('touchend', this._onTouchEnd); - document.removeEventListener('mousedown', this._onMouseDown); - document.removeEventListener('mouseover', this._onMouseOver); - - if (this._isSelectOneElement) { - this.containerOuter.element.removeEventListener('focus', this._onFocus); - this.containerOuter.element.removeEventListener('blur', this._onBlur); - } - - this.input.element.removeEventListener('focus', this._onFocus); - this.input.element.removeEventListener('blur', this._onBlur); - - if (this.input.element.form) { - this.input.element.form.removeEventListener('reset', this._onFormReset); - } - - this.input.removeEventListeners(); - } - }, { - key: "_onKeyDown", - value: function _onKeyDown(event) { - var _keyDownActions; - - var target = event.target, - keyCode = event.keyCode, - ctrlKey = event.ctrlKey, - metaKey = event.metaKey; - - if (target !== this.input.element && !this.containerOuter.element.contains(target)) { - return; - } - - var activeItems = this._store.activeItems; - var hasFocusedInput = this.input.isFocussed; - var hasActiveDropdown = this.dropdown.isActive; - var hasItems = this.itemList.hasChildren; - var keyString = String.fromCharCode(keyCode); - var BACK_KEY = _constants.KEY_CODES.BACK_KEY, - DELETE_KEY = _constants.KEY_CODES.DELETE_KEY, - ENTER_KEY = _constants.KEY_CODES.ENTER_KEY, - A_KEY = _constants.KEY_CODES.A_KEY, - ESC_KEY = _constants.KEY_CODES.ESC_KEY, - UP_KEY = _constants.KEY_CODES.UP_KEY, - DOWN_KEY = _constants.KEY_CODES.DOWN_KEY, - PAGE_UP_KEY = _constants.KEY_CODES.PAGE_UP_KEY, - PAGE_DOWN_KEY = _constants.KEY_CODES.PAGE_DOWN_KEY; - var hasCtrlDownKeyPressed = ctrlKey || metaKey; // If a user is typing and the dropdown is not active - - if (!this._isTextElement && /[a-zA-Z0-9-_ ]/.test(keyString)) { - this.showDropdown(); - } // Map keys to key actions - - - var keyDownActions = (_keyDownActions = {}, _defineProperty(_keyDownActions, A_KEY, this._onAKey), _defineProperty(_keyDownActions, ENTER_KEY, this._onEnterKey), _defineProperty(_keyDownActions, ESC_KEY, this._onEscapeKey), _defineProperty(_keyDownActions, UP_KEY, this._onDirectionKey), _defineProperty(_keyDownActions, PAGE_UP_KEY, this._onDirectionKey), _defineProperty(_keyDownActions, DOWN_KEY, this._onDirectionKey), _defineProperty(_keyDownActions, PAGE_DOWN_KEY, this._onDirectionKey), _defineProperty(_keyDownActions, DELETE_KEY, this._onDeleteKey), _defineProperty(_keyDownActions, BACK_KEY, this._onDeleteKey), _keyDownActions); // If keycode has a function, run it - - if (keyDownActions[keyCode]) { - keyDownActions[keyCode]({ - event: event, - target: target, - keyCode: keyCode, - metaKey: metaKey, - activeItems: activeItems, - hasFocusedInput: hasFocusedInput, - hasActiveDropdown: hasActiveDropdown, - hasItems: hasItems, - hasCtrlDownKeyPressed: hasCtrlDownKeyPressed - }); - } - } - }, { - key: "_onKeyUp", - value: function _onKeyUp(_ref2) { - var target = _ref2.target, - keyCode = _ref2.keyCode; - - if (target !== this.input.element) { - return; - } - - var value = this.input.value; - var activeItems = this._store.activeItems; - - var canAddItem = this._canAddItem(activeItems, value); - - var backKey = _constants.KEY_CODES.BACK_KEY, - deleteKey = _constants.KEY_CODES.DELETE_KEY; // We are typing into a text input and have a value, we want to show a dropdown - // notice. Otherwise hide the dropdown - - if (this._isTextElement) { - var canShowDropdownNotice = canAddItem.notice && value; - - if (canShowDropdownNotice) { - var dropdownItem = this._getTemplate('notice', canAddItem.notice); - - this.dropdown.element.innerHTML = dropdownItem.outerHTML; - this.showDropdown(true); - } else { - this.hideDropdown(true); - } - } else { - var userHasRemovedValue = (keyCode === backKey || keyCode === deleteKey) && !target.value; - var canReactivateChoices = !this._isTextElement && this._isSearching; - var canSearch = this._canSearch && canAddItem.response; - - if (userHasRemovedValue && canReactivateChoices) { - this._isSearching = false; - - this._store.dispatch((0, _choices.activateChoices)(true)); - } else if (canSearch) { - this._handleSearch(this.input.value); - } - } - - this._canSearch = this.config.searchEnabled; - } - }, { - key: "_onAKey", - value: function _onAKey(_ref3) { - var hasItems = _ref3.hasItems, - hasCtrlDownKeyPressed = _ref3.hasCtrlDownKeyPressed; - - // If CTRL + A or CMD + A have been pressed and there are items to select - if (hasCtrlDownKeyPressed && hasItems) { - this._canSearch = false; - var shouldHightlightAll = this.config.removeItems && !this.input.value && this.input.element === document.activeElement; - - if (shouldHightlightAll) { - this.highlightAll(); - } - } - } - }, { - key: "_onEnterKey", - value: function _onEnterKey(_ref4) { - var event = _ref4.event, - target = _ref4.target, - activeItems = _ref4.activeItems, - hasActiveDropdown = _ref4.hasActiveDropdown; - var enterKey = _constants.KEY_CODES.ENTER_KEY; - var targetWasButton = target.hasAttribute('data-button'); - - if (this._isTextElement && target.value) { - var value = this.input.value; - - var canAddItem = this._canAddItem(activeItems, value); - - if (canAddItem.response) { - this.hideDropdown(true); - - this._addItem({ - value: value - }); - - this._triggerChange(value); - - this.clearInput(); - } - } - - if (targetWasButton) { - this._handleButtonAction(activeItems, target); - - event.preventDefault(); - } - - if (hasActiveDropdown) { - var highlightedChoice = this.dropdown.getChild(".".concat(this.config.classNames.highlightedState)); - - if (highlightedChoice) { - // add enter keyCode value - if (activeItems[0]) { - activeItems[0].keyCode = enterKey; // eslint-disable-line no-param-reassign - } - - this._handleChoiceAction(activeItems, highlightedChoice); - } - - event.preventDefault(); - } else if (this._isSelectOneElement) { - this.showDropdown(); - event.preventDefault(); - } - } - }, { - key: "_onEscapeKey", - value: function _onEscapeKey(_ref5) { - var hasActiveDropdown = _ref5.hasActiveDropdown; - - if (hasActiveDropdown) { - this.hideDropdown(true); - this.containerOuter.focus(); - } - } - }, { - key: "_onDirectionKey", - value: function _onDirectionKey(_ref6) { - var event = _ref6.event, - hasActiveDropdown = _ref6.hasActiveDropdown, - keyCode = _ref6.keyCode, - metaKey = _ref6.metaKey; - var downKey = _constants.KEY_CODES.DOWN_KEY, - pageUpKey = _constants.KEY_CODES.PAGE_UP_KEY, - pageDownKey = _constants.KEY_CODES.PAGE_DOWN_KEY; // If up or down key is pressed, traverse through options - - if (hasActiveDropdown || this._isSelectOneElement) { - this.showDropdown(); - this._canSearch = false; - var directionInt = keyCode === downKey || keyCode === pageDownKey ? 1 : -1; - var skipKey = metaKey || keyCode === pageDownKey || keyCode === pageUpKey; - var selectableChoiceIdentifier = '[data-choice-selectable]'; - var nextEl; - - if (skipKey) { - if (directionInt > 0) { - nextEl = Array.from(this.dropdown.element.querySelectorAll(selectableChoiceIdentifier)).pop(); - } else { - nextEl = this.dropdown.element.querySelector(selectableChoiceIdentifier); - } - } else { - var currentEl = this.dropdown.element.querySelector(".".concat(this.config.classNames.highlightedState)); - - if (currentEl) { - nextEl = (0, _utils.getAdjacentEl)(currentEl, selectableChoiceIdentifier, directionInt); - } else { - nextEl = this.dropdown.element.querySelector(selectableChoiceIdentifier); - } - } - - if (nextEl) { - // We prevent default to stop the cursor moving - // when pressing the arrow - if (!(0, _utils.isScrolledIntoView)(nextEl, this.choiceList.element, directionInt)) { - this.choiceList.scrollToChoice(nextEl, directionInt); - } - - this._highlightChoice(nextEl); - } // Prevent default to maintain cursor position whilst - // traversing dropdown options - - - event.preventDefault(); - } - } - }, { - key: "_onDeleteKey", - value: function _onDeleteKey(_ref7) { - var event = _ref7.event, - target = _ref7.target, - hasFocusedInput = _ref7.hasFocusedInput, - activeItems = _ref7.activeItems; - - // If backspace or delete key is pressed and the input has no value - if (hasFocusedInput && !target.value && !this._isSelectOneElement) { - this._handleBackspace(activeItems); - - event.preventDefault(); - } - } - }, { - key: "_onTouchMove", - value: function _onTouchMove() { - if (this._wasTap) { - this._wasTap = false; - } - } - }, { - key: "_onTouchEnd", - value: function _onTouchEnd(event) { - var _ref8 = event || event.touches[0], - target = _ref8.target; - - var touchWasWithinContainer = this._wasTap && this.containerOuter.element.contains(target); - - if (touchWasWithinContainer) { - var containerWasExactTarget = target === this.containerOuter.element || target === this.containerInner.element; - - if (containerWasExactTarget) { - if (this._isTextElement) { - this.input.focus(); - } else if (this._isSelectMultipleElement) { - this.showDropdown(); - } - } // Prevents focus event firing - - - event.stopPropagation(); - } - - this._wasTap = true; - } - }, { - key: "_onMouseDown", - value: function _onMouseDown(event) { - var target = event.target, - shiftKey = event.shiftKey; // If we have our mouse down on the scrollbar and are on IE11... - - if (this.choiceList.element.contains(target) && (0, _utils.isIE11)()) { - this._isScrollingOnIe = true; - } - - if (!this.containerOuter.element.contains(target) || target === this.input.element) { - return; - } - - var activeItems = this._store.activeItems; - var hasShiftKey = shiftKey; - var buttonTarget = (0, _utils.findAncestorByAttrName)(target, 'data-button'); - var itemTarget = (0, _utils.findAncestorByAttrName)(target, 'data-item'); - var choiceTarget = (0, _utils.findAncestorByAttrName)(target, 'data-choice'); - - if (buttonTarget) { - this._handleButtonAction(activeItems, buttonTarget); - } else if (itemTarget) { - this._handleItemAction(activeItems, itemTarget, hasShiftKey); - } else if (choiceTarget) { - this._handleChoiceAction(activeItems, choiceTarget); - } - - event.preventDefault(); - } - }, { - key: "_onMouseOver", - value: function _onMouseOver(_ref9) { - var target = _ref9.target; - var targetWithinDropdown = target === this.dropdown || this.dropdown.element.contains(target); - var shouldHighlightChoice = targetWithinDropdown && target.hasAttribute('data-choice'); - - if (shouldHighlightChoice) { - this._highlightChoice(target); - } - } - }, { - key: "_onClick", - value: function _onClick(_ref10) { - var target = _ref10.target; - var clickWasWithinContainer = this.containerOuter.element.contains(target); - - if (clickWasWithinContainer) { - if (!this.dropdown.isActive && !this.containerOuter.isDisabled) { - if (this._isTextElement) { - if (document.activeElement !== this.input.element) { - this.input.focus(); - } - } else { - this.showDropdown(); - this.containerOuter.focus(); - } - } else if (this._isSelectOneElement && target !== this.input.element && !this.dropdown.element.contains(target)) { - this.hideDropdown(); - } - } else { - var hasHighlightedItems = this._store.highlightedActiveItems; - - if (hasHighlightedItems) { - this.unhighlightAll(); - } - - this.containerOuter.removeFocusState(); - this.hideDropdown(true); - } - } - }, { - key: "_onFocus", - value: function _onFocus(_ref11) { - var _this18 = this; - - var target = _ref11.target; - var focusWasWithinContainer = this.containerOuter.element.contains(target); - - if (!focusWasWithinContainer) { - return; - } - - var focusActions = { - text: function text() { - if (target === _this18.input.element) { - _this18.containerOuter.addFocusState(); - } - }, - 'select-one': function selectOne() { - _this18.containerOuter.addFocusState(); - - if (target === _this18.input.element) { - _this18.showDropdown(true); - } - }, - 'select-multiple': function selectMultiple() { - if (target === _this18.input.element) { - _this18.showDropdown(true); // If element is a select box, the focused element is the container and the dropdown - // isn't already open, focus and show dropdown - - - _this18.containerOuter.addFocusState(); - } - } - }; - focusActions[this.passedElement.element.type](); - } - }, { - key: "_onBlur", - value: function _onBlur(_ref12) { - var _this19 = this; - - var target = _ref12.target; - var blurWasWithinContainer = this.containerOuter.element.contains(target); - - if (blurWasWithinContainer && !this._isScrollingOnIe) { - var activeItems = this._store.activeItems; - var hasHighlightedItems = activeItems.some(function (item) { - return item.highlighted; - }); - var blurActions = { - text: function text() { - if (target === _this19.input.element) { - _this19.containerOuter.removeFocusState(); - - if (hasHighlightedItems) { - _this19.unhighlightAll(); - } - - _this19.hideDropdown(true); - } - }, - 'select-one': function selectOne() { - _this19.containerOuter.removeFocusState(); - - if (target === _this19.input.element || target === _this19.containerOuter.element && !_this19._canSearch) { - _this19.hideDropdown(true); - } - }, - 'select-multiple': function selectMultiple() { - if (target === _this19.input.element) { - _this19.containerOuter.removeFocusState(); - - _this19.hideDropdown(true); - - if (hasHighlightedItems) { - _this19.unhighlightAll(); - } - } - } - }; - blurActions[this.passedElement.element.type](); - } else { - // On IE11, clicking the scollbar blurs our input and thus - // closes the dropdown. To stop this, we refocus our input - // if we know we are on IE *and* are scrolling. - this._isScrollingOnIe = false; - this.input.element.focus(); - } - } - }, { - key: "_onFormReset", - value: function _onFormReset() { - this._store.dispatch((0, _misc.resetTo)(this._initialState)); - } - }, { - key: "_highlightChoice", - value: function _highlightChoice() { - var _this20 = this; - - var el = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null; - var choices = Array.from(this.dropdown.element.querySelectorAll('[data-choice-selectable]')); - - if (!choices.length) { - return; - } - - var passedEl = el; - var highlightedChoices = Array.from(this.dropdown.element.querySelectorAll(".".concat(this.config.classNames.highlightedState))); // Remove any highlighted choices - - highlightedChoices.forEach(function (choice) { - choice.classList.remove(_this20.config.classNames.highlightedState); - choice.setAttribute('aria-selected', 'false'); - }); - - if (passedEl) { - this._highlightPosition = choices.indexOf(passedEl); - } else { - // Highlight choice based on last known highlight location - if (choices.length > this._highlightPosition) { - // If we have an option to highlight - passedEl = choices[this._highlightPosition]; - } else { - // Otherwise highlight the option before - passedEl = choices[choices.length - 1]; - } - - if (!passedEl) { - passedEl = choices[0]; - } - } - - passedEl.classList.add(this.config.classNames.highlightedState); - passedEl.setAttribute('aria-selected', 'true'); - this.passedElement.triggerEvent(_constants.EVENTS.highlightChoice, { - el: passedEl - }); - - if (this.dropdown.isActive) { - // IE11 ignores aria-label and blocks virtual keyboard - // if aria-activedescendant is set without a dropdown - this.input.setActiveDescendant(passedEl.id); - this.containerOuter.setActiveDescendant(passedEl.id); - } - } - }, { - key: "_addItem", - value: function _addItem(_ref13) { - var value = _ref13.value, - _ref13$label = _ref13.label, - label = _ref13$label === void 0 ? null : _ref13$label, - _ref13$choiceId = _ref13.choiceId, - choiceId = _ref13$choiceId === void 0 ? -1 : _ref13$choiceId, - _ref13$groupId = _ref13.groupId, - groupId = _ref13$groupId === void 0 ? -1 : _ref13$groupId, - _ref13$customProperti = _ref13.customProperties, - customProperties = _ref13$customProperti === void 0 ? null : _ref13$customProperti, - _ref13$placeholder = _ref13.placeholder, - placeholder = _ref13$placeholder === void 0 ? false : _ref13$placeholder, - _ref13$keyCode = _ref13.keyCode, - keyCode = _ref13$keyCode === void 0 ? null : _ref13$keyCode; - var passedValue = (0, _utils.isType)('String', value) ? value.trim() : value; - var passedKeyCode = keyCode; - var passedCustomProperties = customProperties; - var items = this._store.items; - var passedLabel = label || passedValue; - var passedOptionId = parseInt(choiceId, 10) || -1; - var group = groupId >= 0 ? this._store.getGroupById(groupId) : null; - var id = items ? items.length + 1 : 1; // If a prepended value has been passed, prepend it - - if (this.config.prependValue) { - passedValue = this.config.prependValue + passedValue.toString(); - } // If an appended value has been passed, append it - - - if (this.config.appendValue) { - passedValue += this.config.appendValue.toString(); - } - - this._store.dispatch((0, _items.addItem)({ - value: passedValue, - label: passedLabel, - id: id, - choiceId: passedOptionId, - groupId: groupId, - customProperties: customProperties, - placeholder: placeholder, - keyCode: passedKeyCode - })); - - if (this._isSelectOneElement) { - this.removeActiveItems(id); - } // Trigger change event - - - this.passedElement.triggerEvent(_constants.EVENTS.addItem, { - id: id, - value: passedValue, - label: passedLabel, - customProperties: passedCustomProperties, - groupValue: group && group.value ? group.value : undefined, - keyCode: passedKeyCode - }); - return this; - } - }, { - key: "_removeItem", - value: function _removeItem(item) { - if (!item || !(0, _utils.isType)('Object', item)) { - return this; - } - - var id = item.id, - value = item.value, - label = item.label, - choiceId = item.choiceId, - groupId = item.groupId; - var group = groupId >= 0 ? this._store.getGroupById(groupId) : null; - - this._store.dispatch((0, _items.removeItem)(id, choiceId)); - - if (group && group.value) { - this.passedElement.triggerEvent(_constants.EVENTS.removeItem, { - id: id, - value: value, - label: label, - groupValue: group.value - }); - } else { - this.passedElement.triggerEvent(_constants.EVENTS.removeItem, { - id: id, - value: value, - label: label - }); - } - - return this; - } - }, { - key: "_addChoice", - value: function _addChoice(_ref14) { - var value = _ref14.value, - _ref14$label = _ref14.label, - label = _ref14$label === void 0 ? null : _ref14$label, - _ref14$isSelected = _ref14.isSelected, - isSelected = _ref14$isSelected === void 0 ? false : _ref14$isSelected, - _ref14$isDisabled = _ref14.isDisabled, - isDisabled = _ref14$isDisabled === void 0 ? false : _ref14$isDisabled, - _ref14$groupId = _ref14.groupId, - groupId = _ref14$groupId === void 0 ? -1 : _ref14$groupId, - _ref14$customProperti = _ref14.customProperties, - customProperties = _ref14$customProperti === void 0 ? null : _ref14$customProperti, - _ref14$placeholder = _ref14.placeholder, - placeholder = _ref14$placeholder === void 0 ? false : _ref14$placeholder, - _ref14$keyCode = _ref14.keyCode, - keyCode = _ref14$keyCode === void 0 ? null : _ref14$keyCode; - - if (typeof value === 'undefined' || value === null) { - return; - } // Generate unique id - - - var choices = this._store.choices; - var choiceLabel = label || value; - var choiceId = choices ? choices.length + 1 : 1; - var choiceElementId = "".concat(this._baseId, "-").concat(this._idNames.itemChoice, "-").concat(choiceId); - - this._store.dispatch((0, _choices.addChoice)({ - value: value, - label: choiceLabel, - id: choiceId, - groupId: groupId, - disabled: isDisabled, - elementId: choiceElementId, - customProperties: customProperties, - placeholder: placeholder, - keyCode: keyCode - })); - - if (isSelected) { - this._addItem({ - value: value, - label: choiceLabel, - choiceId: choiceId, - customProperties: customProperties, - placeholder: placeholder, - keyCode: keyCode - }); - } - } - }, { - key: "_addGroup", - value: function _addGroup(_ref15) { - var _this21 = this; - - var group = _ref15.group, - id = _ref15.id, - _ref15$valueKey = _ref15.valueKey, - valueKey = _ref15$valueKey === void 0 ? 'value' : _ref15$valueKey, - _ref15$labelKey = _ref15.labelKey, - labelKey = _ref15$labelKey === void 0 ? 'label' : _ref15$labelKey; - var groupChoices = (0, _utils.isType)('Object', group) ? group.choices : Array.from(group.getElementsByTagName('OPTION')); - var groupId = id || Math.floor(new Date().valueOf() * Math.random()); - var isDisabled = group.disabled ? group.disabled : false; - - if (groupChoices) { - this._store.dispatch((0, _groups.addGroup)(group.label, groupId, true, isDisabled)); - - var addGroupChoices = function addGroupChoices(choice) { - var isOptDisabled = choice.disabled || choice.parentNode && choice.parentNode.disabled; - - _this21._addChoice({ - value: choice[valueKey], - label: (0, _utils.isType)('Object', choice) ? choice[labelKey] : choice.innerHTML, - isSelected: choice.selected, - isDisabled: isOptDisabled, - groupId: groupId, - customProperties: choice.customProperties, - placeholder: choice.placeholder - }); - }; - - groupChoices.forEach(addGroupChoices); - } else { - this._store.dispatch((0, _groups.addGroup)(group.label, group.id, false, group.disabled)); - } - } - }, { - key: "_getTemplate", - value: function _getTemplate(template) { - var _templates$template; - - if (!template) { - return null; - } - - var _this$config4 = this.config, - templates = _this$config4.templates, - classNames = _this$config4.classNames; - - for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { - args[_key - 1] = arguments[_key]; - } - - return (_templates$template = templates[template]).call.apply(_templates$template, [this, classNames].concat(args)); - } - }, { - key: "_createTemplates", - value: function _createTemplates() { - var callbackOnCreateTemplates = this.config.callbackOnCreateTemplates; - var userTemplates = {}; - - if (callbackOnCreateTemplates && (0, _utils.isType)('Function', callbackOnCreateTemplates)) { - userTemplates = callbackOnCreateTemplates.call(this, _utils.strToEl); - } - - this.config.templates = (0, _deepmerge.default)(_templates.TEMPLATES, userTemplates); - } - }, { - key: "_createElements", - value: function _createElements() { - this.containerOuter = new _components.Container({ - element: this._getTemplate('containerOuter', this._direction, this._isSelectElement, this._isSelectOneElement, this.config.searchEnabled, this.passedElement.element.type), - classNames: this.config.classNames, - type: this.passedElement.element.type, - position: this.config.position - }); - this.containerInner = new _components.Container({ - element: this._getTemplate('containerInner'), - classNames: this.config.classNames, - type: this.passedElement.element.type, - position: this.config.position - }); - this.input = new _components.Input({ - element: this._getTemplate('input'), - classNames: this.config.classNames, - type: this.passedElement.element.type - }); - this.choiceList = new _components.List({ - element: this._getTemplate('choiceList', this._isSelectOneElement) - }); - this.itemList = new _components.List({ - element: this._getTemplate('itemList', this._isSelectOneElement) - }); - this.dropdown = new _components.Dropdown({ - element: this._getTemplate('dropdown'), - classNames: this.config.classNames, - type: this.passedElement.element.type - }); - } - }, { - key: "_createStructure", - value: function _createStructure() { - // Hide original element - this.passedElement.conceal(); // Wrap input in container preserving DOM ordering - - this.containerInner.wrap(this.passedElement.element); // Wrapper inner container with outer container - - this.containerOuter.wrap(this.containerInner.element); - - if (this._isSelectOneElement) { - this.input.placeholder = this.config.searchPlaceholderValue || ''; - } else if (this._placeholderValue) { - this.input.placeholder = this._placeholderValue; - this.input.setWidth(true); - } - - this.containerOuter.element.appendChild(this.containerInner.element); - this.containerOuter.element.appendChild(this.dropdown.element); - this.containerInner.element.appendChild(this.itemList.element); - - if (!this._isTextElement) { - this.dropdown.element.appendChild(this.choiceList.element); - } - - if (!this._isSelectOneElement) { - this.containerInner.element.appendChild(this.input.element); - } else if (this.config.searchEnabled) { - this.dropdown.element.insertBefore(this.input.element, this.dropdown.element.firstChild); - } - - if (this._isSelectElement) { - this._addPredefinedChoices(); - } else if (this._isTextElement) { - this._addPredefinedItems(); - } - } - }, { - key: "_addPredefinedChoices", - value: function _addPredefinedChoices() { - var _this22 = this; - - var passedGroups = this.passedElement.optionGroups; - this._highlightPosition = 0; - this._isSearching = false; - - this._setLoading(true); - - if (passedGroups && passedGroups.length) { - // If we have a placeholder option - var placeholderChoice = this.passedElement.placeholderOption; - - if (placeholderChoice && placeholderChoice.parentNode.tagName === 'SELECT') { - this._addChoice({ - value: placeholderChoice.value, - label: placeholderChoice.innerHTML, - isSelected: placeholderChoice.selected, - isDisabled: placeholderChoice.disabled, - placeholder: true - }); - } - - passedGroups.forEach(function (group) { - return _this22._addGroup({ - group: group, - id: group.id || null - }); - }); - } else { - var passedOptions = this.passedElement.options; - var filter = this.config.sortFn; - var allChoices = this._presetChoices; // Create array of options from option elements - - passedOptions.forEach(function (o) { - allChoices.push({ - value: o.value, - label: o.innerHTML, - selected: o.selected, - disabled: o.disabled || o.parentNode.disabled, - placeholder: o.hasAttribute('placeholder'), - customProperties: o.getAttribute('data-custom-properties') - }); - }); // If sorting is enabled or the user is searching, filter choices - - if (this.config.shouldSort) allChoices.sort(filter); // Determine whether there is a selected choice - - var hasSelectedChoice = allChoices.some(function (choice) { - return choice.selected; - }); - - var handleChoice = function handleChoice(choice, index) { - var value = choice.value, - label = choice.label, - customProperties = choice.customProperties, - placeholder = choice.placeholder; - - if (_this22._isSelectElement) { - // If the choice is actually a group - if (choice.choices) { - _this22._addGroup({ - group: choice, - id: choice.id || null - }); - } else { - // If there is a selected choice already or the choice is not - // the first in the array, add each choice normally - // Otherwise pre-select the first choice in the array if it's a single select - var shouldPreselect = _this22._isSelectOneElement && !hasSelectedChoice && index === 0; - var isSelected = shouldPreselect ? true : choice.selected; - var isDisabled = shouldPreselect ? false : choice.disabled; - - _this22._addChoice({ - value: value, - label: label, - isSelected: isSelected, - isDisabled: isDisabled, - customProperties: customProperties, - placeholder: placeholder - }); - } - } else { - _this22._addChoice({ - value: value, - label: label, - isSelected: choice.selected, - isDisabled: choice.disabled, - customProperties: customProperties, - placeholder: placeholder - }); - } - }; // Add each choice - - - allChoices.forEach(function (choice, index) { - return handleChoice(choice, index); - }); - } - - this._setLoading(false); - } - }, { - key: "_addPredefinedItems", - value: function _addPredefinedItems() { - var _this23 = this; - - var handlePresetItem = function handlePresetItem(item) { - var itemType = (0, _utils.getType)(item); - - if (itemType === 'Object' && item.value) { - _this23._addItem({ - value: item.value, - label: item.label, - choiceId: item.id, - customProperties: item.customProperties, - placeholder: item.placeholder - }); - } else if (itemType === 'String') { - _this23._addItem({ - value: item - }); - } - }; - - this._presetItems.forEach(function (item) { - return handlePresetItem(item); - }); - } - }, { - key: "_setChoiceOrItem", - value: function _setChoiceOrItem(item) { - var _this24 = this; - - var itemType = (0, _utils.getType)(item).toLowerCase(); - var handleType = { - object: function object() { - if (!item.value) { - return; - } // If we are dealing with a select input, we need to create an option first - // that is then selected. For text inputs we can just add items normally. - - - if (!_this24._isTextElement) { - _this24._addChoice({ - value: item.value, - label: item.label, - isSelected: true, - isDisabled: false, - customProperties: item.customProperties, - placeholder: item.placeholder - }); - } else { - _this24._addItem({ - value: item.value, - label: item.label, - choiceId: item.id, - customProperties: item.customProperties, - placeholder: item.placeholder - }); - } - }, - string: function string() { - if (!_this24._isTextElement) { - _this24._addChoice({ - value: item, - label: item, - isSelected: true, - isDisabled: false - }); - } else { - _this24._addItem({ - value: item - }); - } - } - }; - handleType[itemType](); - } - }, { - key: "_findAndSelectChoiceByValue", - value: function _findAndSelectChoiceByValue(val) { - var _this25 = this; - - var choices = this._store.choices; // Check 'value' property exists and the choice isn't already selected - - var foundChoice = choices.find(function (choice) { - return _this25.config.itemComparer(choice.value, val); - }); - - if (foundChoice && !foundChoice.selected) { - this._addItem({ - value: foundChoice.value, - label: foundChoice.label, - choiceId: foundChoice.id, - groupId: foundChoice.groupId, - customProperties: foundChoice.customProperties, - placeholder: foundChoice.placeholder, - keyCode: foundChoice.keyCode - }); - } - } - }, { - key: "_generateInstances", - value: function _generateInstances(elements, config) { - return elements.reduce(function (instances, element) { - instances.push(new Choices(element, config)); - return instances; - }, [this]); - } - }, { - key: "_generatePlaceholderValue", - value: function _generatePlaceholderValue() { - if (this._isSelectOneElement) { - return false; - } - - return this.config.placeholder ? this.config.placeholderValue || this.passedElement.element.getAttribute('placeholder') : false; - } - /* ===== End of Private functions ====== */ - - }]); - - return Choices; -}(); - -Choices.userDefaults = {}; // We cannot export default here due to Webpack: https://github.com/webpack/webpack/issues/3929 - -module.exports = Choices; - -/***/ }), -/* 11 */ -/***/ (function(module, exports, __webpack_require__) { - -/*! - * Fuse.js v3.4.2 - Lightweight fuzzy-search (http://fusejs.io) - * - * Copyright (c) 2012-2017 Kirollos Risk (http://kiro.me) - * All Rights Reserved. Apache Software License 2.0 - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ -(function webpackUniversalModuleDefinition(root, factory) { - if(true) - module.exports = factory(); - else {} -})(this, function() { -return /******/ (function(modules) { // webpackBootstrap -/******/ // The module cache -/******/ var installedModules = {}; -/******/ -/******/ // The require function -/******/ function __webpack_require__(moduleId) { -/******/ -/******/ // Check if module is in cache -/******/ if(installedModules[moduleId]) { -/******/ return installedModules[moduleId].exports; -/******/ } -/******/ // Create a new module (and put it into the cache) -/******/ var module = installedModules[moduleId] = { -/******/ i: moduleId, -/******/ l: false, -/******/ exports: {} -/******/ }; -/******/ -/******/ // Execute the module function -/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); -/******/ -/******/ // Flag the module as loaded -/******/ module.l = true; -/******/ -/******/ // Return the exports of the module -/******/ return module.exports; -/******/ } -/******/ -/******/ -/******/ // expose the modules object (__webpack_modules__) -/******/ __webpack_require__.m = modules; -/******/ -/******/ // expose the module cache -/******/ __webpack_require__.c = installedModules; -/******/ -/******/ // define getter function for harmony exports -/******/ __webpack_require__.d = function(exports, name, getter) { -/******/ if(!__webpack_require__.o(exports, name)) { -/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); -/******/ } -/******/ }; -/******/ -/******/ // define __esModule on exports -/******/ __webpack_require__.r = function(exports) { -/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { -/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); -/******/ } -/******/ Object.defineProperty(exports, '__esModule', { value: true }); -/******/ }; -/******/ -/******/ // create a fake namespace object -/******/ // mode & 1: value is a module id, require it -/******/ // mode & 2: merge all properties of value into the ns -/******/ // mode & 4: return value when already ns object -/******/ // mode & 8|1: behave like require -/******/ __webpack_require__.t = function(value, mode) { -/******/ if(mode & 1) value = __webpack_require__(value); -/******/ if(mode & 8) return value; -/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; -/******/ var ns = Object.create(null); -/******/ __webpack_require__.r(ns); -/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); -/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); -/******/ return ns; -/******/ }; -/******/ -/******/ // getDefaultExport function for compatibility with non-harmony modules -/******/ __webpack_require__.n = function(module) { -/******/ var getter = module && module.__esModule ? -/******/ function getDefault() { return module['default']; } : -/******/ function getModuleExports() { return module; }; -/******/ __webpack_require__.d(getter, 'a', getter); -/******/ return getter; -/******/ }; -/******/ -/******/ // Object.prototype.hasOwnProperty.call -/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; -/******/ -/******/ // __webpack_public_path__ -/******/ __webpack_require__.p = ""; -/******/ -/******/ -/******/ // Load entry module and return exports -/******/ return __webpack_require__(__webpack_require__.s = "./src/index.js"); -/******/ }) -/************************************************************************/ -/******/ ({ - -/***/ "./src/bitap/bitap_matched_indices.js": -/*!********************************************!*\ - !*** ./src/bitap/bitap_matched_indices.js ***! - \********************************************/ -/*! no static exports found */ -/***/ (function(module, exports) { - -module.exports = function () { - var matchmask = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : []; - var minMatchCharLength = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 1; - var matchedIndices = []; - var start = -1; - var end = -1; - var i = 0; - - for (var len = matchmask.length; i < len; i += 1) { - var match = matchmask[i]; - - if (match && start === -1) { - start = i; - } else if (!match && start !== -1) { - end = i - 1; - - if (end - start + 1 >= minMatchCharLength) { - matchedIndices.push([start, end]); - } - - start = -1; - } - } // (i-1 - start) + 1 => i - start - - - if (matchmask[i - 1] && i - start >= minMatchCharLength) { - matchedIndices.push([start, i - 1]); - } - - return matchedIndices; -}; - -/***/ }), - -/***/ "./src/bitap/bitap_pattern_alphabet.js": -/*!*********************************************!*\ - !*** ./src/bitap/bitap_pattern_alphabet.js ***! - \*********************************************/ -/*! no static exports found */ -/***/ (function(module, exports) { - -module.exports = function (pattern) { - var mask = {}; - var len = pattern.length; - - for (var i = 0; i < len; i += 1) { - mask[pattern.charAt(i)] = 0; - } - - for (var _i = 0; _i < len; _i += 1) { - mask[pattern.charAt(_i)] |= 1 << len - _i - 1; - } - - return mask; -}; - -/***/ }), - -/***/ "./src/bitap/bitap_regex_search.js": -/*!*****************************************!*\ - !*** ./src/bitap/bitap_regex_search.js ***! - \*****************************************/ -/*! no static exports found */ -/***/ (function(module, exports) { - -var SPECIAL_CHARS_REGEX = /[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g; - -module.exports = function (text, pattern) { - var tokenSeparator = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : / +/g; - var regex = new RegExp(pattern.replace(SPECIAL_CHARS_REGEX, '\\$&').replace(tokenSeparator, '|')); - var matches = text.match(regex); - var isMatch = !!matches; - var matchedIndices = []; - - if (isMatch) { - for (var i = 0, matchesLen = matches.length; i < matchesLen; i += 1) { - var match = matches[i]; - matchedIndices.push([text.indexOf(match), match.length - 1]); - } - } - - return { - // TODO: revisit this score - score: isMatch ? 0.5 : 1, - isMatch: isMatch, - matchedIndices: matchedIndices - }; -}; - -/***/ }), - -/***/ "./src/bitap/bitap_score.js": -/*!**********************************!*\ - !*** ./src/bitap/bitap_score.js ***! - \**********************************/ -/*! no static exports found */ -/***/ (function(module, exports) { - -module.exports = function (pattern, _ref) { - var _ref$errors = _ref.errors, - errors = _ref$errors === void 0 ? 0 : _ref$errors, - _ref$currentLocation = _ref.currentLocation, - currentLocation = _ref$currentLocation === void 0 ? 0 : _ref$currentLocation, - _ref$expectedLocation = _ref.expectedLocation, - expectedLocation = _ref$expectedLocation === void 0 ? 0 : _ref$expectedLocation, - _ref$distance = _ref.distance, - distance = _ref$distance === void 0 ? 100 : _ref$distance; - var accuracy = errors / pattern.length; - var proximity = Math.abs(expectedLocation - currentLocation); - - if (!distance) { - // Dodge divide by zero error. - return proximity ? 1.0 : accuracy; - } - - return accuracy + proximity / distance; -}; - -/***/ }), - -/***/ "./src/bitap/bitap_search.js": -/*!***********************************!*\ - !*** ./src/bitap/bitap_search.js ***! - \***********************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var bitapScore = __webpack_require__(/*! ./bitap_score */ "./src/bitap/bitap_score.js"); - -var matchedIndices = __webpack_require__(/*! ./bitap_matched_indices */ "./src/bitap/bitap_matched_indices.js"); - -module.exports = function (text, pattern, patternAlphabet, _ref) { - var _ref$location = _ref.location, - location = _ref$location === void 0 ? 0 : _ref$location, - _ref$distance = _ref.distance, - distance = _ref$distance === void 0 ? 100 : _ref$distance, - _ref$threshold = _ref.threshold, - threshold = _ref$threshold === void 0 ? 0.6 : _ref$threshold, - _ref$findAllMatches = _ref.findAllMatches, - findAllMatches = _ref$findAllMatches === void 0 ? false : _ref$findAllMatches, - _ref$minMatchCharLeng = _ref.minMatchCharLength, - minMatchCharLength = _ref$minMatchCharLeng === void 0 ? 1 : _ref$minMatchCharLeng; - var expectedLocation = location; // Set starting location at beginning text and initialize the alphabet. - - var textLen = text.length; // Highest score beyond which we give up. - - var currentThreshold = threshold; // Is there a nearby exact match? (speedup) - - var bestLocation = text.indexOf(pattern, expectedLocation); - var patternLen = pattern.length; // a mask of the matches - - var matchMask = []; - - for (var i = 0; i < textLen; i += 1) { - matchMask[i] = 0; - } - - if (bestLocation !== -1) { - var score = bitapScore(pattern, { - errors: 0, - currentLocation: bestLocation, - expectedLocation: expectedLocation, - distance: distance - }); - currentThreshold = Math.min(score, currentThreshold); // What about in the other direction? (speed up) - - bestLocation = text.lastIndexOf(pattern, expectedLocation + patternLen); - - if (bestLocation !== -1) { - var _score = bitapScore(pattern, { - errors: 0, - currentLocation: bestLocation, - expectedLocation: expectedLocation, - distance: distance - }); - - currentThreshold = Math.min(_score, currentThreshold); - } - } // Reset the best location - - - bestLocation = -1; - var lastBitArr = []; - var finalScore = 1; - var binMax = patternLen + textLen; - var mask = 1 << patternLen - 1; - - for (var _i = 0; _i < patternLen; _i += 1) { - // Scan for the best match; each iteration allows for one more error. - // Run a binary search to determine how far from the match location we can stray - // at this error level. - var binMin = 0; - var binMid = binMax; - - while (binMin < binMid) { - var _score3 = bitapScore(pattern, { - errors: _i, - currentLocation: expectedLocation + binMid, - expectedLocation: expectedLocation, - distance: distance - }); - - if (_score3 <= currentThreshold) { - binMin = binMid; - } else { - binMax = binMid; - } - - binMid = Math.floor((binMax - binMin) / 2 + binMin); - } // Use the result from this iteration as the maximum for the next. - - - binMax = binMid; - var start = Math.max(1, expectedLocation - binMid + 1); - var finish = findAllMatches ? textLen : Math.min(expectedLocation + binMid, textLen) + patternLen; // Initialize the bit array - - var bitArr = Array(finish + 2); - bitArr[finish + 1] = (1 << _i) - 1; - - for (var j = finish; j >= start; j -= 1) { - var currentLocation = j - 1; - var charMatch = patternAlphabet[text.charAt(currentLocation)]; - - if (charMatch) { - matchMask[currentLocation] = 1; - } // First pass: exact match - - - bitArr[j] = (bitArr[j + 1] << 1 | 1) & charMatch; // Subsequent passes: fuzzy match - - if (_i !== 0) { - bitArr[j] |= (lastBitArr[j + 1] | lastBitArr[j]) << 1 | 1 | lastBitArr[j + 1]; - } - - if (bitArr[j] & mask) { - finalScore = bitapScore(pattern, { - errors: _i, - currentLocation: currentLocation, - expectedLocation: expectedLocation, - distance: distance - }); // This match will almost certainly be better than any existing match. - // But check anyway. - - if (finalScore <= currentThreshold) { - // Indeed it is - currentThreshold = finalScore; - bestLocation = currentLocation; // Already passed `loc`, downhill from here on in. - - if (bestLocation <= expectedLocation) { - break; - } // When passing `bestLocation`, don't exceed our current distance from `expectedLocation`. - - - start = Math.max(1, 2 * expectedLocation - bestLocation); - } - } - } // No hope for a (better) match at greater error levels. - - - var _score2 = bitapScore(pattern, { - errors: _i + 1, - currentLocation: expectedLocation, - expectedLocation: expectedLocation, - distance: distance - }); // console.log('score', score, finalScore) - - - if (_score2 > currentThreshold) { - break; - } - - lastBitArr = bitArr; - } // console.log('FINAL SCORE', finalScore) - // Count exact matches (those with a score of 0) to be "almost" exact - - - return { - isMatch: bestLocation >= 0, - score: finalScore === 0 ? 0.001 : finalScore, - matchedIndices: matchedIndices(matchMask, minMatchCharLength) - }; -}; - -/***/ }), - -/***/ "./src/bitap/index.js": -/*!****************************!*\ - !*** ./src/bitap/index.js ***! - \****************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } - -var bitapRegexSearch = __webpack_require__(/*! ./bitap_regex_search */ "./src/bitap/bitap_regex_search.js"); - -var bitapSearch = __webpack_require__(/*! ./bitap_search */ "./src/bitap/bitap_search.js"); - -var patternAlphabet = __webpack_require__(/*! ./bitap_pattern_alphabet */ "./src/bitap/bitap_pattern_alphabet.js"); - -var Bitap = -/*#__PURE__*/ -function () { - function Bitap(pattern, _ref) { - var _ref$location = _ref.location, - location = _ref$location === void 0 ? 0 : _ref$location, - _ref$distance = _ref.distance, - distance = _ref$distance === void 0 ? 100 : _ref$distance, - _ref$threshold = _ref.threshold, - threshold = _ref$threshold === void 0 ? 0.6 : _ref$threshold, - _ref$maxPatternLength = _ref.maxPatternLength, - maxPatternLength = _ref$maxPatternLength === void 0 ? 32 : _ref$maxPatternLength, - _ref$isCaseSensitive = _ref.isCaseSensitive, - isCaseSensitive = _ref$isCaseSensitive === void 0 ? false : _ref$isCaseSensitive, - _ref$tokenSeparator = _ref.tokenSeparator, - tokenSeparator = _ref$tokenSeparator === void 0 ? / +/g : _ref$tokenSeparator, - _ref$findAllMatches = _ref.findAllMatches, - findAllMatches = _ref$findAllMatches === void 0 ? false : _ref$findAllMatches, - _ref$minMatchCharLeng = _ref.minMatchCharLength, - minMatchCharLength = _ref$minMatchCharLeng === void 0 ? 1 : _ref$minMatchCharLeng; - - _classCallCheck(this, Bitap); - - this.options = { - location: location, - distance: distance, - threshold: threshold, - maxPatternLength: maxPatternLength, - isCaseSensitive: isCaseSensitive, - tokenSeparator: tokenSeparator, - findAllMatches: findAllMatches, - minMatchCharLength: minMatchCharLength - }; - this.pattern = this.options.isCaseSensitive ? pattern : pattern.toLowerCase(); - - if (this.pattern.length <= maxPatternLength) { - this.patternAlphabet = patternAlphabet(this.pattern); - } - } - - _createClass(Bitap, [{ - key: "search", - value: function search(text) { - if (!this.options.isCaseSensitive) { - text = text.toLowerCase(); - } // Exact match - - - if (this.pattern === text) { - return { - isMatch: true, - score: 0, - matchedIndices: [[0, text.length - 1]] - }; - } // When pattern length is greater than the machine word length, just do a a regex comparison - - - var _this$options = this.options, - maxPatternLength = _this$options.maxPatternLength, - tokenSeparator = _this$options.tokenSeparator; - - if (this.pattern.length > maxPatternLength) { - return bitapRegexSearch(text, this.pattern, tokenSeparator); - } // Otherwise, use Bitap algorithm - - - var _this$options2 = this.options, - location = _this$options2.location, - distance = _this$options2.distance, - threshold = _this$options2.threshold, - findAllMatches = _this$options2.findAllMatches, - minMatchCharLength = _this$options2.minMatchCharLength; - return bitapSearch(text, this.pattern, this.patternAlphabet, { - location: location, - distance: distance, - threshold: threshold, - findAllMatches: findAllMatches, - minMatchCharLength: minMatchCharLength - }); - } - }]); - - return Bitap; -}(); // let x = new Bitap("od mn war", {}) -// let result = x.search("Old Man's War") -// console.log(result) - - -module.exports = Bitap; - -/***/ }), - -/***/ "./src/helpers/deep_value.js": -/*!***********************************!*\ - !*** ./src/helpers/deep_value.js ***! - \***********************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var isArray = __webpack_require__(/*! ./is_array */ "./src/helpers/is_array.js"); - -var deepValue = function deepValue(obj, path, list) { - if (!path) { - // If there's no path left, we've gotten to the object we care about. - list.push(obj); - } else { - var dotIndex = path.indexOf('.'); - var firstSegment = path; - var remaining = null; - - if (dotIndex !== -1) { - firstSegment = path.slice(0, dotIndex); - remaining = path.slice(dotIndex + 1); - } - - var value = obj[firstSegment]; - - if (value !== null && value !== undefined) { - if (!remaining && (typeof value === 'string' || typeof value === 'number')) { - list.push(value.toString()); - } else if (isArray(value)) { - // Search each item in the array. - for (var i = 0, len = value.length; i < len; i += 1) { - deepValue(value[i], remaining, list); - } - } else if (remaining) { - // An object. Recurse further. - deepValue(value, remaining, list); - } - } - } - - return list; -}; - -module.exports = function (obj, path) { - return deepValue(obj, path, []); -}; - -/***/ }), - -/***/ "./src/helpers/is_array.js": -/*!*********************************!*\ - !*** ./src/helpers/is_array.js ***! - \*********************************/ -/*! no static exports found */ -/***/ (function(module, exports) { - -module.exports = function (obj) { - return !Array.isArray ? Object.prototype.toString.call(obj) === '[object Array]' : Array.isArray(obj); -}; - -/***/ }), - -/***/ "./src/index.js": -/*!**********************!*\ - !*** ./src/index.js ***! - \**********************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } - -function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } - -var Bitap = __webpack_require__(/*! ./bitap */ "./src/bitap/index.js"); - -var deepValue = __webpack_require__(/*! ./helpers/deep_value */ "./src/helpers/deep_value.js"); - -var isArray = __webpack_require__(/*! ./helpers/is_array */ "./src/helpers/is_array.js"); - -var Fuse = -/*#__PURE__*/ -function () { - function Fuse(list, _ref) { - var _ref$location = _ref.location, - location = _ref$location === void 0 ? 0 : _ref$location, - _ref$distance = _ref.distance, - distance = _ref$distance === void 0 ? 100 : _ref$distance, - _ref$threshold = _ref.threshold, - threshold = _ref$threshold === void 0 ? 0.6 : _ref$threshold, - _ref$maxPatternLength = _ref.maxPatternLength, - maxPatternLength = _ref$maxPatternLength === void 0 ? 32 : _ref$maxPatternLength, - _ref$caseSensitive = _ref.caseSensitive, - caseSensitive = _ref$caseSensitive === void 0 ? false : _ref$caseSensitive, - _ref$tokenSeparator = _ref.tokenSeparator, - tokenSeparator = _ref$tokenSeparator === void 0 ? / +/g : _ref$tokenSeparator, - _ref$findAllMatches = _ref.findAllMatches, - findAllMatches = _ref$findAllMatches === void 0 ? false : _ref$findAllMatches, - _ref$minMatchCharLeng = _ref.minMatchCharLength, - minMatchCharLength = _ref$minMatchCharLeng === void 0 ? 1 : _ref$minMatchCharLeng, - _ref$id = _ref.id, - id = _ref$id === void 0 ? null : _ref$id, - _ref$keys = _ref.keys, - keys = _ref$keys === void 0 ? [] : _ref$keys, - _ref$shouldSort = _ref.shouldSort, - shouldSort = _ref$shouldSort === void 0 ? true : _ref$shouldSort, - _ref$getFn = _ref.getFn, - getFn = _ref$getFn === void 0 ? deepValue : _ref$getFn, - _ref$sortFn = _ref.sortFn, - sortFn = _ref$sortFn === void 0 ? function (a, b) { - return a.score - b.score; - } : _ref$sortFn, - _ref$tokenize = _ref.tokenize, - tokenize = _ref$tokenize === void 0 ? false : _ref$tokenize, - _ref$matchAllTokens = _ref.matchAllTokens, - matchAllTokens = _ref$matchAllTokens === void 0 ? false : _ref$matchAllTokens, - _ref$includeMatches = _ref.includeMatches, - includeMatches = _ref$includeMatches === void 0 ? false : _ref$includeMatches, - _ref$includeScore = _ref.includeScore, - includeScore = _ref$includeScore === void 0 ? false : _ref$includeScore, - _ref$verbose = _ref.verbose, - verbose = _ref$verbose === void 0 ? false : _ref$verbose; - - _classCallCheck(this, Fuse); - - this.options = { - location: location, - distance: distance, - threshold: threshold, - maxPatternLength: maxPatternLength, - isCaseSensitive: caseSensitive, - tokenSeparator: tokenSeparator, - findAllMatches: findAllMatches, - minMatchCharLength: minMatchCharLength, - id: id, - keys: keys, - includeMatches: includeMatches, - includeScore: includeScore, - shouldSort: shouldSort, - getFn: getFn, - sortFn: sortFn, - verbose: verbose, - tokenize: tokenize, - matchAllTokens: matchAllTokens - }; - this.setCollection(list); - } - - _createClass(Fuse, [{ - key: "setCollection", - value: function setCollection(list) { - this.list = list; - return list; - } - }, { - key: "search", - value: function search(pattern) { - var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : { - limit: false - }; - - this._log("---------\nSearch pattern: \"".concat(pattern, "\"")); - - var _this$_prepareSearche = this._prepareSearchers(pattern), - tokenSearchers = _this$_prepareSearche.tokenSearchers, - fullSearcher = _this$_prepareSearche.fullSearcher; - - var _this$_search = this._search(tokenSearchers, fullSearcher), - weights = _this$_search.weights, - results = _this$_search.results; - - this._computeScore(weights, results); - - if (this.options.shouldSort) { - this._sort(results); - } - - if (opts.limit && typeof opts.limit === 'number') { - results = results.slice(0, opts.limit); - } - - return this._format(results); - } - }, { - key: "_prepareSearchers", - value: function _prepareSearchers() { - var pattern = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : ''; - var tokenSearchers = []; - - if (this.options.tokenize) { - // Tokenize on the separator - var tokens = pattern.split(this.options.tokenSeparator); - - for (var i = 0, len = tokens.length; i < len; i += 1) { - tokenSearchers.push(new Bitap(tokens[i], this.options)); - } - } - - var fullSearcher = new Bitap(pattern, this.options); - return { - tokenSearchers: tokenSearchers, - fullSearcher: fullSearcher - }; - } - }, { - key: "_search", - value: function _search() { - var tokenSearchers = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : []; - var fullSearcher = arguments.length > 1 ? arguments[1] : undefined; - var list = this.list; - var resultMap = {}; - var results = []; // Check the first item in the list, if it's a string, then we assume - // that every item in the list is also a string, and thus it's a flattened array. - - if (typeof list[0] === 'string') { - // Iterate over every item - for (var i = 0, len = list.length; i < len; i += 1) { - this._analyze({ - key: '', - value: list[i], - record: i, - index: i - }, { - resultMap: resultMap, - results: results, - tokenSearchers: tokenSearchers, - fullSearcher: fullSearcher - }); - } - - return { - weights: null, - results: results - }; - } // Otherwise, the first item is an Object (hopefully), and thus the searching - // is done on the values of the keys of each item. - - - var weights = {}; - - for (var _i = 0, _len = list.length; _i < _len; _i += 1) { - var item = list[_i]; // Iterate over every key - - for (var j = 0, keysLen = this.options.keys.length; j < keysLen; j += 1) { - var key = this.options.keys[j]; - - if (typeof key !== 'string') { - weights[key.name] = { - weight: 1 - key.weight || 1 - }; - - if (key.weight <= 0 || key.weight > 1) { - throw new Error('Key weight has to be > 0 and <= 1'); - } - - key = key.name; - } else { - weights[key] = { - weight: 1 - }; - } - - this._analyze({ - key: key, - value: this.options.getFn(item, key), - record: item, - index: _i - }, { - resultMap: resultMap, - results: results, - tokenSearchers: tokenSearchers, - fullSearcher: fullSearcher - }); - } - } - - return { - weights: weights, - results: results - }; - } - }, { - key: "_analyze", - value: function _analyze(_ref2, _ref3) { - var key = _ref2.key, - _ref2$arrayIndex = _ref2.arrayIndex, - arrayIndex = _ref2$arrayIndex === void 0 ? -1 : _ref2$arrayIndex, - value = _ref2.value, - record = _ref2.record, - index = _ref2.index; - var _ref3$tokenSearchers = _ref3.tokenSearchers, - tokenSearchers = _ref3$tokenSearchers === void 0 ? [] : _ref3$tokenSearchers, - _ref3$fullSearcher = _ref3.fullSearcher, - fullSearcher = _ref3$fullSearcher === void 0 ? [] : _ref3$fullSearcher, - _ref3$resultMap = _ref3.resultMap, - resultMap = _ref3$resultMap === void 0 ? {} : _ref3$resultMap, - _ref3$results = _ref3.results, - results = _ref3$results === void 0 ? [] : _ref3$results; - - // Check if the texvaluet can be searched - if (value === undefined || value === null) { - return; - } - - var exists = false; - var averageScore = -1; - var numTextMatches = 0; - - if (typeof value === 'string') { - this._log("\nKey: ".concat(key === '' ? '-' : key)); - - var mainSearchResult = fullSearcher.search(value); - - this._log("Full text: \"".concat(value, "\", score: ").concat(mainSearchResult.score)); - - if (this.options.tokenize) { - var words = value.split(this.options.tokenSeparator); - var scores = []; - - for (var i = 0; i < tokenSearchers.length; i += 1) { - var tokenSearcher = tokenSearchers[i]; - - this._log("\nPattern: \"".concat(tokenSearcher.pattern, "\"")); // let tokenScores = [] - - - var hasMatchInText = false; - - for (var j = 0; j < words.length; j += 1) { - var word = words[j]; - var tokenSearchResult = tokenSearcher.search(word); - var obj = {}; - - if (tokenSearchResult.isMatch) { - obj[word] = tokenSearchResult.score; - exists = true; - hasMatchInText = true; - scores.push(tokenSearchResult.score); - } else { - obj[word] = 1; - - if (!this.options.matchAllTokens) { - scores.push(1); - } - } - - this._log("Token: \"".concat(word, "\", score: ").concat(obj[word])); // tokenScores.push(obj) - - } - - if (hasMatchInText) { - numTextMatches += 1; - } - } - - averageScore = scores[0]; - var scoresLen = scores.length; - - for (var _i2 = 1; _i2 < scoresLen; _i2 += 1) { - averageScore += scores[_i2]; - } - - averageScore = averageScore / scoresLen; - - this._log('Token score average:', averageScore); - } - - var finalScore = mainSearchResult.score; - - if (averageScore > -1) { - finalScore = (finalScore + averageScore) / 2; - } - - this._log('Score average:', finalScore); - - var checkTextMatches = this.options.tokenize && this.options.matchAllTokens ? numTextMatches >= tokenSearchers.length : true; - - this._log("\nCheck Matches: ".concat(checkTextMatches)); // If a match is found, add the item to , including its score - - - if ((exists || mainSearchResult.isMatch) && checkTextMatches) { - // Check if the item already exists in our results - var existingResult = resultMap[index]; - - if (existingResult) { - // Use the lowest score - // existingResult.score, bitapResult.score - existingResult.output.push({ - key: key, - arrayIndex: arrayIndex, - value: value, - score: finalScore, - matchedIndices: mainSearchResult.matchedIndices - }); - } else { - // Add it to the raw result list - resultMap[index] = { - item: record, - output: [{ - key: key, - arrayIndex: arrayIndex, - value: value, - score: finalScore, - matchedIndices: mainSearchResult.matchedIndices - }] - }; - results.push(resultMap[index]); - } - } - } else if (isArray(value)) { - for (var _i3 = 0, len = value.length; _i3 < len; _i3 += 1) { - this._analyze({ - key: key, - arrayIndex: _i3, - value: value[_i3], - record: record, - index: index - }, { - resultMap: resultMap, - results: results, - tokenSearchers: tokenSearchers, - fullSearcher: fullSearcher - }); - } - } - } - }, { - key: "_computeScore", - value: function _computeScore(weights, results) { - this._log('\n\nComputing score:\n'); - - for (var i = 0, len = results.length; i < len; i += 1) { - var output = results[i].output; - var scoreLen = output.length; - var currScore = 1; - var bestScore = 1; - - for (var j = 0; j < scoreLen; j += 1) { - var weight = weights ? weights[output[j].key].weight : 1; - var score = weight === 1 ? output[j].score : output[j].score || 0.001; - var nScore = score * weight; - - if (weight !== 1) { - bestScore = Math.min(bestScore, nScore); - } else { - output[j].nScore = nScore; - currScore *= nScore; - } - } - - results[i].score = bestScore === 1 ? currScore : bestScore; - - this._log(results[i]); - } - } - }, { - key: "_sort", - value: function _sort(results) { - this._log('\n\nSorting....'); - - results.sort(this.options.sortFn); - } - }, { - key: "_format", - value: function _format(results) { - var finalOutput = []; - - if (this.options.verbose) { - var cache = []; - - this._log('\n\nOutput:\n\n', JSON.stringify(results, function (key, value) { - if (_typeof(value) === 'object' && value !== null) { - if (cache.indexOf(value) !== -1) { - // Circular reference found, discard key - return; - } // Store value in our collection - - - cache.push(value); - } - - return value; - })); - - cache = null; - } - - var transformers = []; - - if (this.options.includeMatches) { - transformers.push(function (result, data) { - var output = result.output; - data.matches = []; - - for (var i = 0, len = output.length; i < len; i += 1) { - var item = output[i]; - - if (item.matchedIndices.length === 0) { - continue; - } - - var obj = { - indices: item.matchedIndices, - value: item.value - }; - - if (item.key) { - obj.key = item.key; - } - - if (item.hasOwnProperty('arrayIndex') && item.arrayIndex > -1) { - obj.arrayIndex = item.arrayIndex; - } - - data.matches.push(obj); - } - }); - } - - if (this.options.includeScore) { - transformers.push(function (result, data) { - data.score = result.score; - }); - } - - for (var i = 0, len = results.length; i < len; i += 1) { - var result = results[i]; - - if (this.options.id) { - result.item = this.options.getFn(result.item, this.options.id)[0]; - } - - if (!transformers.length) { - finalOutput.push(result.item); - continue; - } - - var data = { - item: result.item - }; - - for (var j = 0, _len2 = transformers.length; j < _len2; j += 1) { - transformers[j](result, data); - } - - finalOutput.push(data); - } - - return finalOutput; - } - }, { - key: "_log", - value: function _log() { - if (this.options.verbose) { - var _console; - - (_console = console).log.apply(_console, arguments); - } - } - }]); - - return Fuse; -}(); - -module.exports = Fuse; - -/***/ }) - -/******/ }); -}); - -/***/ }), -/* 12 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -var isMergeableObject = function isMergeableObject(value) { - return isNonNullObject(value) - && !isSpecial(value) -}; - -function isNonNullObject(value) { - return !!value && typeof value === 'object' -} - -function isSpecial(value) { - var stringValue = Object.prototype.toString.call(value); - - return stringValue === '[object RegExp]' - || stringValue === '[object Date]' - || isReactElement(value) -} - -// see https://github.com/facebook/react/blob/b5ac963fb791d1298e7f396236383bc955f916c1/src/isomorphic/classic/element/ReactElement.js#L21-L25 -var canUseSymbol = typeof Symbol === 'function' && Symbol.for; -var REACT_ELEMENT_TYPE = canUseSymbol ? Symbol.for('react.element') : 0xeac7; - -function isReactElement(value) { - return value.$$typeof === REACT_ELEMENT_TYPE -} - -function emptyTarget(val) { - return Array.isArray(val) ? [] : {} -} - -function cloneUnlessOtherwiseSpecified(value, options) { - return (options.clone !== false && options.isMergeableObject(value)) - ? deepmerge(emptyTarget(value), value, options) - : value -} - -function defaultArrayMerge(target, source, options) { - return target.concat(source).map(function(element) { - return cloneUnlessOtherwiseSpecified(element, options) - }) -} - -function mergeObject(target, source, options) { - var destination = {}; - if (options.isMergeableObject(target)) { - Object.keys(target).forEach(function(key) { - destination[key] = cloneUnlessOtherwiseSpecified(target[key], options); - }); - } - Object.keys(source).forEach(function(key) { - if (!options.isMergeableObject(source[key]) || !target[key]) { - destination[key] = cloneUnlessOtherwiseSpecified(source[key], options); - } else { - destination[key] = deepmerge(target[key], source[key], options); - } - }); - return destination -} - -function deepmerge(target, source, options) { - options = options || {}; - options.arrayMerge = options.arrayMerge || defaultArrayMerge; - options.isMergeableObject = options.isMergeableObject || isMergeableObject; - - var sourceIsArray = Array.isArray(source); - var targetIsArray = Array.isArray(target); - var sourceAndTargetTypesMatch = sourceIsArray === targetIsArray; - - if (!sourceAndTargetTypesMatch) { - return cloneUnlessOtherwiseSpecified(source, options) - } else if (sourceIsArray) { - return options.arrayMerge(target, source, options) - } else { - return mergeObject(target, source, options) - } -} - -deepmerge.all = function deepmergeAll(array, options) { - if (!Array.isArray(array)) { - throw new Error('first argument should be an array') - } - - return array.reduce(function(prev, next) { - return deepmerge(prev, next, options) - }, {}) -}; - -var deepmerge_1 = deepmerge; - -/* harmony default export */ __webpack_exports__["default"] = (deepmerge_1); - - -/***/ }), -/* 13 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = void 0; - -var _redux = __webpack_require__(6); - -var _index = _interopRequireDefault(__webpack_require__(15)); - -function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } - -function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } - -var Store = -/*#__PURE__*/ -function () { - function Store() { - _classCallCheck(this, Store); - - this._store = (0, _redux.createStore)(_index.default, window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__()); - } - /** - * Subscribe store to function call (wrapped Redux method) - * @param {Function} onChange Function to trigger when state changes - * @return - */ - - - _createClass(Store, [{ - key: "subscribe", - value: function subscribe(onChange) { - this._store.subscribe(onChange); - } - /** - * Dispatch event to store (wrapped Redux method) - * @param {Function} action Action function to trigger - * @return - */ - - }, { - key: "dispatch", - value: function dispatch(action) { - this._store.dispatch(action); - } - /** - * Get store object (wrapping Redux method) - * @return {Object} State - */ - - }, { - key: "isLoading", - - /** - * Get loading state from store - * @return {Boolean} Loading State - */ - value: function isLoading() { - return this.state.general.loading; - } - /** - * Get single choice by it's ID - * @return {Object} Found choice - */ - - }, { - key: "getChoiceById", - value: function getChoiceById(id) { - if (id) { - var choices = this.activeChoices; - var foundChoice = choices.find(function (choice) { - return choice.id === parseInt(id, 10); - }); - return foundChoice; - } - - return false; - } - /** - * Get group by group id - * @param {Number} id Group ID - * @return {Object} Group data - */ - - }, { - key: "getGroupById", - value: function getGroupById(id) { - return this.groups.find(function (group) { - return group.id === parseInt(id, 10); - }); - } - }, { - key: "state", - get: function get() { - return this._store.getState(); - } - /** - * Get items from store - * @return {Array} Item objects - */ - - }, { - key: "items", - get: function get() { - return this.state.items; - } - /** - * Get active items from store - * @return {Array} Item objects - */ - - }, { - key: "activeItems", - get: function get() { - return this.items.filter(function (item) { - return item.active === true; - }); - } - /** - * Get highlighted items from store - * @return {Array} Item objects - */ - - }, { - key: "highlightedActiveItems", - get: function get() { - return this.items.filter(function (item) { - return item.active && item.highlighted; - }); - } - /** - * Get choices from store - * @return {Array} Option objects - */ - - }, { - key: "choices", - get: function get() { - return this.state.choices; - } - /** - * Get active choices from store - * @return {Array} Option objects - */ - - }, { - key: "activeChoices", - get: function get() { - var choices = this.choices; - var values = choices.filter(function (choice) { - return choice.active === true; - }); - return values; - } - /** - * Get selectable choices from store - * @return {Array} Option objects - */ - - }, { - key: "selectableChoices", - get: function get() { - return this.choices.filter(function (choice) { - return choice.disabled !== true; - }); - } - /** - * Get choices that can be searched (excluding placeholders) - * @return {Array} Option objects - */ - - }, { - key: "searchableChoices", - get: function get() { - return this.selectableChoices.filter(function (choice) { - return choice.placeholder !== true; - }); - } - /** - * Get placeholder choice from store - * @return {Object} Found placeholder - */ - - }, { - key: "placeholderChoice", - get: function get() { - return [].concat(this.choices).reverse().find(function (choice) { - return choice.placeholder === true; - }); - } - /** - * Get groups from store - * @return {Array} Group objects - */ - - }, { - key: "groups", - get: function get() { - return this.state.groups; - } - /** - * Get active groups from store - * @return {Array} Group objects - */ - - }, { - key: "activeGroups", - get: function get() { - var groups = this.groups; - var choices = this.choices; - return groups.filter(function (group) { - var isActive = group.active === true && group.disabled === false; - var hasActiveOptions = choices.some(function (choice) { - return choice.active === true && choice.disabled === false; - }); - return isActive && hasActiveOptions; - }, []); - } - }]); - - return Store; -}(); - -exports.default = Store; - -/***/ }), -/* 14 */ -/***/ (function(module, exports) { - -module.exports = function(originalModule) { - if (!originalModule.webpackPolyfill) { - var module = Object.create(originalModule); - // module.parent = undefined by default - if (!module.children) module.children = []; - Object.defineProperty(module, "loaded", { - enumerable: true, - get: function() { - return module.l; - } - }); - Object.defineProperty(module, "id", { - enumerable: true, - get: function() { - return module.i; - } - }); - Object.defineProperty(module, "exports", { - enumerable: true - }); - module.webpackPolyfill = 1; - } - return module; -}; - - -/***/ }), -/* 15 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = void 0; - -var _redux = __webpack_require__(6); - -var _items = _interopRequireDefault(__webpack_require__(16)); - -var _groups = _interopRequireDefault(__webpack_require__(17)); - -var _choices = _interopRequireDefault(__webpack_require__(18)); - -var _general = _interopRequireDefault(__webpack_require__(19)); - -var _utils = __webpack_require__(0); - -function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } - -var appReducer = (0, _redux.combineReducers)({ - items: _items.default, - groups: _groups.default, - choices: _choices.default, - general: _general.default -}); - -var rootReducer = function rootReducer(passedState, action) { - var state = passedState; // If we are clearing all items, groups and options we reassign - // state and then pass that state to our proper reducer. This isn't - // mutating our actual state - // See: http://stackoverflow.com/a/35641992 - - if (action.type === 'CLEAR_ALL') { - state = undefined; - } else if (action.type === 'RESET_TO') { - return (0, _utils.cloneObject)(action.state); - } - - return appReducer(state, action); -}; - -var _default = rootReducer; -exports.default = _default; - -/***/ }), -/* 16 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = items; -exports.defaultState = void 0; -var defaultState = []; -exports.defaultState = defaultState; - -function items() { - var state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : defaultState; - var action = arguments.length > 1 ? arguments[1] : undefined; - - switch (action.type) { - case 'ADD_ITEM': - { - // Add object to items array - var newState = [].concat(state, [{ - id: action.id, - choiceId: action.choiceId, - groupId: action.groupId, - value: action.value, - label: action.label, - active: true, - highlighted: false, - customProperties: action.customProperties, - placeholder: action.placeholder || false, - keyCode: null - }]); - return newState.map(function (obj) { - var item = obj; - item.highlighted = false; - return item; - }); - } - - case 'REMOVE_ITEM': - { - // Set item to inactive - return state.map(function (obj) { - var item = obj; - - if (item.id === action.id) { - item.active = false; - } - - return item; - }); - } - - case 'HIGHLIGHT_ITEM': - { - return state.map(function (obj) { - var item = obj; - - if (item.id === action.id) { - item.highlighted = action.highlighted; - } - - return item; - }); - } - - default: - { - return state; - } - } -} - -/***/ }), -/* 17 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = groups; -exports.defaultState = void 0; -var defaultState = []; -exports.defaultState = defaultState; - -function groups() { - var state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : defaultState; - var action = arguments.length > 1 ? arguments[1] : undefined; - - switch (action.type) { - case 'ADD_GROUP': - { - return [].concat(state, [{ - id: action.id, - value: action.value, - active: action.active, - disabled: action.disabled - }]); - } - - case 'CLEAR_CHOICES': - { - return []; - } - - default: - { - return state; - } - } -} - -/***/ }), -/* 18 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = choices; -exports.defaultState = void 0; -var defaultState = []; -exports.defaultState = defaultState; - -function choices() { - var state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : defaultState; - var action = arguments.length > 1 ? arguments[1] : undefined; - - switch (action.type) { - case 'ADD_CHOICE': - { - /* - A disabled choice appears in the choice dropdown but cannot be selected - A selected choice has been added to the passed input's value (added as an item) - An active choice appears within the choice dropdown - */ - return [].concat(state, [{ - id: action.id, - elementId: action.elementId, - groupId: action.groupId, - value: action.value, - label: action.label || action.value, - disabled: action.disabled || false, - selected: false, - active: true, - score: 9999, - customProperties: action.customProperties, - placeholder: action.placeholder || false, - keyCode: null - }]); - } - - case 'ADD_ITEM': - { - // If all choices need to be activated - if (action.activateOptions) { - return state.map(function (obj) { - var choice = obj; - choice.active = action.active; - return choice; - }); - } // When an item is added and it has an associated choice, - // we want to disable it so it can't be chosen again - - - if (action.choiceId > -1) { - return state.map(function (obj) { - var choice = obj; - - if (choice.id === parseInt(action.choiceId, 10)) { - choice.selected = true; - } - - return choice; - }); - } - - return state; - } - - case 'REMOVE_ITEM': - { - // When an item is removed and it has an associated choice, - // we want to re-enable it so it can be chosen again - if (action.choiceId > -1) { - return state.map(function (obj) { - var choice = obj; - - if (choice.id === parseInt(action.choiceId, 10)) { - choice.selected = false; - } - - return choice; - }); - } - - return state; - } - - case 'FILTER_CHOICES': - { - return state.map(function (obj) { - var choice = obj; // Set active state based on whether choice is - // within filtered results - - choice.active = action.results.some(function (_ref) { - var item = _ref.item, - score = _ref.score; - - if (item.id === choice.id) { - choice.score = score; - return true; - } - - return false; - }); - return choice; - }); - } - - case 'ACTIVATE_CHOICES': - { - return state.map(function (obj) { - var choice = obj; - choice.active = action.active; - return choice; - }); - } - - case 'CLEAR_CHOICES': - { - return defaultState; - } - - default: - { - return state; - } - } -} - -/***/ }), -/* 19 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = exports.defaultState = void 0; -var defaultState = { - loading: false -}; -exports.defaultState = defaultState; - -var general = function general() { - var state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : defaultState; - var action = arguments.length > 1 ? arguments[1] : undefined; - - switch (action.type) { - case 'SET_IS_LOADING': - { - return { - loading: action.isLoading - }; - } - - default: - { - return state; - } - } -}; - -var _default = general; -exports.default = _default; - -/***/ }), -/* 20 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "Dropdown", { - enumerable: true, - get: function get() { - return _dropdown.default; - } -}); -Object.defineProperty(exports, "Container", { - enumerable: true, - get: function get() { - return _container.default; - } -}); -Object.defineProperty(exports, "Input", { - enumerable: true, - get: function get() { - return _input.default; - } -}); -Object.defineProperty(exports, "List", { - enumerable: true, - get: function get() { - return _list.default; - } -}); -Object.defineProperty(exports, "WrappedInput", { - enumerable: true, - get: function get() { - return _wrappedInput.default; - } -}); -Object.defineProperty(exports, "WrappedSelect", { - enumerable: true, - get: function get() { - return _wrappedSelect.default; - } -}); - -var _dropdown = _interopRequireDefault(__webpack_require__(21)); - -var _container = _interopRequireDefault(__webpack_require__(22)); - -var _input = _interopRequireDefault(__webpack_require__(23)); - -var _list = _interopRequireDefault(__webpack_require__(24)); - -var _wrappedInput = _interopRequireDefault(__webpack_require__(25)); - -var _wrappedSelect = _interopRequireDefault(__webpack_require__(26)); - -function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } - -/***/ }), -/* 21 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = void 0; - -function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } - -var Dropdown = -/*#__PURE__*/ -function () { - function Dropdown(_ref) { - var element = _ref.element, - type = _ref.type, - classNames = _ref.classNames; - - _classCallCheck(this, Dropdown); - - Object.assign(this, { - element: element, - type: type, - classNames: classNames - }); - this.isActive = false; - } - /** - * Determine how far the top of our element is from - * the top of the window - * @return {Number} Vertical position - */ - - - _createClass(Dropdown, [{ - key: "distanceFromTopWindow", - value: function distanceFromTopWindow() { - this.dimensions = this.element.getBoundingClientRect(); - this.position = Math.ceil(this.dimensions.top + window.pageYOffset + this.element.offsetHeight); - return this.position; - } - /** - * Find element that matches passed selector - * @return {HTMLElement} - */ - - }, { - key: "getChild", - value: function getChild(selector) { - return this.element.querySelector(selector); - } - /** - * Show dropdown to user by adding active state class - * @return {Object} Class instance - * @public - */ - - }, { - key: "show", - value: function show() { - this.element.classList.add(this.classNames.activeState); - this.element.setAttribute('aria-expanded', 'true'); - this.isActive = true; - return this; - } - /** - * Hide dropdown from user - * @return {Object} Class instance - * @public - */ - - }, { - key: "hide", - value: function hide() { - this.element.classList.remove(this.classNames.activeState); - this.element.setAttribute('aria-expanded', 'false'); - this.isActive = false; - return this; - } - }]); - - return Dropdown; -}(); - -exports.default = Dropdown; - -/***/ }), -/* 22 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = void 0; - -var _utils = __webpack_require__(0); - -function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } - -var Container = -/*#__PURE__*/ -function () { - function Container(_ref) { - var element = _ref.element, - type = _ref.type, - classNames = _ref.classNames, - position = _ref.position; - - _classCallCheck(this, Container); - - Object.assign(this, { - element: element, - classNames: classNames, - type: type, - position: position - }); - this.isOpen = false; - this.isFlipped = false; - this.isFocussed = false; - this.isDisabled = false; - this.isLoading = false; - this._onFocus = this._onFocus.bind(this); - this._onBlur = this._onBlur.bind(this); - } - /** - * Add event listeners - */ - - - _createClass(Container, [{ - key: "addEventListeners", - value: function addEventListeners() { - this.element.addEventListener('focus', this._onFocus); - this.element.addEventListener('blur', this._onBlur); - } - /** - * Remove event listeners - */ - - /** */ - - }, { - key: "removeEventListeners", - value: function removeEventListeners() { - this.element.removeEventListener('focus', this._onFocus); - this.element.removeEventListener('blur', this._onBlur); - } - /** - * Determine whether container should be flipped - * based on passed dropdown position - * @param {Number} dropdownPos - * @returns - */ - - }, { - key: "shouldFlip", - value: function shouldFlip(dropdownPos) { - var windowHeight = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : (0, _utils.getWindowHeight)(); - - if (dropdownPos === undefined) { - return false; - } // If flip is enabled and the dropdown bottom position is - // greater than the window height flip the dropdown. - - - var shouldFlip = false; - - if (this.position === 'auto') { - shouldFlip = dropdownPos >= windowHeight; - } else if (this.position === 'top') { - shouldFlip = true; - } - - return shouldFlip; - } - /** - * Set active descendant attribute - * @param {Number} activeDescendant ID of active descendant - */ - - }, { - key: "setActiveDescendant", - value: function setActiveDescendant(activeDescendantID) { - this.element.setAttribute('aria-activedescendant', activeDescendantID); - } - /** - * Remove active descendant attribute - */ - - }, { - key: "removeActiveDescendant", - value: function removeActiveDescendant() { - this.element.removeAttribute('aria-activedescendant'); - } - }, { - key: "open", - value: function open(dropdownPos) { - this.element.classList.add(this.classNames.openState); - this.element.setAttribute('aria-expanded', 'true'); - this.isOpen = true; - - if (this.shouldFlip(dropdownPos)) { - this.element.classList.add(this.classNames.flippedState); - this.isFlipped = true; - } - } - }, { - key: "close", - value: function close() { - this.element.classList.remove(this.classNames.openState); - this.element.setAttribute('aria-expanded', 'false'); - this.removeActiveDescendant(); - this.isOpen = false; // A dropdown flips if it does not have space within the page - - if (this.isFlipped) { - this.element.classList.remove(this.classNames.flippedState); - this.isFlipped = false; - } - } - }, { - key: "focus", - value: function focus() { - if (!this.isFocussed) { - this.element.focus(); - } - } - }, { - key: "addFocusState", - value: function addFocusState() { - this.element.classList.add(this.classNames.focusState); - } - }, { - key: "removeFocusState", - value: function removeFocusState() { - this.element.classList.remove(this.classNames.focusState); - } - /** - * Remove disabled state - */ - - }, { - key: "enable", - value: function enable() { - this.element.classList.remove(this.classNames.disabledState); - this.element.removeAttribute('aria-disabled'); - - if (this.type === 'select-one') { - this.element.setAttribute('tabindex', '0'); - } - - this.isDisabled = false; - } - /** - * Set disabled state - */ - - }, { - key: "disable", - value: function disable() { - this.element.classList.add(this.classNames.disabledState); - this.element.setAttribute('aria-disabled', 'true'); - - if (this.type === 'select-one') { - this.element.setAttribute('tabindex', '-1'); - } - - this.isDisabled = true; - } - }, { - key: "wrap", - value: function wrap(element) { - (0, _utils.wrap)(element, this.element); - } - }, { - key: "unwrap", - value: function unwrap(element) { - // Move passed element outside this element - this.element.parentNode.insertBefore(element, this.element); // Remove this element - - this.element.parentNode.removeChild(this.element); - } - /** - * Add loading state to element - */ - - }, { - key: "addLoadingState", - value: function addLoadingState() { - this.element.classList.add(this.classNames.loadingState); - this.element.setAttribute('aria-busy', 'true'); - this.isLoading = true; - } - /** - * Remove loading state from element - */ - - }, { - key: "removeLoadingState", - value: function removeLoadingState() { - this.element.classList.remove(this.classNames.loadingState); - this.element.removeAttribute('aria-busy'); - this.isLoading = false; - } - /** - * Set focussed state - */ - - }, { - key: "_onFocus", - value: function _onFocus() { - this.isFocussed = true; - } - /** - * Remove blurred state - */ - - }, { - key: "_onBlur", - value: function _onBlur() { - this.isFocussed = false; - } - }]); - - return Container; -}(); - -exports.default = Container; - -/***/ }), -/* 23 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = void 0; - -var _utils = __webpack_require__(0); - -function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } - -var Input = -/*#__PURE__*/ -function () { - function Input(_ref) { - var element = _ref.element, - type = _ref.type, - classNames = _ref.classNames, - placeholderValue = _ref.placeholderValue; - - _classCallCheck(this, Input); - - Object.assign(this, { - element: element, - type: type, - classNames: classNames, - placeholderValue: placeholderValue - }); - this.element = element; - this.classNames = classNames; - this.isFocussed = this.element === document.activeElement; - this.isDisabled = false; - this._onPaste = this._onPaste.bind(this); - this._onInput = this._onInput.bind(this); - this._onFocus = this._onFocus.bind(this); - this._onBlur = this._onBlur.bind(this); - } - - _createClass(Input, [{ - key: "addEventListeners", - value: function addEventListeners() { - this.element.addEventListener('input', this._onInput); - this.element.addEventListener('paste', this._onPaste); - this.element.addEventListener('focus', this._onFocus); - this.element.addEventListener('blur', this._onBlur); - - if (this.element.form) { - this.element.form.addEventListener('reset', this._onFormReset); - } - } - }, { - key: "removeEventListeners", - value: function removeEventListeners() { - this.element.removeEventListener('input', this._onInput); - this.element.removeEventListener('paste', this._onPaste); - this.element.removeEventListener('focus', this._onFocus); - this.element.removeEventListener('blur', this._onBlur); - - if (this.element.form) { - this.element.form.removeEventListener('reset', this._onFormReset); - } - } - }, { - key: "enable", - value: function enable() { - this.element.removeAttribute('disabled'); - this.isDisabled = false; - } - }, { - key: "disable", - value: function disable() { - this.element.setAttribute('disabled', ''); - this.isDisabled = true; - } - }, { - key: "focus", - value: function focus() { - if (!this.isFocussed) { - this.element.focus(); - } - } - }, { - key: "blur", - value: function blur() { - if (this.isFocussed) { - this.element.blur(); - } - } - /** - * Set value of input to blank - * @return {Object} Class instance - * @public - */ - - }, { - key: "clear", - value: function clear() { - var setWidth = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true; - - if (this.element.value) { - this.element.value = ''; - } - - if (setWidth) { - this.setWidth(); - } - - return this; - } - /** - * Set the correct input width based on placeholder - * value or input value - * @return - */ - - }, { - key: "setWidth", - value: function setWidth(enforceWidth) { - var _this = this; - - var callback = function callback(width) { - _this.element.style.width = width; - }; - - if (this._placeholderValue) { - // If there is a placeholder, we only want to set the width of the input when it is a greater - // length than 75% of the placeholder. This stops the input jumping around. - var valueHasDesiredLength = this.element.value.length >= this._placeholderValue.length / 1.25; - - if (this.element.value && valueHasDesiredLength || enforceWidth) { - this.calcWidth(callback); - } - } else { - // If there is no placeholder, resize input to contents - this.calcWidth(callback); - } - } - }, { - key: "calcWidth", - value: function calcWidth(callback) { - return (0, _utils.calcWidthOfInput)(this.element, callback); - } - }, { - key: "setActiveDescendant", - value: function setActiveDescendant(activeDescendantID) { - this.element.setAttribute('aria-activedescendant', activeDescendantID); - } - }, { - key: "removeActiveDescendant", - value: function removeActiveDescendant() { - this.element.removeAttribute('aria-activedescendant'); - } - }, { - key: "_onInput", - value: function _onInput() { - if (this.type !== 'select-one') { - this.setWidth(); - } - } - }, { - key: "_onPaste", - value: function _onPaste(event) { - var target = event.target; - - if (target === this.element && this.preventPaste) { - event.preventDefault(); - } - } - }, { - key: "_onFocus", - value: function _onFocus() { - this.isFocussed = true; - } - }, { - key: "_onBlur", - value: function _onBlur() { - this.isFocussed = false; - } - }, { - key: "placeholder", - set: function set(placeholder) { - this.element.placeholder = placeholder; - } - }, { - key: "value", - set: function set(value) { - this.element.value = value; - }, - get: function get() { - return (0, _utils.sanitise)(this.element.value); - } - }]); - - return Input; -}(); - -exports.default = Input; - -/***/ }), -/* 24 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = void 0; - -var _constants = __webpack_require__(1); - -function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } - -var List = -/*#__PURE__*/ -function () { - function List(_ref) { - var element = _ref.element; - - _classCallCheck(this, List); - - Object.assign(this, { - element: element - }); - this.scrollPos = this.element.scrollTop; - this.height = this.element.offsetHeight; - this.hasChildren = !!this.element.children; - } - - _createClass(List, [{ - key: "clear", - value: function clear() { - this.element.innerHTML = ''; - } - }, { - key: "append", - value: function append(node) { - this.element.appendChild(node); - } - }, { - key: "getChild", - value: function getChild(selector) { - return this.element.querySelector(selector); - } - }, { - key: "scrollToTop", - value: function scrollToTop() { - this.element.scrollTop = 0; - } - }, { - key: "scrollToChoice", - value: function scrollToChoice(choice, direction) { - var _this = this; - - if (!choice) { - return; - } - - var dropdownHeight = this.element.offsetHeight; - var choiceHeight = choice.offsetHeight; // Distance from bottom of element to top of parent - - var choicePos = choice.offsetTop + choiceHeight; // Scroll position of dropdown - - var containerScrollPos = this.element.scrollTop + dropdownHeight; // Difference between the choice and scroll position - - var endpoint = direction > 0 ? this.element.scrollTop + choicePos - containerScrollPos : choice.offsetTop; - requestAnimationFrame(function (time) { - _this._animateScroll(time, endpoint, direction); - }); - } - }, { - key: "_scrollDown", - value: function _scrollDown(scrollPos, strength, endpoint) { - var easing = (endpoint - scrollPos) / strength; - var distance = easing > 1 ? easing : 1; - this.element.scrollTop = scrollPos + distance; - } - }, { - key: "_scrollUp", - value: function _scrollUp(scrollPos, strength, endpoint) { - var easing = (scrollPos - endpoint) / strength; - var distance = easing > 1 ? easing : 1; - this.element.scrollTop = scrollPos - distance; - } - }, { - key: "_animateScroll", - value: function _animateScroll(time, endpoint, direction) { - var _this2 = this; - - var strength = _constants.SCROLLING_SPEED; - var choiceListScrollTop = this.element.scrollTop; - var continueAnimation = false; - - if (direction > 0) { - this._scrollDown(choiceListScrollTop, strength, endpoint); - - if (choiceListScrollTop < endpoint) { - continueAnimation = true; - } - } else { - this._scrollUp(choiceListScrollTop, strength, endpoint); - - if (choiceListScrollTop > endpoint) { - continueAnimation = true; - } - } - - if (continueAnimation) { - requestAnimationFrame(function () { - _this2._animateScroll(time, endpoint, direction); - }); - } - } - }]); - - return List; -}(); - -exports.default = List; - -/***/ }), -/* 25 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = void 0; - -var _wrappedElement = _interopRequireDefault(__webpack_require__(4)); - -function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } - -function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } - -function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } - -function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); } - -function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } - -function _get(target, property, receiver) { if (typeof Reflect !== "undefined" && Reflect.get) { _get = Reflect.get; } else { _get = function _get(target, property, receiver) { var base = _superPropBase(target, property); if (!base) return; var desc = Object.getOwnPropertyDescriptor(base, property); if (desc.get) { return desc.get.call(receiver); } return desc.value; }; } return _get(target, property, receiver || target); } - -function _superPropBase(object, property) { while (!Object.prototype.hasOwnProperty.call(object, property)) { object = _getPrototypeOf(object); if (object === null) break; } return object; } - -function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } - -function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); } - -function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } - -var WrappedInput = -/*#__PURE__*/ -function (_WrappedElement) { - _inherits(WrappedInput, _WrappedElement); - - function WrappedInput(_ref) { - var _this; - - var element = _ref.element, - classNames = _ref.classNames, - delimiter = _ref.delimiter; - - _classCallCheck(this, WrappedInput); - - _this = _possibleConstructorReturn(this, _getPrototypeOf(WrappedInput).call(this, { - element: element, - classNames: classNames - })); - _this.delimiter = delimiter; - return _this; - } - - _createClass(WrappedInput, [{ - key: "value", - set: function set(items) { - var itemValues = items.map(function (_ref2) { - var value = _ref2.value; - return value; - }); - var joinedValues = itemValues.join(this.delimiter); - this.element.setAttribute('value', joinedValues); - this.element.value = joinedValues; - } // @todo figure out why we need this? Perhaps a babel issue - , - get: function get() { - return _get(_getPrototypeOf(WrappedInput.prototype), "value", this); - } - }]); - - return WrappedInput; -}(_wrappedElement.default); - -exports.default = WrappedInput; - -/***/ }), -/* 26 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = void 0; - -var _wrappedElement = _interopRequireDefault(__webpack_require__(4)); - -var _templates = _interopRequireDefault(__webpack_require__(5)); - -function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } - -function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } - -function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } - -function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); } - -function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } - -function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } - -function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); } - -function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } - -var WrappedSelect = -/*#__PURE__*/ -function (_WrappedElement) { - _inherits(WrappedSelect, _WrappedElement); - - function WrappedSelect(_ref) { - var element = _ref.element, - classNames = _ref.classNames; - - _classCallCheck(this, WrappedSelect); - - return _possibleConstructorReturn(this, _getPrototypeOf(WrappedSelect).call(this, { - element: element, - classNames: classNames - })); - } - - _createClass(WrappedSelect, [{ - key: "appendDocFragment", - value: function appendDocFragment(fragment) { - this.element.innerHTML = ''; - this.element.appendChild(fragment); - } - }, { - key: "placeholderOption", - get: function get() { - return this.element.querySelector('option[placeholder]'); - } - }, { - key: "optionGroups", - get: function get() { - return Array.from(this.element.getElementsByTagName('OPTGROUP')); - } - }, { - key: "options", - get: function get() { - return Array.from(this.element.options); - }, - set: function set(options) { - var fragment = document.createDocumentFragment(); - - var addOptionToFragment = function addOptionToFragment(data) { - // Create a standard select option - var template = _templates.default.option(data); // Append it to fragment - - - fragment.appendChild(template); - }; // Add each list item to list - - - options.forEach(function (optionData) { - return addOptionToFragment(optionData); - }); - this.appendDocFragment(fragment); - } - }]); - - return WrappedSelect; -}(_wrappedElement.default); - -exports.default = WrappedSelect; - -/***/ }), -/* 27 */ -/***/ (function(module, exports, __webpack_require__) { - -var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*! - Copyright (c) 2017 Jed Watson. - Licensed under the MIT License (MIT), see - http://jedwatson.github.io/classnames -*/ -/* global define */ - -(function () { - 'use strict'; - - var hasOwn = {}.hasOwnProperty; - - function classNames () { - var classes = []; - - for (var i = 0; i < arguments.length; i++) { - var arg = arguments[i]; - if (!arg) continue; - - var argType = typeof arg; - - if (argType === 'string' || argType === 'number') { - classes.push(arg); - } else if (Array.isArray(arg) && arg.length) { - var inner = classNames.apply(null, arg); - if (inner) { - classes.push(inner); - } - } else if (argType === 'object') { - for (var key in arg) { - if (hasOwn.call(arg, key) && arg[key]) { - classes.push(key); - } - } - } - } - - return classes.join(' '); - } - - if ( true && module.exports) { - classNames.default = classNames; - module.exports = classNames; - } else if (true) { - // register as 'classnames', consistent with npm package name - !(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_RESULT__ = (function () { - return classNames; - }).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__), - __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)); - } else {} -}()); - - -/***/ }), -/* 28 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.clearChoices = exports.activateChoices = exports.filterChoices = exports.addChoice = void 0; - -var _constants = __webpack_require__(1); - -var addChoice = function addChoice(_ref) { - var value = _ref.value, - label = _ref.label, - id = _ref.id, - groupId = _ref.groupId, - disabled = _ref.disabled, - elementId = _ref.elementId, - customProperties = _ref.customProperties, - placeholder = _ref.placeholder, - keyCode = _ref.keyCode; - return { - type: _constants.ACTION_TYPES.ADD_CHOICE, - value: value, - label: label, - id: id, - groupId: groupId, - disabled: disabled, - elementId: elementId, - customProperties: customProperties, - placeholder: placeholder, - keyCode: keyCode - }; -}; - -exports.addChoice = addChoice; - -var filterChoices = function filterChoices(results) { - return { - type: _constants.ACTION_TYPES.FILTER_CHOICES, - results: results - }; -}; - -exports.filterChoices = filterChoices; - -var activateChoices = function activateChoices() { - var active = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true; - return { - type: _constants.ACTION_TYPES.ACTIVATE_CHOICES, - active: active - }; -}; - -exports.activateChoices = activateChoices; - -var clearChoices = function clearChoices() { - return { - type: _constants.ACTION_TYPES.CLEAR_CHOICES - }; -}; - -exports.clearChoices = clearChoices; - -/***/ }), -/* 29 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.highlightItem = exports.removeItem = exports.addItem = void 0; - -var _constants = __webpack_require__(1); - -var addItem = function addItem(_ref) { - var value = _ref.value, - label = _ref.label, - id = _ref.id, - choiceId = _ref.choiceId, - groupId = _ref.groupId, - customProperties = _ref.customProperties, - placeholder = _ref.placeholder, - keyCode = _ref.keyCode; - return { - type: _constants.ACTION_TYPES.ADD_ITEM, - value: value, - label: label, - id: id, - choiceId: choiceId, - groupId: groupId, - customProperties: customProperties, - placeholder: placeholder, - keyCode: keyCode - }; -}; - -exports.addItem = addItem; - -var removeItem = function removeItem(id, choiceId) { - return { - type: _constants.ACTION_TYPES.REMOVE_ITEM, - id: id, - choiceId: choiceId - }; -}; - -exports.removeItem = removeItem; - -var highlightItem = function highlightItem(id, highlighted) { - return { - type: _constants.ACTION_TYPES.HIGHLIGHT_ITEM, - id: id, - highlighted: highlighted - }; -}; - -exports.highlightItem = highlightItem; - -/***/ }), -/* 30 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.addGroup = void 0; - -var _constants = __webpack_require__(1); - -/* eslint-disable import/prefer-default-export */ -var addGroup = function addGroup(value, id, active, disabled) { - return { - type: _constants.ACTION_TYPES.ADD_GROUP, - value: value, - id: id, - active: active, - disabled: disabled - }; -}; - -exports.addGroup = addGroup; - -/***/ }), -/* 31 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.resetTo = exports.clearAll = void 0; - -var clearAll = function clearAll() { - return { - type: 'CLEAR_ALL' - }; -}; - -exports.clearAll = clearAll; - -var resetTo = function resetTo(state) { - return { - type: 'RESET_TO', - state: state - }; -}; - -exports.resetTo = resetTo; - -/***/ }), -/* 32 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.setIsLoading = void 0; - -/* eslint-disable import/prefer-default-export */ -var setIsLoading = function setIsLoading(isLoading) { - return { - type: 'SET_IS_LOADING', - isLoading: isLoading - }; -}; - -exports.setIsLoading = setIsLoading; - -/***/ }) -/******/ ]); -}); \ No newline at end of file diff --git a/website/app/static/vendors/choices/choices.min.css b/website/app/static/vendors/choices/choices.min.css deleted file mode 100644 index 5ea30789..00000000 --- a/website/app/static/vendors/choices/choices.min.css +++ /dev/null @@ -1 +0,0 @@ -.choices{position:relative;margin-bottom:24px;font-size:16px}.choices:focus{outline:0}.choices:last-child{margin-bottom:0}.choices.is-disabled .choices__inner,.choices.is-disabled .choices__input{background-color:#eaeaea;cursor:not-allowed;user-select:none}.choices.is-disabled .choices__item{cursor:not-allowed}.choices[data-type*=select-one]{cursor:pointer}.choices[data-type*=select-one] .choices__inner{padding-bottom:0}.choices[data-type*=select-one] .choices__input{display:block;width:100%;padding:4px;border-bottom:1px solid #ddd;background-color:#fff;margin:0}.choices[data-type*=select-one] .choices__button{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);padding:0;background-size:8px;position:absolute;top:50%;right:0;margin-top:-10px;margin-right:25px;height:20px;width:20px;opacity:.5}.choices[data-type*=select-one] .choices__button:focus,.choices[data-type*=select-one] .choices__button:hover{opacity:1}.choices[data-type*=select-one] .choices__button:focus{box-shadow:0 0 0 2px #00bcd4}.choices[data-type*=select-one]:after{content:"";height:0;width:0;border-style:solid;border-color:#333 transparent transparent transparent;border-width:5px;position:absolute;right:11.5px;top:50%;margin-top:-2.5px;pointer-events:none}.choices[data-type*=select-one].is-open:after{border-color:transparent transparent #333 transparent;margin-top:-7.5px}.choices[data-type*=select-one][dir=rtl]:after{left:11.5px;right:auto}.choices[data-type*=select-one][dir=rtl] .choices__button{right:auto;left:0;margin-left:25px;margin-right:0}.choices[data-type*=select-multiple] .choices__inner,.choices[data-type*=text] .choices__inner{cursor:text}.choices[data-type*=select-multiple] .choices__button,.choices[data-type*=text] .choices__button{position:relative;display:inline-block;margin-top:0;margin-right:-4px;margin-bottom:0;margin-left:8px;padding-left:16px;border-left:1px solid #008fa1;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);background-size:8px;width:8px;line-height:1;opacity:.75;border-radius:0}.choices[data-type*=select-multiple] .choices__button:focus,.choices[data-type*=select-multiple] .choices__button:hover,.choices[data-type*=text] .choices__button:focus,.choices[data-type*=text] .choices__button:hover{opacity:1}.choices__inner{display:inline-block;vertical-align:top;width:100%;background-color:#e8f0fe;padding:0 0 0;border:1px solid #ccc;min-height:32px;overflow:hidden}.is-focused .choices__inner,.is-open .choices__inner{border-color:#b7b7b7}.choices__list{margin:0;padding-left:0;list-style:none}.choices__list--single{display:inline-block;padding:6px 2px 2px 2px;width:100%}[dir=rtl] .choices__list--single{padding-right:4px;padding-left:16px}.choices__list--single .choices__item{width:100%}.choices__list--multiple{display:inline}.choices__list--multiple .choices__item{display:inline-block;vertical-align:middle;padding:4px 6px;font-size:16px;height:40px;margin-right:3.75px;background-color:#607d8b;border:1px solid #607d8b;color:#fff;word-break:break-all}.choices__list--multiple .choices__item[data-deletable]{padding-right:5px}[dir=rtl] .choices__list--multiple .choices__item{margin-right:0;margin-left:3.75px}.choices__list--multiple .choices__item.is-highlighted{background-color:#00a5bb;border:1px solid #008fa1}.is-disabled .choices__list--multiple .choices__item{background-color:#aaa;border:1px solid #919191}.choices__list--dropdown{display:none;z-index:1;position:absolute;width:100%;background-color:#fff;border:1px solid #ddd;top:100%;margin-top:-1px;overflow:hidden;word-break:break-word}.choices__list--dropdown.is-active{display:block}.is-open .choices__list--dropdown{border-color:#b7b7b7}.is-flipped .choices__list--dropdown{top:auto;bottom:100%;margin-top:0;margin-bottom:-1px}.choices__list--dropdown .choices__list{position:relative;max-height:300px;overflow:auto;-webkit-overflow-scrolling:touch;will-change:scroll-position}.choices__list--dropdown .choices__item{position:relative;padding:10px;font-size:14px}[dir=rtl] .choices__list--dropdown .choices__item{text-align:right}@media (min-width:640px){.choices__list--dropdown .choices__item--selectable{padding-right:10px;word-wrap:none;overflow:hidden}.choices__list--dropdown .choices__item--selectable:after{content:attr(data-select-text);font-size:12px;opacity:0;position:absolute;right:10px;top:50%;transform:translateY(-50%)}[dir=rtl] .choices__list--dropdown .choices__item--selectable{text-align:right;padding-left:10px;padding-right:10px}[dir=rtl] .choices__list--dropdown .choices__item--selectable:after{right:auto;left:10px}}.choices__list--dropdown .choices__item--selectable.is-highlighted{background-color:#f2f2f2}.choices__list--dropdown .choices__item--selectable.is-highlighted:after{opacity:.5}.choices__item{cursor:default}.choices__item--selectable{cursor:pointer}.choices__item--disabled{cursor:not-allowed;user-select:none;opacity:.5}.choices__heading{font-size:12px;padding:10px;border-bottom:1px solid #f7f7f7;color:gray}.choices__button{text-indent:-9999px;-webkit-appearance:none;appearance:none;border:0;background-color:transparent;background-repeat:no-repeat;background-position:center;cursor:pointer}.choices__button:focus{outline:0}.choices__input{display:inline-block;vertical-align:baseline;background-color:#f9f9f9;font-size:14px;margin-bottom:5px;border:0;border-radius:0;max-width:100%;padding:4px 0 4px 2px}.choices__input:focus{outline:0}[dir=rtl] .choices__input{padding-right:2px;padding-left:0}.choices__placeholder{opacity:.5}.choices[data-type*=select-multiple] .choices__input.is-hidden,.choices[data-type*=select-one] .choices__input.is-hidden,.choices__input.is-hidden{display:none} \ No newline at end of file diff --git a/website/app/static/vendors/choices/choices.min.js b/website/app/static/vendors/choices/choices.min.js deleted file mode 100644 index 5d105dc8..00000000 --- a/website/app/static/vendors/choices/choices.min.js +++ /dev/null @@ -1,58 +0,0 @@ -/*! choices.js v7.0.0 | (c) 2019 Josh Johnson | https://github.com/jshjohnson/Choices#readme */ -!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.Choices=t():e.Choices=t()}(window,function(){return function(e){var t={};function i(n){if(t[n])return t[n].exports;var o=t[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,i),o.l=!0,o.exports}return i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)i.d(n,o,function(t){return e[t]}.bind(null,o));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="/public/assets/scripts/",i(i.s=9)}([function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.diff=t.cloneObject=t.existsInArray=t.isIE11=t.fetchFromObject=t.getWindowHeight=t.dispatchEvent=t.sortByScore=t.sortByAlpha=t.calcWidthOfInput=t.strToEl=t.sanitise=t.isScrolledIntoView=t.getAdjacentEl=t.findAncestorByAttrName=t.wrap=t.isElement=t.isType=t.getType=t.generateId=t.generateChars=t.getRandomNumber=void 0;var n=function(e,t){return Math.floor(Math.random()*(t-e)+e)};t.getRandomNumber=n;var o=function(e){for(var t="",i=0;i1&&void 0!==arguments[1]?arguments[1]:document.createElement("div");return e.nextSibling?e.parentNode.insertBefore(t,e.nextSibling):e.parentNode.appendChild(t),t.appendChild(e)};t.findAncestorByAttrName=function(e,t){for(var i=e;i;){if(i.hasAttribute(t))return i;i=i.parentElement}return null};t.getAdjacentEl=function(e,t){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1;if(e&&t){var n=e.parentNode.parentNode,o=Array.from(n.querySelectorAll(t)),r=o.indexOf(e);return o[r+(i>0?1:-1)]}};t.isScrolledIntoView=function(e,t){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1;if(e)return i>0?t.scrollTop+t.offsetHeight>=e.offsetTop+e.offsetHeight:e.offsetTop>=t.scrollTop};var a=function(e){return s("String",e)?e.replace(/&/g,"&").replace(/>/g,"&rt;").replace(/".concat(a(i),""));if(o.style.position="absolute",o.style.padding="0",o.style.top="-9999px",o.style.left="-9999px",o.style.width="auto",o.style.whiteSpace="pre",document.body.contains(e)&&window.getComputedStyle){var r=window.getComputedStyle(e);r&&(o.style.fontSize=r.fontSize,o.style.fontFamily=r.fontFamily,o.style.fontWeight=r.fontWeight,o.style.fontStyle=r.fontStyle,o.style.letterSpacing=r.letterSpacing,o.style.textTransform=r.textTransform,o.style.padding=r.padding)}document.body.appendChild(o),requestAnimationFrame(function(){i&&o.offsetWidth!==e.offsetWidth&&(n=o.offsetWidth+4),document.body.removeChild(o),t.call(void 0,"".concat(n,"px"))})}else t.call(void 0,"".concat(n,"px"))};t.sortByAlpha=function(e,t){var i="".concat(e.label||e.value).toLowerCase(),n="".concat(t.label||t.value).toLowerCase();return in?1:0};t.sortByScore=function(e,t){return e.score-t.score};t.dispatchEvent=function(e,t){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,n=new CustomEvent(t,{detail:i,bubbles:!0,cancelable:!0});return e.dispatchEvent(n)};t.getWindowHeight=function(){var e=document.body,t=document.documentElement;return Math.max(e.scrollHeight,e.offsetHeight,t.clientHeight,t.scrollHeight,t.offsetHeight)};t.fetchFromObject=function e(t,i){var n=i.indexOf(".");return n>-1?e(t[i.substring(0,n)],i.substr(n+1)):t[i]};t.isIE11=function(){return!(!navigator.userAgent.match(/Trident/)||!navigator.userAgent.match(/rv[ :]11/))};t.existsInArray=function(e,t){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"value";return e.some(function(e){return s("String",t)?e[i]===t.trim():e[i]===t})};t.cloneObject=function(e){return JSON.parse(JSON.stringify(e))};t.diff=function(e,t){var i=Object.keys(e).sort(),n=Object.keys(t).sort();return i.filter(function(e){return n.indexOf(e)<0})}},function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.SCROLLING_SPEED=t.KEY_CODES=t.ACTION_TYPES=t.EVENTS=t.DEFAULT_CONFIG=t.DEFAULT_CLASSNAMES=void 0;var n=i(0),o={containerOuter:"choices",containerInner:"choices__inner",input:"choices__input",inputCloned:"choices__input--cloned",list:"choices__list",listItems:"choices__list--multiple",listSingle:"choices__list--single",listDropdown:"choices__list--dropdown",item:"choices__item",itemSelectable:"choices__item--selectable",itemDisabled:"choices__item--disabled",itemChoice:"choices__item--choice",placeholder:"choices__placeholder",group:"choices__group",groupHeading:"choices__heading",button:"choices__button",activeState:"is-active",focusState:"is-focused",openState:"is-open",disabledState:"is-disabled",highlightedState:"is-highlighted",hiddenState:"is-hidden",flippedState:"is-flipped",loadingState:"is-loading",noResults:"has-no-results",noChoices:"has-no-choices"};t.DEFAULT_CLASSNAMES=o;var r={items:[],choices:[],silent:!1,renderChoiceLimit:-1,maxItemCount:-1,addItems:!0,addItemFilterFn:null,removeItems:!0,removeItemButton:!1,editItems:!1,duplicateItemsAllowed:!0,delimiter:",",paste:!0,searchEnabled:!0,searchChoices:!0,searchFloor:1,searchResultLimit:4,searchFields:["label","value"],position:"auto",resetScrollPosition:!0,shouldSort:!0,shouldSortItems:!1,sortFn:n.sortByAlpha,placeholder:!0,placeholderValue:null,searchPlaceholderValue:null,prependValue:null,appendValue:null,renderSelectedChoices:"auto",loadingText:"Loading...",noResultsText:"No results found",noChoicesText:"No choices to choose from",itemSelectText:"Press to select",uniqueItemText:"Only unique values can be added",customAddItemText:"Only values matching specific conditions can be added",addItemText:function(e){return'Press Enter to add "'.concat((0,n.sanitise)(e),'"')},maxItemText:function(e){return"Only ".concat(e," values can be added")},itemComparer:function(e,t){return e===t},fuseOptions:{includeScore:!0},callbackOnInit:null,callbackOnCreateTemplates:null,classNames:o};t.DEFAULT_CONFIG=r;t.EVENTS={showDropdown:"showDropdown",hideDropdown:"hideDropdown",change:"change",choice:"choice",search:"search",addItem:"addItem",removeItem:"removeItem",highlightItem:"highlightItem",highlightChoice:"highlightChoice"};t.ACTION_TYPES={ADD_CHOICE:"ADD_CHOICE",FILTER_CHOICES:"FILTER_CHOICES",ACTIVATE_CHOICES:"ACTIVATE_CHOICES",CLEAR_CHOICES:"CLEAR_CHOICES",ADD_GROUP:"ADD_GROUP",ADD_ITEM:"ADD_ITEM",REMOVE_ITEM:"REMOVE_ITEM",HIGHLIGHT_ITEM:"HIGHLIGHT_ITEM",CLEAR_ALL:"CLEAR_ALL"};t.KEY_CODES={BACK_KEY:46,DELETE_KEY:8,ENTER_KEY:13,A_KEY:65,ESC_KEY:27,UP_KEY:38,DOWN_KEY:40,PAGE_UP_KEY:33,PAGE_DOWN_KEY:34};t.SCROLLING_SPEED=4},function(e,t,i){"use strict";(function(e,n){var o,r=i(7);o="undefined"!=typeof self?self:"undefined"!=typeof window?window:void 0!==e?e:n;var s=Object(r.a)(o);t.a=s}).call(this,i(3),i(14)(e))},function(e,t){var i;i=function(){return this}();try{i=i||new Function("return this")()}catch(e){"object"==typeof window&&(i=window)}e.exports=i},function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=i(0);function o(e,t){for(var i=0;i